library(mrgsolve)
library(ggplot2)
library(dplyr)
data_path <- file.path("D://Estadistica4/unidad1/010_practica_simple")
data_file <- file.path(data_path, "vgsales.csv")
data.vg.raw <- read.csv(data_file,
stringsAsFactors = F,na.strings = ".",header = T,sep=";")
head(data.vg.raw)
## Rank Name Platform Year Genre Publisher NA_Sales
## 1 1 Wii Sports Wii 2006 Sports Nintendo 41.49
## 2 2 Super Mario Bros. NES 1985 Platform Nintendo 29.08
## 3 3 Mario Kart Wii Wii 2008 Racing Nintendo 15.85
## 4 4 Wii Sports Resort Wii 2009 Sports Nintendo 15.75
## 5 5 Pokemon Red/Pokemon Blue GB 1996 Role-Playing Nintendo 11.27
## 6 6 Tetris GB 1989 Puzzle Nintendo 23.20
## EU_Sales JP_Sales Other_Sales Global_Sales
## 1 29.02 3.77 8.46 82.74
## 2 3.58 6.81 0.77 40.24
## 3 12.88 3.79 3.31 35.82
## 4 11.01 3.28 2.96 33.00
## 5 8.89 10.22 1.00 31.37
## 6 2.26 4.22 0.58 30.26
str(data.vg.raw)
## 'data.frame': 16598 obs. of 11 variables:
## $ Rank : int 1 2 3 4 5 6 7 8 9 10 ...
## $ Name : chr "Wii Sports" "Super Mario Bros." "Mario Kart Wii" "Wii Sports Resort" ...
## $ Platform : chr "Wii" "NES" "Wii" "Wii" ...
## $ Year : chr "2006" "1985" "2008" "2009" ...
## $ Genre : chr "Sports" "Platform" "Racing" "Sports" ...
## $ Publisher : chr "Nintendo" "Nintendo" "Nintendo" "Nintendo" ...
## $ NA_Sales : num 41.5 29.1 15.8 15.8 11.3 ...
## $ EU_Sales : num 29.02 3.58 12.88 11.01 8.89 ...
## $ JP_Sales : num 3.77 6.81 3.79 3.28 10.22 ...
## $ Other_Sales : num 8.46 0.77 3.31 2.96 1 0.58 2.9 2.85 2.26 0.47 ...
## $ Global_Sales: num 82.7 40.2 35.8 33 31.4 ...
summary(data.vg.raw)
## Rank Name Platform Year
## Min. : 1 Length:16598 Length:16598 Length:16598
## 1st Qu.: 4151 Class :character Class :character Class :character
## Median : 8300 Mode :character Mode :character Mode :character
## Mean : 8301
## 3rd Qu.:12450
## Max. :16600
##
## Genre Publisher NA_Sales EU_Sales
## Length:16598 Length:16598 Min. : 0.0000 Min. : 0.0000
## Class :character Class :character 1st Qu.: 0.0000 1st Qu.: 0.0000
## Mode :character Mode :character Median : 0.0800 Median : 0.0200
## Mean : 0.2651 Mean : 0.1469
## 3rd Qu.: 0.2400 3rd Qu.: 0.1100
## Max. :41.4900 Max. :29.0200
## NA's :26 NA's :26
## JP_Sales Other_Sales Global_Sales
## Min. : 0.00000 Min. : 0.00000 Min. : 0.0100
## 1st Qu.: 0.00000 1st Qu.: 0.00000 1st Qu.: 0.0600
## Median : 0.00000 Median : 0.01000 Median : 0.1700
## Mean : 0.07784 Mean : 0.04813 Mean : 0.5382
## 3rd Qu.: 0.04000 3rd Qu.: 0.04000 3rd Qu.: 0.4800
## Max. :10.22000 Max. :10.57000 Max. :82.7400
## NA's :26 NA's :26 NA's :26
data.vg <- data.vg.raw
data.vg$Platform <- factor(data.vg$Platform)
data.vg$Year <- as.numeric(data.vg$Year)
## Warning: NAs introduced by coercion
summary(data.vg)
## Rank Name Platform Year
## Min. : 1 Length:16598 DS :2163 Min. :1980
## 1st Qu.: 4151 Class :character PS2 :2160 1st Qu.:2003
## Median : 8300 Mode :character Wii :1325 Median :2007
## Mean : 8301 PS3 :1323 Mean :2006
## 3rd Qu.:12450 X360 :1259 3rd Qu.:2010
## Max. :16600 PSP :1209 Max. :2020
## (Other):7159 NA's :297
## Genre Publisher NA_Sales EU_Sales
## Length:16598 Length:16598 Min. : 0.0000 Min. : 0.0000
## Class :character Class :character 1st Qu.: 0.0000 1st Qu.: 0.0000
## Mode :character Mode :character Median : 0.0800 Median : 0.0200
## Mean : 0.2651 Mean : 0.1469
## 3rd Qu.: 0.2400 3rd Qu.: 0.1100
## Max. :41.4900 Max. :29.0200
## NA's :26 NA's :26
## JP_Sales Other_Sales Global_Sales
## Min. : 0.00000 Min. : 0.00000 Min. : 0.0100
## 1st Qu.: 0.00000 1st Qu.: 0.00000 1st Qu.: 0.0600
## Median : 0.00000 Median : 0.01000 Median : 0.1700
## Mean : 0.07784 Mean : 0.04813 Mean : 0.5382
## 3rd Qu.: 0.04000 3rd Qu.: 0.04000 3rd Qu.: 0.4800
## Max. :10.22000 Max. :10.57000 Max. :82.7400
## NA's :26 NA's :26 NA's :26
str(data.vg.raw)
## 'data.frame': 16598 obs. of 11 variables:
## $ Rank : int 1 2 3 4 5 6 7 8 9 10 ...
## $ Name : chr "Wii Sports" "Super Mario Bros." "Mario Kart Wii" "Wii Sports Resort" ...
## $ Platform : chr "Wii" "NES" "Wii" "Wii" ...
## $ Year : chr "2006" "1985" "2008" "2009" ...
## $ Genre : chr "Sports" "Platform" "Racing" "Sports" ...
## $ Publisher : chr "Nintendo" "Nintendo" "Nintendo" "Nintendo" ...
## $ NA_Sales : num 41.5 29.1 15.8 15.8 11.3 ...
## $ EU_Sales : num 29.02 3.58 12.88 11.01 8.89 ...
## $ JP_Sales : num 3.77 6.81 3.79 3.28 10.22 ...
## $ Other_Sales : num 8.46 0.77 3.31 2.96 1 0.58 2.9 2.85 2.26 0.47 ...
## $ Global_Sales: num 82.7 40.2 35.8 33 31.4 ...
unique(data.vg.raw$Year)
## [1] "2006" "1985" "2008" "2009" "1996" "1989" "1984" "2005" "1999" "2007"
## [11] "2010" "2013" "2004" "1990" "1988" "2002" "2001" "2011" "1998" "2015"
## [21] "2012" "2014" "1992" "1997" "1993" "1994" "1982" "2003" "1986" "2000"
## [31] "N/A" "1995" "2016" "1991" "1981" "1987" "1980" "1983" "2020" ""
## [41] "2017"
filter(data.vg.raw, Year=="N/A")
## Rank Name
## 1 180 Madden NFL 2004
## 2 378 FIFA Soccer 2004
## 3 432 LEGO Batman: The Videogame
## 4 471 wwe Smackdown vs. Raw 2006
## 5 608 Space Invaders
## 6 625 Rock Band
## 7 650 Frogger's Adventures: Temple of the Frog
## 8 653 LEGO Indiana Jones: The Original Adventures
## 9 713 Call of Duty 3
## 10 784 Rock Band
## 11 1128 Call of Duty: Black Ops
## 12 1135 Rock Band
## 13 1305 Triple Play 99
## 14 1435 LEGO Harry Potter: Years 5-7
## 15 1500 LEGO Batman: The Videogame
## 16 1515 Adventure
## 17 1587 Combat
## 18 1651 NASCAR Thunder 2003
## 19 1699 Hitman 2: Silent Assassin
## 20 1839 Rock Band
## 21 1992 Legacy of Kain: Soul Reaver
## 22 2021 Donkey Kong Land III
## 23 2088 LEGO Harry Potter: Years 5-7
## 24 2115 Air-Sea Battle
## 25 2116 Suikoden III
## 26 2136 Yakuza 4
## 27 2147 LEGO Harry Potter: Years 5-7
## 28 2175 Wheel of Fortune
## 29 2288 Namco Museum
## 30 2297 Rhythm Heaven
## 31 2417 The Lord of the Rings: War in the North
## 32 2424 The Lord of the Rings: War in the North
## 33 2486 Madden NFL 07
## 34 2499 MLB SlugFest 20-03
## 35 2530 Shaun White Snowboarding
## 36 2588 PES 2009: Pro Evolution Soccer
## 37 2778 Madden NFL 11
## 38 2788 WarioWare: Twisted!
## 39 2840 LEGO Harry Potter: Years 5-7
## 40 2949 Test Drive Unlimited 2
## 41 3051 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 42 3143 Test Drive Unlimited 2
## 43 3196 Monster Hunter 2
## 44 3219 Advance Wars: Days of Ruin
## 45 3240 Metal Gear Solid 2: Substance
## 46 3348 The Golden Compass
## 47 3423 Madden NFL 06
## 48 3470 NASCAR: Dirt to Daytona
## 49 3503 Madden NFL 2002
## 50 3717 Def Jam: Fight for NY
## 51 3755 NBA Street Vol. 2
## 52 3882 Fishing Derby
## 53 3954 Wet
## 54 4147 Sonic the Hedgehog
## 55 4153 Karate
## 56 4201 Tiger Woods PGA Tour 07
## 57 4234 Circus Atari
## 58 4332 The Chronicles of Riddick: Escape from Butcher Bay
## 59 4380 Maze Craze: A Game of Cops 'n Robbers
## 60 4382 Silent Hill: Homecoming
## 61 4471 Super Breakout
## 62 4474 Robert Ludlum's The Bourne Conspiracy
## 63 4538 NHL Slapshot
## 64 4685 TERA
## 65 4793 LEGO Harry Potter: Years 5-7
## 66 4799 NFL GameDay 2003
## 67 4860 Silent Hill: Homecoming
## 68 4867 Harvest Moon: Save the Homeland
## 69 4936 Robert Ludlum's The Bourne Conspiracy
## 70 5063 Hangman
## 71 5080 The Golden Compass
## 72 5164 NBA Live 2003
## 73 5173 Bejeweled 3
## 74 5197 Cubix Robots for Everyone: Clash 'n' Bash
## 75 5198 Tropico 4
## 76 5242 Tomb Raider (2013)
## 77 5304 Dragon Ball Z: Budokai Tenkaichi 2 (JP sales)
## 78 5510 Custom Robo
## 79 5620 Final Fantasy XI
## 80 5627 Singularity
## 81 5659 Dragster
## 82 5671 All-Star Baseball 2005
## 83 5771 Star Wars Jedi Knight II: Jedi Outcast
## 84 5800 Slot Machine
## 85 5840 Shrek the Third
## 86 5863 The Dukes of Hazzard II: Daisy Dukes It Out
## 87 5872 Disgaea 3: Absence of Detention
## 88 5903 NBA Live 2003
## 89 5915 Harvest Moon: The Tale of Two Towns
## 90 6044 Nicktoons: Battle for Volcano Island
## 91 6127 Haven: Call of the King
## 92 6155 Unreal Championship 2: The Liandri Conflict
## 93 6197 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 94 6213 Pac-Man Fever
## 95 6274 The Legend of Zelda: The Minish Cap(weekly JP sales)
## 96 6285 Indy 500
## 97 6316 Gun
## 98 6318 Flag Capture
## 99 6321 LEGO Harry Potter: Years 5-7
## 100 6403 Rock Revolution
## 101 6498 Jonah Lomu Rugby Challenge
## 102 6649 College Hoops 2K6
## 103 6779 Mega Man X Collection
## 104 6808 BioShock 2
## 105 6834 Singularity
## 106 6921 Danganronpa: Trigger Happy Havoc
## 107 6928 DanceDanceRevolution II
## 108 6939 Tony Hawk's Downhill Jam
## 109 6968 Big Beach Sports 2
## 110 6970 Jet X20
## 111 7037 Tribes: Aerial Assault
## 112 7183 Move Fitness
## 113 7215 LEGO Harry Potter: Years 5-7
## 114 7353 Yu Yu Hakusho: Dark Tournament
## 115 7371 Ghostbusters II
## 116 7372 Breakaway IV
## 117 7384 Robotech: Battlecry
## 118 7408 Valkyria Chronicles III: Unrecorded Chronicles
## 119 7425 WRC: FIA World Rally Championship
## 120 7617 Famista 64
## 121 7650 Dead Space 3
## 122 7722 Test Drive Unlimited 2
## 123 7910 Pet Zombies
## 124 7948 Star Trek: Legacy
## 125 8046 Trauma Team
## 126 8088 Backbreaker
## 127 8159 Twisted Metal: Small Brawl
## 128 8169 Otomedius Excellent
## 129 8206 NBA Starting Five
## 130 8225 Teen Titans
## 131 8315 Backbreaker
## 132 8336 James Cameron's Dark Angel
## 133 8378 Sword of the Samurai
## 134 8441 Splatterhouse
## 135 8555 Alone in the Dark: The New Nightmare
## 136 8622 Vegas Party
## 137 8709 Jurassic Park: The Game
## 138 8762 Home Run
## 139 8901 eJay Clubworld
## 140 8931 All-Star Baseball 2005
## 141 9083 Our House Party!
## 142 9153 WCW Backstage Assault
## 143 9173 Bejeweled 3
## 144 9253 Bejeweled 3
## 145 9312 Disney's Cinderella: Magical Dreams
## 146 9394 Transworld Surf
## 147 9477 Street Fighter IV
## 148 9524 Nintendo Puzzle Collection
## 149 9669 Charm Girls Club: My Fashion Mall
## 150 9694 WRC: FIA World Rally Championship
## 151 9744 Record of Agarest War Zero
## 152 9751 Super Robot Wars OG Saga: Masou Kishin II - Revelation of Evil God
## 153 9771 Saru! Get You! Million Monkeys
## 154 9817 Street Hoops
## 155 9822 Godzilla: Destroy All Monsters Melee
## 156 9823 The Daring Game for Girls
## 157 9842 Rocksmith
## 158 9870 Major League Baseball 2K6
## 159 9983 Happy Feet Two
## 160 10047 Star Trek: Conquest
## 161 10274 GiFTPiA
## 162 10364 Disney's Chicken Little: Ace In Action
## 163 10467 Happy Feet Two
## 164 10496 Atsumare! Power Pro Kun no DS Koushien
## 165 10561 My Healthy Cooking Coach
## 166 10692 Happy Feet Two
## 167 10760 Luminous Arc 2 (JP sales)
## 168 10794 The Daring Game for Girls
## 169 10831 Egg Monster Hero
## 170 10981 Samurai Shodown Anthology
## 171 10999 Demon Chaos
## 172 11078 Action Man-Operation Extreme
## 173 11110 Super Puzzle Fighter II
## 174 11144 Happy Feet Two
## 175 11325 Charm Girls Club: My Fashion Show
## 176 11333 Get Fit with Mel B
## 177 11378 Face Racers: Photo Finish
## 178 11411 Zero: Tsukihami no Kamen
## 179 11457 The Hidden
## 180 11545 Rock Revolution
## 181 11575 Dead Island: Riptide
## 182 11757 Mega Man Battle Network: Operation Shooting Star
## 183 11800 Smashing Drive
## 184 11923 Dream Trigger 3D
## 185 11940 Tornado
## 186 11978 McFarlane's Evil Prophecy
## 187 12017 Drake of the 99 Dragons
## 188 12030 Port Royale 3
## 189 12129 Build-A-Bear Workshop: Friendship Valley
## 190 12131 Alex Rider: Stormbreaker
## 191 12137 Yoostar on MTV
## 192 12186 Rayman Arena
## 193 12214 National Geographic Challenge!
## 194 12240 Port Royale 3
## 195 12250 Jewel Link Chronicles: Mountains of Madness
## 196 12489 Chou Soujuu Mecha MG
## 197 12519 Prinny: Can I Really Be The Hero? (US sales)
## 198 12533 Combat Elite: WWII Paratroopers
## 199 12628 Captain America: Super Soldier
## 200 12668 Flip's Twisted World
## 201 12711 Mobile Ops: The One Year War
## 202 12751 Tom Clancy's Rainbow Six: Critical Hour
## 203 12809 GRID
## 204 12827 Captain America: Super Soldier
## 205 12881 Reader Rabbit 2nd Grade
## 206 12917 Mountain Bike Adrenaline
## 207 12924 Tour de France 2011
## 208 12931 Drill Dozer
## 209 13057 Battle vs. Chess
## 210 13158 The History Channel: Great Battles - Medieval
## 211 13280 Monster Hunter Frontier Online
## 212 13479 RollerCoaster Tycoon
## 213 13667 GRID
## 214 13674 B.L.U.E.: Legend of Water
## 215 13677 Luxor: Pharaoh's Challenge
## 216 13735 NHL Hitz Pro
## 217 13872 Sega Rally 2006
## 218 13964 World of Tanks
## 219 14048 Swords
## 220 14057 Half-Minute Hero 2
## 221 14058 Clockwork Empires
## 222 14089 Housekeeping
## 223 14100 Major League Baseball 2K8
## 224 14162 Sabre Wulf
## 225 14276 Beyond the Labyrinth
## 226 14299 Bikkuriman Daijiten
## 227 14315 Majesty 2: The Fantasy Kingdom Sim
## 228 14380 Fullmetal Alchemist: Brotherhood
## 229 14476 Combat Elite: WWII Paratroopers
## 230 14525 Samurai Spirits: Tenkaichi Kenkakuden
## 231 14586 Battle vs. Chess
## 232 14679 Tom and Jerry in War of the Whiskers
## 233 14699 Super Duper Sumos
## 234 14852 Legacy of Ys: Books I & II
## 235 14858 The King of Fighters: Maximum Impact - Maniax
## 236 14879 Combat Wings: The Great Battles of WWII
## 237 14928 Tube Slider
## 238 14945 Umineko no Naku Koro ni San: Shinjitsu to Gensou no Yasoukyoku
## 239 15000 Wii de Asobu: Metroid Prime
## 240 15001 Payout Poker & Casino
## 241 15002 Wii de Asobu: Metroid Prime
## 242 15200 Saint
## 243 15211 Steal Princess
## 244 15264 Mario Tennis
## 245 15319 Runaway: A Twist of Fate
## 246 15479 Yu-Gi-Oh! 5D's Wheelie Breakers (JP sales)
## 247 15582 Cabela's Alaskan Adventure
## 248 15609 Writing and Speaking Beautiful Japanese DS
## 249 15655 Virtua Quest
## 250 15700 Shonen Jump's Yu-Gi-Oh! GX Card Almanac
## 251 15720 Without Warning
## 252 15742 Football Manager 2007
## 253 15814 Ferrari: The Race Experience
## 254 15868 PDC World Championship Darts 2008
## 255 15879 Dinotopia: The Sunstone Odyssey
## 256 15881 Dance! It's Your Stage
## 257 15903 Jet Impulse
## 258 15918 Dream Dancer
## 259 16060 PDC World Championship Darts 2008
## 260 16061 WRC: FIA World Rally Championship
## 261 16068 Aquaman: Battle for Atlantis
## 262 16194 Homeworld Remastered Collection
## 263 16197 Shorts
## 264 16201 AKB1/48: Idol to Guam de Koishitara...
## 265 16232 Brothers in Arms: Furious 4
## 266 16249 Agarest Senki: Re-appearance
## 267 16310 Freaky Flyers
## 268 16330 Inversion
## 269 16369 Hakuouki: Shinsengumi Kitan
## 270 16430 Virtua Quest
## 271 16496 The Smurfs
## Platform Year Genre Publisher NA_Sales
## 1 PS2 N/A Sports Electronic Arts 4.26
## 2 PS2 N/A Sports Electronic Arts 0.59
## 3 Wii N/A Action Warner Bros. Interactive Entertainment 1.86
## 4 PS2 N/A Fighting N/A 1.57
## 5 2600 N/A Shooter Atari 2.36
## 6 X360 N/A Misc Electronic Arts 1.93
## 7 GBA N/A Adventure Konami Digital Entertainment 2.15
## 8 Wii N/A Action LucasArts 1.54
## 9 Wii N/A Shooter Activision 1.19
## 10 Wii N/A Misc MTV Games 1.35
## 11 PC N/A Shooter Activision 0.58
## 12 PS3 N/A Misc Electronic Arts 0.99
## 13 PS N/A Sports N/A 0.81
## 14 Wii N/A Action Warner Bros. Interactive Entertainment 0.76
## 15 PSP N/A Action Warner Bros. Interactive Entertainment 0.57
## 16 2600 N/A Adventure Atari 1.21
## 17 2600 N/A Action Atari 1.17
## 18 PS2 N/A Racing Unknown 0.60
## 19 XB N/A Action Eidos Interactive 0.76
## 20 PS2 N/A Misc Electronic Arts 0.71
## 21 PS N/A Action Eidos Interactive 0.58
## 22 GB N/A Platform Nintendo 0.68
## 23 X360 N/A Action Warner Bros. Interactive Entertainment 0.51
## 24 2600 N/A Shooter Atari 0.91
## 25 PS2 N/A Role-Playing Unknown 0.29
## 26 PS3 N/A Action Sega 0.15
## 27 PS3 N/A Action Warner Bros. Interactive Entertainment 0.36
## 28 PS2 N/A Misc Unknown 0.47
## 29 XB N/A Misc Unknown 0.77
## 30 Wii N/A Misc Unknown 0.13
## 31 PS3 N/A Action Warner Bros. Interactive Entertainment 0.25
## 32 X360 N/A Action Warner Bros. Interactive Entertainment 0.52
## 33 PSP N/A Sports Unknown 0.77
## 34 PS2 N/A Sports Unknown 0.41
## 35 X360 N/A Sports Ubisoft 0.48
## 36 PSP N/A Sports Konami Digital Entertainment 0.04
## 37 Wii N/A Sports Unknown 0.70
## 38 GBA N/A Puzzle Unknown 0.16
## 39 DS N/A Action Warner Bros. Interactive Entertainment 0.35
## 40 X360 N/A Racing Atari 0.30
## 41 GBA N/A Action Disney Interactive Studios 0.48
## 42 PS3 N/A Racing Atari 0.16
## 43 PS2 N/A Role-Playing Capcom 0.00
## 44 DS N/A Strategy Nintendo 0.44
## 45 XB N/A Action Konami Digital Entertainment 0.38
## 46 Wii N/A Action Sega 0.26
## 47 X360 N/A Sports Electronic Arts 0.54
## 48 PS2 N/A Racing Unknown 0.28
## 49 XB N/A Sports Unknown 0.53
## 50 XB N/A Fighting Electronic Arts 0.43
## 51 GC N/A Sports Electronic Arts 0.41
## 52 2600 N/A Sports Activision 0.48
## 53 X360 N/A Shooter Bethesda Softworks 0.23
## 54 PS3 N/A Platform N/A 0.00
## 55 2600 N/A Fighting Ultravision 0.44
## 56 Wii N/A Sports Electronic Arts 0.43
## 57 2600 N/A Action Atari 0.43
## 58 XB N/A Shooter Vivendi Games 0.32
## 59 2600 N/A Action Atari 0.42
## 60 X360 N/A Action Konami Digital Entertainment 0.25
## 61 2600 N/A Puzzle Atari 0.41
## 62 X360 N/A Action Vivendi Games 0.26
## 63 Wii N/A Sports Unknown 0.40
## 64 PC N/A Role-Playing Unknown 0.24
## 65 3DS N/A Action Warner Bros. Interactive Entertainment 0.18
## 66 PS2 N/A Sports Unknown 0.20
## 67 PS3 N/A Action Konami Digital Entertainment 0.18
## 68 PS2 N/A Simulation Unknown 0.19
## 69 PS3 N/A Action Vivendi Games 0.18
## 70 2600 N/A Puzzle Atari 0.35
## 71 PSP N/A Action Sega 0.11
## 72 XB N/A Sports Electronic Arts 0.31
## 73 DS N/A Puzzle Unknown 0.32
## 74 GBA N/A Action Unknown 0.26
## 75 X360 N/A Strategy Kalypso Media 0.20
## 76 PC N/A Action Square Enix 0.06
## 77 Wii N/A Action N/A 0.15
## 78 N64 N/A Role-Playing Nintendo 0.00
## 79 PS2 N/A Role-Playing Unknown 0.08
## 80 X360 N/A Shooter Unknown 0.24
## 81 2600 N/A Racing Activision 0.30
## 82 PS2 N/A Sports Unknown 0.16
## 83 XB N/A Shooter Activision 0.23
## 84 2600 N/A Action Atari 0.29
## 85 DS N/A Action Activision 0.26
## 86 PS N/A Racing Unknown 0.17
## 87 PSV N/A Role-Playing Nippon Ichi Software 0.13
## 88 GC N/A Sports Electronic Arts 0.23
## 89 3DS N/A Simulation Unknown 0.28
## 90 GC N/A Action Unknown 0.22
## 91 PS2 N/A Platform Midway Games 0.14
## 92 XB N/A Shooter Midway Games 0.22
## 93 GC N/A Action Disney Interactive Studios 0.22
## 94 GC N/A Misc Unknown 0.21
## 95 GBA N/A Action N/A 0.00
## 96 2600 N/A Racing Atari 0.26
## 97 X360 N/A Shooter Activision 0.24
## 98 2600 N/A Action Atari 0.25
## 99 PSP N/A Action Warner Bros. Interactive Entertainment 0.10
## 100 PS3 N/A Misc Unknown 0.25
## 101 PS3 N/A Sports Home Entertainment Suppliers 0.00
## 102 PS2 N/A Sports Unknown 0.12
## 103 PS2 N/A Misc Unknown 0.12
## 104 PC N/A Shooter Take-Two Interactive 0.02
## 105 PS3 N/A Shooter Unknown 0.17
## 106 PSP N/A Misc Unknown 0.00
## 107 Wii N/A Misc Konami Digital Entertainment 0.22
## 108 Wii N/A Sports Activision 0.21
## 109 Wii N/A Sports THQ 0.09
## 110 PS2 N/A Racing Unknown 0.11
## 111 PS2 N/A Shooter Unknown 0.11
## 112 PS3 N/A Sports Sony Computer Entertainment 0.00
## 113 PC N/A Action Warner Bros. Interactive Entertainment 0.05
## 114 PS2 N/A Fighting N/A 0.10
## 115 2600 N/A Action Activision 0.20
## 116 2600 N/A Puzzle Sears 0.20
## 117 XB N/A Shooter Unknown 0.16
## 118 PSP N/A Strategy Sega 0.00
## 119 PS3 N/A Racing Black Bean Games 0.00
## 120 N64 N/A Sports Namco Bandai Games 0.00
## 121 PC N/A Action Electronic Arts 0.02
## 122 PC N/A Racing Atari 0.05
## 123 3DS N/A Simulation Majesco Entertainment 0.18
## 124 X360 N/A Simulation Ubisoft 0.14
## 125 Wii N/A Simulation Unknown 0.15
## 126 X360 N/A Sports Unknown 0.17
## 127 PS N/A Action Unknown 0.10
## 128 X360 N/A Shooter Unknown 0.13
## 129 PS2 N/A Sports Unknown 0.09
## 130 GBA N/A Action Unknown 0.13
## 131 PS3 N/A Sports Unknown 0.16
## 132 PS2 N/A Action Universal Interactive 0.08
## 133 PS2 N/A Fighting Ubisoft 0.00
## 134 PS3 N/A Action Namco Bandai Games 0.13
## 135 PS N/A Adventure Infogrames 0.09
## 136 Wii N/A Misc Unknown 0.15
## 137 X360 N/A Action Unknown 0.15
## 138 2600 N/A Sports Atari 0.14
## 139 PS2 N/A Misc Empire Interactive 0.07
## 140 XB N/A Sports Unknown 0.11
## 141 Wii N/A Simulation Unknown 0.13
## 142 N64 N/A Action Unknown 0.11
## 143 PS3 N/A Puzzle Unknown 0.13
## 144 X360 N/A Puzzle Unknown 0.13
## 145 GBA N/A Platform Disney Interactive Studios 0.10
## 146 XB N/A Sports Atari 0.10
## 147 PC N/A Fighting Capcom 0.07
## 148 GC N/A Puzzle Unknown 0.00
## 149 DS N/A Simulation Unknown 0.12
## 150 X360 N/A Racing Black Bean Games 0.00
## 151 PS3 N/A Strategy Ghostlight 0.09
## 152 PSP N/A Strategy N/A 0.00
## 153 PS2 N/A Platform Unknown 0.00
## 154 GC N/A Sports Unknown 0.09
## 155 XB N/A Fighting Unknown 0.09
## 156 DS N/A Adventure Unknown 0.11
## 157 PC N/A Misc Unknown 0.06
## 158 PSP N/A Sports Unknown 0.11
## 159 DS N/A Action Warner Bros. Interactive Entertainment 0.09
## 160 PS2 N/A Strategy Bethesda Softworks 0.06
## 161 GC N/A Role-Playing Unknown 0.00
## 162 Wii N/A Shooter Disney Interactive Studios 0.10
## 163 PS3 N/A Action Warner Bros. Interactive Entertainment 0.09
## 164 DS N/A Sports N/A 0.00
## 165 DS N/A Simulation Unknown 0.09
## 166 X360 N/A Action Warner Bros. Interactive Entertainment 0.08
## 167 DS N/A Role-Playing Unknown 0.00
## 168 Wii N/A Adventure Unknown 0.09
## 169 DS N/A Role-Playing Square Enix 0.00
## 170 PSP N/A Fighting Ignition Entertainment 0.08
## 171 PS2 N/A Action Konami Digital Entertainment 0.00
## 172 PS N/A Action N/A 0.05
## 173 GBA N/A Puzzle Capcom 0.06
## 174 Wii N/A Action Warner Bros. Interactive Entertainment 0.07
## 175 DS N/A Simulation Unknown 0.08
## 176 X360 N/A Sports Black Bean Games 0.00
## 177 3DS N/A Racing Majesco Entertainment 0.08
## 178 Wii N/A Action Nintendo 0.00
## 179 3DS N/A Adventure Unknown 0.08
## 180 Wii N/A Misc Unknown 0.07
## 181 PC N/A Action Deep Silver 0.00
## 182 DS N/A Role-Playing Capcom 0.00
## 183 GC N/A Racing Unknown 0.06
## 184 3DS N/A Shooter D3Publisher 0.04
## 185 DS N/A Action Ignition Entertainment 0.07
## 186 PS2 N/A Action Konami Digital Entertainment 0.03
## 187 XB N/A Shooter Unknown 0.05
## 188 PS3 N/A Simulation Kalypso Media 0.06
## 189 Wii N/A Misc Unknown 0.06
## 190 DS N/A Action THQ 0.06
## 191 X360 N/A Misc Unknown 0.06
## 192 XB N/A Racing Unknown 0.05
## 193 X360 N/A Misc Unknown 0.06
## 194 X360 N/A Simulation Kalypso Media 0.06
## 195 DS N/A Puzzle Avanquest 0.00
## 196 DS N/A Simulation N/A 0.00
## 197 PSP N/A Action N/A 0.06
## 198 PS2 N/A Shooter Unknown 0.03
## 199 Wii N/A Action Sega 0.05
## 200 Wii N/A Platform Unknown 0.05
## 201 X360 N/A Simulation Namco Bandai Games 0.00
## 202 XB N/A Shooter Unknown 0.04
## 203 DS N/A Racing Codemasters 0.04
## 204 DS N/A Action Sega 0.05
## 205 Wii N/A Misc Unknown 0.05
## 206 PS2 N/A Sports Unknown 0.03
## 207 X360 N/A Racing Focus Home Interactive 0.00
## 208 GBA N/A Platform Unknown 0.04
## 209 PS3 N/A Misc TopWare Interactive 0.00
## 210 PS3 N/A Strategy Slitherine Software 0.00
## 211 PS3 N/A Role-Playing N/A 0.00
## 212 PC N/A Strategy Microprose 0.02
## 213 PC N/A Racing Codemasters 0.00
## 214 PS N/A Adventure N/A 0.00
## 215 Wii N/A Puzzle Funsta 0.01
## 216 GC N/A Sports Unknown 0.03
## 217 PS2 N/A Racing Unknown 0.00
## 218 X360 N/A Shooter N/A 0.00
## 219 Wii N/A Fighting Unknown 0.03
## 220 PSP N/A Role-Playing Rising Star Games 0.00
## 221 PC N/A Strategy Unknown 0.00
## 222 DS N/A Action N/A 0.00
## 223 PSP N/A Sports Unknown 0.03
## 224 GBA N/A Platform THQ 0.02
## 225 3DS N/A Role-Playing Unknown 0.00
## 226 DS N/A Misc N/A 0.00
## 227 X360 N/A Simulation Unknown 0.03
## 228 PSP N/A Action Unknown 0.00
## 229 XB N/A Shooter Unknown 0.02
## 230 PS2 N/A Fighting Unknown 0.00
## 231 PC N/A Misc TopWare Interactive 0.00
## 232 XB N/A Fighting Unknown 0.02
## 233 GBA N/A Action Unknown 0.02
## 234 DS N/A Role-Playing Unknown 0.02
## 235 XB N/A Fighting Unknown 0.02
## 236 Wii N/A Simulation City Interactive 0.02
## 237 GC N/A Racing Unknown 0.02
## 238 PS3 N/A Adventure N/A 0.00
## 239 Wii N/A Shooter Nintendo 0.00
## 240 PSP N/A Misc Unknown 0.02
## 241 Wii N/A Shooter Nintendo 0.00
## 242 Wii N/A Shooter Unknown 0.02
## 243 DS N/A Platform Unknown 0.02
## 244 3DS N/A Sports N/A 0.00
## 245 DS N/A Adventure Focus Home Interactive 0.00
## 246 Wii N/A Racing Unknown 0.00
## 247 PS2 N/A Sports Unknown 0.01
## 248 DS N/A Misc Unknown 0.00
## 249 PS2 N/A Role-Playing Unknown 0.01
## 250 DS N/A Misc Konami Digital Entertainment 0.00
## 251 XB N/A Shooter Capcom 0.01
## 252 X360 N/A Sports Sega 0.00
## 253 Wii N/A Racing System 3 Arcade Software 0.00
## 254 DS N/A Sports Unknown 0.01
## 255 GC N/A Action Unknown 0.01
## 256 Wii N/A Misc DTP Entertainment 0.00
## 257 DS N/A Simulation Nintendo 0.00
## 258 DS N/A Misc N/A 0.01
## 259 PSP N/A Sports Oxygen Interactive 0.01
## 260 PC N/A Racing Black Bean Games 0.00
## 261 XB N/A Action Unknown 0.01
## 262 PC N/A Strategy N/A 0.00
## 263 DS N/A Platform Unknown 0.01
## 264 X360 N/A Misc N/A 0.00
## 265 X360 N/A Shooter N/A 0.01
## 266 PS3 N/A Role-Playing Idea Factory 0.00
## 267 GC N/A Racing Unknown 0.01
## 268 PC N/A Shooter Namco Bandai Games 0.01
## 269 PS3 N/A Adventure Unknown 0.01
## 270 GC N/A Role-Playing Unknown 0.01
## 271 3DS N/A Action Unknown 0.00
## EU_Sales JP_Sales Other_Sales Global_Sales
## 1 0.26 0.01 0.71 5.23
## 2 2.36 0.04 0.51 3.49
## 3 1.02 0.00 0.29 3.17
## 4 1.02 0.00 0.41 3.00
## 5 0.14 0.00 0.03 2.53
## 6 0.34 0.00 0.21 2.48
## 7 0.18 0.00 0.07 2.39
## 8 0.63 0.00 0.22 2.39
## 9 0.84 0.00 0.23 2.26
## 10 0.56 0.00 0.20 2.11
## 11 0.81 0.00 0.24 1.63
## 12 0.41 0.00 0.22 1.62
## 13 0.55 0.00 0.10 1.46
## 14 0.47 0.00 0.13 1.36
## 15 0.46 0.00 0.28 1.32
## 16 0.08 0.00 0.01 1.30
## 17 0.07 0.00 0.01 1.25
## 18 0.46 0.00 0.16 1.22
## 19 0.38 0.00 0.05 1.19
## 20 0.06 0.00 0.35 1.11
## 21 0.40 0.00 0.07 1.04
## 22 0.31 0.00 0.04 1.03
## 23 0.39 0.00 0.09 0.99
## 24 0.06 0.00 0.01 0.98
## 25 0.23 0.38 0.08 0.98
## 26 0.14 0.63 0.05 0.97
## 27 0.45 0.00 0.16 0.97
## 28 0.36 0.00 0.12 0.95
## 29 0.11 0.00 0.04 0.91
## 30 0.00 0.77 0.01 0.90
## 31 0.45 0.01 0.15 0.86
## 32 0.26 0.00 0.08 0.86
## 33 0.03 0.00 0.04 0.83
## 34 0.32 0.00 0.11 0.83
## 35 0.26 0.00 0.08 0.82
## 36 0.33 0.26 0.17 0.80
## 37 0.00 0.00 0.05 0.74
## 38 0.06 0.50 0.02 0.74
## 39 0.30 0.00 0.07 0.72
## 40 0.32 0.00 0.07 0.69
## 41 0.18 0.00 0.01 0.67
## 42 0.35 0.01 0.12 0.64
## 43 0.00 0.63 0.00 0.63
## 44 0.13 0.00 0.06 0.63
## 45 0.22 0.00 0.03 0.62
## 46 0.28 0.00 0.07 0.60
## 47 0.00 0.01 0.03 0.59
## 48 0.22 0.00 0.07 0.58
## 49 0.02 0.00 0.03 0.58
## 50 0.10 0.00 0.02 0.54
## 51 0.11 0.00 0.01 0.54
## 52 0.03 0.00 0.01 0.51
## 53 0.21 0.01 0.05 0.50
## 54 0.48 0.00 0.00 0.48
## 55 0.03 0.00 0.00 0.47
## 56 0.00 0.00 0.04 0.47
## 57 0.03 0.00 0.00 0.46
## 58 0.11 0.00 0.02 0.45
## 59 0.02 0.00 0.00 0.45
## 60 0.16 0.00 0.04 0.45
## 61 0.03 0.00 0.00 0.44
## 62 0.14 0.00 0.04 0.44
## 63 0.00 0.00 0.02 0.43
## 64 0.12 0.00 0.05 0.41
## 65 0.19 0.00 0.04 0.40
## 66 0.15 0.00 0.05 0.40
## 67 0.15 0.00 0.06 0.40
## 68 0.15 0.00 0.05 0.40
## 69 0.14 0.00 0.06 0.39
## 70 0.02 0.00 0.00 0.38
## 71 0.16 0.00 0.10 0.38
## 72 0.04 0.00 0.01 0.36
## 73 0.02 0.00 0.03 0.36
## 74 0.10 0.00 0.01 0.36
## 75 0.13 0.00 0.03 0.36
## 76 0.25 0.00 0.05 0.36
## 77 0.05 0.14 0.01 0.35
## 78 0.00 0.29 0.04 0.33
## 79 0.06 0.15 0.02 0.32
## 80 0.05 0.00 0.02 0.32
## 81 0.02 0.00 0.00 0.32
## 82 0.12 0.00 0.04 0.32
## 83 0.07 0.00 0.01 0.31
## 84 0.02 0.00 0.00 0.31
## 85 0.02 0.00 0.02 0.30
## 86 0.11 0.00 0.02 0.30
## 87 0.06 0.07 0.04 0.30
## 88 0.06 0.00 0.01 0.30
## 89 0.00 0.00 0.02 0.30
## 90 0.06 0.00 0.01 0.29
## 91 0.11 0.00 0.04 0.28
## 92 0.05 0.00 0.01 0.28
## 93 0.06 0.00 0.01 0.28
## 94 0.06 0.00 0.01 0.28
## 95 0.00 0.27 0.01 0.27
## 96 0.01 0.00 0.00 0.27
## 97 0.01 0.00 0.02 0.27
## 98 0.02 0.00 0.00 0.27
## 99 0.11 0.00 0.06 0.27
## 100 0.00 0.00 0.02 0.27
## 101 0.20 0.00 0.06 0.26
## 102 0.10 0.00 0.03 0.25
## 103 0.09 0.00 0.03 0.24
## 104 0.19 0.00 0.04 0.24
## 105 0.04 0.01 0.03 0.24
## 106 0.00 0.24 0.00 0.24
## 107 0.00 0.00 0.02 0.24
## 108 0.00 0.00 0.02 0.24
## 109 0.12 0.00 0.03 0.23
## 110 0.09 0.00 0.03 0.23
## 111 0.09 0.00 0.03 0.23
## 112 0.17 0.00 0.05 0.22
## 113 0.14 0.00 0.03 0.22
## 114 0.08 0.00 0.03 0.21
## 115 0.01 0.00 0.00 0.21
## 116 0.01 0.00 0.00 0.21
## 117 0.05 0.00 0.01 0.21
## 118 0.00 0.21 0.00 0.21
## 119 0.15 0.01 0.05 0.21
## 120 0.00 0.17 0.03 0.20
## 121 0.15 0.00 0.02 0.20
## 122 0.11 0.00 0.03 0.20
## 123 0.00 0.00 0.01 0.19
## 124 0.03 0.00 0.02 0.19
## 125 0.00 0.02 0.01 0.18
## 126 0.00 0.00 0.01 0.18
## 127 0.07 0.00 0.01 0.18
## 128 0.00 0.04 0.01 0.18
## 129 0.07 0.00 0.02 0.18
## 130 0.05 0.00 0.00 0.17
## 131 0.00 0.00 0.01 0.17
## 132 0.07 0.00 0.02 0.17
## 133 0.00 0.17 0.00 0.17
## 134 0.02 0.00 0.02 0.17
## 135 0.06 0.00 0.01 0.16
## 136 0.00 0.00 0.01 0.16
## 137 0.00 0.00 0.01 0.16
## 138 0.01 0.00 0.00 0.15
## 139 0.06 0.00 0.02 0.15
## 140 0.03 0.00 0.01 0.15
## 141 0.00 0.00 0.01 0.14
## 142 0.03 0.00 0.00 0.14
## 143 0.00 0.00 0.01 0.14
## 144 0.00 0.00 0.01 0.14
## 145 0.04 0.00 0.00 0.14
## 146 0.03 0.00 0.00 0.13
## 147 0.04 0.00 0.02 0.13
## 148 0.00 0.13 0.00 0.13
## 149 0.00 0.00 0.01 0.12
## 150 0.10 0.00 0.02 0.12
## 151 0.00 0.03 0.01 0.12
## 152 0.00 0.12 0.00 0.12
## 153 0.00 0.12 0.00 0.12
## 154 0.02 0.00 0.00 0.12
## 155 0.03 0.00 0.00 0.12
## 156 0.00 0.00 0.01 0.12
## 157 0.04 0.00 0.01 0.12
## 158 0.00 0.00 0.01 0.12
## 159 0.02 0.00 0.01 0.12
## 160 0.04 0.00 0.01 0.11
## 161 0.00 0.11 0.00 0.11
## 162 0.00 0.00 0.01 0.11
## 163 0.01 0.00 0.01 0.10
## 164 0.00 0.10 0.00 0.10
## 165 0.00 0.00 0.01 0.10
## 166 0.01 0.00 0.01 0.10
## 167 0.00 0.10 0.00 0.10
## 168 0.00 0.00 0.01 0.10
## 169 0.00 0.09 0.00 0.09
## 170 0.00 0.00 0.01 0.09
## 171 0.00 0.09 0.00 0.09
## 172 0.03 0.00 0.01 0.09
## 173 0.02 0.00 0.00 0.09
## 174 0.01 0.00 0.01 0.09
## 175 0.00 0.00 0.01 0.08
## 176 0.07 0.00 0.01 0.08
## 177 0.00 0.00 0.00 0.08
## 178 0.00 0.08 0.00 0.08
## 179 0.00 0.00 0.00 0.08
## 180 0.00 0.00 0.01 0.08
## 181 0.07 0.00 0.01 0.08
## 182 0.00 0.07 0.00 0.07
## 183 0.01 0.00 0.00 0.07
## 184 0.02 0.00 0.01 0.07
## 185 0.00 0.00 0.00 0.07
## 186 0.03 0.00 0.01 0.07
## 187 0.01 0.00 0.00 0.07
## 188 0.00 0.00 0.01 0.07
## 189 0.00 0.00 0.00 0.07
## 190 0.00 0.00 0.00 0.07
## 191 0.00 0.00 0.00 0.07
## 192 0.01 0.00 0.00 0.07
## 193 0.00 0.00 0.00 0.07
## 194 0.00 0.00 0.00 0.07
## 195 0.06 0.00 0.01 0.06
## 196 0.00 0.06 0.00 0.06
## 197 0.00 0.00 0.00 0.06
## 198 0.02 0.00 0.01 0.06
## 199 0.00 0.00 0.00 0.06
## 200 0.00 0.00 0.00 0.06
## 201 0.00 0.06 0.00 0.06
## 202 0.01 0.00 0.00 0.06
## 203 0.01 0.00 0.00 0.06
## 204 0.00 0.00 0.00 0.05
## 205 0.00 0.00 0.00 0.05
## 206 0.02 0.00 0.01 0.05
## 207 0.05 0.00 0.01 0.05
## 208 0.01 0.00 0.00 0.05
## 209 0.04 0.00 0.01 0.05
## 210 0.04 0.00 0.01 0.05
## 211 0.00 0.05 0.00 0.05
## 212 0.02 0.00 0.01 0.04
## 213 0.03 0.00 0.01 0.04
## 214 0.00 0.04 0.00 0.04
## 215 0.03 0.00 0.00 0.04
## 216 0.01 0.00 0.00 0.04
## 217 0.00 0.04 0.00 0.04
## 218 0.03 0.00 0.00 0.04
## 219 0.00 0.00 0.00 0.04
## 220 0.00 0.04 0.00 0.04
## 221 0.03 0.00 0.00 0.04
## 222 0.00 0.04 0.00 0.04
## 223 0.00 0.00 0.00 0.03
## 224 0.01 0.00 0.00 0.03
## 225 0.00 0.03 0.00 0.03
## 226 0.00 0.03 0.00 0.03
## 227 0.00 0.00 0.00 0.03
## 228 0.00 0.03 0.00 0.03
## 229 0.01 0.00 0.00 0.03
## 230 0.00 0.03 0.00 0.03
## 231 0.02 0.00 0.01 0.03
## 232 0.01 0.00 0.00 0.03
## 233 0.01 0.00 0.00 0.03
## 234 0.00 0.00 0.00 0.03
## 235 0.01 0.00 0.00 0.03
## 236 0.00 0.00 0.00 0.03
## 237 0.00 0.00 0.00 0.02
## 238 0.00 0.02 0.00 0.02
## 239 0.00 0.02 0.00 0.02
## 240 0.00 0.00 0.00 0.02
## 241 0.00 0.02 0.00 0.02
## 242 0.00 0.00 0.00 0.02
## 243 0.00 0.00 0.00 0.02
## 244 0.00 0.02 0.00 0.02
## 245 0.02 0.00 0.00 0.02
## 246 0.00 0.02 0.00 0.02
## 247 0.01 0.00 0.00 0.02
## 248 0.00 0.02 0.00 0.02
## 249 0.01 0.00 0.00 0.02
## 250 0.00 0.02 0.00 0.02
## 251 0.00 0.00 0.00 0.02
## 252 0.01 0.00 0.00 0.02
## 253 0.01 0.00 0.00 0.02
## 254 0.00 0.00 0.00 0.02
## 255 0.00 0.00 0.00 0.02
## 256 0.01 0.00 0.00 0.02
## 257 0.00 0.02 0.00 0.02
## 258 0.00 0.00 0.00 0.02
## 259 0.00 0.00 0.00 0.01
## 260 0.01 0.00 0.00 0.01
## 261 0.00 0.00 0.00 0.01
## 262 0.01 0.00 0.00 0.01
## 263 0.00 0.00 0.00 0.01
## 264 0.00 0.01 0.00 0.01
## 265 0.00 0.00 0.00 0.01
## 266 0.00 0.01 0.00 0.01
## 267 0.00 0.00 0.00 0.01
## 268 0.00 0.00 0.00 0.01
## 269 0.00 0.00 0.00 0.01
## 270 0.00 0.00 0.00 0.01
## 271 0.01 0.00 0.00 0.01
unique(data.vg$Platform)
## [1] Wii NES GB DS X360 PS3 PS2 SNES GBA 3DS PS4 N64 PS XB PC
## [16] 2600 PSP XOne GC WiiU GEN DC PSV SAT SCD WS NG TG16 3DO
## [31] GG PCFX
## 32 Levels: 2600 3DO 3DS DC DS GB GBA GC GEN GG N64 NES NG PC PCFX PS ... XOne
filter(data.vg, Name=="FIFA 15")
## Rank Name Platform Year Genre Publisher NA_Sales EU_Sales JP_Sales
## 1 125 FIFA 15 PS4 2014 Sports Electronic Arts 0.79 4.29 0.05
## 2 220 FIFA 15 PS3 2014 Sports Electronic Arts 0.57 3.14 0.04
## 3 450 FIFA 15 X360 2014 Sports Electronic Arts 0.78 2.02 0.00
## 4 762 FIFA 15 XOne 2014 Sports Electronic Arts 0.60 1.41 0.00
## 5 2477 FIFA 15 PSV 2014 Sports Electronic Arts 0.13 0.48 0.04
## 6 2718 FIFA 15 Wii 2014 Sports Electronic Arts 0.24 0.46 0.00
## 7 4370 FIFA 15 3DS 2014 Sports Electronic Arts 0.09 0.33 0.00
## 8 5913 FIFA 15 PC 2014 Sports Electronic Arts 0.00 0.27 0.00
## Other_Sales Global_Sales
## 1 1.47 6.59
## 2 1.07 4.82
## 3 0.30 3.11
## 4 0.14 2.15
## 5 0.19 0.84
## 6 0.06 0.76
## 7 0.03 0.45
## 8 0.03 0.30
hist(data.vg$NA_Sales )
Calculemos la proporcion de los datos missings Esto nos ayudará a decidir la estrategia (borrar vs. llenar)
# Contar NA por columna
na_por_columna <- colSums(is.na(data.vg))
print("NA por columna:")
## [1] "NA por columna:"
print(na_por_columna)
## Rank Name Platform Year Genre Publisher
## 0 0 0 297 0 0
## NA_Sales EU_Sales JP_Sales Other_Sales Global_Sales
## 26 26 26 26 26
# Porcentaje de NA por columna
porcentaje_na <- colMeans(is.na(data.vg)) * 100
print("Porcentaje de NA por columna:")
## [1] "Porcentaje de NA por columna:"
print(round(porcentaje_na, 2))
## Rank Name Platform Year Genre Publisher
## 0.00 0.00 0.00 1.79 0.00 0.00
## NA_Sales EU_Sales JP_Sales Other_Sales Global_Sales
## 0.16 0.16 0.16 0.16 0.16
unique(data.vg$Publisher)
## [1] "Nintendo"
## [2] "Microsoft Game Studios"
## [3] "Take-Two Interactive"
## [4] "Sony Computer Entertainment"
## [5] "Activision"
## [6] "Ubisoft"
## [7] "Bethesda Softworks"
## [8] "Electronic Arts"
## [9] "Sega"
## [10] "SquareSoft"
## [11] "Atari"
## [12] "505 Games"
## [13] "Capcom"
## [14] "GT Interactive"
## [15] "Konami Digital Entertainment"
## [16] "Sony Computer Entertainment Europe"
## [17] "Square Enix"
## [18] "LucasArts"
## [19] "Virgin Interactive"
## [20] "Warner Bros. Interactive Entertainment"
## [21] "Universal Interactive"
## [22] "Eidos Interactive"
## [23] "RedOctane"
## [24] "Vivendi Games"
## [25] "Enix Corporation"
## [26] "Namco Bandai Games"
## [27] "Palcom"
## [28] "Hasbro Interactive"
## [29] "THQ"
## [30] "Fox Interactive"
## [31] "Acclaim Entertainment"
## [32] "MTV Games"
## [33] "Disney Interactive Studios"
## [34] "N/A"
## [35] "Majesco Entertainment"
## [36] "Codemasters"
## [37] "Red Orb"
## [38] "Level 5"
## [39] "Arena Entertainment"
## [40] "Midway Games"
## [41] "JVC"
## [42] "Deep Silver"
## [43] "989 Studios"
## [44] "NCSoft"
## [45] "UEP Systems"
## [46] "Parker Bros."
## [47] "Maxis"
## [48] "Imagic"
## [49] "Tecmo Koei"
## [50] "Valve Software"
## [51] "ASCII Entertainment"
## [52] "Mindscape"
## [53] "Infogrames"
## [54] "Unknown"
## [55] "Square"
## [56] "Valve"
## [57] "Activision Value"
## [58] "Banpresto"
## [59] "D3Publisher"
## [60] "Oxygen Interactive"
## [61] "Red Storm Entertainment"
## [62] "Video System"
## [63] "Hello Games"
## [64] "Global Star"
## [65] "Gotham Games"
## [66] "Westwood Studios"
## [67] "GungHo"
## [68] "Crave Entertainment"
## [69] "Hudson Soft"
## [70] "Coleco"
## [71] "Rising Star Games"
## [72] "Atlus"
## [73] "TDK Mediactive"
## [74] "ASC Games"
## [75] "Zoo Games"
## [76] "Accolade"
## [77] "Sony Online Entertainment"
## [78] "3DO"
## [79] "RTL"
## [80] "Natsume"
## [81] "Focus Home Interactive"
## [82] "Alchemist"
## [83] "Black Label Games"
## [84] "SouthPeak Games"
## [85] "Mastertronic"
## [86] "Ocean"
## [87] "Zoo Digital Publishing"
## [88] "Psygnosis"
## [89] "City Interactive"
## [90] "Empire Interactive"
## [91] "Success"
## [92] "Compile"
## [93] "Russel"
## [94] "Taito"
## [95] "Agetec"
## [96] "GSP"
## [97] "Microprose"
## [98] "Play It"
## [99] "Slightly Mad Studios"
## [100] "Tomy Corporation"
## [101] "Sammy Corporation"
## [102] "Koch Media"
## [103] "Game Factory"
## [104] "Titus"
## [105] "Marvelous Entertainment"
## [106] "Genki"
## [107] "Mojang"
## [108] "Pinnacle"
## [109] "CTO SpA"
## [110] "TalonSoft"
## [111] "Crystal Dynamics"
## [112] "SCi"
## [113] "Quelle"
## [114] "mixi, Inc"
## [115] "Rage Software"
## [116] "Ubisoft Annecy"
## [117] "Scholastic Inc."
## [118] "Interplay"
## [119] "Mystique"
## [120] "ChunSoft"
## [121] "Square EA"
## [122] "20th Century Fox Video Games"
## [123] "Avanquest Software"
## [124] "Hudson Entertainment"
## [125] "Nordic Games"
## [126] "Men-A-Vision"
## [127] "Nobilis"
## [128] "Big Ben Interactive"
## [129] "Touchstone"
## [130] "Spike"
## [131] "Jester Interactive"
## [132] "Nippon Ichi Software"
## [133] "LEGO Media"
## [134] "Quest"
## [135] "Illusion Softworks"
## [136] "Tigervision"
## [137] "Funbox Media"
## [138] "Rocket Company"
## [139] "Metro 3D"
## [140] "Mattel Interactive"
## [141] "IE Institute"
## [142] "Rondomedia"
## [143] "Sony Computer Entertainment America"
## [144] "Universal Gamex"
## [145] "Ghostlight"
## [146] "Wizard Video Games"
## [147] "BMG Interactive Entertainment"
## [148] "PQube"
## [149] "Trion Worlds"
## [150] "Laguna"
## [151] "Ignition Entertainment"
## [152] "Takara"
## [153] "Kadokawa Shoten"
## [154] "Destineer"
## [155] "Enterbrain"
## [156] "Xseed Games"
## [157] "Imagineer"
## [158] "System 3 Arcade Software"
## [159] "CPG Products"
## [160] "Aruze Corp"
## [161] "Gamebridge"
## [162] "Midas Interactive Entertainment"
## [163] "Jaleco"
## [164] "Answer Software"
## [165] "XS Games"
## [166] "Activision Blizzard"
## [167] "Pack In Soft"
## [168] "Rebellion"
## [169] "Xplosiv"
## [170] "Ultravision"
## [171] "GameMill Entertainment"
## [172] "Wanadoo"
## [173] "NovaLogic"
## [174] "Telltale Games"
## [175] "Epoch"
## [176] "BAM! Entertainment"
## [177] "Knowledge Adventure"
## [178] "Mastiff"
## [179] "Tetris Online"
## [180] "Harmonix Music Systems"
## [181] "ESP"
## [182] "TYO"
## [183] "Telegames"
## [184] "Mud Duck Productions"
## [185] "Screenlife"
## [186] "Pioneer LDC"
## [187] "Magical Company"
## [188] "Mentor Interactive"
## [189] "Kemco"
## [190] "Human Entertainment"
## [191] "Avanquest"
## [192] "Data Age"
## [193] "Electronic Arts Victor"
## [194] "Black Bean Games"
## [195] "Jack of All Games"
## [196] "989 Sports"
## [197] "Takara Tomy"
## [198] "Media Rings"
## [199] "Elf"
## [200] "Kalypso Media"
## [201] "Starfish"
## [202] "Zushi Games"
## [203] "Jorudan"
## [204] "Destination Software, Inc"
## [205] "New"
## [206] "Brash Entertainment"
## [207] "ITT Family Games"
## [208] "PopCap Games"
## [209] "Home Entertainment Suppliers"
## [210] "Ackkstudios"
## [211] "Starpath Corp."
## [212] "P2 Games"
## [213] "BPS"
## [214] "Gathering of Developers"
## [215] "NewKidCo"
## [216] "Storm City Games"
## [217] "CokeM Interactive"
## [218] "CBS Electronics"
## [219] "Magix"
## [220] "Marvelous Interactive"
## [221] "Nihon Falcom Corporation"
## [222] "Wargaming.net"
## [223] "Angel Studios"
## [224] "Arc System Works"
## [225] "Playmates"
## [226] "SNK Playmore"
## [227] "Hamster Corporation"
## [228] "From Software"
## [229] "Nippon Columbia"
## [230] "Nichibutsu"
## [231] "Little Orbit"
## [232] "Conspiracy Entertainment"
## [233] "DTP Entertainment"
## [234] "Hect"
## [235] "Mumbo Jumbo"
## [236] "Pacific Century Cyber Works"
## [237] "Indie Games"
## [238] "Liquid Games"
## [239] "NEC"
## [240] "Axela"
## [241] "ArtDink"
## [242] "Sunsoft"
## [243] "Gust"
## [244] "SNK"
## [245] "NEC Interchannel"
## [246] "FuRyu"
## [247] "Xing Entertainment"
## [248] "ValuSoft"
## [249] "Victor Interactive"
## [250] "Detn8 Games"
## [251] "American Softworks"
## [252] "Nordcurrent"
## [253] "Bomb"
## [254] "Falcom Corporation"
## [255] "AQ Interactive"
## [256] "CCP"
## [257] "Milestone S.r.l."
## [258] ""
## [259] "Sears"
## [260] "JoWood Productions"
## [261] "Seta Corporation"
## [262] "On Demand"
## [263] "NCS"
## [264] "Aspyr"
## [265] "Gremlin Interactive Ltd"
## [266] "Agatsuma Entertainment"
## [267] "Compile Heart"
## [268] "Culture Brain"
## [269] "Mad Catz"
## [270] "Shogakukan"
## [271] "Merscom LLC"
## [272] "Rebellion Developments"
## [273] "Nippon Telenet"
## [274] "TDK Core"
## [275] "bitComposer Games"
## [276] "Foreign Media Games"
## [277] "Astragon"
## [278] "SSI"
## [279] "Kadokawa Games"
## [280] "Idea Factory"
## [281] "Performance Designed Products"
## [282] "Asylum Entertainment"
## [283] "Core Design Ltd."
## [284] "PlayV"
## [285] "UFO Interactive"
## [286] "Idea Factory International"
## [287] "Playlogic Game Factory"
## [288] "Essential Games"
## [289] "Adeline Software"
## [290] "Funcom"
## [291] "Panther Software"
## [292] "Blast! Entertainment Ltd"
## [293] "Game Life"
## [294] "DSI Games"
## [295] "Avalon Interactive"
## [296] "Popcorn Arcade"
## [297] "Neko Entertainment"
## [298] "Vir2L Studios"
## [299] "Aques"
## [300] "Syscom"
## [301] "White Park Bay Software"
## [302] "System 3"
## [303] "Vatical Entertainment"
## [304] "Daedalic"
## [305] "EA Games"
## [306] "Media Factory"
## [307] "Vic Tokai"
## [308] "The Adventure Company"
## [309] "Game Arts"
## [310] "Broccoli"
## [311] "Acquire"
## [312] "General Entertainment"
## [313] "Excalibur Publishing"
## [314] "Imadio"
## [315] "Swing! Entertainment"
## [316] "Sony Music Entertainment"
## [317] "Aqua Plus"
## [318] "Paradox Interactive"
## [319] "Hip Interactive"
## [320] "DreamCatcher Interactive"
## [321] "Tripwire Interactive"
## [322] "Sting"
## [323] "Yacht Club Games"
## [324] "SCS Software"
## [325] "Bigben Interactive"
## [326] "Havas Interactive"
## [327] "Slitherine Software"
## [328] "Graffiti"
## [329] "Funsta"
## [330] "Telstar"
## [331] "U.S. Gold"
## [332] "DreamWorks Interactive"
## [333] "Data Design Interactive"
## [334] "MTO"
## [335] "DHM Interactive"
## [336] "FunSoft"
## [337] "SPS"
## [338] "Bohemia Interactive"
## [339] "Reef Entertainment"
## [340] "Tru Blu Entertainment"
## [341] "Moss"
## [342] "T&E Soft"
## [343] "O-Games"
## [344] "Aksys Games"
## [345] "NDA Productions"
## [346] "Data East"
## [347] "Time Warner Interactive"
## [348] "Gainax Network Systems"
## [349] "Daito"
## [350] "O3 Entertainment"
## [351] "Gameloft"
## [352] "Xicat Interactive"
## [353] "Simon & Schuster Interactive"
## [354] "Valcon Games"
## [355] "PopTop Software"
## [356] "TOHO"
## [357] "HMH Interactive"
## [358] "Cave"
## [359] "CDV Software Entertainment"
## [360] "Microids"
## [361] "PM Studios"
## [362] "Paon"
## [363] "Micro Cabin"
## [364] "GameTek"
## [365] "Benesse"
## [366] "Type-Moon"
## [367] "Enjoy Gaming ltd."
## [368] "Asmik Corp"
## [369] "Interplay Productions"
## [370] "Asmik Ace Entertainment"
## [371] "inXile Entertainment"
## [372] "Image Epoch"
## [373] "Phantom EFX"
## [374] "Evolved Games"
## [375] "responDESIGN"
## [376] "Culture Publishers"
## [377] "Griffin International"
## [378] "Hackberry"
## [379] "Hearty Robin"
## [380] "Nippon Amuse"
## [381] "Origin Systems"
## [382] "Seventh Chord"
## [383] "Mitsui"
## [384] "Milestone"
## [385] "Abylight"
## [386] "Flight-Plan"
## [387] "Glams"
## [388] "Locus"
## [389] "Warp"
## [390] "Daedalic Entertainment"
## [391] "Alternative Software"
## [392] "Myelin Media"
## [393] "Mercury Games"
## [394] "Irem Software Engineering"
## [395] "Sunrise Interactive"
## [396] "Elite"
## [397] "Evolution Games"
## [398] "Tivola"
## [399] "Global A Entertainment"
## [400] "Edia"
## [401] "5pb"
## [402] "Athena"
## [403] "Aria"
## [404] "Gamecock"
## [405] "Tommo"
## [406] "Altron"
## [407] "Happinet"
## [408] "iWin"
## [409] "Media Works"
## [410] "Fortyfive"
## [411] "Revolution Software"
## [412] "Imax"
## [413] "Crimson Cow"
## [414] "10TACLE Studios"
## [415] "Groove Games"
## [416] "Pack-In-Video"
## [417] "Insomniac Games"
## [418] "Ascaron Entertainment GmbH"
## [419] "Asgard"
## [420] "Ecole"
## [421] "Yumedia"
## [422] "Phenomedia"
## [423] "HAL Laboratory"
## [424] "Grand Prix Games"
## [425] "DigiCube"
## [426] "Creative Core"
## [427] "Kaga Create"
## [428] "WayForward Technologies"
## [429] "LSP Games"
## [430] "ASCII Media Works"
## [431] "Coconuts Japan"
## [432] "Arika"
## [433] "Ertain"
## [434] "Marvel Entertainment"
## [435] "Prototype"
## [436] "TopWare Interactive"
## [437] "Phantagram"
## [438] "1C Company"
## [439] "The Learning Company"
## [440] "TechnoSoft"
## [441] "Vap"
## [442] "Misawa"
## [443] "Tradewest"
## [444] "Team17 Software"
## [445] "Yeti"
## [446] "Pow"
## [447] "Navarre Corp"
## [448] "MediaQuest"
## [449] "Max Five"
## [450] "Comfort"
## [451] "Monte Christo Multimedia"
## [452] "Pony Canyon"
## [453] "Riverhillsoft"
## [454] "Summitsoft"
## [455] "Milestone S.r.l"
## [456] "Playmore"
## [457] "MLB.com"
## [458] "Kool Kizz"
## [459] "Flashpoint Games"
## [460] "49Games"
## [461] "Legacy Interactive"
## [462] "Alawar Entertainment"
## [463] "CyberFront"
## [464] "Cloud Imperium Games Corporation"
## [465] "Societa"
## [466] "Virtual Play Games"
## [467] "Interchannel"
## [468] "Sonnet"
## [469] "Experience Inc."
## [470] "Zenrin"
## [471] "Iceberg Interactive"
## [472] "Ivolgamus"
## [473] "2D Boy"
## [474] "MC2 Entertainment"
## [475] "Kando Games"
## [476] "Just Flight"
## [477] "Office Create"
## [478] "Mamba Games"
## [479] "Fields"
## [480] "Princess Soft"
## [481] "Maximum Family Games"
## [482] "Berkeley"
## [483] "Fuji"
## [484] "Dusenberry Martin Racing"
## [485] "imageepoch Inc."
## [486] "Big Fish Games"
## [487] "Her Interactive"
## [488] "Kamui"
## [489] "ASK"
## [490] "Headup Games"
## [491] "KSS"
## [492] "Cygames"
## [493] "KID"
## [494] "Quinrose"
## [495] "Sunflowers"
## [496] "dramatic create"
## [497] "TGL"
## [498] "Encore"
## [499] "Extreme Entertainment Group"
## [500] "Intergrow"
## [501] "G.Rev"
## [502] "Sweets"
## [503] "Kokopeli Digital Studios"
## [504] "Number None"
## [505] "Nexon"
## [506] "id Software"
## [507] "BushiRoad"
## [508] "Tryfirst"
## [509] "Strategy First"
## [510] "7G//AMES"
## [511] "GN Software"
## [512] "Yuke's"
## [513] "Easy Interactive"
## [514] "Licensed 4U"
## [515] "FuRyu Corporation"
## [516] "Lexicon Entertainment"
## [517] "Paon Corporation"
## [518] "Kids Station"
## [519] "GOA"
## [520] "Graphsim Entertainment"
## [521] "King Records"
## [522] "Introversion Software"
## [523] "Minato Station"
## [524] "Devolver Digital"
## [525] "Blue Byte"
## [526] "Gaga"
## [527] "Yamasa Entertainment"
## [528] "Plenty"
## [529] "Views"
## [530] "fonfun"
## [531] "NetRevo"
## [532] "Codemasters Online"
## [533] "Quintet"
## [534] "Phoenix Games"
## [535] "Dorart"
## [536] "Marvelous Games"
## [537] "Focus Multimedia"
## [538] "Imageworks"
## [539] "Karin Entertainment"
## [540] "Aerosoft"
## [541] "Technos Japan Corporation"
## [542] "Gakken"
## [543] "Mirai Shounen"
## [544] "Datam Polystar"
## [545] "Saurus"
## [546] "HuneX"
## [547] "Revolution (Japan)"
## [548] "Giza10"
## [549] "Visco"
## [550] "Alvion"
## [551] "Mycom"
## [552] "Giga"
## [553] "Warashi"
## [554] "System Soft"
## [555] "Sold Out"
## [556] "Lighthouse Interactive"
## [557] "Masque Publishing"
## [558] "RED Entertainment"
## [559] "Michaelsoft"
## [560] "Media Entertainment"
## [561] "New World Computing"
## [562] "Genterprise"
## [563] "Interworks Unlimited, Inc."
## [564] "Boost On"
## [565] "Stainless Games"
## [566] "EON Digital Entertainment"
## [567] "Epic Games"
## [568] "Naxat Soft"
## [569] "Ascaron Entertainment"
## [570] "Piacci"
## [571] "Nitroplus"
## [572] "Paradox Development"
## [573] "Otomate"
## [574] "Ongakukan"
## [575] "Commseed"
## [576] "Inti Creates"
## [577] "Takuyo"
## [578] "Interchannel-Holon"
## [579] "Rain Games"
## [580] "UIG Entertainment"
filter(data.vg, Publisher==" ")
## [1] Rank Name Platform Year Genre
## [6] Publisher NA_Sales EU_Sales JP_Sales Other_Sales
## [11] Global_Sales
## <0 rows> (or 0-length row.names)
A año le faltan 271 valores (aprox 1,63%). Dado que este porcentajee es muy pequeño, la estrategia más segura y sencilla es eliminar estas filas. Intentar ‘adivinar’ (imputar) el año o la editorial podría generar interferencias y llevar a conclusiones incorrectas. Queremos que nuestro análisis se base en datos completos y precisos. Usaremos .dropna() para eliminar las filas que contienen valores NaN en las columnas especificadas.
# DataFrame de ejemplo con missing values
print("DataFrame original:")
## [1] "DataFrame original:"
print(data.vg)
## Rank
## 1 1
## 2 2
## 3 3
## 4 4
## 5 5
## 6 6
## 7 7
## 8 8
## 9 9
## 10 10
## 11 11
## 12 12
## 13 13
## 14 14
## 15 15
## 16 16
## 17 17
## 18 18
## 19 19
## 20 20
## 21 21
## 22 22
## 23 23
## 24 24
## 25 25
## 26 26
## 27 27
## 28 28
## 29 29
## 30 30
## 31 31
## 32 32
## 33 33
## 34 34
## 35 35
## 36 36
## 37 37
## 38 38
## 39 39
## 40 40
## 41 41
## 42 42
## 43 43
## 44 44
## 45 45
## 46 46
## 47 47
## 48 48
## 49 49
## 50 50
## 51 51
## 52 52
## 53 53
## 54 54
## 55 55
## 56 56
## 57 57
## 58 58
## 59 59
## 60 60
## 61 61
## 62 62
## 63 63
## 64 64
## 65 65
## 66 66
## 67 67
## 68 68
## 69 69
## 70 70
## 71 71
## 72 72
## 73 73
## 74 74
## 75 75
## 76 76
## 77 77
## 78 78
## 79 79
## 80 80
## 81 81
## 82 82
## 83 83
## 84 84
## 85 85
## 86 86
## 87 87
## 88 88
## 89 89
## 90 90
## 91 91
## 92 92
## 93 93
## 94 94
## 95 95
## 96 96
## 97 97
## 98 98
## 99 99
## 100 100
## 101 101
## 102 102
## 103 103
## 104 104
## 105 105
## 106 106
## 107 107
## 108 108
## 109 109
## 110 110
## 111 111
## 112 112
## 113 113
## 114 114
## 115 115
## 116 116
## 117 117
## 118 118
## 119 119
## 120 120
## 121 121
## 122 122
## 123 123
## 124 124
## 125 125
## 126 126
## 127 127
## 128 128
## 129 129
## 130 130
## 131 131
## 132 132
## 133 133
## 134 134
## 135 135
## 136 136
## 137 137
## 138 138
## 139 139
## 140 140
## 141 141
## 142 142
## 143 143
## 144 144
## 145 145
## 146 146
## 147 147
## 148 148
## 149 149
## 150 150
## 151 151
## 152 152
## 153 153
## 154 154
## 155 155
## 156 156
## 157 157
## 158 158
## 159 159
## 160 160
## 161 161
## 162 162
## 163 163
## 164 164
## 165 165
## 166 166
## 167 167
## 168 168
## 169 169
## 170 170
## 171 171
## 172 172
## 173 173
## 174 174
## 175 175
## 176 176
## 177 177
## 178 178
## 179 179
## 180 180
## 181 181
## 182 182
## 183 183
## 184 184
## 185 185
## 186 186
## 187 187
## 188 188
## 189 189
## 190 190
## 191 191
## 192 192
## 193 193
## 194 194
## 195 195
## 196 196
## 197 197
## 198 198
## 199 199
## 200 200
## 201 201
## 202 202
## 203 203
## 204 204
## 205 205
## 206 206
## 207 207
## 208 208
## 209 209
## 210 210
## 211 211
## 212 212
## 213 213
## 214 214
## 215 215
## 216 216
## 217 217
## 218 218
## 219 219
## 220 220
## 221 221
## 222 222
## 223 223
## 224 224
## 225 225
## 226 226
## 227 227
## 228 228
## 229 229
## 230 230
## 231 231
## 232 232
## 233 233
## 234 234
## 235 235
## 236 236
## 237 237
## 238 238
## 239 239
## 240 240
## 241 241
## 242 242
## 243 243
## 244 244
## 245 245
## 246 246
## 247 247
## 248 248
## 249 249
## 250 250
## 251 251
## 252 252
## 253 253
## 254 254
## 255 255
## 256 256
## 257 257
## 258 258
## 259 259
## 260 260
## 261 261
## 262 262
## 263 263
## 264 264
## 265 265
## 266 266
## 267 267
## 268 268
## 269 269
## 270 270
## 271 271
## 272 272
## 273 273
## 274 274
## 275 275
## 276 276
## 277 277
## 278 278
## 279 279
## 280 280
## 281 281
## 282 282
## 283 283
## 284 284
## 285 285
## 286 286
## 287 287
## 288 288
## 289 289
## 290 290
## 291 291
## 292 292
## 293 293
## 294 294
## 295 295
## 296 296
## 297 297
## 298 298
## 299 299
## 300 300
## 301 301
## 302 302
## 303 303
## 304 304
## 305 305
## 306 306
## 307 307
## 308 308
## 309 309
## 310 310
## 311 311
## 312 312
## 313 313
## 314 314
## 315 315
## 316 316
## 317 317
## 318 318
## 319 319
## 320 320
## 321 321
## 322 322
## 323 323
## 324 324
## 325 325
## 326 326
## 327 327
## 328 328
## 329 329
## 330 330
## 331 331
## 332 332
## 333 333
## 334 334
## 335 335
## 336 336
## 337 337
## 338 338
## 339 339
## 340 340
## 341 341
## 342 342
## 343 343
## 344 344
## 345 345
## 346 346
## 347 347
## 348 348
## 349 349
## 350 350
## 351 351
## 352 352
## 353 353
## 354 354
## 355 355
## 356 356
## 357 357
## 358 358
## 359 359
## 360 360
## 361 361
## 362 362
## 363 363
## 364 364
## 365 365
## 366 366
## 367 367
## 368 368
## 369 369
## 370 370
## 371 371
## 372 372
## 373 373
## 374 374
## 375 375
## 376 376
## 377 377
## 378 378
## 379 379
## 380 380
## 381 381
## 382 382
## 383 383
## 384 384
## 385 385
## 386 386
## 387 387
## 388 388
## 389 389
## 390 390
## 391 391
## 392 392
## 393 393
## 394 394
## 395 395
## 396 396
## 397 397
## 398 398
## 399 399
## 400 400
## 401 401
## 402 402
## 403 403
## 404 404
## 405 405
## 406 406
## 407 407
## 408 408
## 409 409
## 410 410
## 411 411
## 412 412
## 413 413
## 414 414
## 415 415
## 416 416
## 417 417
## 418 418
## 419 419
## 420 420
## 421 421
## 422 422
## 423 423
## 424 424
## 425 425
## 426 426
## 427 427
## 428 428
## 429 429
## 430 430
## 431 431
## 432 432
## 433 433
## 434 434
## 435 435
## 436 436
## 437 437
## 438 438
## 439 439
## 440 440
## 441 441
## 442 442
## 443 443
## 444 444
## 445 445
## 446 446
## 447 447
## 448 448
## 449 449
## 450 450
## 451 451
## 452 452
## 453 453
## 454 454
## 455 455
## 456 456
## 457 457
## 458 458
## 459 459
## 460 460
## 461 461
## 462 462
## 463 463
## 464 464
## 465 465
## 466 466
## 467 467
## 468 468
## 469 469
## 470 470
## 471 471
## 472 472
## 473 473
## 474 474
## 475 475
## 476 476
## 477 477
## 478 478
## 479 479
## 480 480
## 481 481
## 482 482
## 483 483
## 484 484
## 485 485
## 486 486
## 487 487
## 488 488
## 489 489
## 490 490
## 491 491
## 492 492
## 493 493
## 494 494
## 495 495
## 496 496
## 497 497
## 498 498
## 499 499
## 500 500
## 501 501
## 502 502
## 503 503
## 504 504
## 505 505
## 506 506
## 507 507
## 508 508
## 509 509
## 510 510
## 511 511
## 512 512
## 513 513
## 514 514
## 515 515
## 516 516
## 517 517
## 518 518
## 519 519
## 520 520
## 521 521
## 522 522
## 523 523
## 524 524
## 525 525
## 526 526
## 527 527
## 528 528
## 529 529
## 530 530
## 531 531
## 532 532
## 533 533
## 534 534
## 535 535
## 536 536
## 537 537
## 538 538
## 539 539
## 540 540
## 541 541
## 542 542
## 543 543
## 544 544
## 545 545
## 546 546
## 547 547
## 548 548
## 549 549
## 550 550
## 551 551
## 552 552
## 553 553
## 554 554
## 555 555
## 556 556
## 557 557
## 558 558
## 559 559
## 560 560
## 561 561
## 562 562
## 563 563
## 564 564
## 565 565
## 566 566
## 567 567
## 568 568
## 569 569
## 570 570
## 571 571
## 572 572
## 573 573
## 574 574
## 575 575
## 576 576
## 577 577
## 578 578
## 579 579
## 580 580
## 581 581
## 582 582
## 583 583
## 584 584
## 585 585
## 586 586
## 587 587
## 588 588
## 589 589
## 590 590
## 591 591
## 592 592
## 593 593
## 594 594
## 595 595
## 596 596
## 597 597
## 598 598
## 599 599
## 600 600
## 601 601
## 602 602
## 603 603
## 604 604
## 605 605
## 606 606
## 607 607
## 608 608
## 609 609
## 610 610
## 611 611
## 612 612
## 613 613
## 614 614
## 615 615
## 616 616
## 617 617
## 618 618
## 619 619
## 620 620
## 621 621
## 622 622
## 623 623
## 624 624
## 625 625
## 626 626
## 627 627
## 628 628
## 629 629
## 630 630
## 631 631
## 632 632
## 633 633
## 634 634
## 635 635
## 636 636
## 637 637
## 638 638
## 639 639
## 640 640
## 641 641
## 642 642
## 643 643
## 644 644
## 645 645
## 646 646
## 647 647
## 648 648
## 649 649
## 650 650
## 651 651
## 652 652
## 653 653
## 654 655
## 655 656
## 656 657
## 657 658
## 658 659
## 659 660
## 660 661
## 661 662
## 662 663
## 663 664
## 664 665
## 665 666
## 666 667
## 667 668
## 668 669
## 669 670
## 670 671
## 671 672
## 672 673
## 673 674
## 674 675
## 675 676
## 676 677
## 677 678
## 678 679
## 679 680
## 680 681
## 681 682
## 682 683
## 683 684
## 684 685
## 685 686
## 686 687
## 687 688
## 688 689
## 689 690
## 690 691
## 691 692
## 692 693
## 693 694
## 694 695
## 695 696
## 696 697
## 697 698
## 698 699
## 699 700
## 700 701
## 701 702
## 702 703
## 703 704
## 704 705
## 705 706
## 706 707
## 707 708
## 708 709
## 709 710
## 710 711
## 711 712
## 712 713
## 713 714
## 714 715
## 715 716
## 716 717
## 717 718
## 718 719
## 719 720
## 720 721
## 721 722
## 722 723
## 723 724
## 724 725
## 725 726
## 726 727
## 727 728
## 728 729
## 729 730
## 730 731
## 731 732
## 732 733
## 733 734
## 734 735
## 735 736
## 736 737
## 737 738
## 738 739
## 739 740
## 740 741
## 741 742
## 742 743
## 743 744
## 744 745
## 745 746
## 746 747
## 747 748
## 748 749
## 749 750
## 750 751
## 751 752
## 752 753
## 753 754
## 754 755
## 755 756
## 756 757
## 757 758
## 758 759
## 759 760
## 760 761
## 761 762
## 762 763
## 763 764
## 764 765
## 765 766
## 766 767
## 767 768
## 768 769
## 769 770
## 770 771
## 771 772
## 772 773
## 773 774
## 774 775
## 775 776
## 776 777
## 777 778
## 778 779
## 779 780
## 780 781
## 781 782
## 782 783
## 783 784
## 784 785
## 785 786
## 786 787
## 787 788
## 788 789
## 789 790
## 790 791
## 791 792
## 792 793
## 793 794
## 794 795
## 795 796
## 796 797
## 797 798
## 798 799
## 799 800
## 800 801
## 801 802
## 802 803
## 803 804
## 804 805
## 805 806
## 806 807
## 807 808
## 808 809
## 809 810
## 810 811
## 811 812
## 812 813
## 813 814
## 814 815
## 815 816
## 816 817
## 817 818
## 818 819
## 819 820
## 820 821
## 821 822
## 822 823
## 823 824
## 824 825
## 825 826
## 826 827
## 827 828
## 828 829
## 829 830
## 830 831
## 831 832
## 832 833
## 833 834
## 834 835
## 835 836
## 836 837
## 837 838
## 838 839
## 839 840
## 840 841
## 841 842
## 842 843
## 843 844
## 844 845
## 845 846
## 846 847
## 847 848
## 848 849
## 849 850
## 850 851
## 851 852
## 852 853
## 853 854
## 854 855
## 855 856
## 856 857
## 857 858
## 858 859
## 859 860
## 860 861
## 861 862
## 862 863
## 863 864
## 864 865
## 865 866
## 866 867
## 867 868
## 868 869
## 869 870
## 870 871
## 871 872
## 872 873
## 873 874
## 874 875
## 875 876
## 876 877
## 877 878
## 878 879
## 879 880
## 880 881
## 881 882
## 882 883
## 883 884
## 884 885
## 885 886
## 886 887
## 887 888
## 888 889
## 889 890
## 890 891
## 891 892
## 892 893
## 893 894
## 894 895
## 895 896
## 896 897
## 897 898
## 898 899
## 899 900
## 900 901
## 901 902
## 902 903
## 903 904
## 904 905
## 905 906
## 906 907
## 907 908
## 908 909
## 909 910
## 910 911
## 911 912
## 912 913
## 913 914
## 914 915
## 915 916
## 916 917
## 917 918
## 918 919
## 919 920
## 920 921
## 921 922
## 922 923
## 923 924
## 924 925
## 925 926
## 926 927
## 927 928
## 928 929
## 929 930
## 930 931
## 931 932
## 932 933
## 933 934
## 934 935
## 935 936
## 936 937
## 937 938
## 938 939
## 939 940
## 940 941
## 941 942
## 942 943
## 943 944
## 944 945
## 945 946
## 946 947
## 947 948
## 948 949
## 949 950
## 950 951
## 951 952
## 952 953
## 953 954
## 954 955
## 955 956
## 956 957
## 957 958
## 958 959
## 959 960
## 960 961
## 961 962
## 962 963
## 963 964
## 964 965
## 965 966
## 966 967
## 967 968
## 968 969
## 969 970
## 970 971
## 971 972
## 972 973
## 973 974
## 974 975
## 975 976
## 976 977
## 977 978
## 978 979
## 979 980
## 980 981
## 981 982
## 982 983
## 983 984
## 984 985
## 985 986
## 986 987
## 987 988
## 988 989
## 989 990
## 990 991
## 991 992
## 992 993
## 993 994
## 994 995
## 995 996
## 996 997
## 997 998
## 998 999
## 999 1000
## 1000 1001
## 1001 1002
## 1002 1003
## 1003 1004
## 1004 1005
## 1005 1006
## 1006 1007
## 1007 1008
## 1008 1009
## 1009 1010
## 1010 1011
## 1011 1012
## 1012 1013
## 1013 1014
## 1014 1015
## 1015 1016
## 1016 1017
## 1017 1018
## 1018 1019
## 1019 1020
## 1020 1021
## 1021 1022
## 1022 1023
## 1023 1024
## 1024 1025
## 1025 1026
## 1026 1027
## 1027 1028
## 1028 1029
## 1029 1030
## 1030 1031
## 1031 1032
## 1032 1033
## 1033 1034
## 1034 1035
## 1035 1036
## 1036 1037
## 1037 1038
## 1038 1039
## 1039 1040
## 1040 1041
## 1041 1042
## 1042 1043
## 1043 1044
## 1044 1045
## 1045 1046
## 1046 1047
## 1047 1048
## 1048 1049
## 1049 1050
## 1050 1051
## 1051 1052
## 1052 1053
## 1053 1054
## 1054 1055
## 1055 1056
## 1056 1057
## 1057 1058
## 1058 1059
## 1059 1060
## 1060 1061
## 1061 1062
## 1062 1063
## 1063 1064
## 1064 1065
## 1065 1066
## 1066 1067
## 1067 1068
## 1068 1069
## 1069 1070
## 1070 1071
## 1071 1072
## 1072 1073
## 1073 1074
## 1074 1075
## 1075 1076
## 1076 1077
## 1077 1078
## 1078 1079
## 1079 1080
## 1080 1081
## 1081 1082
## 1082 1083
## 1083 1084
## 1084 1085
## 1085 1086
## 1086 1087
## 1087 1088
## 1088 1089
## 1089 1090
## 1090 1091
## 1091 1092
## 1092 1093
## 1093 1094
## 1094 1095
## 1095 1096
## 1096 1097
## 1097 1098
## 1098 1099
## 1099 1100
## 1100 1101
## 1101 1102
## 1102 1103
## 1103 1104
## 1104 1105
## 1105 1106
## 1106 1107
## 1107 1108
## 1108 1109
## 1109 1110
## 1110 1111
## 1111 1112
## 1112 1113
## 1113 1114
## 1114 1115
## 1115 1116
## 1116 1117
## 1117 1118
## 1118 1119
## 1119 1120
## 1120 1121
## 1121 1122
## 1122 1123
## 1123 1124
## 1124 1125
## 1125 1126
## 1126 1127
## 1127 1128
## 1128 1129
## 1129 1130
## 1130 1131
## 1131 1132
## 1132 1133
## 1133 1134
## 1134 1135
## 1135 1136
## 1136 1137
## 1137 1138
## 1138 1139
## 1139 1140
## 1140 1141
## 1141 1142
## 1142 1143
## 1143 1144
## 1144 1145
## 1145 1146
## 1146 1147
## 1147 1148
## 1148 1149
## 1149 1150
## 1150 1151
## 1151 1152
## 1152 1153
## 1153 1154
## 1154 1155
## 1155 1156
## 1156 1157
## 1157 1158
## 1158 1159
## 1159 1160
## 1160 1161
## 1161 1162
## 1162 1163
## 1163 1164
## 1164 1165
## 1165 1166
## 1166 1167
## 1167 1168
## 1168 1169
## 1169 1170
## 1170 1171
## 1171 1172
## 1172 1173
## 1173 1174
## 1174 1175
## 1175 1176
## 1176 1177
## 1177 1178
## 1178 1179
## 1179 1180
## 1180 1181
## 1181 1182
## 1182 1183
## 1183 1184
## 1184 1185
## 1185 1186
## 1186 1187
## 1187 1188
## 1188 1189
## 1189 1190
## 1190 1191
## 1191 1192
## 1192 1193
## 1193 1194
## 1194 1195
## 1195 1196
## 1196 1197
## 1197 1198
## 1198 1199
## 1199 1200
## 1200 1201
## 1201 1202
## 1202 1203
## 1203 1204
## 1204 1205
## 1205 1206
## 1206 1207
## 1207 1208
## 1208 1209
## 1209 1210
## 1210 1211
## 1211 1212
## 1212 1213
## 1213 1214
## 1214 1215
## 1215 1216
## 1216 1217
## 1217 1218
## 1218 1219
## 1219 1220
## 1220 1221
## 1221 1222
## 1222 1223
## 1223 1224
## 1224 1225
## 1225 1226
## 1226 1227
## 1227 1228
## 1228 1229
## 1229 1230
## 1230 1231
## 1231 1232
## 1232 1233
## 1233 1234
## 1234 1235
## 1235 1236
## 1236 1237
## 1237 1238
## 1238 1239
## 1239 1240
## 1240 1241
## 1241 1242
## 1242 1243
## 1243 1244
## 1244 1245
## 1245 1246
## 1246 1247
## 1247 1248
## 1248 1249
## 1249 1250
## 1250 1251
## 1251 1252
## 1252 1253
## 1253 1254
## 1254 1255
## 1255 1256
## 1256 1257
## 1257 1258
## 1258 1259
## 1259 1260
## 1260 1261
## 1261 1262
## 1262 1263
## 1263 1264
## 1264 1265
## 1265 1266
## 1266 1267
## 1267 1268
## 1268 1269
## 1269 1270
## 1270 1271
## 1271 1272
## 1272 1273
## 1273 1274
## 1274 1275
## 1275 1276
## 1276 1277
## 1277 1278
## 1278 1279
## 1279 1280
## 1280 1281
## 1281 1282
## 1282 1283
## 1283 1284
## 1284 1285
## 1285 1286
## 1286 1287
## 1287 1288
## 1288 1289
## 1289 1290
## 1290 1291
## 1291 1292
## 1292 1293
## 1293 1294
## 1294 1295
## 1295 1296
## 1296 1297
## 1297 1298
## 1298 1299
## 1299 1300
## 1300 1301
## 1301 1302
## 1302 1303
## 1303 1304
## 1304 1305
## 1305 1306
## 1306 1307
## 1307 1308
## 1308 1309
## 1309 1310
## 1310 1311
## 1311 1312
## 1312 1313
## 1313 1314
## 1314 1315
## 1315 1316
## 1316 1317
## 1317 1318
## 1318 1319
## 1319 1320
## 1320 1321
## 1321 1322
## 1322 1323
## 1323 1324
## 1324 1325
## 1325 1326
## 1326 1327
## 1327 1328
## 1328 1329
## 1329 1330
## 1330 1331
## 1331 1332
## 1332 1333
## 1333 1334
## 1334 1335
## 1335 1336
## 1336 1337
## 1337 1338
## 1338 1339
## 1339 1340
## 1340 1341
## 1341 1342
## 1342 1343
## 1343 1344
## 1344 1345
## 1345 1346
## 1346 1347
## 1347 1348
## 1348 1349
## 1349 1350
## 1350 1351
## 1351 1352
## 1352 1353
## 1353 1354
## 1354 1355
## 1355 1356
## 1356 1357
## 1357 1358
## 1358 1359
## 1359 1360
## 1360 1361
## 1361 1362
## 1362 1363
## 1363 1364
## 1364 1365
## 1365 1366
## 1366 1367
## 1367 1368
## 1368 1369
## 1369 1370
## 1370 1371
## 1371 1372
## 1372 1373
## 1373 1374
## 1374 1375
## 1375 1376
## 1376 1377
## 1377 1378
## 1378 1379
## 1379 1380
## 1380 1381
## 1381 1382
## 1382 1383
## 1383 1384
## 1384 1385
## 1385 1386
## 1386 1387
## 1387 1388
## 1388 1389
## 1389 1390
## 1390 1391
## 1391 1392
## 1392 1393
## 1393 1394
## 1394 1395
## 1395 1396
## 1396 1397
## 1397 1398
## 1398 1399
## 1399 1400
## 1400 1401
## 1401 1402
## 1402 1403
## 1403 1404
## 1404 1405
## 1405 1406
## 1406 1407
## 1407 1408
## 1408 1409
## 1409 1410
## 1410 1411
## 1411 1412
## 1412 1413
## 1413 1414
## 1414 1415
## 1415 1416
## 1416 1417
## 1417 1418
## 1418 1419
## 1419 1420
## 1420 1421
## 1421 1422
## 1422 1423
## 1423 1424
## 1424 1425
## 1425 1426
## 1426 1427
## 1427 1428
## 1428 1429
## 1429 1430
## 1430 1431
## 1431 1432
## 1432 1433
## 1433 1434
## 1434 1435
## 1435 1436
## 1436 1437
## 1437 1438
## 1438 1439
## 1439 1440
## 1440 1441
## 1441 1442
## 1442 1443
## 1443 1444
## 1444 1445
## 1445 1446
## 1446 1447
## 1447 1448
## 1448 1449
## 1449 1450
## 1450 1451
## 1451 1452
## 1452 1453
## 1453 1454
## 1454 1455
## 1455 1456
## 1456 1457
## 1457 1458
## 1458 1459
## 1459 1460
## 1460 1461
## 1461 1462
## 1462 1463
## 1463 1464
## 1464 1465
## 1465 1466
## 1466 1467
## 1467 1468
## 1468 1469
## 1469 1470
## 1470 1471
## 1471 1472
## 1472 1473
## 1473 1474
## 1474 1475
## 1475 1476
## 1476 1477
## 1477 1478
## 1478 1479
## 1479 1480
## 1480 1481
## 1481 1482
## 1482 1483
## 1483 1484
## 1484 1485
## 1485 1486
## 1486 1487
## 1487 1488
## 1488 1489
## 1489 1490
## 1490 1491
## 1491 1492
## 1492 1493
## 1493 1494
## 1494 1495
## 1495 1496
## 1496 1497
## 1497 1498
## 1498 1499
## 1499 1500
## 1500 1501
## 1501 1502
## 1502 1503
## 1503 1504
## 1504 1505
## 1505 1506
## 1506 1507
## 1507 1508
## 1508 1509
## 1509 1510
## 1510 1511
## 1511 1512
## 1512 1513
## 1513 1514
## 1514 1515
## 1515 1516
## 1516 1517
## 1517 1518
## 1518 1519
## 1519 1520
## 1520 1521
## 1521 1522
## 1522 1523
## 1523 1524
## 1524 1525
## 1525 1526
## 1526 1527
## 1527 1528
## 1528 1529
## 1529 1530
## 1530 1531
## 1531 1532
## 1532 1533
## 1533 1534
## 1534 1535
## 1535 1536
## 1536 1537
## 1537 1538
## 1538 1539
## 1539 1540
## 1540 1541
## 1541 1542
## 1542 1543
## 1543 1544
## 1544 1545
## 1545 1546
## 1546 1547
## 1547 1548
## 1548 1549
## 1549 1550
## 1550 1551
## 1551 1552
## 1552 1553
## 1553 1554
## 1554 1555
## 1555 1556
## 1556 1557
## 1557 1558
## 1558 1559
## 1559 1560
## 1560 1561
## 1561 1562
## 1562 1563
## 1563 1564
## 1564 1565
## 1565 1566
## 1566 1567
## 1567 1568
## 1568 1569
## 1569 1570
## 1570 1571
## 1571 1572
## 1572 1573
## 1573 1574
## 1574 1575
## 1575 1576
## 1576 1577
## 1577 1578
## 1578 1579
## 1579 1580
## 1580 1581
## 1581 1582
## 1582 1583
## 1583 1584
## 1584 1585
## 1585 1586
## 1586 1587
## 1587 1588
## 1588 1589
## 1589 1590
## 1590 1591
## 1591 1592
## 1592 1593
## 1593 1594
## 1594 1595
## 1595 1596
## 1596 1597
## 1597 1598
## 1598 1599
## 1599 1600
## 1600 1601
## 1601 1602
## 1602 1603
## 1603 1604
## 1604 1605
## 1605 1606
## 1606 1607
## 1607 1608
## 1608 1609
## 1609 1610
## 1610 1611
## 1611 1612
## 1612 1613
## 1613 1614
## 1614 1615
## 1615 1616
## 1616 1617
## 1617 1618
## 1618 1619
## 1619 1620
## 1620 1621
## 1621 1622
## 1622 1623
## 1623 1624
## 1624 1625
## 1625 1626
## 1626 1627
## 1627 1628
## 1628 1629
## 1629 1630
## 1630 1631
## 1631 1632
## 1632 1633
## 1633 1634
## 1634 1635
## 1635 1636
## 1636 1637
## 1637 1638
## 1638 1639
## 1639 1640
## 1640 1641
## 1641 1642
## 1642 1643
## 1643 1644
## 1644 1645
## 1645 1646
## 1646 1647
## 1647 1648
## 1648 1649
## 1649 1650
## 1650 1651
## 1651 1652
## 1652 1653
## 1653 1654
## 1654 1655
## 1655 1656
## 1656 1657
## 1657 1658
## 1658 1659
## 1659 1660
## 1660 1661
## 1661 1662
## 1662 1663
## 1663 1664
## 1664 1665
## 1665 1666
## 1666 1667
## 1667 1668
## 1668 1669
## 1669 1670
## 1670 1671
## 1671 1672
## 1672 1673
## 1673 1674
## 1674 1675
## 1675 1676
## 1676 1677
## 1677 1678
## 1678 1679
## 1679 1680
## 1680 1681
## 1681 1682
## 1682 1683
## 1683 1684
## 1684 1685
## 1685 1686
## 1686 1687
## 1687 1688
## 1688 1689
## 1689 1690
## 1690 1691
## 1691 1692
## 1692 1693
## 1693 1694
## 1694 1695
## 1695 1696
## 1696 1697
## 1697 1698
## 1698 1699
## 1699 1700
## 1700 1701
## 1701 1702
## 1702 1703
## 1703 1704
## 1704 1705
## 1705 1706
## 1706 1707
## 1707 1708
## 1708 1709
## 1709 1710
## 1710 1711
## 1711 1712
## 1712 1713
## 1713 1714
## 1714 1715
## 1715 1716
## 1716 1717
## 1717 1718
## 1718 1719
## 1719 1720
## 1720 1721
## 1721 1722
## 1722 1723
## 1723 1724
## 1724 1725
## 1725 1726
## 1726 1727
## 1727 1728
## 1728 1729
## 1729 1730
## 1730 1731
## 1731 1732
## 1732 1733
## 1733 1734
## 1734 1735
## 1735 1736
## 1736 1737
## 1737 1738
## 1738 1739
## 1739 1740
## 1740 1741
## 1741 1742
## 1742 1743
## 1743 1744
## 1744 1745
## 1745 1746
## 1746 1747
## 1747 1748
## 1748 1749
## 1749 1750
## 1750 1751
## 1751 1752
## 1752 1753
## 1753 1754
## 1754 1755
## 1755 1756
## 1756 1757
## 1757 1758
## 1758 1759
## 1759 1760
## 1760 1761
## 1761 1762
## 1762 1763
## 1763 1764
## 1764 1765
## 1765 1766
## 1766 1767
## 1767 1768
## 1768 1769
## 1769 1770
## 1770 1771
## 1771 1772
## 1772 1773
## 1773 1774
## 1774 1775
## 1775 1776
## 1776 1777
## 1777 1778
## 1778 1779
## 1779 1780
## 1780 1781
## 1781 1782
## 1782 1783
## 1783 1784
## 1784 1785
## 1785 1786
## 1786 1787
## 1787 1788
## 1788 1789
## 1789 1790
## 1790 1791
## 1791 1792
## 1792 1793
## 1793 1794
## 1794 1795
## 1795 1796
## 1796 1797
## 1797 1798
## 1798 1799
## 1799 1800
## 1800 1801
## 1801 1802
## 1802 1803
## 1803 1804
## 1804 1805
## 1805 1806
## 1806 1807
## 1807 1808
## 1808 1809
## 1809 1810
## 1810 1811
## 1811 1812
## 1812 1813
## 1813 1814
## 1814 1815
## 1815 1816
## 1816 1817
## 1817 1818
## 1818 1819
## 1819 1820
## 1820 1821
## 1821 1822
## 1822 1823
## 1823 1824
## 1824 1825
## 1825 1826
## 1826 1827
## 1827 1828
## 1828 1829
## 1829 1830
## 1830 1831
## 1831 1832
## 1832 1833
## 1833 1834
## 1834 1835
## 1835 1836
## 1836 1837
## 1837 1838
## 1838 1839
## 1839 1840
## 1840 1841
## 1841 1842
## 1842 1843
## 1843 1844
## 1844 1845
## 1845 1846
## 1846 1847
## 1847 1848
## 1848 1849
## 1849 1850
## 1850 1851
## 1851 1852
## 1852 1853
## 1853 1854
## 1854 1855
## 1855 1856
## 1856 1857
## 1857 1858
## 1858 1859
## 1859 1860
## 1860 1861
## 1861 1862
## 1862 1863
## 1863 1864
## 1864 1865
## 1865 1866
## 1866 1867
## 1867 1868
## 1868 1869
## 1869 1870
## 1870 1871
## 1871 1872
## 1872 1873
## 1873 1874
## 1874 1875
## 1875 1876
## 1876 1877
## 1877 1878
## 1878 1879
## 1879 1880
## 1880 1881
## 1881 1882
## 1882 1883
## 1883 1884
## 1884 1885
## 1885 1886
## 1886 1887
## 1887 1888
## 1888 1889
## 1889 1890
## 1890 1891
## 1891 1892
## 1892 1893
## 1893 1894
## 1894 1895
## 1895 1896
## 1896 1897
## 1897 1898
## 1898 1899
## 1899 1900
## 1900 1901
## 1901 1902
## 1902 1903
## 1903 1904
## 1904 1905
## 1905 1906
## 1906 1907
## 1907 1908
## 1908 1909
## 1909 1910
## 1910 1911
## 1911 1912
## 1912 1913
## 1913 1914
## 1914 1915
## 1915 1916
## 1916 1917
## 1917 1918
## 1918 1919
## 1919 1920
## 1920 1921
## 1921 1922
## 1922 1923
## 1923 1924
## 1924 1925
## 1925 1926
## 1926 1927
## 1927 1928
## 1928 1929
## 1929 1930
## 1930 1931
## 1931 1932
## 1932 1933
## 1933 1934
## 1934 1935
## 1935 1936
## 1936 1937
## 1937 1938
## 1938 1939
## 1939 1940
## 1940 1941
## 1941 1942
## 1942 1943
## 1943 1944
## 1944 1945
## 1945 1946
## 1946 1947
## 1947 1948
## 1948 1949
## 1949 1950
## 1950 1951
## 1951 1952
## 1952 1953
## 1953 1954
## 1954 1955
## 1955 1956
## 1956 1957
## 1957 1958
## 1958 1959
## 1959 1960
## 1960 1961
## 1961 1962
## 1962 1963
## 1963 1964
## 1964 1965
## 1965 1966
## 1966 1967
## 1967 1968
## 1968 1969
## 1969 1970
## 1970 1971
## 1971 1972
## 1972 1973
## 1973 1974
## 1974 1975
## 1975 1976
## 1976 1977
## 1977 1978
## 1978 1979
## 1979 1980
## 1980 1981
## 1981 1982
## 1982 1983
## 1983 1984
## 1984 1985
## 1985 1986
## 1986 1987
## 1987 1988
## 1988 1989
## 1989 1990
## 1990 1991
## 1991 1992
## 1992 1993
## 1993 1994
## 1994 1995
## 1995 1996
## 1996 1997
## 1997 1998
## 1998 1999
## 1999 2000
## 2000 2001
## 2001 2002
## 2002 2003
## 2003 2004
## 2004 2005
## 2005 2006
## 2006 2007
## 2007 2008
## 2008 2009
## 2009 2010
## 2010 2011
## 2011 2012
## 2012 2013
## 2013 2014
## 2014 2015
## 2015 2016
## 2016 2017
## 2017 2018
## 2018 2019
## 2019 2020
## 2020 2021
## 2021 2022
## 2022 2023
## 2023 2024
## 2024 2025
## 2025 2026
## 2026 2027
## 2027 2028
## 2028 2029
## 2029 2030
## 2030 2031
## 2031 2032
## 2032 2033
## 2033 2034
## 2034 2035
## 2035 2036
## 2036 2037
## 2037 2038
## 2038 2039
## 2039 2040
## 2040 2041
## 2041 2042
## 2042 2043
## 2043 2044
## 2044 2045
## 2045 2046
## 2046 2047
## 2047 2048
## 2048 2049
## 2049 2050
## 2050 2051
## 2051 2052
## 2052 2053
## 2053 2054
## 2054 2055
## 2055 2056
## 2056 2057
## 2057 2058
## 2058 2059
## 2059 2060
## 2060 2061
## 2061 2062
## 2062 2063
## 2063 2064
## 2064 2065
## 2065 2066
## 2066 2067
## 2067 2068
## 2068 2069
## 2069 2070
## 2070 2071
## 2071 2072
## 2072 2073
## 2073 2074
## 2074 2075
## 2075 2076
## 2076 2077
## 2077 2078
## 2078 2079
## 2079 2080
## 2080 2081
## 2081 2082
## 2082 2083
## 2083 2084
## 2084 2085
## 2085 2086
## 2086 2087
## 2087 2088
## 2088 2089
## 2089 2090
## 2090 2091
## 2091 2092
## 2092 2093
## 2093 2094
## 2094 2095
## 2095 2096
## 2096 2097
## 2097 2098
## 2098 2099
## 2099 2100
## 2100 2101
## 2101 2102
## 2102 2103
## 2103 2104
## 2104 2105
## 2105 2106
## 2106 2107
## 2107 2108
## 2108 2109
## 2109 2110
## 2110 2111
## 2111 2112
## 2112 2113
## 2113 2114
## 2114 2115
## 2115 2116
## 2116 2117
## 2117 2118
## 2118 2119
## 2119 2120
## 2120 2121
## 2121 2122
## 2122 2123
## 2123 2124
## 2124 2125
## 2125 2126
## 2126 2127
## 2127 2128
## 2128 2129
## 2129 2130
## 2130 2131
## 2131 2132
## 2132 2133
## 2133 2134
## 2134 2135
## 2135 2136
## 2136 2137
## 2137 2138
## 2138 2139
## 2139 2140
## 2140 2141
## 2141 2142
## 2142 2143
## 2143 2144
## 2144 2145
## 2145 2146
## 2146 2147
## 2147 2148
## 2148 2149
## 2149 2150
## 2150 2151
## 2151 2152
## 2152 2153
## 2153 2154
## 2154 2155
## 2155 2156
## 2156 2157
## 2157 2158
## 2158 2159
## 2159 2160
## 2160 2161
## 2161 2162
## 2162 2163
## 2163 2164
## 2164 2165
## 2165 2166
## 2166 2167
## 2167 2168
## 2168 2169
## 2169 2170
## 2170 2171
## 2171 2172
## 2172 2173
## 2173 2174
## 2174 2175
## 2175 2176
## 2176 2177
## 2177 2178
## 2178 2179
## 2179 2180
## 2180 2181
## 2181 2182
## 2182 2183
## 2183 2184
## 2184 2185
## 2185 2186
## 2186 2187
## 2187 2188
## 2188 2189
## 2189 2190
## 2190 2191
## 2191 2192
## 2192 2193
## 2193 2194
## 2194 2195
## 2195 2196
## 2196 2197
## 2197 2198
## 2198 2199
## 2199 2200
## 2200 2201
## 2201 2202
## 2202 2203
## 2203 2204
## 2204 2205
## 2205 2206
## 2206 2207
## 2207 2208
## 2208 2209
## 2209 2210
## 2210 2211
## 2211 2212
## 2212 2213
## 2213 2214
## 2214 2215
## 2215 2216
## 2216 2217
## 2217 2218
## 2218 2219
## 2219 2220
## 2220 2221
## 2221 2222
## 2222 2223
## 2223 2224
## 2224 2225
## 2225 2226
## 2226 2227
## 2227 2228
## 2228 2229
## 2229 2230
## 2230 2231
## 2231 2232
## 2232 2233
## 2233 2234
## 2234 2235
## 2235 2236
## 2236 2237
## 2237 2238
## 2238 2239
## 2239 2240
## 2240 2241
## 2241 2242
## 2242 2243
## 2243 2244
## 2244 2245
## 2245 2246
## 2246 2247
## 2247 2248
## 2248 2249
## 2249 2250
## 2250 2251
## 2251 2252
## 2252 2253
## 2253 2254
## 2254 2255
## 2255 2256
## 2256 2257
## 2257 2258
## 2258 2259
## 2259 2260
## 2260 2261
## 2261 2262
## 2262 2263
## 2263 2264
## 2264 2265
## 2265 2266
## 2266 2267
## 2267 2268
## 2268 2269
## 2269 2270
## 2270 2271
## 2271 2272
## 2272 2273
## 2273 2274
## 2274 2275
## 2275 2276
## 2276 2277
## 2277 2278
## 2278 2279
## 2279 2280
## 2280 2281
## 2281 2282
## 2282 2283
## 2283 2284
## 2284 2285
## 2285 2286
## 2286 2287
## 2287 2288
## 2288 2289
## 2289 2290
## 2290 2291
## 2291 2292
## 2292 2293
## 2293 2294
## 2294 2295
## 2295 2296
## 2296 2297
## 2297 2298
## 2298 2299
## 2299 2300
## 2300 2301
## 2301 2302
## 2302 2303
## 2303 2304
## 2304 2305
## 2305 2306
## 2306 2307
## 2307 2308
## 2308 2309
## 2309 2310
## 2310 2311
## 2311 2312
## 2312 2313
## 2313 2314
## 2314 2315
## 2315 2316
## 2316 2317
## 2317 2318
## 2318 2319
## 2319 2320
## 2320 2321
## 2321 2322
## 2322 2323
## 2323 2324
## 2324 2325
## 2325 2326
## 2326 2327
## 2327 2328
## 2328 2329
## 2329 2330
## 2330 2331
## 2331 2332
## 2332 2333
## 2333 2334
## 2334 2335
## 2335 2336
## 2336 2337
## 2337 2338
## 2338 2339
## 2339 2340
## 2340 2341
## 2341 2342
## 2342 2343
## 2343 2344
## 2344 2345
## 2345 2346
## 2346 2347
## 2347 2348
## 2348 2349
## 2349 2350
## 2350 2351
## 2351 2352
## 2352 2353
## 2353 2354
## 2354 2355
## 2355 2356
## 2356 2357
## 2357 2358
## 2358 2359
## 2359 2360
## 2360 2361
## 2361 2362
## 2362 2363
## 2363 2364
## 2364 2365
## 2365 2366
## 2366 2367
## 2367 2368
## 2368 2369
## 2369 2370
## 2370 2371
## 2371 2372
## 2372 2373
## 2373 2374
## 2374 2375
## 2375 2376
## 2376 2377
## 2377 2378
## 2378 2379
## 2379 2380
## 2380 2381
## 2381 2382
## 2382 2383
## 2383 2384
## 2384 2385
## 2385 2386
## 2386 2387
## 2387 2388
## 2388 2389
## 2389 2390
## 2390 2391
## 2391 2392
## 2392 2393
## 2393 2394
## 2394 2395
## 2395 2396
## 2396 2397
## 2397 2398
## 2398 2399
## 2399 2400
## 2400 2401
## 2401 2402
## 2402 2403
## 2403 2404
## 2404 2405
## 2405 2406
## 2406 2407
## 2407 2408
## 2408 2409
## 2409 2410
## 2410 2411
## 2411 2412
## 2412 2413
## 2413 2414
## 2414 2415
## 2415 2416
## 2416 2417
## 2417 2418
## 2418 2419
## 2419 2420
## 2420 2421
## 2421 2422
## 2422 2423
## 2423 2424
## 2424 2425
## 2425 2426
## 2426 2427
## 2427 2428
## 2428 2429
## 2429 2430
## 2430 2431
## 2431 2432
## 2432 2433
## 2433 2434
## 2434 2435
## 2435 2436
## 2436 2437
## 2437 2438
## 2438 2439
## 2439 2440
## 2440 2441
## 2441 2442
## 2442 2443
## 2443 2444
## 2444 2445
## 2445 2446
## 2446 2447
## 2447 2448
## 2448 2449
## 2449 2450
## 2450 2451
## 2451 2452
## 2452 2453
## 2453 2454
## 2454 2455
## 2455 2456
## 2456 2457
## 2457 2458
## 2458 2459
## 2459 2460
## 2460 2461
## 2461 2462
## 2462 2463
## 2463 2464
## 2464 2465
## 2465 2466
## 2466 2467
## 2467 2468
## 2468 2469
## 2469 2470
## 2470 2471
## 2471 2472
## 2472 2473
## 2473 2474
## 2474 2475
## 2475 2476
## 2476 2477
## 2477 2478
## 2478 2479
## 2479 2480
## 2480 2481
## 2481 2482
## 2482 2483
## 2483 2484
## 2484 2485
## 2485 2486
## 2486 2487
## 2487 2488
## 2488 2489
## 2489 2490
## 2490 2491
## 2491 2492
## 2492 2493
## 2493 2494
## 2494 2495
## 2495 2496
## 2496 2497
## 2497 2498
## 2498 2499
## 2499 2500
## 2500 2501
## 2501 2502
## 2502 2503
## 2503 2504
## 2504 2505
## 2505 2506
## 2506 2507
## 2507 2508
## 2508 2509
## 2509 2510
## 2510 2511
## 2511 2512
## 2512 2513
## 2513 2514
## 2514 2515
## 2515 2516
## 2516 2517
## 2517 2518
## 2518 2519
## 2519 2520
## 2520 2521
## 2521 2522
## 2522 2523
## 2523 2524
## 2524 2525
## 2525 2526
## 2526 2527
## 2527 2528
## 2528 2529
## 2529 2530
## 2530 2531
## 2531 2532
## 2532 2533
## 2533 2534
## 2534 2535
## 2535 2536
## 2536 2537
## 2537 2538
## 2538 2539
## 2539 2540
## 2540 2541
## 2541 2542
## 2542 2543
## 2543 2544
## 2544 2545
## 2545 2546
## 2546 2547
## 2547 2548
## 2548 2549
## 2549 2550
## 2550 2551
## 2551 2552
## 2552 2553
## 2553 2554
## 2554 2555
## 2555 2556
## 2556 2557
## 2557 2558
## 2558 2559
## 2559 2560
## 2560 2561
## 2561 2562
## 2562 2563
## 2563 2564
## 2564 2565
## 2565 2566
## 2566 2567
## 2567 2568
## 2568 2569
## 2569 2570
## 2570 2571
## 2571 2572
## 2572 2573
## 2573 2574
## 2574 2575
## 2575 2576
## 2576 2577
## 2577 2578
## 2578 2579
## 2579 2580
## 2580 2581
## 2581 2582
## 2582 2583
## 2583 2584
## 2584 2585
## 2585 2586
## 2586 2587
## 2587 2588
## 2588 2589
## 2589 2590
## 2590 2591
## 2591 2592
## 2592 2593
## 2593 2594
## 2594 2595
## 2595 2596
## 2596 2597
## 2597 2598
## 2598 2599
## 2599 2600
## 2600 2601
## 2601 2602
## 2602 2603
## 2603 2604
## 2604 2605
## 2605 2606
## 2606 2607
## 2607 2608
## 2608 2609
## 2609 2610
## 2610 2611
## 2611 2612
## 2612 2613
## 2613 2614
## 2614 2615
## 2615 2616
## 2616 2617
## 2617 2618
## 2618 2619
## 2619 2620
## 2620 2621
## 2621 2622
## 2622 2623
## 2623 2624
## 2624 2625
## 2625 2626
## 2626 2627
## 2627 2628
## 2628 2629
## 2629 2630
## 2630 2631
## 2631 2632
## 2632 2633
## 2633 2634
## 2634 2635
## 2635 2636
## 2636 2637
## 2637 2638
## 2638 2639
## 2639 2640
## 2640 2641
## 2641 2642
## 2642 2643
## 2643 2644
## 2644 2645
## 2645 2646
## 2646 2647
## 2647 2648
## 2648 2649
## 2649 2650
## 2650 2651
## 2651 2652
## 2652 2653
## 2653 2654
## 2654 2655
## 2655 2656
## 2656 2657
## 2657 2658
## 2658 2659
## 2659 2660
## 2660 2661
## 2661 2662
## 2662 2663
## 2663 2664
## 2664 2665
## 2665 2666
## 2666 2667
## 2667 2668
## 2668 2669
## 2669 2670
## 2670 2671
## 2671 2672
## 2672 2673
## 2673 2674
## 2674 2675
## 2675 2676
## 2676 2677
## 2677 2678
## 2678 2679
## 2679 2680
## 2680 2681
## 2681 2682
## 2682 2683
## 2683 2684
## 2684 2685
## 2685 2686
## 2686 2687
## 2687 2688
## 2688 2689
## 2689 2690
## 2690 2691
## 2691 2692
## 2692 2693
## 2693 2694
## 2694 2695
## 2695 2696
## 2696 2697
## 2697 2698
## 2698 2699
## 2699 2700
## 2700 2701
## 2701 2702
## 2702 2703
## 2703 2704
## 2704 2705
## 2705 2706
## 2706 2707
## 2707 2708
## 2708 2709
## 2709 2710
## 2710 2711
## 2711 2712
## 2712 2713
## 2713 2714
## 2714 2715
## 2715 2716
## 2716 2717
## 2717 2718
## 2718 2719
## 2719 2720
## 2720 2721
## 2721 2722
## 2722 2723
## 2723 2724
## 2724 2725
## 2725 2726
## 2726 2727
## 2727 2728
## 2728 2729
## 2729 2730
## 2730 2731
## 2731 2732
## 2732 2733
## 2733 2734
## 2734 2735
## 2735 2736
## 2736 2737
## 2737 2738
## 2738 2739
## 2739 2740
## 2740 2741
## 2741 2742
## 2742 2743
## 2743 2744
## 2744 2745
## 2745 2746
## 2746 2747
## 2747 2748
## 2748 2749
## 2749 2750
## 2750 2751
## 2751 2752
## 2752 2753
## 2753 2754
## 2754 2755
## 2755 2756
## 2756 2757
## 2757 2758
## 2758 2759
## 2759 2760
## 2760 2761
## 2761 2762
## 2762 2763
## 2763 2764
## 2764 2765
## 2765 2766
## 2766 2767
## 2767 2768
## 2768 2769
## 2769 2770
## 2770 2771
## 2771 2772
## 2772 2773
## 2773 2774
## 2774 2775
## 2775 2776
## 2776 2777
## 2777 2778
## 2778 2779
## 2779 2780
## 2780 2781
## 2781 2782
## 2782 2783
## 2783 2784
## 2784 2785
## 2785 2786
## 2786 2787
## 2787 2788
## 2788 2789
## 2789 2790
## 2790 2791
## 2791 2792
## 2792 2793
## 2793 2794
## 2794 2795
## 2795 2796
## 2796 2797
## 2797 2798
## 2798 2799
## 2799 2800
## 2800 2801
## 2801 2802
## 2802 2803
## 2803 2804
## 2804 2805
## 2805 2806
## 2806 2807
## 2807 2808
## 2808 2809
## 2809 2810
## 2810 2811
## 2811 2812
## 2812 2813
## 2813 2814
## 2814 2815
## 2815 2816
## 2816 2817
## 2817 2818
## 2818 2819
## 2819 2820
## 2820 2821
## 2821 2822
## 2822 2823
## 2823 2824
## 2824 2825
## 2825 2826
## 2826 2827
## 2827 2828
## 2828 2829
## 2829 2830
## 2830 2831
## 2831 2832
## 2832 2833
## 2833 2834
## 2834 2835
## 2835 2836
## 2836 2837
## 2837 2838
## 2838 2839
## 2839 2840
## 2840 2841
## 2841 2842
## 2842 2843
## 2843 2844
## 2844 2845
## 2845 2846
## 2846 2847
## 2847 2848
## 2848 2849
## 2849 2850
## 2850 2851
## 2851 2852
## 2852 2853
## 2853 2854
## 2854 2855
## 2855 2856
## 2856 2857
## 2857 2858
## 2858 2859
## 2859 2860
## 2860 2861
## 2861 2862
## 2862 2863
## 2863 2864
## 2864 2865
## 2865 2866
## 2866 2867
## 2867 2868
## 2868 2869
## 2869 2870
## 2870 2871
## 2871 2872
## 2872 2873
## 2873 2874
## 2874 2875
## 2875 2876
## 2876 2877
## 2877 2878
## 2878 2879
## 2879 2880
## 2880 2881
## 2881 2882
## 2882 2883
## 2883 2884
## 2884 2885
## 2885 2886
## 2886 2887
## 2887 2888
## 2888 2889
## 2889 2890
## 2890 2891
## 2891 2892
## 2892 2893
## 2893 2894
## 2894 2895
## 2895 2896
## 2896 2897
## 2897 2898
## 2898 2899
## 2899 2900
## 2900 2901
## 2901 2902
## 2902 2903
## 2903 2904
## 2904 2905
## 2905 2906
## 2906 2907
## 2907 2908
## 2908 2909
## 2909 2910
## 2910 2911
## 2911 2912
## 2912 2913
## 2913 2914
## 2914 2915
## 2915 2916
## 2916 2917
## 2917 2918
## 2918 2919
## 2919 2920
## 2920 2921
## 2921 2922
## 2922 2923
## 2923 2924
## 2924 2925
## 2925 2926
## 2926 2927
## 2927 2928
## 2928 2929
## 2929 2930
## 2930 2931
## 2931 2932
## 2932 2933
## 2933 2934
## 2934 2935
## 2935 2936
## 2936 2937
## 2937 2938
## 2938 2939
## 2939 2940
## 2940 2941
## 2941 2942
## 2942 2943
## 2943 2944
## 2944 2945
## 2945 2946
## 2946 2947
## 2947 2948
## 2948 2949
## 2949 2950
## 2950 2951
## 2951 2952
## 2952 2953
## 2953 2954
## 2954 2955
## 2955 2956
## 2956 2957
## 2957 2958
## 2958 2959
## 2959 2960
## 2960 2961
## 2961 2962
## 2962 2963
## 2963 2964
## 2964 2965
## 2965 2966
## 2966 2967
## 2967 2968
## 2968 2969
## 2969 2970
## 2970 2971
## 2971 2972
## 2972 2973
## 2973 2974
## 2974 2975
## 2975 2976
## 2976 2977
## 2977 2978
## 2978 2979
## 2979 2980
## 2980 2981
## 2981 2982
## 2982 2983
## 2983 2984
## 2984 2985
## 2985 2986
## 2986 2987
## 2987 2988
## 2988 2989
## 2989 2990
## 2990 2991
## 2991 2992
## 2992 2993
## 2993 2994
## 2994 2995
## 2995 2996
## 2996 2997
## 2997 2998
## 2998 2999
## 2999 3000
## 3000 3001
## 3001 3002
## 3002 3003
## 3003 3004
## 3004 3005
## 3005 3006
## 3006 3007
## 3007 3008
## 3008 3009
## 3009 3010
## 3010 3011
## 3011 3012
## 3012 3013
## 3013 3014
## 3014 3015
## 3015 3016
## 3016 3017
## 3017 3018
## 3018 3019
## 3019 3020
## 3020 3021
## 3021 3022
## 3022 3023
## 3023 3024
## 3024 3025
## 3025 3026
## 3026 3027
## 3027 3028
## 3028 3029
## 3029 3030
## 3030 3031
## 3031 3032
## 3032 3033
## 3033 3034
## 3034 3035
## 3035 3036
## 3036 3037
## 3037 3038
## 3038 3039
## 3039 3040
## 3040 3041
## 3041 3042
## 3042 3043
## 3043 3044
## 3044 3045
## 3045 3046
## 3046 3047
## 3047 3048
## 3048 3049
## 3049 3050
## 3050 3051
## 3051 3052
## 3052 3053
## 3053 3054
## 3054 3055
## 3055 3056
## 3056 3057
## 3057 3058
## 3058 3059
## 3059 3060
## 3060 3061
## 3061 3062
## 3062 3063
## 3063 3064
## 3064 3065
## 3065 3066
## 3066 3067
## 3067 3068
## 3068 3069
## 3069 3070
## 3070 3071
## 3071 3072
## 3072 3073
## 3073 3074
## 3074 3075
## 3075 3076
## 3076 3077
## 3077 3078
## 3078 3079
## 3079 3080
## 3080 3081
## 3081 3082
## 3082 3083
## 3083 3084
## 3084 3085
## 3085 3086
## 3086 3087
## 3087 3088
## 3088 3089
## 3089 3090
## 3090 3091
## 3091 3092
## 3092 3093
## 3093 3094
## 3094 3095
## 3095 3096
## 3096 3097
## 3097 3098
## 3098 3099
## 3099 3100
## 3100 3101
## 3101 3102
## 3102 3103
## 3103 3104
## 3104 3105
## 3105 3106
## 3106 3107
## 3107 3108
## 3108 3109
## 3109 3110
## 3110 3111
## 3111 3112
## 3112 3113
## 3113 3114
## 3114 3115
## 3115 3116
## 3116 3117
## 3117 3118
## 3118 3119
## 3119 3120
## 3120 3121
## 3121 3122
## 3122 3123
## 3123 3124
## 3124 3125
## 3125 3126
## 3126 3127
## 3127 3128
## 3128 3129
## 3129 3130
## 3130 3131
## 3131 3132
## 3132 3133
## 3133 3134
## 3134 3135
## 3135 3136
## 3136 3137
## 3137 3138
## 3138 3139
## 3139 3140
## 3140 3141
## 3141 3142
## 3142 3143
## 3143 3144
## 3144 3145
## 3145 3146
## 3146 3147
## 3147 3148
## 3148 3149
## 3149 3150
## 3150 3151
## 3151 3152
## 3152 3153
## 3153 3154
## 3154 3155
## 3155 3156
## 3156 3157
## 3157 3158
## 3158 3159
## 3159 3160
## 3160 3161
## 3161 3162
## 3162 3163
## 3163 3164
## 3164 3165
## 3165 3166
## 3166 3167
## 3167 3168
## 3168 3169
## 3169 3170
## 3170 3171
## 3171 3172
## 3172 3173
## 3173 3174
## 3174 3175
## 3175 3176
## 3176 3177
## 3177 3178
## 3178 3179
## 3179 3180
## 3180 3181
## 3181 3182
## 3182 3183
## 3183 3184
## 3184 3185
## 3185 3186
## 3186 3187
## 3187 3188
## 3188 3189
## 3189 3190
## 3190 3191
## 3191 3192
## 3192 3193
## 3193 3194
## 3194 3195
## 3195 3196
## 3196 3197
## 3197 3198
## 3198 3199
## 3199 3200
## 3200 3201
## 3201 3202
## 3202 3203
## 3203 3204
## 3204 3205
## 3205 3206
## 3206 3207
## 3207 3208
## 3208 3209
## 3209 3210
## 3210 3211
## 3211 3212
## 3212 3213
## 3213 3214
## 3214 3215
## 3215 3216
## 3216 3217
## 3217 3218
## 3218 3219
## 3219 3220
## 3220 3221
## 3221 3222
## 3222 3223
## 3223 3224
## 3224 3225
## 3225 3226
## 3226 3227
## 3227 3228
## 3228 3229
## 3229 3230
## 3230 3231
## 3231 3232
## 3232 3233
## 3233 3234
## 3234 3235
## 3235 3236
## 3236 3237
## 3237 3238
## 3238 3239
## 3239 3240
## 3240 3241
## 3241 3242
## 3242 3243
## 3243 3244
## 3244 3245
## 3245 3246
## 3246 3247
## 3247 3248
## 3248 3249
## 3249 3250
## 3250 3251
## 3251 3252
## 3252 3253
## 3253 3254
## 3254 3255
## 3255 3256
## 3256 3257
## 3257 3258
## 3258 3259
## 3259 3260
## 3260 3261
## 3261 3262
## 3262 3263
## 3263 3264
## 3264 3265
## 3265 3266
## 3266 3267
## 3267 3268
## 3268 3269
## 3269 3270
## 3270 3271
## 3271 3272
## 3272 3273
## 3273 3274
## 3274 3275
## 3275 3276
## 3276 3277
## 3277 3278
## 3278 3279
## 3279 3280
## 3280 3281
## 3281 3282
## 3282 3283
## 3283 3284
## 3284 3285
## 3285 3286
## 3286 3287
## 3287 3288
## 3288 3289
## 3289 3290
## 3290 3291
## 3291 3292
## 3292 3293
## 3293 3294
## 3294 3295
## 3295 3296
## 3296 3297
## 3297 3298
## 3298 3299
## 3299 3300
## 3300 3301
## 3301 3302
## 3302 3303
## 3303 3304
## 3304 3305
## 3305 3306
## 3306 3307
## 3307 3308
## 3308 3309
## 3309 3310
## 3310 3311
## 3311 3312
## 3312 3313
## 3313 3314
## 3314 3315
## 3315 3316
## 3316 3317
## 3317 3318
## 3318 3319
## 3319 3320
## 3320 3321
## 3321 3322
## 3322 3323
## 3323 3324
## 3324 3325
## 3325 3326
## 3326 3327
## 3327 3328
## 3328 3329
## 3329 3330
## 3330 3331
## 3331 3332
## 3332 3333
## 3333 3334
## 3334 3335
## 3335 3336
## 3336 3337
## 3337 3338
## 3338 3339
## 3339 3340
## 3340 3341
## 3341 3342
## 3342 3343
## 3343 3344
## 3344 3345
## 3345 3346
## 3346 3347
## 3347 3348
## 3348 3349
## 3349 3350
## 3350 3351
## 3351 3352
## 3352 3353
## 3353 3354
## 3354 3355
## 3355 3356
## 3356 3357
## 3357 3358
## 3358 3359
## 3359 3360
## 3360 3361
## 3361 3362
## 3362 3363
## 3363 3364
## 3364 3365
## 3365 3366
## 3366 3367
## 3367 3368
## 3368 3369
## 3369 3370
## 3370 3371
## 3371 3372
## 3372 3373
## 3373 3374
## 3374 3375
## 3375 3376
## 3376 3377
## 3377 3378
## 3378 3379
## 3379 3380
## 3380 3381
## 3381 3382
## 3382 3383
## 3383 3384
## 3384 3385
## 3385 3386
## 3386 3387
## 3387 3388
## 3388 3389
## 3389 3390
## 3390 3391
## 3391 3392
## 3392 3393
## 3393 3394
## 3394 3395
## 3395 3396
## 3396 3397
## 3397 3398
## 3398 3399
## 3399 3400
## 3400 3401
## 3401 3402
## 3402 3403
## 3403 3404
## 3404 3405
## 3405 3406
## 3406 3407
## 3407 3408
## 3408 3409
## 3409 3410
## 3410 3411
## 3411 3412
## 3412 3413
## 3413 3414
## 3414 3415
## 3415 3416
## 3416 3417
## 3417 3418
## 3418 3419
## 3419 3420
## 3420 3421
## 3421 3422
## 3422 3423
## 3423 3424
## 3424 3425
## 3425 3426
## 3426 3427
## 3427 3428
## 3428 3429
## 3429 3430
## 3430 3431
## 3431 3432
## 3432 3433
## 3433 3434
## 3434 3435
## 3435 3436
## 3436 3437
## 3437 3438
## 3438 3439
## 3439 3440
## 3440 3441
## 3441 3442
## 3442 3443
## 3443 3444
## 3444 3445
## 3445 3446
## 3446 3447
## 3447 3448
## 3448 3449
## 3449 3450
## 3450 3451
## 3451 3452
## 3452 3453
## 3453 3454
## 3454 3455
## 3455 3456
## 3456 3457
## 3457 3458
## 3458 3459
## 3459 3460
## 3460 3461
## 3461 3462
## 3462 3463
## 3463 3464
## 3464 3465
## 3465 3466
## 3466 3467
## 3467 3468
## 3468 3469
## 3469 3470
## 3470 3471
## 3471 3472
## 3472 3473
## 3473 3474
## 3474 3475
## 3475 3476
## 3476 3477
## 3477 3478
## 3478 3479
## 3479 3480
## 3480 3481
## 3481 3482
## 3482 3483
## 3483 3484
## 3484 3485
## 3485 3486
## 3486 3487
## 3487 3488
## 3488 3489
## 3489 3490
## 3490 3491
## 3491 3492
## 3492 3493
## 3493 3494
## 3494 3495
## 3495 3496
## 3496 3497
## 3497 3498
## 3498 3499
## 3499 3500
## 3500 3501
## 3501 3502
## 3502 3503
## 3503 3504
## 3504 3505
## 3505 3506
## 3506 3507
## 3507 3508
## 3508 3509
## 3509 3510
## 3510 3511
## 3511 3512
## 3512 3513
## 3513 3514
## 3514 3515
## 3515 3516
## 3516 3517
## 3517 3518
## 3518 3519
## 3519 3520
## 3520 3521
## 3521 3522
## 3522 3523
## 3523 3524
## 3524 3525
## 3525 3526
## 3526 3527
## 3527 3528
## 3528 3529
## 3529 3530
## 3530 3531
## 3531 3532
## 3532 3533
## 3533 3534
## 3534 3535
## 3535 3536
## 3536 3537
## 3537 3538
## 3538 3539
## 3539 3540
## 3540 3541
## 3541 3542
## 3542 3543
## 3543 3544
## 3544 3545
## 3545 3546
## 3546 3547
## 3547 3548
## 3548 3549
## 3549 3550
## 3550 3551
## 3551 3552
## 3552 3553
## 3553 3554
## 3554 3555
## 3555 3556
## 3556 3557
## 3557 3558
## 3558 3559
## 3559 3560
## 3560 3561
## 3561 3562
## 3562 3563
## 3563 3564
## 3564 3565
## 3565 3566
## 3566 3567
## 3567 3568
## 3568 3569
## 3569 3570
## 3570 3571
## 3571 3572
## 3572 3573
## 3573 3574
## 3574 3575
## 3575 3576
## 3576 3577
## 3577 3578
## 3578 3579
## 3579 3580
## 3580 3581
## 3581 3582
## 3582 3583
## 3583 3584
## 3584 3585
## 3585 3586
## 3586 3587
## 3587 3588
## 3588 3589
## 3589 3590
## 3590 3591
## 3591 3592
## 3592 3593
## 3593 3594
## 3594 3595
## 3595 3596
## 3596 3597
## 3597 3598
## 3598 3599
## 3599 3600
## 3600 3601
## 3601 3602
## 3602 3603
## 3603 3604
## 3604 3605
## 3605 3606
## 3606 3607
## 3607 3608
## 3608 3609
## 3609 3610
## 3610 3611
## 3611 3612
## 3612 3613
## 3613 3614
## 3614 3615
## 3615 3616
## 3616 3617
## 3617 3618
## 3618 3619
## 3619 3620
## 3620 3621
## 3621 3622
## 3622 3623
## 3623 3624
## 3624 3625
## 3625 3626
## 3626 3627
## 3627 3628
## 3628 3629
## 3629 3630
## 3630 3631
## 3631 3632
## 3632 3633
## 3633 3634
## 3634 3635
## 3635 3636
## 3636 3637
## 3637 3638
## 3638 3639
## 3639 3640
## 3640 3641
## 3641 3642
## 3642 3643
## 3643 3644
## 3644 3645
## 3645 3646
## 3646 3647
## 3647 3648
## 3648 3649
## 3649 3650
## 3650 3651
## 3651 3652
## 3652 3653
## 3653 3654
## 3654 3655
## 3655 3656
## 3656 3657
## 3657 3658
## 3658 3659
## 3659 3660
## 3660 3661
## 3661 3662
## 3662 3663
## 3663 3664
## 3664 3665
## 3665 3666
## 3666 3667
## 3667 3668
## 3668 3669
## 3669 3670
## 3670 3671
## 3671 3672
## 3672 3673
## 3673 3674
## 3674 3675
## 3675 3676
## 3676 3677
## 3677 3678
## 3678 3679
## 3679 3680
## 3680 3681
## 3681 3682
## 3682 3683
## 3683 3684
## 3684 3685
## 3685 3686
## 3686 3687
## 3687 3688
## 3688 3689
## 3689 3690
## 3690 3691
## 3691 3692
## 3692 3693
## 3693 3694
## 3694 3695
## 3695 3696
## 3696 3697
## 3697 3698
## 3698 3699
## 3699 3700
## 3700 3701
## 3701 3702
## 3702 3703
## 3703 3704
## 3704 3705
## 3705 3706
## 3706 3707
## 3707 3708
## 3708 3709
## 3709 3710
## 3710 3711
## 3711 3712
## 3712 3713
## 3713 3714
## 3714 3715
## 3715 3716
## 3716 3717
## 3717 3718
## 3718 3719
## 3719 3720
## 3720 3721
## 3721 3722
## 3722 3723
## 3723 3724
## 3724 3725
## 3725 3726
## 3726 3727
## 3727 3728
## 3728 3729
## 3729 3730
## 3730 3731
## 3731 3732
## 3732 3733
## 3733 3734
## 3734 3735
## 3735 3736
## 3736 3737
## 3737 3738
## 3738 3739
## 3739 3740
## 3740 3741
## 3741 3742
## 3742 3743
## 3743 3744
## 3744 3745
## 3745 3746
## 3746 3747
## 3747 3748
## 3748 3749
## 3749 3750
## 3750 3751
## 3751 3752
## 3752 3753
## 3753 3754
## 3754 3755
## 3755 3756
## 3756 3757
## 3757 3758
## 3758 3759
## 3759 3760
## 3760 3761
## 3761 3762
## 3762 3763
## 3763 3764
## 3764 3765
## 3765 3766
## 3766 3767
## 3767 3768
## 3768 3769
## 3769 3770
## 3770 3771
## 3771 3772
## 3772 3773
## 3773 3774
## 3774 3775
## 3775 3776
## 3776 3777
## 3777 3778
## 3778 3779
## 3779 3780
## 3780 3781
## 3781 3782
## 3782 3783
## 3783 3784
## 3784 3785
## 3785 3786
## 3786 3787
## 3787 3788
## 3788 3789
## 3789 3790
## 3790 3791
## 3791 3792
## 3792 3793
## 3793 3794
## 3794 3795
## 3795 3796
## 3796 3797
## 3797 3798
## 3798 3799
## 3799 3800
## 3800 3801
## 3801 3802
## 3802 3803
## 3803 3804
## 3804 3805
## 3805 3806
## 3806 3807
## 3807 3808
## 3808 3809
## 3809 3810
## 3810 3811
## 3811 3812
## 3812 3813
## 3813 3814
## 3814 3815
## 3815 3816
## 3816 3817
## 3817 3818
## 3818 3819
## 3819 3820
## 3820 3821
## 3821 3822
## 3822 3823
## 3823 3824
## 3824 3825
## 3825 3826
## 3826 3827
## 3827 3828
## 3828 3829
## 3829 3830
## 3830 3831
## 3831 3832
## 3832 3833
## 3833 3834
## 3834 3835
## 3835 3836
## 3836 3837
## 3837 3838
## 3838 3839
## 3839 3840
## 3840 3841
## 3841 3842
## 3842 3843
## 3843 3844
## 3844 3845
## 3845 3846
## 3846 3847
## 3847 3848
## 3848 3849
## 3849 3850
## 3850 3851
## 3851 3852
## 3852 3853
## 3853 3854
## 3854 3855
## 3855 3856
## 3856 3857
## 3857 3858
## 3858 3859
## 3859 3860
## 3860 3861
## 3861 3862
## 3862 3863
## 3863 3864
## 3864 3865
## 3865 3866
## 3866 3867
## 3867 3868
## 3868 3869
## 3869 3870
## 3870 3871
## 3871 3872
## 3872 3873
## 3873 3874
## 3874 3875
## 3875 3876
## 3876 3877
## 3877 3878
## 3878 3879
## 3879 3880
## 3880 3881
## 3881 3882
## 3882 3883
## 3883 3884
## 3884 3885
## 3885 3886
## 3886 3887
## 3887 3888
## 3888 3889
## 3889 3890
## 3890 3891
## 3891 3892
## 3892 3893
## 3893 3894
## 3894 3895
## 3895 3896
## 3896 3897
## 3897 3898
## 3898 3899
## 3899 3900
## 3900 3901
## 3901 3902
## 3902 3903
## 3903 3904
## 3904 3905
## 3905 3906
## 3906 3907
## 3907 3908
## 3908 3909
## 3909 3910
## 3910 3911
## 3911 3912
## 3912 3913
## 3913 3914
## 3914 3915
## 3915 3916
## 3916 3917
## 3917 3918
## 3918 3919
## 3919 3920
## 3920 3921
## 3921 3922
## 3922 3923
## 3923 3924
## 3924 3925
## 3925 3926
## 3926 3927
## 3927 3928
## 3928 3929
## 3929 3930
## 3930 3931
## 3931 3932
## 3932 3933
## 3933 3934
## 3934 3935
## 3935 3936
## 3936 3937
## 3937 3938
## 3938 3939
## 3939 3940
## 3940 3941
## 3941 3942
## 3942 3943
## 3943 3944
## 3944 3945
## 3945 3946
## 3946 3947
## 3947 3948
## 3948 3949
## 3949 3950
## 3950 3951
## 3951 3952
## 3952 3953
## 3953 3954
## 3954 3955
## 3955 3956
## 3956 3957
## 3957 3958
## 3958 3959
## 3959 3960
## 3960 3961
## 3961 3962
## 3962 3963
## 3963 3964
## 3964 3965
## 3965 3966
## 3966 3967
## 3967 3968
## 3968 3969
## 3969 3970
## 3970 3971
## 3971 3972
## 3972 3973
## 3973 3974
## 3974 3975
## 3975 3976
## 3976 3977
## 3977 3978
## 3978 3979
## 3979 3980
## 3980 3981
## 3981 3982
## 3982 3983
## 3983 3984
## 3984 3985
## 3985 3986
## 3986 3987
## 3987 3988
## 3988 3989
## 3989 3990
## 3990 3991
## 3991 3992
## 3992 3993
## 3993 3994
## 3994 3995
## 3995 3996
## 3996 3997
## 3997 3998
## 3998 3999
## 3999 4000
## 4000 4001
## 4001 4002
## 4002 4003
## 4003 4004
## 4004 4005
## 4005 4006
## 4006 4007
## 4007 4008
## 4008 4009
## 4009 4010
## 4010 4011
## 4011 4012
## 4012 4013
## 4013 4014
## 4014 4015
## 4015 4016
## 4016 4017
## 4017 4018
## 4018 4019
## 4019 4020
## 4020 4021
## 4021 4022
## 4022 4023
## 4023 4024
## 4024 4025
## 4025 4026
## 4026 4027
## 4027 4028
## 4028 4029
## 4029 4030
## 4030 4031
## 4031 4032
## 4032 4033
## 4033 4034
## 4034 4035
## 4035 4036
## 4036 4037
## 4037 4038
## 4038 4039
## 4039 4040
## 4040 4041
## 4041 4042
## 4042 4043
## 4043 4044
## 4044 4045
## 4045 4046
## 4046 4047
## 4047 4048
## 4048 4049
## 4049 4050
## 4050 4051
## 4051 4052
## 4052 4053
## 4053 4054
## 4054 4055
## 4055 4056
## 4056 4057
## 4057 4058
## 4058 4059
## 4059 4060
## 4060 4061
## 4061 4062
## 4062 4063
## 4063 4064
## 4064 4065
## 4065 4066
## 4066 4067
## 4067 4068
## 4068 4069
## 4069 4070
## 4070 4071
## 4071 4072
## 4072 4073
## 4073 4074
## 4074 4075
## 4075 4076
## 4076 4077
## 4077 4078
## 4078 4079
## 4079 4080
## 4080 4081
## 4081 4082
## 4082 4083
## 4083 4084
## 4084 4085
## 4085 4086
## 4086 4087
## 4087 4088
## 4088 4089
## 4089 4090
## 4090 4091
## 4091 4092
## 4092 4093
## 4093 4094
## 4094 4095
## 4095 4096
## 4096 4097
## 4097 4098
## 4098 4099
## 4099 4100
## 4100 4101
## 4101 4102
## 4102 4103
## 4103 4104
## 4104 4105
## 4105 4106
## 4106 4107
## 4107 4108
## 4108 4109
## 4109 4110
## 4110 4111
## 4111 4112
## 4112 4113
## 4113 4114
## 4114 4115
## 4115 4116
## 4116 4117
## 4117 4118
## 4118 4119
## 4119 4120
## 4120 4121
## 4121 4122
## 4122 4123
## 4123 4124
## 4124 4125
## 4125 4126
## 4126 4127
## 4127 4128
## 4128 4129
## 4129 4130
## 4130 4131
## 4131 4132
## 4132 4133
## 4133 4134
## 4134 4135
## 4135 4136
## 4136 4137
## 4137 4138
## 4138 4139
## 4139 4140
## 4140 4141
## 4141 4142
## 4142 4143
## 4143 4144
## 4144 4145
## 4145 4146
## 4146 4147
## 4147 4148
## 4148 4149
## 4149 4150
## 4150 4151
## 4151 4152
## 4152 4153
## 4153 4154
## 4154 4155
## 4155 4156
## 4156 4157
## 4157 4158
## 4158 4159
## 4159 4160
## 4160 4161
## 4161 4162
## 4162 4163
## 4163 4164
## 4164 4165
## 4165 4166
## 4166 4167
## 4167 4168
## 4168 4169
## 4169 4170
## 4170 4171
## 4171 4172
## 4172 4173
## 4173 4174
## 4174 4175
## 4175 4176
## 4176 4177
## 4177 4178
## 4178 4179
## 4179 4180
## 4180 4181
## 4181 4182
## 4182 4183
## 4183 4184
## 4184 4185
## 4185 4186
## 4186 4187
## 4187 4188
## 4188 4189
## 4189 4190
## 4190 4191
## 4191 4192
## 4192 4193
## 4193 4194
## 4194 4195
## 4195 4196
## 4196 4197
## 4197 4198
## 4198 4199
## 4199 4200
## 4200 4201
## 4201 4202
## 4202 4203
## 4203 4204
## 4204 4205
## 4205 4206
## 4206 4207
## 4207 4208
## 4208 4209
## 4209 4210
## 4210 4211
## 4211 4212
## 4212 4213
## 4213 4214
## 4214 4215
## 4215 4216
## 4216 4217
## 4217 4218
## 4218 4219
## 4219 4220
## 4220 4221
## 4221 4222
## 4222 4223
## 4223 4224
## 4224 4225
## 4225 4226
## 4226 4227
## 4227 4228
## 4228 4229
## 4229 4230
## 4230 4231
## 4231 4232
## 4232 4233
## 4233 4234
## 4234 4235
## 4235 4236
## 4236 4237
## 4237 4238
## 4238 4239
## 4239 4240
## 4240 4241
## 4241 4242
## 4242 4243
## 4243 4244
## 4244 4245
## 4245 4246
## 4246 4247
## 4247 4248
## 4248 4249
## 4249 4250
## 4250 4251
## 4251 4252
## 4252 4253
## 4253 4254
## 4254 4255
## 4255 4256
## 4256 4257
## 4257 4258
## 4258 4259
## 4259 4260
## 4260 4261
## 4261 4262
## 4262 4263
## 4263 4264
## 4264 4265
## 4265 4266
## 4266 4267
## 4267 4268
## 4268 4269
## 4269 4270
## 4270 4271
## 4271 4272
## 4272 4273
## 4273 4274
## 4274 4275
## 4275 4276
## 4276 4277
## 4277 4278
## 4278 4279
## 4279 4280
## 4280 4281
## 4281 4282
## 4282 4283
## 4283 4284
## 4284 4285
## 4285 4286
## 4286 4287
## 4287 4288
## 4288 4289
## 4289 4290
## 4290 4291
## 4291 4292
## 4292 4293
## 4293 4294
## 4294 4295
## 4295 4296
## 4296 4297
## 4297 4298
## 4298 4299
## 4299 4300
## 4300 4301
## 4301 4302
## 4302 4303
## 4303 4304
## 4304 4305
## 4305 4306
## 4306 4307
## 4307 4308
## 4308 4309
## 4309 4310
## 4310 4311
## 4311 4312
## 4312 4313
## 4313 4314
## 4314 4315
## 4315 4316
## 4316 4317
## 4317 4318
## 4318 4319
## 4319 4320
## 4320 4321
## 4321 4322
## 4322 4323
## 4323 4324
## 4324 4325
## 4325 4326
## 4326 4327
## 4327 4328
## 4328 4329
## 4329 4330
## 4330 4331
## 4331 4332
## 4332 4333
## 4333 4334
## 4334 4335
## 4335 4336
## 4336 4337
## 4337 4338
## 4338 4339
## 4339 4340
## 4340 4341
## 4341 4342
## 4342 4343
## 4343 4344
## 4344 4345
## 4345 4346
## 4346 4347
## 4347 4348
## 4348 4349
## 4349 4350
## 4350 4351
## 4351 4352
## 4352 4353
## 4353 4354
## 4354 4355
## 4355 4356
## 4356 4357
## 4357 4358
## 4358 4359
## 4359 4360
## 4360 4361
## 4361 4362
## 4362 4363
## 4363 4364
## 4364 4365
## 4365 4366
## 4366 4367
## 4367 4368
## 4368 4369
## 4369 4370
## 4370 4371
## 4371 4372
## 4372 4373
## 4373 4374
## 4374 4375
## 4375 4376
## 4376 4377
## 4377 4378
## 4378 4379
## 4379 4380
## 4380 4381
## 4381 4382
## 4382 4383
## 4383 4384
## 4384 4385
## 4385 4386
## 4386 4387
## 4387 4388
## 4388 4389
## 4389 4390
## 4390 4391
## 4391 4392
## 4392 4393
## 4393 4394
## 4394 4395
## 4395 4396
## 4396 4397
## 4397 4398
## 4398 4399
## 4399 4400
## 4400 4401
## 4401 4402
## 4402 4403
## 4403 4404
## 4404 4405
## 4405 4406
## 4406 4407
## 4407 4408
## 4408 4409
## 4409 4410
## 4410 4411
## 4411 4412
## 4412 4413
## 4413 4414
## 4414 4415
## 4415 4416
## 4416 4417
## 4417 4418
## 4418 4419
## 4419 4420
## 4420 4421
## 4421 4422
## 4422 4423
## 4423 4424
## 4424 4425
## 4425 4426
## 4426 4427
## 4427 4428
## 4428 4429
## 4429 4430
## 4430 4431
## 4431 4432
## 4432 4433
## 4433 4434
## 4434 4435
## 4435 4436
## 4436 4437
## 4437 4438
## 4438 4439
## 4439 4440
## 4440 4441
## 4441 4442
## 4442 4443
## 4443 4444
## 4444 4445
## 4445 4446
## 4446 4447
## 4447 4448
## 4448 4449
## 4449 4450
## 4450 4451
## 4451 4452
## 4452 4453
## 4453 4454
## 4454 4455
## 4455 4456
## 4456 4457
## 4457 4458
## 4458 4459
## 4459 4460
## 4460 4461
## 4461 4462
## 4462 4463
## 4463 4464
## 4464 4465
## 4465 4466
## 4466 4467
## 4467 4468
## 4468 4469
## 4469 4470
## 4470 4471
## 4471 4472
## 4472 4473
## 4473 4474
## 4474 4475
## 4475 4476
## 4476 4477
## 4477 4478
## 4478 4479
## 4479 4480
## 4480 4481
## 4481 4482
## 4482 4483
## 4483 4484
## 4484 4485
## 4485 4486
## 4486 4487
## 4487 4488
## 4488 4489
## 4489 4490
## 4490 4491
## 4491 4492
## 4492 4493
## 4493 4494
## 4494 4495
## 4495 4496
## 4496 4497
## 4497 4498
## 4498 4499
## 4499 4500
## 4500 4501
## 4501 4502
## 4502 4503
## 4503 4504
## 4504 4505
## 4505 4506
## 4506 4507
## 4507 4508
## 4508 4509
## 4509 4510
## 4510 4511
## 4511 4512
## 4512 4513
## 4513 4514
## 4514 4515
## 4515 4516
## 4516 4517
## 4517 4518
## 4518 4519
## 4519 4520
## 4520 4521
## 4521 4522
## 4522 4523
## 4523 4524
## 4524 4525
## 4525 4526
## 4526 4527
## 4527 4528
## 4528 4529
## 4529 4530
## 4530 4531
## 4531 4532
## 4532 4533
## 4533 4534
## 4534 4535
## 4535 4536
## 4536 4537
## 4537 4538
## 4538 4539
## 4539 4540
## 4540 4541
## 4541 4542
## 4542 4543
## 4543 4544
## 4544 4545
## 4545 4546
## 4546 4547
## 4547 4548
## 4548 4549
## 4549 4550
## 4550 4551
## 4551 4552
## 4552 4553
## 4553 4554
## 4554 4555
## 4555 4556
## 4556 4557
## 4557 4558
## 4558 4559
## 4559 4560
## 4560 4561
## 4561 4562
## 4562 4563
## 4563 4564
## 4564 4565
## 4565 4566
## 4566 4567
## 4567 4568
## 4568 4569
## 4569 4570
## 4570 4571
## 4571 4572
## 4572 4573
## 4573 4574
## 4574 4575
## 4575 4576
## 4576 4577
## 4577 4578
## 4578 4579
## 4579 4580
## 4580 4581
## 4581 4582
## 4582 4583
## 4583 4584
## 4584 4585
## 4585 4586
## 4586 4587
## 4587 4588
## 4588 4589
## 4589 4590
## 4590 4591
## 4591 4592
## 4592 4593
## 4593 4594
## 4594 4595
## 4595 4596
## 4596 4597
## 4597 4598
## 4598 4599
## 4599 4600
## 4600 4601
## 4601 4602
## 4602 4603
## 4603 4604
## 4604 4605
## 4605 4606
## 4606 4607
## 4607 4608
## 4608 4609
## 4609 4610
## 4610 4611
## 4611 4612
## 4612 4613
## 4613 4614
## 4614 4615
## 4615 4616
## 4616 4617
## 4617 4618
## 4618 4619
## 4619 4620
## 4620 4621
## 4621 4622
## 4622 4623
## 4623 4624
## 4624 4625
## 4625 4626
## 4626 4627
## 4627 4628
## 4628 4629
## 4629 4630
## 4630 4631
## 4631 4632
## 4632 4633
## 4633 4634
## 4634 4635
## 4635 4636
## 4636 4637
## 4637 4638
## 4638 4639
## 4639 4640
## 4640 4641
## 4641 4642
## 4642 4643
## 4643 4644
## 4644 4645
## 4645 4646
## 4646 4647
## 4647 4648
## 4648 4649
## 4649 4650
## 4650 4651
## 4651 4652
## 4652 4653
## 4653 4654
## 4654 4655
## 4655 4656
## 4656 4657
## 4657 4658
## 4658 4659
## 4659 4660
## 4660 4661
## 4661 4662
## 4662 4663
## 4663 4664
## 4664 4665
## 4665 4666
## 4666 4667
## 4667 4668
## 4668 4669
## 4669 4670
## 4670 4671
## 4671 4672
## 4672 4673
## 4673 4674
## 4674 4675
## 4675 4676
## 4676 4677
## 4677 4678
## 4678 4679
## 4679 4680
## 4680 4681
## 4681 4682
## 4682 4683
## 4683 4684
## 4684 4685
## 4685 4686
## 4686 4687
## 4687 4688
## 4688 4689
## 4689 4690
## 4690 4691
## 4691 4692
## 4692 4693
## 4693 4694
## 4694 4695
## 4695 4696
## 4696 4697
## 4697 4698
## 4698 4699
## 4699 4700
## 4700 4701
## 4701 4702
## 4702 4703
## 4703 4704
## 4704 4705
## 4705 4706
## 4706 4707
## 4707 4708
## 4708 4709
## 4709 4710
## 4710 4711
## 4711 4712
## 4712 4713
## 4713 4714
## 4714 4715
## 4715 4716
## 4716 4717
## 4717 4718
## 4718 4719
## 4719 4720
## 4720 4721
## 4721 4722
## 4722 4723
## 4723 4724
## 4724 4725
## 4725 4726
## 4726 4727
## 4727 4728
## 4728 4729
## 4729 4730
## 4730 4731
## 4731 4732
## 4732 4733
## 4733 4734
## 4734 4735
## 4735 4736
## 4736 4737
## 4737 4738
## 4738 4739
## 4739 4740
## 4740 4741
## 4741 4742
## 4742 4743
## 4743 4744
## 4744 4745
## 4745 4746
## 4746 4747
## 4747 4748
## 4748 4749
## 4749 4750
## 4750 4751
## 4751 4752
## 4752 4753
## 4753 4754
## 4754 4755
## 4755 4756
## 4756 4757
## 4757 4758
## 4758 4759
## 4759 4760
## 4760 4761
## 4761 4762
## 4762 4763
## 4763 4764
## 4764 4765
## 4765 4766
## 4766 4767
## 4767 4768
## 4768 4769
## 4769 4770
## 4770 4771
## 4771 4772
## 4772 4773
## 4773 4774
## 4774 4775
## 4775 4776
## 4776 4777
## 4777 4778
## 4778 4779
## 4779 4780
## 4780 4781
## 4781 4782
## 4782 4783
## 4783 4784
## 4784 4785
## 4785 4786
## 4786 4787
## 4787 4788
## 4788 4789
## 4789 4790
## 4790 4791
## 4791 4792
## 4792 4793
## 4793 4794
## 4794 4795
## 4795 4796
## 4796 4797
## 4797 4798
## 4798 4799
## 4799 4800
## 4800 4801
## 4801 4802
## 4802 4803
## 4803 4804
## 4804 4805
## 4805 4806
## 4806 4807
## 4807 4808
## 4808 4809
## 4809 4810
## 4810 4811
## 4811 4812
## 4812 4813
## 4813 4814
## 4814 4815
## 4815 4816
## 4816 4817
## 4817 4818
## 4818 4819
## 4819 4820
## 4820 4821
## 4821 4822
## 4822 4823
## 4823 4824
## 4824 4825
## 4825 4826
## 4826 4827
## 4827 4828
## 4828 4829
## 4829 4830
## 4830 4831
## 4831 4832
## 4832 4833
## 4833 4834
## 4834 4835
## 4835 4836
## 4836 4837
## 4837 4838
## 4838 4839
## 4839 4840
## 4840 4841
## 4841 4842
## 4842 4843
## 4843 4844
## 4844 4845
## 4845 4846
## 4846 4847
## 4847 4848
## 4848 4849
## 4849 4850
## 4850 4851
## 4851 4852
## 4852 4853
## 4853 4854
## 4854 4855
## 4855 4856
## 4856 4857
## 4857 4858
## 4858 4859
## 4859 4860
## 4860 4861
## 4861 4862
## 4862 4863
## 4863 4864
## 4864 4865
## 4865 4866
## 4866 4867
## 4867 4868
## 4868 4869
## 4869 4870
## 4870 4871
## 4871 4872
## 4872 4873
## 4873 4874
## 4874 4875
## 4875 4876
## 4876 4877
## 4877 4878
## 4878 4879
## 4879 4880
## 4880 4881
## 4881 4882
## 4882 4883
## 4883 4884
## 4884 4885
## 4885 4886
## 4886 4887
## 4887 4888
## 4888 4889
## 4889 4890
## 4890 4891
## 4891 4892
## 4892 4893
## 4893 4894
## 4894 4895
## 4895 4896
## 4896 4897
## 4897 4898
## 4898 4899
## 4899 4900
## 4900 4901
## 4901 4902
## 4902 4903
## 4903 4904
## 4904 4905
## 4905 4906
## 4906 4907
## 4907 4908
## 4908 4909
## 4909 4910
## 4910 4911
## 4911 4912
## 4912 4913
## 4913 4914
## 4914 4915
## 4915 4916
## 4916 4917
## 4917 4918
## 4918 4919
## 4919 4920
## 4920 4921
## 4921 4922
## 4922 4923
## 4923 4924
## 4924 4925
## 4925 4926
## 4926 4927
## 4927 4928
## 4928 4929
## 4929 4930
## 4930 4931
## 4931 4932
## 4932 4933
## 4933 4934
## 4934 4935
## 4935 4936
## 4936 4937
## 4937 4938
## 4938 4939
## 4939 4940
## 4940 4941
## 4941 4942
## 4942 4943
## 4943 4944
## 4944 4945
## 4945 4946
## 4946 4947
## 4947 4948
## 4948 4949
## 4949 4950
## 4950 4951
## 4951 4952
## 4952 4953
## 4953 4954
## 4954 4955
## 4955 4956
## 4956 4957
## 4957 4958
## 4958 4959
## 4959 4960
## 4960 4961
## 4961 4962
## 4962 4963
## 4963 4964
## 4964 4965
## 4965 4966
## 4966 4967
## 4967 4968
## 4968 4969
## 4969 4970
## 4970 4971
## 4971 4972
## 4972 4973
## 4973 4974
## 4974 4975
## 4975 4976
## 4976 4977
## 4977 4978
## 4978 4979
## 4979 4980
## 4980 4981
## 4981 4982
## 4982 4983
## 4983 4984
## 4984 4985
## 4985 4986
## 4986 4987
## 4987 4988
## 4988 4989
## 4989 4990
## 4990 4991
## 4991 4992
## 4992 4993
## 4993 4994
## 4994 4995
## 4995 4996
## 4996 4997
## 4997 4998
## 4998 4999
## 4999 5000
## 5000 5001
## 5001 5002
## 5002 5003
## 5003 5004
## 5004 5005
## 5005 5006
## 5006 5007
## 5007 5008
## 5008 5009
## 5009 5010
## 5010 5011
## 5011 5012
## 5012 5013
## 5013 5014
## 5014 5015
## 5015 5016
## 5016 5017
## 5017 5018
## 5018 5019
## 5019 5020
## 5020 5021
## 5021 5022
## 5022 5023
## 5023 5024
## 5024 5025
## 5025 5026
## 5026 5027
## 5027 5028
## 5028 5029
## 5029 5030
## 5030 5031
## 5031 5032
## 5032 5033
## 5033 5034
## 5034 5035
## 5035 5036
## 5036 5037
## 5037 5038
## 5038 5039
## 5039 5040
## 5040 5041
## 5041 5042
## 5042 5043
## 5043 5044
## 5044 5045
## 5045 5046
## 5046 5047
## 5047 5048
## 5048 5049
## 5049 5050
## 5050 5051
## 5051 5052
## 5052 5053
## 5053 5054
## 5054 5055
## 5055 5056
## 5056 5057
## 5057 5058
## 5058 5059
## 5059 5060
## 5060 5061
## 5061 5062
## 5062 5063
## 5063 5064
## 5064 5065
## 5065 5066
## 5066 5067
## 5067 5068
## 5068 5069
## 5069 5070
## 5070 5071
## 5071 5072
## 5072 5073
## 5073 5074
## 5074 5075
## 5075 5076
## 5076 5077
## 5077 5078
## 5078 5079
## 5079 5080
## 5080 5081
## 5081 5082
## 5082 5083
## 5083 5084
## 5084 5085
## 5085 5086
## 5086 5087
## 5087 5088
## 5088 5089
## 5089 5090
## 5090 5091
## 5091 5092
## 5092 5093
## 5093 5094
## 5094 5095
## 5095 5096
## 5096 5097
## 5097 5098
## 5098 5099
## 5099 5100
## 5100 5101
## 5101 5102
## 5102 5103
## 5103 5104
## 5104 5105
## 5105 5106
## 5106 5107
## 5107 5108
## 5108 5109
## 5109 5110
## 5110 5111
## 5111 5112
## 5112 5113
## 5113 5114
## 5114 5115
## 5115 5116
## 5116 5117
## 5117 5118
## 5118 5119
## 5119 5120
## 5120 5121
## 5121 5122
## 5122 5123
## 5123 5124
## 5124 5125
## 5125 5126
## 5126 5127
## 5127 5128
## 5128 5129
## 5129 5130
## 5130 5131
## 5131 5132
## 5132 5133
## 5133 5134
## 5134 5135
## 5135 5136
## 5136 5137
## 5137 5138
## 5138 5139
## 5139 5140
## 5140 5141
## 5141 5142
## 5142 5143
## 5143 5144
## 5144 5145
## 5145 5146
## 5146 5147
## 5147 5148
## 5148 5149
## 5149 5150
## 5150 5151
## 5151 5152
## 5152 5153
## 5153 5154
## 5154 5155
## 5155 5156
## 5156 5157
## 5157 5158
## 5158 5159
## 5159 5160
## 5160 5161
## 5161 5162
## 5162 5163
## 5163 5164
## 5164 5165
## 5165 5166
## 5166 5167
## 5167 5168
## 5168 5169
## 5169 5170
## 5170 5171
## 5171 5172
## 5172 5173
## 5173 5174
## 5174 5175
## 5175 5176
## 5176 5177
## 5177 5178
## 5178 5179
## 5179 5180
## 5180 5181
## 5181 5182
## 5182 5183
## 5183 5184
## 5184 5185
## 5185 5186
## 5186 5187
## 5187 5188
## 5188 5189
## 5189 5190
## 5190 5191
## 5191 5192
## 5192 5193
## 5193 5194
## 5194 5195
## 5195 5196
## 5196 5197
## 5197 5198
## 5198 5199
## 5199 5200
## 5200 5201
## 5201 5202
## 5202 5203
## 5203 5204
## 5204 5205
## 5205 5206
## 5206 5207
## 5207 5208
## 5208 5209
## 5209 5210
## 5210 5211
## 5211 5212
## 5212 5213
## 5213 5214
## 5214 5215
## 5215 5216
## 5216 5217
## 5217 5218
## 5218 5219
## 5219 5220
## 5220 5221
## 5221 5222
## 5222 5223
## 5223 5224
## 5224 5225
## 5225 5226
## 5226 5227
## 5227 5228
## 5228 5229
## 5229 5230
## 5230 5231
## 5231 5232
## 5232 5233
## 5233 5234
## 5234 5235
## 5235 5236
## 5236 5237
## 5237 5238
## 5238 5239
## 5239 5240
## 5240 5241
## 5241 5242
## 5242 5243
## 5243 5244
## 5244 5245
## 5245 5246
## 5246 5247
## 5247 5248
## 5248 5249
## 5249 5250
## 5250 5251
## 5251 5252
## 5252 5253
## 5253 5254
## 5254 5255
## 5255 5256
## 5256 5257
## 5257 5258
## 5258 5259
## 5259 5260
## 5260 5261
## 5261 5262
## 5262 5263
## 5263 5264
## 5264 5265
## 5265 5266
## 5266 5267
## 5267 5268
## 5268 5269
## 5269 5270
## 5270 5271
## 5271 5272
## 5272 5273
## 5273 5274
## 5274 5275
## 5275 5276
## 5276 5277
## 5277 5278
## 5278 5279
## 5279 5280
## 5280 5281
## 5281 5282
## 5282 5283
## 5283 5284
## 5284 5285
## 5285 5286
## 5286 5287
## 5287 5288
## 5288 5289
## 5289 5290
## 5290 5291
## 5291 5292
## 5292 5293
## 5293 5294
## 5294 5295
## 5295 5296
## 5296 5297
## 5297 5298
## 5298 5299
## 5299 5300
## 5300 5301
## 5301 5302
## 5302 5303
## 5303 5304
## 5304 5305
## 5305 5306
## 5306 5307
## 5307 5308
## 5308 5309
## 5309 5310
## 5310 5311
## 5311 5312
## 5312 5313
## 5313 5314
## 5314 5315
## 5315 5316
## 5316 5317
## 5317 5318
## 5318 5319
## 5319 5320
## 5320 5321
## 5321 5322
## 5322 5323
## 5323 5324
## 5324 5325
## 5325 5326
## 5326 5327
## 5327 5328
## 5328 5329
## 5329 5330
## 5330 5331
## 5331 5332
## 5332 5333
## 5333 5334
## 5334 5335
## 5335 5336
## 5336 5337
## 5337 5338
## 5338 5339
## 5339 5340
## 5340 5341
## 5341 5342
## 5342 5343
## 5343 5344
## 5344 5345
## 5345 5346
## 5346 5347
## 5347 5348
## 5348 5349
## 5349 5350
## 5350 5351
## 5351 5352
## 5352 5353
## 5353 5354
## 5354 5355
## 5355 5356
## 5356 5357
## 5357 5358
## 5358 5359
## 5359 5360
## 5360 5361
## 5361 5362
## 5362 5363
## 5363 5364
## 5364 5365
## 5365 5366
## 5366 5367
## 5367 5368
## 5368 5369
## 5369 5370
## 5370 5371
## 5371 5372
## 5372 5373
## 5373 5374
## 5374 5375
## 5375 5376
## 5376 5377
## 5377 5378
## 5378 5379
## 5379 5380
## 5380 5381
## 5381 5382
## 5382 5383
## 5383 5384
## 5384 5385
## 5385 5386
## 5386 5387
## 5387 5388
## 5388 5389
## 5389 5390
## 5390 5391
## 5391 5392
## 5392 5393
## 5393 5394
## 5394 5395
## 5395 5396
## 5396 5397
## 5397 5398
## 5398 5399
## 5399 5400
## 5400 5401
## 5401 5402
## 5402 5403
## 5403 5404
## 5404 5405
## 5405 5406
## 5406 5407
## 5407 5408
## 5408 5409
## 5409 5410
## 5410 5411
## 5411 5412
## 5412 5413
## 5413 5414
## 5414 5415
## 5415 5416
## 5416 5417
## 5417 5418
## 5418 5419
## 5419 5420
## 5420 5421
## 5421 5422
## 5422 5423
## 5423 5424
## 5424 5425
## 5425 5426
## 5426 5427
## 5427 5428
## 5428 5429
## 5429 5430
## 5430 5431
## 5431 5432
## 5432 5433
## 5433 5434
## 5434 5435
## 5435 5436
## 5436 5437
## 5437 5438
## 5438 5439
## 5439 5440
## 5440 5441
## 5441 5442
## 5442 5443
## 5443 5444
## 5444 5445
## 5445 5446
## 5446 5447
## 5447 5448
## 5448 5449
## 5449 5450
## 5450 5451
## 5451 5452
## 5452 5453
## 5453 5454
## 5454 5455
## 5455 5456
## 5456 5457
## 5457 5458
## 5458 5459
## 5459 5460
## 5460 5461
## 5461 5462
## 5462 5463
## 5463 5464
## 5464 5465
## 5465 5466
## 5466 5467
## 5467 5468
## 5468 5469
## 5469 5470
## 5470 5471
## 5471 5472
## 5472 5473
## 5473 5474
## 5474 5475
## 5475 5476
## 5476 5477
## 5477 5478
## 5478 5479
## 5479 5480
## 5480 5481
## 5481 5482
## 5482 5483
## 5483 5484
## 5484 5485
## 5485 5486
## 5486 5487
## 5487 5488
## 5488 5489
## 5489 5490
## 5490 5491
## 5491 5492
## 5492 5493
## 5493 5494
## 5494 5495
## 5495 5496
## 5496 5497
## 5497 5498
## 5498 5499
## 5499 5500
## 5500 5501
## 5501 5502
## 5502 5503
## 5503 5504
## 5504 5505
## 5505 5506
## 5506 5507
## 5507 5508
## 5508 5509
## 5509 5510
## 5510 5511
## 5511 5512
## 5512 5513
## 5513 5514
## 5514 5515
## 5515 5516
## 5516 5517
## 5517 5518
## 5518 5519
## 5519 5520
## 5520 5521
## 5521 5522
## 5522 5523
## 5523 5524
## 5524 5525
## 5525 5526
## 5526 5527
## 5527 5528
## 5528 5529
## 5529 5530
## 5530 5531
## 5531 5532
## 5532 5533
## 5533 5534
## 5534 5535
## 5535 5536
## 5536 5537
## 5537 5538
## 5538 5539
## 5539 5540
## 5540 5541
## 5541 5542
## 5542 5543
## 5543 5544
## 5544 5545
## 5545 5546
## 5546 5547
## 5547 5548
## 5548 5549
## 5549 5550
## 5550 5551
## 5551 5552
## 5552 5553
## 5553 5554
## 5554 5555
## 5555 5556
## 5556 5557
## 5557 5558
## 5558 5559
## 5559 5560
## 5560 5561
## 5561 5562
## 5562 5563
## 5563 5564
## 5564 5565
## 5565 5566
## 5566 5567
## 5567 5568
## 5568 5569
## 5569 5570
## 5570 5571
## 5571 5572
## 5572 5573
## 5573 5574
## 5574 5575
## 5575 5576
## 5576 5577
## 5577 5578
## 5578 5579
## 5579 5580
## 5580 5581
## 5581 5582
## 5582 5583
## 5583 5584
## 5584 5585
## 5585 5586
## 5586 5587
## 5587 5588
## 5588 5589
## 5589 5590
## 5590 5591
## 5591 5592
## 5592 5593
## 5593 5594
## 5594 5595
## 5595 5596
## 5596 5597
## 5597 5598
## 5598 5599
## 5599 5600
## 5600 5601
## 5601 5602
## 5602 5603
## 5603 5604
## 5604 5605
## 5605 5606
## 5606 5607
## 5607 5608
## 5608 5609
## 5609 5610
## 5610 5611
## 5611 5612
## 5612 5613
## 5613 5614
## 5614 5615
## 5615 5616
## 5616 5617
## 5617 5618
## 5618 5619
## 5619 5620
## 5620 5621
## 5621 5622
## 5622 5623
## 5623 5624
## 5624 5625
## 5625 5626
## 5626 5627
## 5627 5628
## 5628 5629
## 5629 5630
## 5630 5631
## 5631 5632
## 5632 5633
## 5633 5634
## 5634 5635
## 5635 5636
## 5636 5637
## 5637 5638
## 5638 5639
## 5639 5640
## 5640 5641
## 5641 5642
## 5642 5643
## 5643 5644
## 5644 5645
## 5645 5646
## 5646 5647
## 5647 5648
## 5648 5649
## 5649 5650
## 5650 5651
## 5651 5652
## 5652 5653
## 5653 5654
## 5654 5655
## 5655 5656
## 5656 5657
## 5657 5658
## 5658 5659
## 5659 5660
## 5660 5661
## 5661 5662
## 5662 5663
## 5663 5664
## 5664 5665
## 5665 5666
## 5666 5667
## 5667 5668
## 5668 5669
## 5669 5670
## 5670 5671
## 5671 5672
## 5672 5673
## 5673 5674
## 5674 5675
## 5675 5676
## 5676 5677
## 5677 5678
## 5678 5679
## 5679 5680
## 5680 5681
## 5681 5682
## 5682 5683
## 5683 5684
## 5684 5685
## 5685 5686
## 5686 5687
## 5687 5688
## 5688 5689
## 5689 5690
## 5690 5691
## 5691 5692
## 5692 5693
## 5693 5694
## 5694 5695
## 5695 5696
## 5696 5697
## 5697 5698
## 5698 5699
## 5699 5700
## 5700 5701
## 5701 5702
## 5702 5703
## 5703 5704
## 5704 5705
## 5705 5706
## 5706 5707
## 5707 5708
## 5708 5709
## 5709 5710
## 5710 5711
## 5711 5712
## 5712 5713
## 5713 5714
## 5714 5715
## 5715 5716
## 5716 5717
## 5717 5718
## 5718 5719
## 5719 5720
## 5720 5721
## 5721 5722
## 5722 5723
## 5723 5724
## 5724 5725
## 5725 5726
## 5726 5727
## 5727 5728
## 5728 5729
## 5729 5730
## 5730 5731
## 5731 5732
## 5732 5733
## 5733 5734
## 5734 5735
## 5735 5736
## 5736 5737
## 5737 5738
## 5738 5739
## 5739 5740
## 5740 5741
## 5741 5742
## 5742 5743
## 5743 5744
## 5744 5745
## 5745 5746
## 5746 5747
## 5747 5748
## 5748 5749
## 5749 5750
## 5750 5751
## 5751 5752
## 5752 5753
## 5753 5754
## 5754 5755
## 5755 5756
## 5756 5757
## 5757 5758
## 5758 5759
## 5759 5760
## 5760 5761
## 5761 5762
## 5762 5763
## 5763 5764
## 5764 5765
## 5765 5766
## 5766 5767
## 5767 5768
## 5768 5769
## 5769 5770
## 5770 5771
## 5771 5772
## 5772 5773
## 5773 5774
## 5774 5775
## 5775 5776
## 5776 5777
## 5777 5778
## 5778 5779
## 5779 5780
## 5780 5781
## 5781 5782
## 5782 5783
## 5783 5784
## 5784 5785
## 5785 5786
## 5786 5787
## 5787 5788
## 5788 5789
## 5789 5790
## 5790 5791
## 5791 5792
## 5792 5793
## 5793 5794
## 5794 5795
## 5795 5796
## 5796 5797
## 5797 5798
## 5798 5799
## 5799 5800
## 5800 5801
## 5801 5802
## 5802 5803
## 5803 5804
## 5804 5805
## 5805 5806
## 5806 5807
## 5807 5808
## 5808 5809
## 5809 5810
## 5810 5811
## 5811 5812
## 5812 5813
## 5813 5814
## 5814 5815
## 5815 5816
## 5816 5817
## 5817 5818
## 5818 5819
## 5819 5820
## 5820 5821
## 5821 5822
## 5822 5823
## 5823 5824
## 5824 5825
## 5825 5826
## 5826 5827
## 5827 5828
## 5828 5829
## 5829 5830
## 5830 5831
## 5831 5832
## 5832 5833
## 5833 5834
## 5834 5835
## 5835 5836
## 5836 5837
## 5837 5838
## 5838 5839
## 5839 5840
## 5840 5841
## 5841 5842
## 5842 5843
## 5843 5844
## 5844 5845
## 5845 5846
## 5846 5847
## 5847 5848
## 5848 5849
## 5849 5850
## 5850 5851
## 5851 5852
## 5852 5853
## 5853 5854
## 5854 5855
## 5855 5856
## 5856 5857
## 5857 5858
## 5858 5859
## 5859 5860
## 5860 5861
## 5861 5862
## 5862 5863
## 5863 5864
## 5864 5865
## 5865 5866
## 5866 5867
## 5867 5868
## 5868 5869
## 5869 5870
## 5870 5871
## 5871 5872
## 5872 5873
## 5873 5874
## 5874 5875
## 5875 5876
## 5876 5877
## 5877 5878
## 5878 5879
## 5879 5880
## 5880 5881
## 5881 5882
## 5882 5883
## 5883 5884
## 5884 5885
## 5885 5886
## 5886 5887
## 5887 5888
## 5888 5889
## 5889 5890
## 5890 5891
## 5891 5892
## 5892 5893
## 5893 5894
## 5894 5895
## 5895 5896
## 5896 5897
## 5897 5898
## 5898 5899
## 5899 5900
## 5900 5901
## 5901 5902
## 5902 5903
## 5903 5904
## 5904 5905
## 5905 5906
## 5906 5907
## 5907 5908
## 5908 5909
## 5909 5910
## 5910 5911
## 5911 5912
## 5912 5913
## 5913 5914
## 5914 5915
## 5915 5916
## 5916 5917
## 5917 5918
## 5918 5919
## 5919 5920
## 5920 5921
## 5921 5922
## 5922 5923
## 5923 5924
## 5924 5925
## 5925 5926
## 5926 5927
## 5927 5928
## 5928 5929
## 5929 5930
## 5930 5931
## 5931 5932
## 5932 5933
## 5933 5934
## 5934 5935
## 5935 5936
## 5936 5937
## 5937 5938
## 5938 5939
## 5939 5940
## 5940 5941
## 5941 5942
## 5942 5943
## 5943 5944
## 5944 5945
## 5945 5946
## 5946 5947
## 5947 5948
## 5948 5949
## 5949 5950
## 5950 5951
## 5951 5952
## 5952 5953
## 5953 5954
## 5954 5955
## 5955 5956
## 5956 5957
## 5957 5958
## 5958 5959
## 5959 5960
## 5960 5961
## 5961 5962
## 5962 5963
## 5963 5964
## 5964 5965
## 5965 5966
## 5966 5967
## 5967 5968
## 5968 5969
## 5969 5970
## 5970 5971
## 5971 5972
## 5972 5973
## 5973 5974
## 5974 5975
## 5975 5976
## 5976 5977
## 5977 5978
## 5978 5979
## 5979 5980
## 5980 5981
## 5981 5982
## 5982 5983
## 5983 5984
## 5984 5985
## 5985 5986
## 5986 5987
## 5987 5988
## 5988 5989
## 5989 5990
## 5990 5991
## 5991 5992
## 5992 5993
## 5993 5994
## 5994 5995
## 5995 5996
## 5996 5997
## 5997 5998
## 5998 5999
## 5999 6000
## 6000 6001
## 6001 6002
## 6002 6003
## 6003 6004
## 6004 6005
## 6005 6006
## 6006 6007
## 6007 6008
## 6008 6009
## 6009 6010
## 6010 6011
## 6011 6012
## 6012 6013
## 6013 6014
## 6014 6015
## 6015 6016
## 6016 6017
## 6017 6018
## 6018 6019
## 6019 6020
## 6020 6021
## 6021 6022
## 6022 6023
## 6023 6024
## 6024 6025
## 6025 6026
## 6026 6027
## 6027 6028
## 6028 6029
## 6029 6030
## 6030 6031
## 6031 6032
## 6032 6033
## 6033 6034
## 6034 6035
## 6035 6036
## 6036 6037
## 6037 6038
## 6038 6039
## 6039 6040
## 6040 6041
## 6041 6042
## 6042 6043
## 6043 6044
## 6044 6045
## 6045 6046
## 6046 6047
## 6047 6048
## 6048 6049
## 6049 6050
## 6050 6051
## 6051 6052
## 6052 6053
## 6053 6054
## 6054 6055
## 6055 6056
## 6056 6057
## 6057 6058
## 6058 6059
## 6059 6060
## 6060 6061
## 6061 6062
## 6062 6063
## 6063 6064
## 6064 6065
## 6065 6066
## 6066 6067
## 6067 6068
## 6068 6069
## 6069 6070
## 6070 6071
## 6071 6072
## 6072 6073
## 6073 6074
## 6074 6075
## 6075 6076
## 6076 6077
## 6077 6078
## 6078 6079
## 6079 6080
## 6080 6081
## 6081 6082
## 6082 6083
## 6083 6084
## 6084 6085
## 6085 6086
## 6086 6087
## 6087 6088
## 6088 6089
## 6089 6090
## 6090 6091
## 6091 6092
## 6092 6093
## 6093 6094
## 6094 6095
## 6095 6096
## 6096 6097
## 6097 6098
## 6098 6099
## 6099 6100
## 6100 6101
## 6101 6102
## 6102 6103
## 6103 6104
## 6104 6105
## 6105 6106
## 6106 6107
## 6107 6108
## 6108 6109
## 6109 6110
## 6110 6111
## 6111 6112
## 6112 6113
## 6113 6114
## 6114 6115
## 6115 6116
## 6116 6117
## 6117 6118
## 6118 6119
## 6119 6120
## 6120 6121
## 6121 6122
## 6122 6123
## 6123 6124
## 6124 6125
## 6125 6126
## 6126 6127
## 6127 6128
## 6128 6129
## 6129 6130
## 6130 6131
## 6131 6132
## 6132 6133
## 6133 6134
## 6134 6135
## 6135 6136
## 6136 6137
## 6137 6138
## 6138 6139
## 6139 6140
## 6140 6141
## 6141 6142
## 6142 6143
## 6143 6144
## 6144 6145
## 6145 6146
## 6146 6147
## 6147 6148
## 6148 6149
## 6149 6150
## 6150 6151
## 6151 6152
## 6152 6153
## 6153 6154
## 6154 6155
## 6155 6156
## 6156 6157
## 6157 6158
## 6158 6159
## 6159 6160
## 6160 6161
## 6161 6162
## 6162 6163
## 6163 6164
## 6164 6165
## 6165 6166
## 6166 6167
## 6167 6168
## 6168 6169
## 6169 6170
## 6170 6171
## 6171 6172
## 6172 6173
## 6173 6174
## 6174 6175
## 6175 6176
## 6176 6177
## 6177 6178
## 6178 6179
## 6179 6180
## 6180 6181
## 6181 6182
## 6182 6183
## 6183 6184
## 6184 6185
## 6185 6186
## 6186 6187
## 6187 6188
## 6188 6189
## 6189 6190
## 6190 6191
## 6191 6192
## 6192 6193
## 6193 6194
## 6194 6195
## 6195 6196
## 6196 6197
## 6197 6198
## 6198 6199
## 6199 6200
## 6200 6201
## 6201 6202
## 6202 6203
## 6203 6204
## 6204 6205
## 6205 6206
## 6206 6207
## 6207 6208
## 6208 6209
## 6209 6210
## 6210 6211
## 6211 6212
## 6212 6213
## 6213 6214
## 6214 6215
## 6215 6216
## 6216 6217
## 6217 6218
## 6218 6219
## 6219 6220
## 6220 6221
## 6221 6222
## 6222 6223
## 6223 6224
## 6224 6225
## 6225 6226
## 6226 6227
## 6227 6228
## 6228 6229
## 6229 6230
## 6230 6231
## 6231 6232
## 6232 6233
## 6233 6234
## 6234 6235
## 6235 6236
## 6236 6237
## 6237 6238
## 6238 6239
## 6239 6240
## 6240 6241
## 6241 6242
## 6242 6243
## 6243 6244
## 6244 6245
## 6245 6246
## 6246 6247
## 6247 6248
## 6248 6249
## 6249 6250
## 6250 6251
## 6251 6252
## 6252 6253
## 6253 6254
## 6254 6255
## 6255 6256
## 6256 6257
## 6257 6258
## 6258 6259
## 6259 6260
## 6260 6261
## 6261 6262
## 6262 6263
## 6263 6264
## 6264 6265
## 6265 6266
## 6266 6267
## 6267 6268
## 6268 6269
## 6269 6270
## 6270 6271
## 6271 6272
## 6272 6273
## 6273 6274
## 6274 6275
## 6275 6276
## 6276 6277
## 6277 6278
## 6278 6279
## 6279 6280
## 6280 6281
## 6281 6282
## 6282 6283
## 6283 6284
## 6284 6285
## 6285 6286
## 6286 6287
## 6287 6288
## 6288 6289
## 6289 6290
## 6290 6291
## 6291 6292
## 6292 6293
## 6293 6294
## 6294 6295
## 6295 6296
## 6296 6297
## 6297 6298
## 6298 6299
## 6299 6300
## 6300 6301
## 6301 6302
## 6302 6303
## 6303 6304
## 6304 6305
## 6305 6306
## 6306 6307
## 6307 6308
## 6308 6309
## 6309 6310
## 6310 6311
## 6311 6312
## 6312 6313
## 6313 6314
## 6314 6315
## 6315 6316
## 6316 6317
## 6317 6318
## 6318 6319
## 6319 6320
## 6320 6321
## 6321 6322
## 6322 6323
## 6323 6324
## 6324 6325
## 6325 6326
## 6326 6327
## 6327 6328
## 6328 6329
## 6329 6330
## 6330 6331
## 6331 6332
## 6332 6333
## 6333 6334
## 6334 6335
## 6335 6336
## 6336 6337
## 6337 6338
## 6338 6339
## 6339 6340
## 6340 6341
## 6341 6342
## 6342 6343
## 6343 6344
## 6344 6345
## 6345 6346
## 6346 6347
## 6347 6348
## 6348 6349
## 6349 6350
## 6350 6351
## 6351 6352
## 6352 6353
## 6353 6354
## 6354 6355
## 6355 6356
## 6356 6357
## 6357 6358
## 6358 6359
## 6359 6360
## 6360 6361
## 6361 6362
## 6362 6363
## 6363 6364
## 6364 6365
## 6365 6366
## 6366 6367
## 6367 6368
## 6368 6369
## 6369 6370
## 6370 6371
## 6371 6372
## 6372 6373
## 6373 6374
## 6374 6375
## 6375 6376
## 6376 6377
## 6377 6378
## 6378 6379
## 6379 6380
## 6380 6381
## 6381 6382
## 6382 6383
## 6383 6384
## 6384 6385
## 6385 6386
## 6386 6387
## 6387 6388
## 6388 6389
## 6389 6390
## 6390 6391
## 6391 6392
## 6392 6393
## 6393 6394
## 6394 6395
## 6395 6396
## 6396 6397
## 6397 6398
## 6398 6399
## 6399 6400
## 6400 6401
## 6401 6402
## 6402 6403
## 6403 6404
## 6404 6405
## 6405 6406
## 6406 6407
## 6407 6408
## 6408 6409
## 6409 6410
## 6410 6411
## 6411 6412
## 6412 6413
## 6413 6414
## 6414 6415
## 6415 6416
## 6416 6417
## 6417 6418
## 6418 6419
## 6419 6420
## 6420 6421
## 6421 6422
## 6422 6423
## 6423 6424
## 6424 6425
## 6425 6426
## 6426 6427
## 6427 6428
## 6428 6429
## 6429 6430
## 6430 6431
## 6431 6432
## 6432 6433
## 6433 6434
## 6434 6435
## 6435 6436
## 6436 6437
## 6437 6438
## 6438 6439
## 6439 6440
## 6440 6441
## 6441 6442
## 6442 6443
## 6443 6444
## 6444 6445
## 6445 6446
## 6446 6447
## 6447 6448
## 6448 6449
## 6449 6450
## 6450 6451
## 6451 6452
## 6452 6453
## 6453 6454
## 6454 6455
## 6455 6456
## 6456 6457
## 6457 6458
## 6458 6459
## 6459 6460
## 6460 6461
## 6461 6462
## 6462 6463
## 6463 6464
## 6464 6465
## 6465 6466
## 6466 6467
## 6467 6468
## 6468 6469
## 6469 6470
## 6470 6471
## 6471 6472
## 6472 6473
## 6473 6474
## 6474 6475
## 6475 6476
## 6476 6477
## 6477 6478
## 6478 6479
## 6479 6480
## 6480 6481
## 6481 6482
## 6482 6483
## 6483 6484
## 6484 6485
## 6485 6486
## 6486 6487
## 6487 6488
## 6488 6489
## 6489 6490
## 6490 6491
## 6491 6492
## 6492 6493
## 6493 6494
## 6494 6495
## 6495 6496
## 6496 6497
## 6497 6498
## 6498 6499
## 6499 6500
## 6500 6501
## 6501 6502
## 6502 6503
## 6503 6504
## 6504 6505
## 6505 6506
## 6506 6507
## 6507 6508
## 6508 6509
## 6509 6510
## 6510 6511
## 6511 6512
## 6512 6513
## 6513 6514
## 6514 6515
## 6515 6516
## 6516 6517
## 6517 6518
## 6518 6519
## 6519 6520
## 6520 6521
## 6521 6522
## 6522 6523
## 6523 6524
## 6524 6525
## 6525 6526
## 6526 6527
## 6527 6528
## 6528 6529
## 6529 6530
## 6530 6531
## 6531 6532
## 6532 6533
## 6533 6534
## 6534 6535
## 6535 6536
## 6536 6537
## 6537 6538
## 6538 6539
## 6539 6540
## 6540 6541
## 6541 6542
## 6542 6543
## 6543 6544
## 6544 6545
## 6545 6546
## 6546 6547
## 6547 6548
## 6548 6549
## 6549 6550
## 6550 6551
## 6551 6552
## 6552 6553
## 6553 6554
## 6554 6555
## 6555 6556
## 6556 6557
## 6557 6558
## 6558 6559
## 6559 6560
## 6560 6561
## 6561 6562
## 6562 6563
## 6563 6564
## 6564 6565
## 6565 6566
## 6566 6567
## 6567 6568
## 6568 6569
## 6569 6570
## 6570 6571
## 6571 6572
## 6572 6573
## 6573 6574
## 6574 6575
## 6575 6576
## 6576 6577
## 6577 6578
## 6578 6579
## 6579 6580
## 6580 6581
## 6581 6582
## 6582 6583
## 6583 6584
## 6584 6585
## 6585 6586
## 6586 6587
## 6587 6588
## 6588 6589
## 6589 6590
## 6590 6591
## 6591 6592
## 6592 6593
## 6593 6594
## 6594 6595
## 6595 6596
## 6596 6597
## 6597 6598
## 6598 6599
## 6599 6600
## 6600 6601
## 6601 6602
## 6602 6603
## 6603 6604
## 6604 6605
## 6605 6606
## 6606 6607
## 6607 6608
## 6608 6609
## 6609 6610
## 6610 6611
## 6611 6612
## 6612 6613
## 6613 6614
## 6614 6615
## 6615 6616
## 6616 6617
## 6617 6618
## 6618 6619
## 6619 6620
## 6620 6621
## 6621 6622
## 6622 6623
## 6623 6624
## 6624 6625
## 6625 6626
## 6626 6627
## 6627 6628
## 6628 6629
## 6629 6630
## 6630 6631
## 6631 6632
## 6632 6633
## 6633 6634
## 6634 6635
## 6635 6636
## 6636 6637
## 6637 6638
## 6638 6639
## 6639 6640
## 6640 6641
## 6641 6642
## 6642 6643
## 6643 6644
## 6644 6645
## 6645 6646
## 6646 6647
## 6647 6648
## 6648 6649
## 6649 6650
## 6650 6651
## 6651 6652
## 6652 6653
## 6653 6654
## 6654 6655
## 6655 6656
## 6656 6657
## 6657 6658
## 6658 6659
## 6659 6660
## 6660 6661
## 6661 6662
## 6662 6663
## 6663 6664
## 6664 6665
## 6665 6666
## 6666 6667
## 6667 6668
## 6668 6669
## 6669 6670
## 6670 6671
## 6671 6672
## 6672 6673
## 6673 6674
## 6674 6675
## 6675 6676
## 6676 6677
## 6677 6678
## 6678 6679
## 6679 6680
## 6680 6681
## 6681 6682
## 6682 6683
## 6683 6684
## 6684 6685
## 6685 6686
## 6686 6687
## 6687 6688
## 6688 6689
## 6689 6690
## 6690 6691
## 6691 6692
## 6692 6693
## 6693 6694
## 6694 6695
## 6695 6696
## 6696 6697
## 6697 6698
## 6698 6699
## 6699 6700
## 6700 6701
## 6701 6702
## 6702 6703
## 6703 6704
## 6704 6705
## 6705 6706
## 6706 6707
## 6707 6708
## 6708 6709
## 6709 6710
## 6710 6711
## 6711 6712
## 6712 6713
## 6713 6714
## 6714 6715
## 6715 6716
## 6716 6717
## 6717 6718
## 6718 6719
## 6719 6720
## 6720 6721
## 6721 6722
## 6722 6723
## 6723 6724
## 6724 6725
## 6725 6726
## 6726 6727
## 6727 6728
## 6728 6729
## 6729 6730
## 6730 6731
## 6731 6732
## 6732 6733
## 6733 6734
## 6734 6735
## 6735 6736
## 6736 6737
## 6737 6738
## 6738 6739
## 6739 6740
## 6740 6741
## 6741 6742
## 6742 6743
## 6743 6744
## 6744 6745
## 6745 6746
## 6746 6747
## 6747 6748
## 6748 6749
## 6749 6750
## 6750 6751
## 6751 6752
## 6752 6753
## 6753 6754
## 6754 6755
## 6755 6756
## 6756 6757
## 6757 6758
## 6758 6759
## 6759 6760
## 6760 6761
## 6761 6762
## 6762 6763
## 6763 6764
## 6764 6765
## 6765 6766
## 6766 6767
## 6767 6768
## 6768 6769
## 6769 6770
## 6770 6771
## 6771 6772
## 6772 6773
## 6773 6774
## 6774 6775
## 6775 6776
## 6776 6777
## 6777 6778
## 6778 6779
## 6779 6780
## 6780 6781
## 6781 6782
## 6782 6783
## 6783 6784
## 6784 6785
## 6785 6786
## 6786 6787
## 6787 6788
## 6788 6789
## 6789 6790
## 6790 6791
## 6791 6792
## 6792 6793
## 6793 6794
## 6794 6795
## 6795 6796
## 6796 6797
## 6797 6798
## 6798 6799
## 6799 6800
## 6800 6801
## 6801 6802
## 6802 6803
## 6803 6804
## 6804 6805
## 6805 6806
## 6806 6807
## 6807 6808
## 6808 6809
## 6809 6810
## 6810 6811
## 6811 6812
## 6812 6813
## 6813 6814
## 6814 6815
## 6815 6816
## 6816 6817
## 6817 6818
## 6818 6819
## 6819 6820
## 6820 6821
## 6821 6822
## 6822 6823
## 6823 6824
## 6824 6825
## 6825 6826
## 6826 6827
## 6827 6828
## 6828 6829
## 6829 6830
## 6830 6831
## 6831 6832
## 6832 6833
## 6833 6834
## 6834 6835
## 6835 6836
## 6836 6837
## 6837 6838
## 6838 6839
## 6839 6840
## 6840 6841
## 6841 6842
## 6842 6843
## 6843 6844
## 6844 6845
## 6845 6846
## 6846 6847
## 6847 6848
## 6848 6849
## 6849 6850
## 6850 6851
## 6851 6852
## 6852 6853
## 6853 6854
## 6854 6855
## 6855 6856
## 6856 6857
## 6857 6858
## 6858 6859
## 6859 6860
## 6860 6861
## 6861 6862
## 6862 6863
## 6863 6864
## 6864 6865
## 6865 6866
## 6866 6867
## 6867 6868
## 6868 6869
## 6869 6870
## 6870 6871
## 6871 6872
## 6872 6873
## 6873 6874
## 6874 6875
## 6875 6876
## 6876 6877
## 6877 6878
## 6878 6879
## 6879 6880
## 6880 6881
## 6881 6882
## 6882 6883
## 6883 6884
## 6884 6885
## 6885 6886
## 6886 6887
## 6887 6888
## 6888 6889
## 6889 6890
## 6890 6891
## 6891 6892
## 6892 6893
## 6893 6894
## 6894 6895
## 6895 6896
## 6896 6897
## 6897 6898
## 6898 6899
## 6899 6900
## 6900 6901
## 6901 6902
## 6902 6903
## 6903 6904
## 6904 6905
## 6905 6906
## 6906 6907
## 6907 6908
## 6908 6909
## 6909 6910
## 6910 6911
## 6911 6912
## 6912 6913
## 6913 6914
## 6914 6915
## 6915 6916
## 6916 6917
## 6917 6918
## 6918 6919
## 6919 6920
## 6920 6921
## 6921 6922
## 6922 6923
## 6923 6924
## 6924 6925
## 6925 6926
## 6926 6927
## 6927 6928
## 6928 6929
## 6929 6930
## 6930 6931
## 6931 6932
## 6932 6933
## 6933 6934
## 6934 6935
## 6935 6936
## 6936 6937
## 6937 6938
## 6938 6939
## 6939 6940
## 6940 6941
## 6941 6942
## 6942 6943
## 6943 6944
## 6944 6945
## 6945 6946
## 6946 6947
## 6947 6948
## 6948 6949
## 6949 6950
## 6950 6951
## 6951 6952
## 6952 6953
## 6953 6954
## 6954 6955
## 6955 6956
## 6956 6957
## 6957 6958
## 6958 6959
## 6959 6960
## 6960 6961
## 6961 6962
## 6962 6963
## 6963 6964
## 6964 6965
## 6965 6966
## 6966 6967
## 6967 6968
## 6968 6969
## 6969 6970
## 6970 6971
## 6971 6972
## 6972 6973
## 6973 6974
## 6974 6975
## 6975 6976
## 6976 6977
## 6977 6978
## 6978 6979
## 6979 6980
## 6980 6981
## 6981 6982
## 6982 6983
## 6983 6984
## 6984 6985
## 6985 6986
## 6986 6987
## 6987 6988
## 6988 6989
## 6989 6990
## 6990 6991
## 6991 6992
## 6992 6993
## 6993 6994
## 6994 6995
## 6995 6996
## 6996 6997
## 6997 6998
## 6998 6999
## 6999 7000
## 7000 7001
## 7001 7002
## 7002 7003
## 7003 7004
## 7004 7005
## 7005 7006
## 7006 7007
## 7007 7008
## 7008 7009
## 7009 7010
## 7010 7011
## 7011 7012
## 7012 7013
## 7013 7014
## 7014 7015
## 7015 7016
## 7016 7017
## 7017 7018
## 7018 7019
## 7019 7020
## 7020 7021
## 7021 7022
## 7022 7023
## 7023 7024
## 7024 7025
## 7025 7026
## 7026 7027
## 7027 7028
## 7028 7029
## 7029 7030
## 7030 7031
## 7031 7032
## 7032 7033
## 7033 7034
## 7034 7035
## 7035 7036
## 7036 7037
## 7037 7038
## 7038 7039
## 7039 7040
## 7040 7041
## 7041 7042
## 7042 7043
## 7043 7044
## 7044 7045
## 7045 7046
## 7046 7047
## 7047 7048
## 7048 7049
## 7049 7050
## 7050 7051
## 7051 7052
## 7052 7053
## 7053 7054
## 7054 7055
## 7055 7056
## 7056 7057
## 7057 7058
## 7058 7059
## 7059 7060
## 7060 7061
## 7061 7062
## 7062 7063
## 7063 7064
## 7064 7065
## 7065 7066
## 7066 7067
## 7067 7068
## 7068 7069
## 7069 7070
## 7070 7071
## 7071 7072
## 7072 7073
## 7073 7074
## 7074 7075
## 7075 7076
## 7076 7077
## 7077 7078
## 7078 7079
## 7079 7080
## 7080 7081
## 7081 7082
## 7082 7083
## 7083 7084
## 7084 7085
## 7085 7086
## 7086 7087
## 7087 7088
## 7088 7089
## 7089 7090
## 7090 7091
## 7091 7092
## 7092 7093
## 7093 7094
## 7094 7095
## 7095 7096
## 7096 7097
## 7097 7098
## 7098 7099
## 7099 7100
## 7100 7101
## 7101 7102
## 7102 7103
## 7103 7104
## 7104 7105
## 7105 7106
## 7106 7107
## 7107 7108
## 7108 7109
## 7109 7110
## 7110 7111
## 7111 7112
## 7112 7113
## 7113 7114
## 7114 7115
## 7115 7116
## 7116 7117
## 7117 7118
## 7118 7119
## 7119 7120
## 7120 7121
## 7121 7122
## 7122 7123
## 7123 7124
## 7124 7125
## 7125 7126
## 7126 7127
## 7127 7128
## 7128 7129
## 7129 7130
## 7130 7131
## 7131 7132
## 7132 7133
## 7133 7134
## 7134 7135
## 7135 7136
## 7136 7137
## 7137 7138
## 7138 7139
## 7139 7140
## 7140 7141
## 7141 7142
## 7142 7143
## 7143 7144
## 7144 7145
## 7145 7146
## 7146 7147
## 7147 7148
## 7148 7149
## 7149 7150
## 7150 7151
## 7151 7152
## 7152 7153
## 7153 7154
## 7154 7155
## 7155 7156
## 7156 7157
## 7157 7158
## 7158 7159
## 7159 7160
## 7160 7161
## 7161 7162
## 7162 7163
## 7163 7164
## 7164 7165
## 7165 7166
## 7166 7167
## 7167 7168
## 7168 7169
## 7169 7170
## 7170 7171
## 7171 7172
## 7172 7173
## 7173 7174
## 7174 7175
## 7175 7176
## 7176 7177
## 7177 7178
## 7178 7179
## 7179 7180
## 7180 7181
## 7181 7182
## 7182 7183
## 7183 7184
## 7184 7185
## 7185 7186
## 7186 7187
## 7187 7188
## 7188 7189
## 7189 7190
## 7190 7191
## 7191 7192
## 7192 7193
## 7193 7194
## 7194 7195
## 7195 7196
## 7196 7197
## 7197 7198
## 7198 7199
## 7199 7200
## 7200 7201
## 7201 7202
## 7202 7203
## 7203 7204
## 7204 7205
## 7205 7206
## 7206 7207
## 7207 7208
## 7208 7209
## 7209 7210
## 7210 7211
## 7211 7212
## 7212 7213
## 7213 7214
## 7214 7215
## 7215 7216
## 7216 7217
## 7217 7218
## 7218 7219
## 7219 7220
## 7220 7221
## 7221 7222
## 7222 7223
## 7223 7224
## 7224 7225
## 7225 7226
## 7226 7227
## 7227 7228
## 7228 7229
## 7229 7230
## 7230 7231
## 7231 7232
## 7232 7233
## 7233 7234
## 7234 7235
## 7235 7236
## 7236 7237
## 7237 7238
## 7238 7239
## 7239 7240
## 7240 7241
## 7241 7242
## 7242 7243
## 7243 7244
## 7244 7245
## 7245 7246
## 7246 7247
## 7247 7248
## 7248 7249
## 7249 7250
## 7250 7251
## 7251 7252
## 7252 7253
## 7253 7254
## 7254 7255
## 7255 7256
## 7256 7257
## 7257 7258
## 7258 7259
## 7259 7260
## 7260 7261
## 7261 7262
## 7262 7263
## 7263 7264
## 7264 7265
## 7265 7266
## 7266 7267
## 7267 7268
## 7268 7269
## 7269 7270
## 7270 7271
## 7271 7272
## 7272 7273
## 7273 7274
## 7274 7275
## 7275 7276
## 7276 7277
## 7277 7278
## 7278 7279
## 7279 7280
## 7280 7281
## 7281 7282
## 7282 7283
## 7283 7284
## 7284 7285
## 7285 7286
## 7286 7287
## 7287 7288
## 7288 7289
## 7289 7290
## 7290 7291
## 7291 7292
## 7292 7293
## 7293 7294
## 7294 7295
## 7295 7296
## 7296 7297
## 7297 7298
## 7298 7299
## 7299 7300
## 7300 7301
## 7301 7302
## 7302 7303
## 7303 7304
## 7304 7305
## 7305 7306
## 7306 7307
## 7307 7308
## 7308 7309
## 7309 7310
## 7310 7311
## 7311 7312
## 7312 7313
## 7313 7314
## 7314 7315
## 7315 7316
## 7316 7317
## 7317 7318
## 7318 7319
## 7319 7320
## 7320 7321
## 7321 7322
## 7322 7323
## 7323 7324
## 7324 7325
## 7325 7326
## 7326 7327
## 7327 7328
## 7328 7329
## 7329 7330
## 7330 7331
## 7331 7332
## 7332 7333
## 7333 7334
## 7334 7335
## 7335 7336
## 7336 7337
## 7337 7338
## 7338 7339
## 7339 7340
## 7340 7341
## 7341 7342
## 7342 7343
## 7343 7344
## 7344 7345
## 7345 7346
## 7346 7347
## 7347 7348
## 7348 7349
## 7349 7350
## 7350 7351
## 7351 7352
## 7352 7353
## 7353 7354
## 7354 7355
## 7355 7356
## 7356 7357
## 7357 7358
## 7358 7359
## 7359 7360
## 7360 7361
## 7361 7362
## 7362 7363
## 7363 7364
## 7364 7365
## 7365 7366
## 7366 7367
## 7367 7368
## 7368 7369
## 7369 7370
## 7370 7371
## 7371 7372
## 7372 7373
## 7373 7374
## 7374 7375
## 7375 7376
## 7376 7377
## 7377 7378
## 7378 7379
## 7379 7380
## 7380 7381
## 7381 7382
## 7382 7383
## 7383 7384
## 7384 7385
## 7385 7386
## 7386 7387
## 7387 7388
## 7388 7389
## 7389 7390
## 7390 7391
## 7391 7392
## 7392 7393
## 7393 7394
## 7394 7395
## 7395 7396
## 7396 7397
## 7397 7398
## 7398 7399
## 7399 7400
## 7400 7401
## 7401 7402
## 7402 7403
## 7403 7404
## 7404 7405
## 7405 7406
## 7406 7407
## 7407 7408
## 7408 7409
## 7409 7410
## 7410 7411
## 7411 7412
## 7412 7413
## 7413 7414
## 7414 7415
## 7415 7416
## 7416 7417
## 7417 7418
## 7418 7419
## 7419 7420
## 7420 7421
## 7421 7422
## 7422 7423
## 7423 7424
## 7424 7425
## 7425 7426
## 7426 7427
## 7427 7428
## 7428 7429
## 7429 7430
## 7430 7431
## 7431 7432
## 7432 7433
## 7433 7434
## 7434 7435
## 7435 7436
## 7436 7437
## 7437 7438
## 7438 7439
## 7439 7440
## 7440 7441
## 7441 7442
## 7442 7443
## 7443 7444
## 7444 7445
## 7445 7446
## 7446 7447
## 7447 7448
## 7448 7449
## 7449 7450
## 7450 7451
## 7451 7452
## 7452 7453
## 7453 7454
## 7454 7455
## 7455 7456
## 7456 7457
## 7457 7458
## 7458 7459
## 7459 7460
## 7460 7461
## 7461 7462
## 7462 7463
## 7463 7464
## 7464 7465
## 7465 7466
## 7466 7467
## 7467 7468
## 7468 7469
## 7469 7470
## 7470 7471
## 7471 7472
## 7472 7473
## 7473 7474
## 7474 7475
## 7475 7476
## 7476 7477
## 7477 7478
## 7478 7479
## 7479 7480
## 7480 7481
## 7481 7482
## 7482 7483
## 7483 7484
## 7484 7485
## 7485 7486
## 7486 7487
## 7487 7488
## 7488 7489
## 7489 7490
## 7490 7491
## 7491 7492
## 7492 7493
## 7493 7494
## 7494 7495
## 7495 7496
## 7496 7497
## 7497 7498
## 7498 7499
## 7499 7500
## 7500 7501
## 7501 7502
## 7502 7503
## 7503 7504
## 7504 7505
## 7505 7506
## 7506 7507
## 7507 7508
## 7508 7509
## 7509 7510
## 7510 7511
## 7511 7512
## 7512 7513
## 7513 7514
## 7514 7515
## 7515 7516
## 7516 7517
## 7517 7518
## 7518 7519
## 7519 7520
## 7520 7521
## 7521 7522
## 7522 7523
## 7523 7524
## 7524 7525
## 7525 7526
## 7526 7527
## 7527 7528
## 7528 7529
## 7529 7530
## 7530 7531
## 7531 7532
## 7532 7533
## 7533 7534
## 7534 7535
## 7535 7536
## 7536 7537
## 7537 7538
## 7538 7539
## 7539 7540
## 7540 7541
## 7541 7542
## 7542 7543
## 7543 7544
## 7544 7545
## 7545 7546
## 7546 7547
## 7547 7548
## 7548 7549
## 7549 7550
## 7550 7551
## 7551 7552
## 7552 7553
## 7553 7554
## 7554 7555
## 7555 7556
## 7556 7557
## 7557 7558
## 7558 7559
## 7559 7560
## 7560 7561
## 7561 7562
## 7562 7563
## 7563 7564
## 7564 7565
## 7565 7566
## 7566 7567
## 7567 7568
## 7568 7569
## 7569 7570
## 7570 7571
## 7571 7572
## 7572 7573
## 7573 7574
## 7574 7575
## 7575 7576
## 7576 7577
## 7577 7578
## 7578 7579
## 7579 7580
## 7580 7581
## 7581 7582
## 7582 7583
## 7583 7584
## 7584 7585
## 7585 7586
## 7586 7587
## 7587 7588
## 7588 7589
## 7589 7590
## 7590 7591
## 7591 7592
## 7592 7593
## 7593 7594
## 7594 7595
## 7595 7596
## 7596 7597
## 7597 7598
## 7598 7599
## 7599 7600
## 7600 7601
## 7601 7602
## 7602 7603
## 7603 7604
## 7604 7605
## 7605 7606
## 7606 7607
## 7607 7608
## 7608 7609
## 7609 7610
## 7610 7611
## 7611 7612
## 7612 7613
## 7613 7614
## 7614 7615
## 7615 7616
## 7616 7617
## 7617 7618
## 7618 7619
## 7619 7620
## 7620 7621
## 7621 7622
## 7622 7623
## 7623 7624
## 7624 7625
## 7625 7626
## 7626 7627
## 7627 7628
## 7628 7629
## 7629 7630
## 7630 7631
## 7631 7632
## 7632 7633
## 7633 7634
## 7634 7635
## 7635 7636
## 7636 7637
## 7637 7638
## 7638 7639
## 7639 7640
## 7640 7641
## 7641 7642
## 7642 7643
## 7643 7644
## 7644 7645
## 7645 7646
## 7646 7647
## 7647 7648
## 7648 7649
## 7649 7650
## 7650 7651
## 7651 7652
## 7652 7653
## 7653 7654
## 7654 7655
## 7655 7656
## 7656 7657
## 7657 7658
## 7658 7659
## 7659 7660
## 7660 7661
## 7661 7662
## 7662 7663
## 7663 7664
## 7664 7665
## 7665 7666
## 7666 7667
## 7667 7668
## 7668 7669
## 7669 7670
## 7670 7671
## 7671 7672
## 7672 7673
## 7673 7674
## 7674 7675
## 7675 7676
## 7676 7677
## 7677 7678
## 7678 7679
## 7679 7680
## 7680 7681
## 7681 7682
## 7682 7683
## 7683 7684
## 7684 7685
## 7685 7686
## 7686 7687
## 7687 7688
## 7688 7689
## 7689 7690
## 7690 7691
## 7691 7692
## 7692 7693
## 7693 7694
## 7694 7695
## 7695 7696
## 7696 7697
## 7697 7698
## 7698 7699
## 7699 7700
## 7700 7701
## 7701 7702
## 7702 7703
## 7703 7704
## 7704 7705
## 7705 7706
## 7706 7707
## 7707 7708
## 7708 7709
## 7709 7710
## 7710 7711
## 7711 7712
## 7712 7713
## 7713 7714
## 7714 7715
## 7715 7716
## 7716 7717
## 7717 7718
## 7718 7719
## 7719 7720
## 7720 7721
## 7721 7722
## 7722 7723
## 7723 7724
## 7724 7725
## 7725 7726
## 7726 7727
## 7727 7728
## 7728 7729
## 7729 7730
## 7730 7731
## 7731 7732
## 7732 7733
## 7733 7734
## 7734 7735
## 7735 7736
## 7736 7737
## 7737 7738
## 7738 7739
## 7739 7740
## 7740 7741
## 7741 7742
## 7742 7743
## 7743 7744
## 7744 7745
## 7745 7746
## 7746 7747
## 7747 7748
## 7748 7749
## 7749 7750
## 7750 7751
## 7751 7752
## 7752 7753
## 7753 7754
## 7754 7755
## 7755 7756
## 7756 7757
## 7757 7758
## 7758 7759
## 7759 7760
## 7760 7761
## 7761 7762
## 7762 7763
## 7763 7764
## 7764 7765
## 7765 7766
## 7766 7767
## 7767 7768
## 7768 7769
## 7769 7770
## 7770 7771
## 7771 7772
## 7772 7773
## 7773 7774
## 7774 7775
## 7775 7776
## 7776 7777
## 7777 7778
## 7778 7779
## 7779 7780
## 7780 7781
## 7781 7782
## 7782 7783
## 7783 7784
## 7784 7785
## 7785 7786
## 7786 7787
## 7787 7788
## 7788 7789
## 7789 7790
## 7790 7791
## 7791 7792
## 7792 7793
## 7793 7794
## 7794 7795
## 7795 7796
## 7796 7797
## 7797 7798
## 7798 7799
## 7799 7800
## 7800 7801
## 7801 7802
## 7802 7803
## 7803 7804
## 7804 7805
## 7805 7806
## 7806 7807
## 7807 7808
## 7808 7809
## 7809 7810
## 7810 7811
## 7811 7812
## 7812 7813
## 7813 7814
## 7814 7815
## 7815 7816
## 7816 7817
## 7817 7818
## 7818 7819
## 7819 7820
## 7820 7821
## 7821 7822
## 7822 7823
## 7823 7824
## 7824 7825
## 7825 7826
## 7826 7827
## 7827 7828
## 7828 7829
## 7829 7830
## 7830 7831
## 7831 7832
## 7832 7833
## 7833 7834
## 7834 7835
## 7835 7836
## 7836 7837
## 7837 7838
## 7838 7839
## 7839 7840
## 7840 7841
## 7841 7842
## 7842 7843
## 7843 7844
## 7844 7845
## 7845 7846
## 7846 7847
## 7847 7848
## 7848 7849
## 7849 7850
## 7850 7851
## 7851 7852
## 7852 7853
## 7853 7854
## 7854 7855
## 7855 7856
## 7856 7857
## 7857 7858
## 7858 7859
## 7859 7860
## 7860 7861
## 7861 7862
## 7862 7863
## 7863 7864
## 7864 7865
## 7865 7866
## 7866 7867
## 7867 7868
## 7868 7869
## 7869 7870
## 7870 7871
## 7871 7872
## 7872 7873
## 7873 7874
## 7874 7875
## 7875 7876
## 7876 7877
## 7877 7878
## 7878 7879
## 7879 7880
## 7880 7881
## 7881 7882
## 7882 7883
## 7883 7884
## 7884 7885
## 7885 7886
## 7886 7887
## 7887 7888
## 7888 7889
## 7889 7890
## 7890 7891
## 7891 7892
## 7892 7893
## 7893 7894
## 7894 7895
## 7895 7896
## 7896 7897
## 7897 7898
## 7898 7899
## 7899 7900
## 7900 7901
## 7901 7902
## 7902 7903
## 7903 7904
## 7904 7905
## 7905 7906
## 7906 7907
## 7907 7908
## 7908 7909
## 7909 7910
## 7910 7911
## 7911 7912
## 7912 7913
## 7913 7914
## 7914 7915
## 7915 7916
## 7916 7917
## 7917 7918
## 7918 7919
## 7919 7920
## 7920 7921
## 7921 7922
## 7922 7923
## 7923 7924
## 7924 7925
## 7925 7926
## 7926 7927
## 7927 7928
## 7928 7929
## 7929 7930
## 7930 7931
## 7931 7932
## 7932 7933
## 7933 7934
## 7934 7935
## 7935 7936
## 7936 7937
## 7937 7938
## 7938 7939
## 7939 7940
## 7940 7941
## 7941 7942
## 7942 7943
## 7943 7944
## 7944 7945
## 7945 7946
## 7946 7947
## 7947 7948
## 7948 7949
## 7949 7950
## 7950 7951
## 7951 7952
## 7952 7953
## 7953 7954
## 7954 7955
## 7955 7956
## 7956 7957
## 7957 7958
## 7958 7959
## 7959 7960
## 7960 7961
## 7961 7962
## 7962 7963
## 7963 7964
## 7964 7965
## 7965 7966
## 7966 7967
## 7967 7968
## 7968 7969
## 7969 7970
## 7970 7971
## 7971 7972
## 7972 7973
## 7973 7974
## 7974 7975
## 7975 7976
## 7976 7977
## 7977 7978
## 7978 7979
## 7979 7980
## 7980 7981
## 7981 7982
## 7982 7983
## 7983 7984
## 7984 7985
## 7985 7986
## 7986 7987
## 7987 7988
## 7988 7989
## 7989 7990
## 7990 7991
## 7991 7992
## 7992 7993
## 7993 7994
## 7994 7995
## 7995 7996
## 7996 7997
## 7997 7998
## 7998 7999
## 7999 8000
## 8000 8001
## 8001 8002
## 8002 8003
## 8003 8004
## 8004 8005
## 8005 8006
## 8006 8007
## 8007 8008
## 8008 8009
## 8009 8010
## 8010 8011
## 8011 8012
## 8012 8013
## 8013 8014
## 8014 8015
## 8015 8016
## 8016 8017
## 8017 8018
## 8018 8019
## 8019 8020
## 8020 8021
## 8021 8022
## 8022 8023
## 8023 8024
## 8024 8025
## 8025 8026
## 8026 8027
## 8027 8028
## 8028 8029
## 8029 8030
## 8030 8031
## 8031 8032
## 8032 8033
## 8033 8034
## 8034 8035
## 8035 8036
## 8036 8037
## 8037 8038
## 8038 8039
## 8039 8040
## 8040 8041
## 8041 8042
## 8042 8043
## 8043 8044
## 8044 8045
## 8045 8046
## 8046 8047
## 8047 8048
## 8048 8049
## 8049 8050
## 8050 8051
## 8051 8052
## 8052 8053
## 8053 8054
## 8054 8055
## 8055 8056
## 8056 8057
## 8057 8058
## 8058 8059
## 8059 8060
## 8060 8061
## 8061 8062
## 8062 8063
## 8063 8064
## 8064 8065
## 8065 8066
## 8066 8067
## 8067 8068
## 8068 8069
## 8069 8070
## 8070 8071
## 8071 8072
## 8072 8073
## 8073 8074
## 8074 8075
## 8075 8076
## 8076 8077
## 8077 8078
## 8078 8079
## 8079 8080
## 8080 8081
## 8081 8082
## 8082 8083
## 8083 8084
## 8084 8085
## 8085 8086
## 8086 8087
## 8087 8088
## 8088 8089
## 8089 8090
## 8090 8091
## 8091 8092
## 8092 8093
## 8093 8094
## 8094 8095
## 8095 8096
## 8096 8097
## 8097 8098
## 8098 8099
## 8099 8100
## 8100 8101
## 8101 8102
## 8102 8103
## 8103 8104
## 8104 8105
## 8105 8106
## 8106 8107
## 8107 8108
## 8108 8109
## 8109 8110
## 8110 8111
## 8111 8112
## 8112 8113
## 8113 8114
## 8114 8115
## 8115 8116
## 8116 8117
## 8117 8118
## 8118 8119
## 8119 8120
## 8120 8121
## 8121 8122
## 8122 8123
## 8123 8124
## 8124 8125
## 8125 8126
## 8126 8127
## 8127 8128
## 8128 8129
## 8129 8130
## 8130 8131
## 8131 8132
## 8132 8133
## 8133 8134
## 8134 8135
## 8135 8136
## 8136 8137
## 8137 8138
## 8138 8139
## 8139 8140
## 8140 8141
## 8141 8142
## 8142 8143
## 8143 8144
## 8144 8145
## 8145 8146
## 8146 8147
## 8147 8148
## 8148 8149
## 8149 8150
## 8150 8151
## 8151 8152
## 8152 8153
## 8153 8154
## 8154 8155
## 8155 8156
## 8156 8157
## 8157 8158
## 8158 8159
## 8159 8160
## 8160 8161
## 8161 8162
## 8162 8163
## 8163 8164
## 8164 8165
## 8165 8166
## 8166 8167
## 8167 8168
## 8168 8169
## 8169 8170
## 8170 8171
## 8171 8172
## 8172 8173
## 8173 8174
## 8174 8175
## 8175 8176
## 8176 8177
## 8177 8178
## 8178 8179
## 8179 8180
## 8180 8181
## 8181 8182
## 8182 8183
## 8183 8184
## 8184 8185
## 8185 8186
## 8186 8187
## 8187 8188
## 8188 8189
## 8189 8190
## 8190 8191
## 8191 8192
## 8192 8193
## 8193 8194
## 8194 8195
## 8195 8196
## 8196 8197
## 8197 8198
## 8198 8199
## 8199 8200
## 8200 8201
## 8201 8202
## 8202 8203
## 8203 8204
## 8204 8205
## 8205 8206
## 8206 8207
## 8207 8208
## 8208 8209
## 8209 8210
## 8210 8211
## 8211 8212
## 8212 8213
## 8213 8214
## 8214 8215
## 8215 8216
## 8216 8217
## 8217 8218
## 8218 8219
## 8219 8220
## 8220 8221
## 8221 8222
## 8222 8223
## 8223 8224
## 8224 8225
## 8225 8226
## 8226 8227
## 8227 8228
## 8228 8229
## 8229 8230
## 8230 8231
## 8231 8232
## 8232 8233
## 8233 8234
## 8234 8235
## 8235 8236
## 8236 8237
## 8237 8238
## 8238 8239
## 8239 8240
## 8240 8241
## 8241 8242
## 8242 8243
## 8243 8244
## 8244 8245
## 8245 8246
## 8246 8247
## 8247 8248
## 8248 8249
## 8249 8250
## 8250 8251
## 8251 8252
## 8252 8253
## 8253 8254
## 8254 8255
## 8255 8256
## 8256 8257
## 8257 8258
## 8258 8259
## 8259 8260
## 8260 8261
## 8261 8262
## 8262 8263
## 8263 8264
## 8264 8265
## 8265 8266
## 8266 8267
## 8267 8268
## 8268 8269
## 8269 8270
## 8270 8271
## 8271 8272
## 8272 8273
## 8273 8274
## 8274 8275
## 8275 8276
## 8276 8277
## 8277 8278
## 8278 8279
## 8279 8280
## 8280 8281
## 8281 8282
## 8282 8283
## 8283 8284
## 8284 8285
## 8285 8286
## 8286 8287
## 8287 8288
## 8288 8289
## 8289 8290
## 8290 8291
## 8291 8292
## 8292 8293
## 8293 8294
## 8294 8295
## 8295 8296
## 8296 8297
## 8297 8298
## 8298 8299
## 8299 8300
## 8300 8301
## 8301 8302
## 8302 8303
## 8303 8304
## 8304 8305
## 8305 8306
## 8306 8307
## 8307 8308
## 8308 8309
## 8309 8310
## 8310 8311
## 8311 8312
## 8312 8313
## 8313 8314
## 8314 8315
## 8315 8316
## 8316 8317
## 8317 8318
## 8318 8319
## 8319 8320
## 8320 8321
## 8321 8322
## 8322 8323
## 8323 8324
## 8324 8325
## 8325 8326
## 8326 8327
## 8327 8328
## 8328 8329
## 8329 8330
## 8330 8331
## 8331 8332
## 8332 8333
## 8333 8334
## 8334 8335
## 8335 8336
## 8336 8337
## 8337 8338
## 8338 8339
## 8339 8340
## 8340 8341
## 8341 8342
## 8342 8343
## 8343 8344
## 8344 8345
## 8345 8346
## 8346 8347
## 8347 8348
## 8348 8349
## 8349 8350
## 8350 8351
## 8351 8352
## 8352 8353
## 8353 8354
## 8354 8355
## 8355 8356
## 8356 8357
## 8357 8358
## 8358 8359
## 8359 8360
## 8360 8361
## 8361 8362
## 8362 8363
## 8363 8364
## 8364 8365
## 8365 8366
## 8366 8367
## 8367 8368
## 8368 8369
## 8369 8370
## 8370 8371
## 8371 8372
## 8372 8373
## 8373 8374
## 8374 8375
## 8375 8376
## 8376 8377
## 8377 8378
## 8378 8379
## 8379 8380
## 8380 8381
## 8381 8382
## 8382 8383
## 8383 8384
## 8384 8385
## 8385 8386
## 8386 8387
## 8387 8388
## 8388 8389
## 8389 8390
## 8390 8391
## 8391 8392
## 8392 8393
## 8393 8394
## 8394 8395
## 8395 8396
## 8396 8397
## 8397 8398
## 8398 8399
## 8399 8400
## 8400 8401
## 8401 8402
## 8402 8403
## 8403 8404
## 8404 8405
## 8405 8406
## 8406 8407
## 8407 8408
## 8408 8409
## 8409 8410
## 8410 8411
## 8411 8412
## 8412 8413
## 8413 8414
## 8414 8415
## 8415 8416
## 8416 8417
## 8417 8418
## 8418 8419
## 8419 8420
## 8420 8421
## 8421 8422
## 8422 8423
## 8423 8424
## 8424 8425
## 8425 8426
## 8426 8427
## 8427 8428
## 8428 8429
## 8429 8430
## 8430 8431
## 8431 8432
## 8432 8433
## 8433 8434
## 8434 8435
## 8435 8436
## 8436 8437
## 8437 8438
## 8438 8439
## 8439 8440
## 8440 8441
## 8441 8442
## 8442 8443
## 8443 8444
## 8444 8445
## 8445 8446
## 8446 8447
## 8447 8448
## 8448 8449
## 8449 8450
## 8450 8451
## 8451 8452
## 8452 8453
## 8453 8454
## 8454 8455
## 8455 8456
## 8456 8457
## 8457 8458
## 8458 8459
## 8459 8460
## 8460 8461
## 8461 8462
## 8462 8463
## 8463 8464
## 8464 8465
## 8465 8466
## 8466 8467
## 8467 8468
## 8468 8469
## 8469 8470
## 8470 8471
## 8471 8472
## 8472 8473
## 8473 8474
## 8474 8475
## 8475 8476
## 8476 8477
## 8477 8478
## 8478 8479
## 8479 8480
## 8480 8481
## 8481 8482
## 8482 8483
## 8483 8484
## 8484 8485
## 8485 8486
## 8486 8487
## 8487 8488
## 8488 8489
## 8489 8490
## 8490 8491
## 8491 8492
## 8492 8493
## 8493 8494
## 8494 8495
## 8495 8496
## 8496 8497
## 8497 8498
## 8498 8499
## 8499 8500
## 8500 8501
## 8501 8502
## 8502 8503
## 8503 8504
## 8504 8505
## 8505 8506
## 8506 8507
## 8507 8508
## 8508 8509
## 8509 8510
## 8510 8511
## 8511 8512
## 8512 8513
## 8513 8514
## 8514 8515
## 8515 8516
## 8516 8517
## 8517 8518
## 8518 8519
## 8519 8520
## 8520 8521
## 8521 8522
## 8522 8523
## 8523 8524
## 8524 8525
## 8525 8526
## 8526 8527
## 8527 8528
## 8528 8529
## 8529 8530
## 8530 8531
## 8531 8532
## 8532 8533
## 8533 8534
## 8534 8535
## 8535 8536
## 8536 8537
## 8537 8538
## 8538 8539
## 8539 8540
## 8540 8541
## 8541 8542
## 8542 8543
## 8543 8544
## 8544 8545
## 8545 8546
## 8546 8547
## 8547 8548
## 8548 8549
## 8549 8550
## 8550 8551
## 8551 8552
## 8552 8553
## 8553 8554
## 8554 8555
## 8555 8556
## 8556 8557
## 8557 8558
## 8558 8559
## 8559 8560
## 8560 8561
## 8561 8562
## 8562 8563
## 8563 8564
## 8564 8565
## 8565 8566
## 8566 8567
## 8567 8568
## 8568 8569
## 8569 8570
## 8570 8571
## 8571 8572
## 8572 8573
## 8573 8574
## 8574 8575
## 8575 8576
## 8576 8577
## 8577 8578
## 8578 8579
## 8579 8580
## 8580 8581
## 8581 8582
## 8582 8583
## 8583 8584
## 8584 8585
## 8585 8586
## 8586 8587
## 8587 8588
## 8588 8589
## 8589 8590
## 8590 8591
## 8591 8592
## 8592 8593
## 8593 8594
## 8594 8595
## 8595 8596
## 8596 8597
## 8597 8598
## 8598 8599
## 8599 8600
## 8600 8601
## 8601 8602
## 8602 8603
## 8603 8604
## 8604 8605
## 8605 8606
## 8606 8607
## 8607 8608
## 8608 8609
## 8609 8610
## 8610 8611
## 8611 8612
## 8612 8613
## 8613 8614
## 8614 8615
## 8615 8616
## 8616 8617
## 8617 8618
## 8618 8619
## 8619 8620
## 8620 8621
## 8621 8622
## 8622 8623
## 8623 8624
## 8624 8625
## 8625 8626
## 8626 8627
## 8627 8628
## 8628 8629
## 8629 8630
## 8630 8631
## 8631 8632
## 8632 8633
## 8633 8634
## 8634 8635
## 8635 8636
## 8636 8637
## 8637 8638
## 8638 8639
## 8639 8640
## 8640 8641
## 8641 8642
## 8642 8643
## 8643 8644
## 8644 8645
## 8645 8646
## 8646 8647
## 8647 8648
## 8648 8649
## 8649 8650
## 8650 8651
## 8651 8652
## 8652 8653
## 8653 8654
## 8654 8655
## 8655 8656
## 8656 8657
## 8657 8658
## 8658 8659
## 8659 8660
## 8660 8661
## 8661 8662
## 8662 8663
## 8663 8664
## 8664 8665
## 8665 8666
## 8666 8667
## 8667 8668
## 8668 8669
## 8669 8670
## 8670 8671
## 8671 8672
## 8672 8673
## 8673 8674
## 8674 8675
## 8675 8676
## 8676 8677
## 8677 8678
## 8678 8679
## 8679 8680
## 8680 8681
## 8681 8682
## 8682 8683
## 8683 8684
## 8684 8685
## 8685 8686
## 8686 8687
## 8687 8688
## 8688 8689
## 8689 8690
## 8690 8691
## 8691 8692
## 8692 8693
## 8693 8694
## 8694 8695
## 8695 8696
## 8696 8697
## 8697 8698
## 8698 8699
## 8699 8700
## 8700 8701
## 8701 8702
## 8702 8703
## 8703 8704
## 8704 8705
## 8705 8706
## 8706 8707
## 8707 8708
## 8708 8709
## 8709 8710
## 8710 8711
## 8711 8712
## 8712 8713
## 8713 8714
## 8714 8715
## 8715 8716
## 8716 8717
## 8717 8718
## 8718 8719
## 8719 8720
## 8720 8721
## 8721 8722
## 8722 8723
## 8723 8724
## 8724 8725
## 8725 8726
## 8726 8727
## 8727 8728
## 8728 8729
## 8729 8730
## 8730 8731
## 8731 8732
## 8732 8733
## 8733 8734
## 8734 8735
## 8735 8736
## 8736 8737
## 8737 8738
## 8738 8739
## 8739 8740
## 8740 8741
## 8741 8742
## 8742 8743
## 8743 8744
## 8744 8745
## 8745 8746
## 8746 8747
## 8747 8748
## 8748 8749
## 8749 8750
## 8750 8751
## 8751 8752
## 8752 8753
## 8753 8754
## 8754 8755
## 8755 8756
## 8756 8757
## 8757 8758
## 8758 8759
## 8759 8760
## 8760 8761
## 8761 8762
## 8762 8763
## 8763 8764
## 8764 8765
## 8765 8766
## 8766 8767
## 8767 8768
## 8768 8769
## 8769 8770
## 8770 8771
## 8771 8772
## 8772 8773
## 8773 8774
## 8774 8775
## 8775 8776
## 8776 8777
## 8777 8778
## 8778 8779
## 8779 8780
## 8780 8781
## 8781 8782
## 8782 8783
## 8783 8784
## 8784 8785
## 8785 8786
## 8786 8787
## 8787 8788
## 8788 8789
## 8789 8790
## 8790 8791
## 8791 8792
## 8792 8793
## 8793 8794
## 8794 8795
## 8795 8796
## 8796 8797
## 8797 8798
## 8798 8799
## 8799 8800
## 8800 8801
## 8801 8802
## 8802 8803
## 8803 8804
## 8804 8805
## 8805 8806
## 8806 8807
## 8807 8808
## 8808 8809
## 8809 8810
## 8810 8811
## 8811 8812
## 8812 8813
## 8813 8814
## 8814 8815
## 8815 8816
## 8816 8817
## 8817 8818
## 8818 8819
## 8819 8820
## 8820 8821
## 8821 8822
## 8822 8823
## 8823 8824
## 8824 8825
## 8825 8826
## 8826 8827
## 8827 8828
## 8828 8829
## 8829 8830
## 8830 8831
## 8831 8832
## 8832 8833
## 8833 8834
## 8834 8835
## 8835 8836
## 8836 8837
## 8837 8838
## 8838 8839
## 8839 8840
## 8840 8841
## 8841 8842
## 8842 8843
## 8843 8844
## 8844 8845
## 8845 8846
## 8846 8847
## 8847 8848
## 8848 8849
## 8849 8850
## 8850 8851
## 8851 8852
## 8852 8853
## 8853 8854
## 8854 8855
## 8855 8856
## 8856 8857
## 8857 8858
## 8858 8859
## 8859 8860
## 8860 8861
## 8861 8862
## 8862 8863
## 8863 8864
## 8864 8865
## 8865 8866
## 8866 8867
## 8867 8868
## 8868 8869
## 8869 8870
## 8870 8871
## 8871 8872
## 8872 8873
## 8873 8874
## 8874 8875
## 8875 8876
## 8876 8877
## 8877 8878
## 8878 8879
## 8879 8880
## 8880 8881
## 8881 8882
## 8882 8883
## 8883 8884
## 8884 8885
## 8885 8886
## 8886 8887
## 8887 8888
## 8888 8889
## 8889 8890
## 8890 8891
## 8891 8892
## 8892 8893
## 8893 8894
## 8894 8895
## 8895 8896
## 8896 8897
## 8897 8898
## 8898 8899
## 8899 8900
## 8900 8901
## 8901 8902
## 8902 8903
## 8903 8904
## 8904 8905
## 8905 8906
## 8906 8907
## 8907 8908
## 8908 8909
## 8909 8910
## 8910 8911
## 8911 8912
## 8912 8913
## 8913 8914
## 8914 8915
## 8915 8916
## 8916 8917
## 8917 8918
## 8918 8919
## 8919 8920
## 8920 8921
## 8921 8922
## 8922 8923
## 8923 8924
## 8924 8925
## 8925 8926
## 8926 8927
## 8927 8928
## 8928 8929
## 8929 8930
## 8930 8931
## 8931 8932
## 8932 8933
## 8933 8934
## 8934 8935
## 8935 8936
## 8936 8937
## 8937 8938
## 8938 8939
## 8939 8940
## 8940 8941
## 8941 8942
## 8942 8943
## 8943 8944
## 8944 8945
## 8945 8946
## 8946 8947
## 8947 8948
## 8948 8949
## 8949 8950
## 8950 8951
## 8951 8952
## 8952 8953
## 8953 8954
## 8954 8955
## 8955 8956
## 8956 8957
## 8957 8958
## 8958 8959
## 8959 8960
## 8960 8961
## 8961 8962
## 8962 8963
## 8963 8964
## 8964 8965
## 8965 8966
## 8966 8967
## 8967 8968
## 8968 8969
## 8969 8970
## 8970 8971
## 8971 8972
## 8972 8973
## 8973 8974
## 8974 8975
## 8975 8976
## 8976 8977
## 8977 8978
## 8978 8979
## 8979 8980
## 8980 8981
## 8981 8982
## 8982 8983
## 8983 8984
## 8984 8985
## 8985 8986
## 8986 8987
## 8987 8988
## 8988 8989
## 8989 8990
## 8990 8991
## 8991 8992
## 8992 8993
## 8993 8994
## 8994 8995
## 8995 8996
## 8996 8997
## 8997 8998
## 8998 8999
## 8999 9000
## 9000 9001
## 9001 9002
## 9002 9003
## 9003 9004
## 9004 9005
## 9005 9006
## 9006 9007
## 9007 9008
## 9008 9009
## 9009 9010
## 9010 9011
## 9011 9012
## 9012 9013
## 9013 9014
## 9014 9015
## 9015 9016
## 9016 9017
## 9017 9018
## 9018 9019
## 9019 9020
## 9020 9021
## 9021 9022
## 9022 9023
## 9023 9024
## 9024 9025
## 9025 9026
## 9026 9027
## 9027 9028
## 9028 9029
## 9029 9030
## 9030 9031
## 9031 9032
## 9032 9033
## 9033 9034
## 9034 9035
## 9035 9036
## 9036 9037
## 9037 9038
## 9038 9039
## 9039 9040
## 9040 9041
## 9041 9042
## 9042 9043
## 9043 9044
## 9044 9045
## 9045 9046
## 9046 9047
## 9047 9048
## 9048 9049
## 9049 9050
## 9050 9051
## 9051 9052
## 9052 9053
## 9053 9054
## 9054 9055
## 9055 9056
## 9056 9057
## 9057 9058
## 9058 9059
## 9059 9060
## 9060 9061
## 9061 9062
## 9062 9063
## 9063 9064
## 9064 9065
## 9065 9066
## 9066 9067
## 9067 9068
## 9068 9069
## 9069 9070
## 9070 9071
## 9071 9072
## 9072 9073
## 9073 9074
## 9074 9075
## 9075 9076
## 9076 9077
## 9077 9078
## 9078 9079
## 9079 9080
## 9080 9081
## 9081 9082
## 9082 9083
## 9083 9084
## 9084 9085
## 9085 9086
## 9086 9087
## 9087 9088
## 9088 9089
## 9089 9090
## 9090 9091
## Name
## 1 Wii Sports
## 2 Super Mario Bros.
## 3 Mario Kart Wii
## 4 Wii Sports Resort
## 5 Pokemon Red/Pokemon Blue
## 6 Tetris
## 7 New Super Mario Bros.
## 8 Wii Play
## 9 New Super Mario Bros. Wii
## 10 Duck Hunt
## 11 Nintendogs
## 12 Mario Kart DS
## 13 Pokemon Gold/Pokemon Silver
## 14 Wii Fit
## 15 Wii Fit Plus
## 16 Kinect Adventures!
## 17 Grand Theft Auto V
## 18 Grand Theft Auto: San Andreas
## 19 Super Mario World
## 20 Brain Age: Train Your Brain in Minutes a Day
## 21 Pokemon Diamond/Pokemon Pearl
## 22 Super Mario Land
## 23 Super Mario Bros. 3
## 24 Grand Theft Auto V
## 25 Grand Theft Auto: Vice City
## 26 Pokemon Ruby/Pokemon Sapphire
## 27 Pokemon Black/Pokemon White
## 28 Brain Age 2: More Training in Minutes a Day
## 29 Gran Turismo 3: A-Spec
## 30 Call of Duty: Modern Warfare 3
## 31 Pokémon Yellow: Special Pikachu Edition
## 32 Call of Duty: Black Ops
## 33 Pokemon X/Pokemon Y
## 34 Call of Duty: Black Ops 3
## 35 Call of Duty: Black Ops II
## 36 Call of Duty: Black Ops II
## 37 Call of Duty: Modern Warfare 2
## 38 Call of Duty: Modern Warfare 3
## 39 Grand Theft Auto III
## 40 Super Smash Bros. Brawl
## 41 Call of Duty: Black Ops
## 42 Animal Crossing: Wild World
## 43 Mario Kart 7
## 44 Halo 3
## 45 Grand Theft Auto V
## 46 Pokemon HeartGold/Pokemon SoulSilver
## 47 Super Mario 64
## 48 Gran Turismo 4
## 49 Super Mario Galaxy
## 50 Pokemon Omega Ruby/Pokemon Alpha Sapphire
## 51 Super Mario Land 2: 6 Golden Coins
## 52 Grand Theft Auto IV
## 53 Gran Turismo
## 54 Super Mario 3D Land
## 55 Gran Turismo 5
## 56 Call of Duty: Modern Warfare 2
## 57 Grand Theft Auto IV
## 58 Super Mario All-Stars
## 59 Pokemon FireRed/Pokemon LeafGreen
## 60 Super Mario 64
## 61 Just Dance 3
## 62 Call of Duty: Ghosts
## 63 Halo: Reach
## 64 Mario Kart 64
## 65 New Super Mario Bros. 2
## 66 Halo 4
## 67 Final Fantasy VII
## 68 Call of Duty: Ghosts
## 69 Just Dance 2
## 70 Gran Turismo 2
## 71 Call of Duty 4: Modern Warfare
## 72 Donkey Kong Country
## 73 Minecraft
## 74 Animal Crossing: New Leaf
## 75 Mario Party DS
## 76 The Elder Scrolls V: Skyrim
## 77 Super Mario Kart
## 78 FIFA 16
## 79 Wii Party
## 80 Halo 2
## 81 Mario Party 8
## 82 Pokemon Black 2/Pokemon White 2
## 83 FIFA Soccer 13
## 84 The Sims 3
## 85 GoldenEye 007
## 86 Mario & Sonic at the Olympic Games
## 87 Final Fantasy X
## 88 Final Fantasy VIII
## 89 Pokémon Platinum Version
## 90 Pac-Man
## 91 Grand Theft Auto: Liberty City Stories
## 92 Super Mario Galaxy 2
## 93 Star Wars Battlefront (2015)
## 94 Call of Duty: Advanced Warfare
## 95 The Legend of Zelda: Ocarina of Time
## 96 Crash Bandicoot 2: Cortex Strikes Back
## 97 Super Mario Bros. 2
## 98 Super Smash Bros. for Wii U and 3DS
## 99 Call of Duty: World at War
## 100 Battlefield 3
## 101 The Legend of Zelda: Twilight Princess
## 102 Call of Duty: Black Ops 3
## 103 Just Dance
## 104 Battlefield 3
## 105 Need for Speed Underground
## 106 Tekken 3
## 107 Crash Bandicoot 3: Warped
## 108 Super Smash Bros. Melee
## 109 Mario Kart 8
## 110 Fallout 4
## 111 Mario Kart: Double Dash!!
## 112 Just Dance 4
## 113 FIFA 14
## 114 Need for Speed Underground 2
## 115 Medal of Honor: Frontline
## 116 Uncharted 3: Drake's Deception
## 117 Crash Bandicoot
## 118 Zumba Fitness
## 119 Gears of War 2
## 120 Uncharted 2: Among Thieves
## 121 Call of Duty 4: Modern Warfare
## 122 FIFA 12
## 123 Big Brain Academy
## 124 Red Dead Redemption
## 125 FIFA 15
## 126 Donkey Kong Country Returns
## 127 The Elder Scrolls V: Skyrim
## 128 The Legend of Zelda
## 129 Assassin's Creed III
## 130 Halo: Combat Evolved
## 131 Pokémon Emerald Version
## 132 Kingdom Hearts
## 133 Pokémon Crystal Version
## 134 Halo 3: ODST
## 135 Red Dead Redemption
## 136 Super Mario Sunshine
## 137 Street Fighter II: The World Warrior
## 138 World of Warcraft
## 139 Driver
## 140 Kinect Sports
## 141 Gears of War 3
## 142 Gears of War
## 143 Metal Gear Solid 2: Sons of Liberty
## 144 Sonic the Hedgehog 2
## 145 Metal Gear Solid 4: Guns of the Patriots
## 146 Metal Gear Solid
## 147 The Last of Us
## 148 Final Fantasy XII
## 149 LittleBigPlanet
## 150 Dragon Quest IX: Sentinels of the Starry Skies
## 151 LEGO Star Wars: The Complete Saga
## 152 Resident Evil 2
## 153 Tekken 2
## 154 Cooking Mama
## 155 Destiny
## 156 Tetris
## 157 Assassin's Creed II
## 158 Super Smash Bros.
## 159 Assassin's Creed
## 160 Batman: Arkham City
## 161 Forza Motorsport 3
## 162 Monster Hunter Freedom Unite
## 163 Super Mario Advance
## 164 Mario Kart: Super Circuit
## 165 Super Mario World
## 166 Pokemon Stadium
## 167 Call of Duty: World at War
## 168 Crash Bandicoot: The Wrath of Cortex
## 169 Minecraft
## 170 Final Fantasy XIII
## 171 Dr. Mario
## 172 Pokemon Pinball
## 173 Assassin's Creed III
## 174 Final Fantasy IX
## 175 Final Fantasy X-2
## 176 Donkey Kong 64
## 177 Assassin's Creed II
## 178 Professor Layton and the Curious Village
## 179 Tomb Raider II
## 180 Madden NFL 2004
## 181 Dragon Quest VIII: Journey of the Cursed King
## 182 Diablo III
## 183 Super Mario Bros. 3
## 184 New Super Mario Bros. U
## 185 Super Mario Land 3: Wario Land
## 186 FIFA Soccer 13
## 187 The Legend of Zelda: Phantom Hourglass
## 188 Donkey Kong Country 2: Diddy's Kong Quest
## 189 Tomodachi Life
## 190 Mario & Sonic at the Olympic Games
## 191 Medal of Honor: Rising Sun
## 192 Kirby's Dream Land
## 193 Fable III
## 194 Call of Duty: Advanced Warfare
## 195 Microsoft Flight Simulator
## 196 Guitar Hero II
## 197 Resident Evil 5
## 198 Grand Theft Auto V
## 199 Grand Theft Auto: Vice City Stories
## 200 FIFA Soccer 11
## 201 Super Mario Bros.
## 202 Resident Evil
## 203 Tony Hawk's Pro Skater
## 204 Super Smash Bros. for Wii U and 3DS
## 205 Warzone 2100
## 206 Spyro the Dragon
## 207 Link's Crossbow Training
## 208 Guitar Hero III: Legends of Rock
## 209 Fallout 3
## 210 Pokemon Mystery Dungeon: Explorers of Time/Explorers of Darkness
## 211 Uncharted: Drake's Fortune
## 212 Madden NFL 06
## 213 LEGO Star Wars: The Complete Saga
## 214 Diddy Kong Racing
## 215 Monster Hunter Freedom 3
## 216 Dr. Mario
## 217 God of War III
## 218 StarCraft II: Wings of Liberty
## 219 Assassin's Creed
## 220 FIFA 15
## 221 Crash Team Racing
## 222 FIFA 17
## 223 Batman: Arkham City
## 224 Driver 2
## 225 The Simpsons: Hit & Run
## 226 Tony Hawk's Pro Skater 2
## 227 Animal Crossing: City Folk
## 228 The Lord of the Rings: The Two Towers
## 229 Forza Motorsport 4
## 230 Tomb Raider
## 231 Guitar Hero III: Legends of Rock
## 232 The Legend of Zelda: A Link to the Past
## 233 The Legend of Zelda: The Wind Waker
## 234 Mario & Sonic at the Olympic Winter Games
## 235 Luigi's Mansion: Dark Moon
## 236 Splatoon
## 237 The Last of Us
## 238 Guitar Hero III: Legends of Rock
## 239 Madden NFL 2005
## 240 Pitfall!
## 241 Madden NFL 07
## 242 Spider-Man: The Movie
## 243 Dragon Quest VII: Warriors of Eden
## 244 Uncharted: The Nathan Drake Collection
## 245 Call of Duty: Advanced Warfare
## 246 God of War
## 247 Nintendo Land
## 248 Michael Jackson: The Experience
## 249 Tony Hawk's Pro Skater 3
## 250 Winning Eleven: Pro Evolution Soccer 2007
## 251 The Elder Scrolls IV: Oblivion
## 252 Zelda II: The Adventure of Link
## 253 Need for Speed: Most Wanted
## 254 Resistance: Fall of Man
## 255 Sonic the Hedgehog
## 256 Kingdom Hearts II
## 257 FIFA 14
## 258 Call of Duty: Advanced Warfare
## 259 Asteroids
## 260 Fable II
## 261 Halo 5: Guardians
## 262 Super Mario 3D World
## 263 Batman: Arkham Asylum
## 264 Assassin's Creed: Revelations
## 265 Namco Museum
## 266 Metal Gear Solid 3: Snake Eater
## 267 Daxter
## 268 Warcraft II: Tides of Darkness
## 269 The Legend of Zelda: Ocarina of Time
## 270 FIFA Soccer 06
## 271 EyeToy Play
## 272 Uncharted 4: A Thief's End
## 273 Gran Turismo 5 Prologue
## 274 Assassin's Creed: Revelations
## 275 Street Fighter IV
## 276 FIFA 12
## 277 Teenage Mutant Ninja Turtles
## 278 Excitebike
## 279 Frogger
## 280 Madden NFL 2003
## 281 Watch Dogs
## 282 Half-Life
## 283 Super Mario World 2: Yoshi's Island
## 284 FIFA Soccer 07
## 285 The Legend of Zelda: Skyward Sword
## 286 Street Fighter II Turbo
## 287 Carnival Games
## 288 Fallout 4
## 289 World of Warcraft: The Burning Crusade
## 290 Fallout: New Vegas
## 291 God of War II
## 292 Forza Motorsport 2
## 293 World Soccer Winning Eleven 9
## 294 Namco Museum Vol.3
## 295 Tekken Tag Tournament
## 296 Far Cry 4
## 297 Star Fox 64
## 298 Minecraft
## 299 Golf
## 300 Fallout 3
## 301 Professor Layton and the Diabolical Box
## 302 Left 4 Dead 2
## 303 Namco Museum: 50th Anniversary
## 304 EA Sports Active
## 305 Assassin's Creed: Unity
## 306 Donkey Kong Land
## 307 Tony Hawk's Underground
## 308 Assassin's Creed IV: Black Flag
## 309 Monster Hunter 4 Ultimate
## 310 MotorStorm
## 311 The Elder Scrolls V: Skyrim
## 312 Tekken 5
## 313 Dragon Warrior III
## 314 Sports Champions
## 315 NBA 2K16
## 316 World Soccer Winning Eleven 8 International
## 317 Flash Focus: Vision Training in Minutes a Day
## 318 Namco Museum Vol.1
## 319 The Legend of Zelda: Link's Awakening
## 320 Mario & Luigi: Bowser's Inside Story
## 321 Big Brain Academy: Wii Degree
## 322 Nintendogs + cats
## 323 Batman: Arkham Knight
## 324 Mario & Sonic at the London 2012 Olympic Games
## 325 LEGO Indiana Jones: The Original Adventures
## 326 Resident Evil Director's Cut
## 327 Ratchet & Clank: Size Matters
## 328 Just Dance 2014
## 329 The Sims: Unleashed
## 330 Super Paper Mario
## 331 Harry Potter and the Sorcerer's Stone
## 332 The Witcher 3: Wild Hunt
## 333 Resident Evil 3: Nemesis
## 334 Spyro: Year of the Dragon
## 335 FIFA Soccer 2005
## 336 Pokémon Trading Card Game
## 337 Battlefield 4
## 338 MySims
## 339 Friend Collection
## 340 Tony Hawk's Pro Skater 4
## 341 Midnight Club 3: DUB Edition
## 342 Banjo-Kazooie
## 343 SOCOM: U.S. Navy SEALs
## 344 Guitar Hero: World Tour
## 345 Gran Turismo 6
## 346 Jak and Daxter: The Precursor Legacy
## 347 Pokemon Snap
## 348 FIFA Soccer 10
## 349 Pro Evolution Soccer 2008
## 350 Call of Duty: Ghosts
## 351 Resident Evil 4
## 352 Tom Clancy's The Division
## 353 Star Wars: Battlefront
## 354 Doom II: Hell on Earth
## 355 The Simpsons: Road Rage
## 356 Cooking Mama 2: Dinner With Friends
## 357 Luigi's Mansion
## 358 Star Wars: Battlefront II
## 359 WWF SmackDown!
## 360 Croc: Legend of the Gobbos
## 361 Grand Theft Auto: Liberty City Stories
## 362 The Getaway
## 363 Tomb Raider III: Adventures of Lara Croft
## 364 James Bond 007: Agent Under Fire
## 365 LEGO Star Wars: The Video Game
## 366 Battlefield 4
## 367 FIFA Soccer 11
## 368 Rugrats in Paris: The Movie
## 369 Spyro 2: Ripto's Rage!
## 370 Left 4 Dead
## 371 Mario & Sonic at the Olympic Winter Games
## 372 Resident Evil 5
## 373 Donkey Kong Country 3: Dixie Kong's Double Trouble!
## 374 Assassin's Creed: Brotherhood
## 375 Kung Fu
## 376 Batman: Arkham Asylum
## 377 Clubhouse Games
## 378 FIFA Soccer 2004
## 379 Star Wars Battlefront (2015)
## 380 Battlefield: Bad Company 2
## 381 Guitar Hero: On Tour
## 382 Assassin's Creed: Unity
## 383 Far Cry 3
## 384 Monster Hunter 4
## 385 Borderlands
## 386 Tekken 4
## 387 Battlefield 4
## 388 LittleBigPlanet 2
## 389 Grand Theft Auto 2
## 390 Final Fantasy III
## 391 Spider-Man 2
## 392 F-1 Race
## 393 FIFA Soccer 2003
## 394 Crash Bash
## 395 LEGO Batman: The Videogame
## 396 Metal Gear Solid V: The Phantom Pain
## 397 The Legend of Zelda: Spirit Tracks
## 398 WWF War Zone
## 399 The Legend of Zelda: Majora's Mask
## 400 Professor Layton and the Unwound Future
## 401 Rugrats: Search For Reptar
## 402 Assassin's Creed IV: Black Flag
## 403 English Training: Have Fun Improving Your Skills!
## 404 James Bond 007: Nightfire
## 405 Ratchet & Clank
## 406 Mario Party 9
## 407 Star Wars Episode III: Revenge of the Sith
## 408 Max Payne
## 409 The Lord of the Rings: The Return of the King
## 410 Assassin's Creed Syndicate
## 411 Destiny
## 412 True Crime: Streets of LA
## 413 Wii Music
## 414 Gran Turismo (PSP)
## 415 Monster Hunter X
## 416 Tekken
## 417 FIFA 16
## 418 L.A. Noire
## 419 Madden NFL 16
## 420 Yokai Watch 2 Ganso/Honke
## 421 007: Tomorrow Never Dies
## 422 Baseball
## 423 Killer Instinct
## 424 WWF SmackDown! 2: Know Your Role
## 425 Crisis Core: Final Fantasy VII
## 426 God of War: Chains of Olympus
## 427 Dragon Quest VI: Maboroshi no Daichi
## 428 Dance Central
## 429 Enter the Matrix
## 430 Super Mario Maker
## 431 Fallout: New Vegas
## 432 LEGO Batman: The Videogame
## 433 Rhythm Heaven
## 434 Ace Combat 04: Shattered Skies
## 435 Club Penguin: Elite Penguin Force
## 436 Animal Crossing
## 437 LEGO Batman: The Videogame
## 438 Sonic Rush
## 439 Resident Evil 6
## 440 Halo: The Master Chief Collection
## 441 FIFA Soccer 08
## 442 Spider-Man
## 443 Need for Speed III: Hot Pursuit
## 444 Star Wars Episode I Racer
## 445 Personal Trainer: Cooking
## 446 The Elder Scrolls IV: Oblivion
## 447 Dragon Warrior IV
## 448 Heavy Rain
## 449 Mass Effect 2
## 450 FIFA 15
## 451 Dragon Ball Z: Budokai
## 452 Madden NFL 2002
## 453 World Class Track Meet
## 454 Borderlands 2
## 455 The Legend of Zelda: A Link Between Worlds
## 456 Donkey Kong
## 457 The Sims: Vacation
## 458 Mass Effect 3
## 459 Kung Fu Panda
## 460 Far Cry 3
## 461 Epic Mickey
## 462 Saints Row 2
## 463 Rayman
## 464 Killzone 2
## 465 Tom Clancy's Splinter Cell
## 466 Mike Tyson's Punch-Out!!
## 467 WWE SmackDown! Shut Your Mouth
## 468 Gears of War: Ultimate Edition
## 469 NBA 2K13
## 470 Dragon Ball Z: Budokai Tenkaichi 3
## 471 wwe Smackdown vs. Raw 2006
## 472 Middle-Earth: Shadow of Mordor
## 473 Star Fox
## 474 The Sims: Livin Large
## 475 World Soccer Winning Eleven 6 International
## 476 Devil May Cry
## 477 Animal Crossing: Happy Home Designer
## 478 Battlefield: Bad Company 2
## 479 The Sims 4
## 480 Star Wars: The Old Republic
## 481 Sonic Heroes
## 482 Kirby Super Star Ultra
## 483 Hitman 2: Silent Assassin
## 484 Street Fighter IV
## 485 Wave Race 64
## 486 SOCOM II: U.S. Navy SEALs
## 487 WWE SmackDown! vs. RAW 2006
## 488 inFAMOUS
## 489 Pac-Man Collection
## 490 Mass Effect
## 491 WarioWare: Smooth Moves
## 492 Cooking Mama: Cook Off
## 493 Super Mario World 2: Yoshi's Island
## 494 FIFA 14
## 495 Titanfall
## 496 Sonic Mega Collection Plus
## 497 Sega Superstars Tennis
## 498 World Soccer Winning Eleven 7 International
## 499 Need for Speed: Most Wanted
## 500 Hot Shots Golf 3
## 501 Call of Duty: Finest Hour
## 502 Zumba Fitness 2
## 503 Syphon Filter
## 504 Imagine: Babyz
## 505 Colin McRae Rally
## 506 Call of Duty: Ghosts
## 507 Madden NFL 13
## 508 The Elder Scrolls III: Morrowind
## 509 Mortal Kombat
## 510 F-Zero
## 511 Yoshi's Story
## 512 Command & Conquer: Red Alert
## 513 Skylanders: Spyro's Adventure
## 514 FIFA 16
## 515 Assassin's Creed: Brotherhood
## 516 BioShock
## 517 Madden NFL 10
## 518 Medal of Honor
## 519 WWE SmackDown! vs. Raw
## 520 Metroid Prime
## 521 Finding Nemo
## 522 Myst
## 523 Need for Speed: Hot Pursuit
## 524 Imagine: Fashion Designer
## 525 WWE SmackDown! Here Comes the Pain
## 526 Star Wars: The Force Unleashed
## 527 Yoshi's Island DS
## 528 Hot Shots Golf
## 529 Killzone 3
## 530 A Bug's Life
## 531 WWF SmackDown! Just Bring It
## 532 Dragon Quest V: Tenkuu no Hanayome
## 533 Mortal Kombat Trilogy
## 534 Battlefield 3
## 535 NBA Street
## 536 Professor Layton and the Last Specter
## 537 Monster Hunter Tri
## 538 Jak II
## 539 inFAMOUS: Second Son
## 540 Ratchet & Clank: Going Commando
## 541 Tekken 6
## 542 The Sims
## 543 Sonic and the Secret Rings
## 544 Saints Row: The Third
## 545 Missile Command
## 546 Mario Paint
## 547 Assassin's Creed IV: Black Flag
## 548 Pokémon Stadium 2
## 549 Metroid
## 550 L.A. Noire
## 551 Call of Duty 3
## 552 The Legend of Zelda: A Link to the Past
## 553 Onimusha: Warlords
## 554 Mortal Kombat X
## 555 Mario Party
## 556 Madden NFL 12
## 557 LEGO Star Wars II: The Original Trilogy
## 558 Madden NFL 11
## 559 Mario vs. Donkey Kong: Mini-Land Mayhem!
## 560 Skate 3
## 561 Burnout 3: Takedown
## 562 Yokai Watch 2 Shinuchi
## 563 Need for Speed: Shift
## 564 Final Fantasy XIII-2
## 565 Mortal Kombat
## 566 Call Of Duty 2: Big Red One
## 567 Guitar Hero: World Tour
## 568 Medal of Honor
## 569 Fable
## 570 Hannah Montana
## 571 Tom Clancy's Splinter Cell
## 572 Skylanders Giants
## 573 Medal of Honor Heroes
## 574 Super Mario Bros.: The Lost Levels
## 575 Star Wars: Shadows of the Empire
## 576 LEGO Star Wars: The Complete Saga
## 577 Midnight Club: Street Racing
## 578 Pac-Man: Adventures in Time
## 579 Halo Wars
## 580 God of War Collection
## 581 ESPN NFL 2K5
## 582 Mario Strikers Charged
## 583 Medal of Honor
## 584 FIFA Soccer 10
## 585 NBA 2K12
## 586 Style Savvy
## 587 Harry Potter and the Chamber of Secrets
## 588 Super Mario All-Stars: Limited Edition
## 589 Streets of Rage
## 590 FIFA Soccer 09
## 591 Ratchet & Clank Future: Tools of Destruction
## 592 NBA Live 2005
## 593 LittleBigPlanet
## 594 Killzone: Shadow Fall
## 595 Ghostbusters: The Video Game (DS Version)
## 596 Monster Hunter Freedom 2
## 597 WWE SmackDown vs. RAW 2007
## 598 Ratchet & Clank: Up Your Arsenal
## 599 Art Academy
## 600 Dragon Age: Origins
## 601 Madden NFL 08
## 602 Sonic Adventure 2 Battle
## 603 Dragon Warrior II
## 604 Madden NFL 13
## 605 Pokémon Colosseum
## 606 Deca Sports
## 607 Madden NFL 09
## 608 Space Invaders
## 609 Crazy Taxi
## 610 Perfect Dark
## 611 Game Party
## 612 Dragon Warrior
## 613 Tomb Raider (2013)
## 614 Marvel: Ultimate Alliance
## 615 PES 2009: Pro Evolution Soccer
## 616 Mario Party 2
## 617 Saints Row: The Third
## 618 Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City
## 619 LEGO Harry Potter: Years 1-4
## 620 Mortal Kombat: Deadly Alliance
## 621 Resistance 2
## 622 Pure
## 623 Tomb Raider: The Last Revelation
## 624 NBA 2K13
## 625 Rock Band
## 626 NBA 2K14
## 627 Mario Party 4
## 628 uDraw Studio
## 629 Midnight Club: Los Angeles
## 630 Final Fantasy V
## 631 Final Fantasy Tactics
## 632 Twisted Metal 2
## 633 Halo: Combat Evolved Anniversary
## 634 Need for Speed Carbon: Own the City
## 635 The Sims: Bustin' Out
## 636 Riven: The Sequel to Myst
## 637 Tom Clancy's Rainbow Six: Vegas 2
## 638 Sonic Adventure
## 639 Ice Hockey
## 640 pro evolution soccer 2011
## 641 Dragon Ball Z: Budokai 2
## 642 ATV Offroad Fury
## 643 Dino Crisis
## 644 Minecraft
## 645 Need for Speed: ProStreet
## 646 Madden NFL 16
## 647 Tetris Plus
## 648 Pro Wrestling
## 649 Theme Hospital
## 650 Frogger's Adventures: Temple of the Frog
## 651 Need for Speed (2015)
## 652 Zumba Fitness
## 653 LEGO Indiana Jones: The Original Adventures
## 654 Monopoly
## 655 Batman: Arkham Origins
## 656 Dead Island
## 657 Guitar Hero
## 658 LEGO Star Wars: The Complete Saga
## 659 Kinect: Disneyland Adventures
## 660 WCW/nWo Revenge
## 661 Bloodborne
## 662 NBA 2K15
## 663 Madden NFL 11
## 664 Yu-Gi-Oh! The Duelists of the Roses
## 665 Madden NFL 08
## 666 Half-Life 2
## 667 The Incredibles
## 668 Tony Hawk's Underground 2
## 669 Madden NFL 10
## 670 Kinect Sports: Season Two
## 671 Kirby's Dream Land 2
## 672 LEGO Harry Potter: Years 1-4
## 673 Donkey Kong Land II
## 674 Dragon Warrior Monsters
## 675 Midnight Club: Los Angeles
## 676 Skylanders SWAP Force
## 677 WWE SmackDown vs Raw 2008
## 678 My Fitness Coach
## 679 Resident Evil - Code: Veronica X
## 680 The Sims 3
## 681 The Legend of Zelda: Majora's Mask 3D
## 682 NBA 2K16
## 683 Just Dance Kids
## 684 Mario Tennis
## 685 Grand Theft Auto
## 686 James Bond 007: Everything or Nothing
## 687 WarioWare Touched!
## 688 Need For Speed: High Stakes
## 689 Chrono Trigger
## 690 Cool Boarders 3
## 691 LEGO Marvel Super Heroes
## 692 Guild Wars 2
## 693 Pokemon Ranger: Shadows of Almia
## 694 Dead Island
## 695 Tomb Raider II
## 696 God of War: Ascension
## 697 Need for Speed Underground 2
## 698 Pro Evolution Soccer 2010
## 699 Just Dance 2015
## 700 Yokai Watch Busters
## 701 Mario Bros.
## 702 FIFA Soccer 09
## 703 Star Wars: The Force Unleashed
## 704 Borderlands 2
## 705 TOCA Touring Car Championship
## 706 Paper Mario: Sticker Star
## 707 Sonic's Ultimate Genesis Collection
## 708 Super Monkey Ball: Banana Blitz
## 709 Kirby: Nightmare in Dream Land
## 710 Wario Land 4
## 711 Guitar Hero III: Legends of Rock
## 712 Call of Duty 3
## 713 Resident Evil 4
## 714 Minecraft
## 715 Onimusha 2: Samurai's Destiny
## 716 Cool Boarders 2
## 717 Paper Mario: The Thousand-Year Door
## 718 Madden NFL 12
## 719 Monster Hunter Tri
## 720 Dissidia: Final Fantasy
## 721 Sonic Advance
## 722 Spyro: Season of Ice
## 723 Teenage Mutant Ninja Turtles II: The Arcade Game
## 724 LEGO Indiana Jones: The Original Adventures
## 725 Dance Dance Revolution X2
## 726 New Super Luigi U
## 727 Prince of Persia: The Sands of Time
## 728 Scribblenauts
## 729 The Legend of Zelda: Link's Awakening DX
## 730 Need for Speed: Hot Pursuit
## 731 BioShock 2
## 732 Assassin's Creed IV: Black Flag
## 733 Devil May Cry 3: Dante's Awakening Special Edition
## 734 Rock Band 2
## 735 Frogger
## 736 Guitar Hero II
## 737 Wario Land 3
## 738 Pro Yakyuu Family Stadium
## 739 Sonic Unleashed
## 740 High School Musical: Makin' the Cut!
## 741 Pro Evolution Soccer 2012
## 742 Saints Row
## 743 Star Wars: Knights of the Old Republic
## 744 Kirby's Pinball Land
## 745 Donkey Kong Country
## 746 Hitman: Absolution
## 747 Yu-Gi-Oh: Duel Monsters 4
## 748 ATV Offroad Fury 2
## 749 Forza Motorsport 5
## 750 Madden NFL 25
## 751 Pokemon Ranger
## 752 Mario & Luigi: Superstar Saga
## 753 Final Fantasy XIII
## 754 Star Wars: Rogue Squadron
## 755 Tennis
## 756 The Sims: House Party
## 757 Your Shape featuring Jenny McCarthy
## 758 Syphon Filter 2
## 759 Tom Clancy's Rainbow Six: Siege
## 760 Volleyball
## 761 FIFA 15
## 762 Call of Duty: Roads to Victory
## 763 Super Mario RPG: Legend of the Seven Stars
## 764 Mahjong
## 765 R.C. Pro-Am
## 766 SimCity 2000
## 767 Demon Attack
## 768 Dance Dance Revolution Extreme
## 769 Tetris DS
## 770 Final Fantasy Tactics Advance
## 771 Far Cry: Primal
## 772 Toy Story 3: The Video Game
## 773 Final Fantasy III
## 774 Kirby's Epic Yarn
## 775 Project Gotham Racing
## 776 Golf
## 777 NBA 2K12
## 778 Borderlands
## 779 Tony Hawk's Pro Skater
## 780 PES 2009: Pro Evolution Soccer
## 781 Need for Speed: Hot Pursuit 2
## 782 Mario Sports Mix
## 783 Rock Band
## 784 Dynasty Warriors 4
## 785 Mortal Kombat
## 786 Parasite Eve
## 787 Scooby-Doo! Night of 100 Frights
## 788 Project Gotham Racing (JP weekly sales)
## 789 Need for Speed: Most Wanted 5-1-0
## 790 Portal 2
## 791 Devil May Cry 3: Dante's Awakening
## 792 Derby Stallion
## 793 Dead Rising
## 794 Finding Nemo
## 795 NBA 2K11
## 796 Wipeout: The Game
## 797 The Sims 2: Pets
## 798 Battlefield: Hardline
## 799 Metal Gear Solid: Peace Walker
## 800 World of Warcraft: Cataclysm
## 801 Tetris Worlds
## 802 Need For Speed: Undercover
## 803 Dance Dance Revolution: Hottest Party
## 804 Mario Party 5
## 805 Ghostbusters: The Video Game (DS Version)
## 806 Sim Theme Park
## 807 Warcraft: Orcs & Humans
## 808 Skate 3
## 809 Spec Ops: Airborne Commando
## 810 Kingdom Hearts: Birth by Sleep
## 811 UFC 2009 Undisputed
## 812 Dark Souls
## 813 Yu-Gi-Oh! The Eternal Duelist Soul
## 814 Need for Speed: ProStreet
## 815 The Sims 3
## 816 Tom Clancy's Splinter Cell: Conviction
## 817 Pokemon Mystery Dungeon: Red/Blue Rescue Team
## 818 The Incredibles
## 819 R4: Ridge Racer Type 4
## 820 SoulCalibur II
## 821 Mario & Luigi: Dream Team
## 822 Need for Speed: ProStreet
## 823 Carnival Games
## 824 NBA 2K14
## 825 Pokémon Mystery Dungeon: Blue Rescue Team
## 826 Sonic Mega Collection
## 827 Diablo III
## 828 NBA Jam
## 829 PGR4 - Project Gotham Racing 4
## 830 Kingdom Hearts 358/2 Days
## 831 Dance Central 2
## 832 Rayman Raving Rabbids: TV Party
## 833 SOCOM: U.S. Navy SEALs: Combined Assault
## 834 Peter Jackson's King Kong: The Official Game of the Movie
## 835 Donkey Kong Country
## 836 Need for Speed: The Run
## 837 Madden NFL 15
## 838 1080°: TenEighty Snowboarding
## 839 Just Dance 3
## 840 NBA Live 2004
## 841 Dead Space
## 842 Call of Duty 2
## 843 Madden NFL 15
## 844 Forza Horizon
## 845 TouchMaster
## 846 Tom Clancy's The Division
## 847 LEGO Marvel Super Heroes
## 848 Fire Emblem: Awakening
## 849 DriveClub
## 850 Super Street Fighter II
## 851 Mortal Kombat vs. DC Universe
## 852 Tenchu: Stealth Assassins
## 853 Tennis
## 854 Harry Potter and the Chamber of Secrets
## 855 Harry Potter and the Chamber of Secrets
## 856 SimCity
## 857 Battlefield 4
## 858 Resident Evil 6
## 859 Dragon Age: Inquisition
## 860 Sonic Classic Collection
## 861 Spyro: Enter the Dragonfly
## 862 Call of Duty: World at War
## 863 Devil May Cry 2
## 864 Burnout Paradise
## 865 E.T.: The Extra Terrestrial
## 866 BioShock Infinite
## 867 Hot Shots Golf: Open Tee
## 868 Rad Racer
## 869 Soccer
## 870 Kirby Squeak Squad
## 871 Tom Clancy's Rainbow Six: Vegas
## 872 Destiny
## 873 Crash Nitro Kart
## 874 Grand Theft Auto: San Andreas
## 875 Star Wars: Dark Forces
## 876 NBA Street Vol. 2
## 877 Def Jam Vendetta
## 878 FIFA Soccer 09
## 879 Who wants to be a millionaire
## 880 Scooby Doo and the Cyber Chase
## 881 Alleyway
## 882 Dragon Ball Z: Budokai 3
## 883 Jet Moto 2
## 884 Tom Clancy's Ghost Recon
## 885 X-Men Legends
## 886 Batman: Arkham Origins
## 887 Guitar Hero: World Tour
## 888 Mortal Kombat II
## 889 Virtua Fighter 2
## 890 Tetris DX
## 891 Mortal Kombat vs. DC Universe
## 892 Watch Dogs
## 893 Mario Super Sluggers
## 894 Tomb Raider (2013)
## 895 The Legend of Zelda: Oracle of Ages
## 896 Need for Speed: Shift
## 897 Monopoly
## 898 Red Faction
## 899 The Sims: Makin' Magic
## 900 MX Unleashed
## 901 PaRappa The Rapper
## 902 Toy Story Mania!
## 903 Mario Party 3
## 904 Star Wars: The Force Unleashed
## 905 Game Party 2
## 906 Destiny: The Taken King
## 907 LEGO Star Wars III: The Clone Wars
## 908 Star Wars Rogue Leader: Rogue Squadron II
## 909 Max Payne 3
## 910 Need for Speed Rivals
## 911 Madden NFL 09
## 912 Yokai Watch
## 913 Ratchet & Clank Future: A Crack in Time
## 914 Yu-Gi-Oh! Forbidden Memories
## 915 Mortal Kombat: Deception
## 916 Hot Shots Golf 2
## 917 Medal of Honor: European Assault (All Region sales)
## 918 WCW Nitro
## 919 High School Musical: Sing It!
## 920 Star Fox Adventures
## 921 FIFA 2000
## 922 Dynasty Warriors 3
## 923 Donkey Kong Country Returns
## 924 The Legend of Zelda: Oracle of Seasons
## 925 Madden NFL 06
## 926 Shrek 2
## 927 The Legend of Dragoon
## 928 Turok 2: Seeds of Evil
## 929 SingStar
## 930 LittleBigPlanet 3
## 931 NBA Live 2002
## 932 Phineas and Ferb
## 933 Chrono Cross
## 934 GoldenEye 007 (2010)
## 935 Mario Party: Island Tour
## 936 Jak 3
## 937 Rayman Raving Rabbids 2
## 938 Kingdom Hearts: Chain of Memories
## 939 Pinball
## 940 inFAMOUS 2
## 941 Gran Turismo Concept 2001 Tokyo
## 942 Demon's Souls
## 943 NCAA Football 06
## 944 Hey You, Pikachu!
## 945 2 Games in 1: Sonic Advance & ChuChu Rocket!
## 946 World of Warcraft: Mists of Pandaria
## 947 Jet Moto
## 948 Just Cause 3
## 949 Secret of Mana
## 950 The Orange Box
## 951 Air Combat
## 952 Kirby: Triple Deluxe
## 953 Sonic & Knuckles
## 954 Namco Museum
## 955 The Sims: Hot Date
## 956 Metroid Prime 3: Corruption
## 957 Dragon Quest VI: Realms of Revelation
## 958 The Evil Within
## 959 DDRMAX2: Dance Dance Revolution
## 960 Crazy Taxi
## 961 Virtua Fighter 4
## 962 Sly 2: Band of Thieves
## 963 Guitar Hero: World Tour
## 964 Sonic Advance 2
## 965 Madden NFL 07
## 966 NBA 2K11
## 967 NFL GameDay 2000
## 968 Call of Duty: Black Ops 3
## 969 Disney's The Lion King
## 970 Beyond: Two Souls
## 971 Kinect Star Wars
## 972 Midnight Club II
## 973 Dragon Quest Monsters: Joker
## 974 SpongeBob SquarePants: SuperSponge
## 975 The Getaway: Black Monday
## 976 Professor Layton and the Mask of Miracle
## 977 Just Cause 2
## 978 Dragon's Dogma
## 979 The Legend of Zelda: The Wind Waker
## 980 50 Cent: Bulletproof
## 981 High School Musical: Sing It!
## 982 Wii Party U
## 983 Madden NFL 25
## 984 Final Fantasy II
## 985 Kirby 64: The Crystal Shards
## 986 Dead or Alive 3
## 987 UFC 2009 Undisputed
## 988 Metroid II: Return of Samus
## 989 WWF Attitude
## 990 The SpongeBob SquarePants Movie
## 991 Golden Sun
## 992 Sonic the Hedgehog 3
## 993 Kid Icarus
## 994 Def Jam: Fight for NY
## 995 Tom Clancy's Ghost Recon
## 996 State of Emergency
## 997 BioShock Infinite
## 998 Hitman: Absolution
## 999 2 Games in 1 Double Pack: The Incredibles / Finding Nemo: The Continuing Adventures
## 1000 Call of Duty: Black Ops 3
## 1001 The Urbz: Sims in the City
## 1002 FIFA Soccer 08
## 1003 Star Wars: Starfighter
## 1004 Madden NFL 2000
## 1005 Kingdom Hearts
## 1006 Star Wars: Battlefront
## 1007 Pro Evolution Soccer
## 1008 Crackdown
## 1009 Yoshi
## 1010 Disney's Aladdin
## 1011 Kirby's Adventure
## 1012 Cooking Mama 3: Shop & Chop
## 1013 Dance Dance Revolution X
## 1014 2 Games in 1: Disney Princess & The Lion King
## 1015 Star Wars Episode I: The Phantom Menace
## 1016 Xenosaga Episode I: Der Wille zur Macht
## 1017 Portal 2
## 1018 The Beatles: Rock Band
## 1019 Forza Motorsport 6
## 1020 Sonic Colors
## 1021 Cruis'n USA
## 1022 Madden NFL 99
## 1023 Diablo III
## 1024 Uncharted: Golden Abyss
## 1025 Destiny
## 1026 SSX Tricky
## 1027 Overwatch
## 1028 Twisted Metal III
## 1029 Harry Potter and the Sorcerer's Stone
## 1030 Disney Infinity
## 1031 Crash Bandicoot: The Huge Adventure
## 1032 Dishonored
## 1033 Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City
## 1034 The Order: 1886
## 1035 The Elder Scrolls Online
## 1036 Call of Duty: World at War Final Fronts
## 1037 Imagine: Teacher
## 1038 Call of Duty: Modern Warfare 3
## 1039 Madden NFL 2005
## 1040 Star Ocean: Till The End of Time
## 1041 The Sims 3: Late Night Expansion Pack
## 1042 Game Party 3
## 1043 Toy Story 2: Buzz Lightyear to the Rescue!
## 1044 Deal or No Deal
## 1045 Ace Combat 5: The Unsung War
## 1046 Need for Speed Underground
## 1047 Kanshuu Nippon Joushikiryoku Kentei Kyoukai: Imasara Hito ni wa Kikenai Otona no Joushikiryoku Training DS
## 1048 Tetris Worlds
## 1049 Cabela's Big Game Hunter 2010
## 1050 The Crew
## 1051 FIFA Soccer 10
## 1052 We Ski
## 1053 Personal Trainer: Math
## 1054 Kirby's Return to Dreamland
## 1055 Super Puyo Puyo
## 1056 Ben 10: Protector of Earth
## 1057 NCAA Football 07
## 1058 SOCOM 3: U.S. Navy SEALs
## 1059 NBA 2K15
## 1060 Saints Row 2
## 1061 Saints Row IV
## 1062 Jampack Winter '99
## 1063 Dragon Age: Origins
## 1064 FIFA 16
## 1065 WCW vs. nWo: World Tour
## 1066 WCW/NWO Thunder
## 1067 Harry Potter and the Sorcerer's Stone
## 1068 Need For Speed: Undercover
## 1069 Dragon Ball Z: The Legacy of Goku
## 1070 Sid Meier's Civilization V
## 1071 Resident Evil 4
## 1072 Call of Duty Black Ops: Declassified
## 1073 Star Wars Battlefront: Renegade Squadron
## 1074 World Championship Poker: Featuring Howard Lederer - All In
## 1075 NFL GameDay 98
## 1076 LEGO Batman 2: DC Super Heroes
## 1077 Yoshi's Cookie
## 1078 Time Crisis
## 1079 The Sims: Superstar
## 1080 Star Wars The Clone Wars: Lightsaber Duels
## 1081 MySims
## 1082 Metroid Fusion
## 1083 Shaun White Snowboarding: Road Trip
## 1084 SSX 3
## 1085 Big Beach Sports
## 1086 Madden NFL 2001
## 1087 Fight Night Round 3
## 1088 Knack
## 1089 Star Wars: Battlefront II
## 1090 Disney's DuckTales
## 1091 Tony Hawk's Pro Skater 3
## 1092 Monsters, Inc.
## 1093 StarCraft II: Heart of the Swarm
## 1094 PGR: Project Gotham Racing 2
## 1095 Spy Hunter
## 1096 NCAA Football 2004
## 1097 SpongeBob SquarePants: Battle for Bikini Bottom
## 1098 Dying Light
## 1099 Heavenly Sword
## 1100 Street Fighter II': Special Champion Edition
## 1101 SSX
## 1102 Max Payne 3
## 1103 NBA Ballers
## 1104 Need for Speed Carbon
## 1105 NBA Live 2003
## 1106 Dragon Ball Z: Budokai Tenkaichi
## 1107 Ms. Pac-Man
## 1108 Mario Party 6
## 1109 Super Scope 6
## 1110 Go Vacation
## 1111 Dragon Quest V: Tenkuu no Hanayome
## 1112 Army of Two
## 1113 Dragon Quest IV: Chapters of the Chosen
## 1114 Kirby & the Amazing Mirror
## 1115 LEGO Pirates of the Caribbean: The Video Game
## 1116 Dig Dug
## 1117 Tom Clancy's Rainbow Six
## 1118 Ghosts 'n Goblins
## 1119 Tiger Woods PGA Tour 2003
## 1120 NBA Live 06 (All region sales)
## 1121 Prince of Persia: Warrior Within
## 1122 Kinectimals
## 1123 Until Dawn
## 1124 ESPN NFL 2K5
## 1125 Viva Pinata
## 1126 Pikmin
## 1127 Call of Duty: Black Ops
## 1128 Sonic Generations
## 1129 Tiger Woods PGA Tour 2004
## 1130 Ape Escape
## 1131 NBA 2K15
## 1132 NCAA Football 2005
## 1133 Just Cause 2
## 1134 Rock Band
## 1135 Tony Hawk's American Wasteland (Old all region sales)
## 1136 Rage
## 1137 Mario Hoops 3 on 3
## 1138 Kirby Air Ride
## 1139 Sled Storm
## 1140 Pokemon Battle Revolution
## 1141 NFL Street 2
## 1142 Gears of War: Judgment
## 1143 Baseball
## 1144 Yu-Gi-Oh! Duel Monsters
## 1145 Super Mario Strikers
## 1146 Buzz! The Music Quiz
## 1147 SpongeBob's Atlantis SquarePantis
## 1148 Far Cry 4
## 1149 Dance Dance Revolution: Hottest Party 2
## 1150 Moshi Monsters: Moshling Zoo
## 1151 Dollar Dash
## 1152 Far Cry 2
## 1153 F-1 World Grand Prix
## 1154 River Raid
## 1155 Silent Hill
## 1156 Dragon Quest V: Hand of the Heavenly Bride
## 1157 No Man's Sky
## 1158 Sonic Heroes
## 1159 ESPN NBA 2K5
## 1160 Diablo
## 1161 The Legend of Zelda: Twilight Princess
## 1162 Soul Edge
## 1163 Devil May Cry 4
## 1164 Mario Bros.
## 1165 Pro Evolution Soccer 2008
## 1166 SoulCalibur IV
## 1167 LEGO Harry Potter: Years 1-4
## 1168 NASCAR 2000
## 1169 Wolfenstein: The New Order
## 1170 Carnival Games: Mini Golf
## 1171 Guitar Hero: On Tour Decades
## 1172 MySims Kingdom
## 1173 Jampack Summer 2K
## 1174 Need for Speed: Most Wanted
## 1175 Guitar Hero 5
## 1176 High School Musical 3: Senior Year
## 1177 Kingdom Hearts 3D: Dream Drop Distance
## 1178 Hannah Montana: Music Jam
## 1179 Pokemon Mystery Dungeon: Explorers of Sky
## 1180 Spyro 2: Season of Flame
## 1181 Pro Evolution Soccer 2010
## 1182 NCAA Football 2002
## 1183 Conflict: Desert Storm
## 1184 Mario Party 7
## 1185 Pro Evolution Soccer 2013
## 1186 Smuggler's Run
## 1187 Fight Night Round 3
## 1188 Donkey Kong Classics
## 1189 Twisted Metal
## 1190 Dark Souls III
## 1191 Final Fight
## 1192 Dragon Quest Monsters 2
## 1193 Pokemon Pinball: Ruby & Sapphire
## 1194 LEGO Marvel Super Heroes
## 1195 Mafia II
## 1196 Dishonored
## 1197 Stuntman
## 1198 Tom Clancy's Rainbow Six 3
## 1199 Active Life: Outdoor Challenge
## 1200 BioShock 2
## 1201 007: The World is not Enough
## 1202 Spider-Man 2: Enter: Electro
## 1203 Watch Dogs
## 1204 Star Wars: The Force Unleashed II
## 1205 Ni no Kuni: Wrath of the White Witch
## 1206 Command & Conquer: Tiberian Sun
## 1207 LEGO Battles: Ninjago
## 1208 Mario Party 10
## 1209 Dead Rising 3
## 1210 Resident Evil: The Umbrella Chronicles
## 1211 Fire Emblem Fates
## 1212 Dark Cloud
## 1213 Warcraft III: The Frozen Throne
## 1214 Tom Clancy's Ghost Recon Advanced Warfighter
## 1215 Disney Fairies: Tinker Bell
## 1216 MVP Baseball 2005
## 1217 Die Hard Trilogy
## 1218 Call of Duty: Black Ops II
## 1219 Fight Night Round 4
## 1220 MySims Kingdom
## 1221 The Simpsons Game
## 1222 Mortal Kombat 3
## 1223 NFL GameDay 99
## 1224 Call of Duty: Modern Warfare: Reflex Edition
## 1225 FIFA 17
## 1226 Mario Golf: Toadstool Tour
## 1227 Tiger Woods 99 PGA Tour Golf
## 1228 Donkey Kong Country: Tropical Freeze
## 1229 Dead Space 2
## 1230 Sonic Rivals 2
## 1231 Knockout Kings
## 1232 The Simpsons Skateboarding
## 1233 NASCAR 98
## 1234 F1 Race
## 1235 Xevious
## 1236 NASCAR 99
## 1237 NBA Live 2000
## 1238 Mafia II
## 1239 Call of Duty 3
## 1240 Super Monkey Ball 2
## 1241 Pac-Man World 2
## 1242 Madden NFL 15
## 1243 Sonic & Sega All-Stars Racing
## 1244 LEGO Star Wars III: The Clone Wars
## 1245 Football Manager 2012
## 1246 Puzzle & Dragons
## 1247 Mega Man 2
## 1248 Simpsons Wrestling
## 1249 NBA Live 98
## 1250 The Simpsons Game
## 1251 Monopoly
## 1252 SoulCalibur II
## 1253 Resistance 3
## 1254 Tokyo Xtreme Racer Zero
## 1255 Final Fantasy XIV: A Realm Reborn
## 1256 NFL Blitz
## 1257 Red Faction II
## 1258 Super Scribblenauts
## 1259 Madden NFL 2001
## 1260 WWF No Mercy
## 1261 Ice Climber
## 1262 Sonic CD
## 1263 Ninja Hattori Kun: Ninja wa Shuugyou Degogiru no Maki
## 1264 Dead Rising 2
## 1265 Rock Band 2
## 1266 Pac-Man World
## 1267 Disney Sing It: Pop Hits
## 1268 Final Fantasy: Crystal Chronicles
## 1269 Medal of Honor: Frontline
## 1270 Madden NFL 09
## 1271 Drawn To Life: SpongeBob SquarePants Edition
## 1272 Banjo-Tooie
## 1273 Buzz! The BIG Quiz
## 1274 007: Quantum of Solace
## 1275 The Sims 3
## 1276 New Play Control! Mario Power Tennis
## 1277 Bratz: Forever Diamondz
## 1278 Dirge of Cerberus: Final Fantasy VII
## 1279 Nintendo World Cup
## 1280 WWF WrestleMania 2000
## 1281 Wario Land II
## 1282 Mass Effect 2
## 1283 Major League Baseball 2K5
## 1284 Fight Night 2004
## 1285 Tom Clancy's Splinter Cell: Pandora Tomorrow
## 1286 Imagine: Master Chef
## 1287 Assassin's Creed III: Liberation
## 1288 SoulCalibur IV
## 1289 Mario Golf
## 1290 Disney Princess
## 1291 Fight Night Round 3
## 1292 Metal Gear Rising: Revengeance
## 1293 Chrono Trigger
## 1294 Star Wars: The Force Unleashed II
## 1295 The House of the Dead 2 & 3 Return
## 1296 Disney Princess: Magical Jewels
## 1297 LittleBigPlanet PS Vita
## 1298 Xenogears
## 1299 The SpongeBob SquarePants Movie
## 1300 Tom Clancy's Ghost Recon: Future Soldier
## 1301 Battlefield: Bad Company
## 1302 Midway Arcade Treasures
## 1303 Wall-E
## 1304 Triple Play 99
## 1305 Homefront
## 1306 Super Monkey Ball
## 1307 Donkey Kong
## 1308 Mortal Kombat 4
## 1309 Mario Superstar Baseball
## 1310 Mass Effect 3
## 1311 LEGO Batman 2: DC Super Heroes
## 1312 Medal of Honor: Warfighter
## 1313 WCW vs the World
## 1314 SNK vs. Capcom: The Match of the Millennium
## 1315 LEGO City Undercover
## 1316 Onimusha 3: Demon Siege
## 1317 Diablo III
## 1318 Batman: Arkham Knight
## 1319 BioShock
## 1320 Red Dead Revolver
## 1321 Anno 2070
## 1322 Resident Evil: Outbreak
## 1323 Smarty Pants
## 1324 Tamagotchi
## 1325 4 Nin uchi Mahjong
## 1326 Dragon Ball Z
## 1327 Game de Hakken!! Tamagotchi 2
## 1328 Namco Museum 64
## 1329 Hasbro Family Game Night
## 1330 Dragon Quest Monsters: Joker 2
## 1331 Tony Hawk's American Wasteland (Weekly american sales)
## 1332 My Word Coach
## 1333 Hello Kitty Party
## 1334 SingStar Pop
## 1335 Sonic Rivals
## 1336 SimCity (2013)
## 1337 Kirby Super Star
## 1338 Far Cry 4
## 1339 WWE SmackDown vs Raw 2008
## 1340 Kinect Joy Ride
## 1341 Rayman Raving Rabbids
## 1342 Need for Speed Rivals
## 1343 Tiger Woods PGA Tour 2005
## 1344 Dead Space 2
## 1345 NCAA Football 2003
## 1346 Frogger 2: Swampy's Revenge
## 1347 Disney Infinity
## 1348 LEGO Indiana Jones 2: The Adventure Continues
## 1349 Sonic's Ultimate Genesis Collection
## 1350 Tiger Woods PGA Tour 09 All-Play
## 1351 Disney's DuckTales
## 1352 Classic NES Series: Super Mario Bros.
## 1353 Triple Play 2000
## 1354 Dragon Quest VII: Warriors of Eden
## 1355 Cabela's Big Game Hunter
## 1356 UFC Undisputed 2010
## 1357 NBA Live 06 (Weekly american sales)
## 1358 The Legend of Zelda: The Minish Cap
## 1359 NFL Street
## 1360 Sonic Generations
## 1361 Super Metroid
## 1362 Pro Yakyuu Family Stadium '87
## 1363 Dead Space
## 1364 Resident Evil (Remake)
## 1365 Inazuma Eleven 2
## 1366 Tomb Raider (2013)
## 1367 LEGO Star Wars II: The Original Trilogy
## 1368 Toy Story 3: The Video Game
## 1369 Fight Night Round 4
## 1370 LEGO Star Wars: The Video Game
## 1371 Injustice: Gods Among Us
## 1372 Madden NFL 15
## 1373 Disney's The Lion King
## 1374 Ridge Racer
## 1375 Metroid: Other M
## 1376 Knockout Kings 2000
## 1377 Gran Turismo 4 Prologue
## 1378 Twisted Metal: Black
## 1379 NASCAR 2005: Chase for the Cup
## 1380 Call of Duty: Black Ops
## 1381 Spider-Man: The Movie
## 1382 Need For Speed: Undercover
## 1383 2Xtreme
## 1384 Far Cry 2
## 1385 Sonic Advance 3
## 1386 Final Fantasy III
## 1387 Battlefield 4
## 1388 Colin McRae Rally 3
## 1389 Madden NFL 2002
## 1390 Doom (2016)
## 1391 Final Fantasy XII: Revenant Wings
## 1392 Bakugan: Battle Brawlers
## 1393 Deus Ex: Human Revolution
## 1394 NBA Jam
## 1395 Teenage Mutant Ninja Turtles III: The Manhattan Project
## 1396 Dynasty Warriors 5
## 1397 Hannah Montana: Spotlight World Tour
## 1398 WWE '13
## 1399 Deus Ex: Human Revolution
## 1400 True Crime: Streets of LA
## 1401 The Sims 2
## 1402 Paper Mario
## 1403 Bravely Default: Flying Fairy
## 1404 Titanfall
## 1405 Duke Nukem: Time to Kill
## 1406 Persona 4: Golden
## 1407 Dead Rising 2
## 1408 Hasbro Family Game Night 2
## 1409 Disney Princess: Enchanted Journey
## 1410 Gardening Mama
## 1411 Dave Mirra Freestyle BMX 2
## 1412 Need for Speed: The Run
## 1413 LEGO Indiana Jones: The Original Adventures
## 1414 Assassin's Creed: Rogue
## 1415 Ridge Racer 7
## 1416 A Collection of Activision Classic Games for the Atari 2600
## 1417 Forza Horizon 2
## 1418 MotorStorm: Pacific Rift
## 1419 Sonic Colors
## 1420 Star Wars Knights of the Old Republic II: The Sith Lords
## 1421 LEGO Harry Potter: Years 1-4
## 1422 Pocket Monsters Stadium
## 1423 NBA 2K15
## 1424 Tom Clancy's Ghost Recon 2
## 1425 Crash Bandicoot 2: N-Tranced
## 1426 Burnout Paradise
## 1427 SingStar Abba
## 1428 Gradius
## 1429 Dragon Quest III: Soshite Densetsu e...
## 1430 Centipede
## 1431 Yoshi's New Island
## 1432 Ryse: Son of Rome
## 1433 Dead to Rights
## 1434 LEGO Harry Potter: Years 5-7
## 1435 Marvel vs. Capcom 3: Fate of Two Worlds
## 1436 Dance Dance Revolution (Japan)
## 1437 F1 2010
## 1438 Madden NFL 98
## 1439 FIFA Soccer 09
## 1440 Namco Museum DS
## 1441 FIFA Soccer 08
## 1442 Grand Theft Auto: Chinatown Wars
## 1443 Alan Wake
## 1444 Battlefield: Bad Company
## 1445 Mortal Kombat X
## 1446 Samurai Warriors
## 1447 The Simpsons: Hit & Run
## 1448 Devil May Cry 4
## 1449 Tom Clancy's Rainbow Six: Vegas 2
## 1450 Monster Hunter Freedom
## 1451 Crysis 2
## 1452 SaGa Frontier
## 1453 SingStar Party
## 1454 FIFA Soccer 08
## 1455 The ICO & Shadow of the Colossus Collection
## 1456 Test Drive
## 1457 Mario & Luigi: Partners in Time
## 1458 Lost Planet: Extreme Condition
## 1459 Mortal Kombat 3
## 1460 Doom 3
## 1461 Donkey Kong Jungle Beat
## 1462 Need for Speed Carbon
## 1463 Max Payne 2: The Fall of Max Payne
## 1464 Command & Conquer: Red Alert 2
## 1465 MVP Baseball 2004
## 1466 WWE SmackDown vs Raw 2008
## 1467 Ratchet & Clank: Up Your Arsenal (Weekly american sales)
## 1468 Your Shape: Fitness Evolved
## 1469 Rage
## 1470 Skylanders SWAP Force
## 1471 NBA 2K14
## 1472 Spider-Man: The Movie
## 1473 WWF War Zone
## 1474 Tony Hawk's Pro Skater
## 1475 The Sims: Bustin' Out
## 1476 Triple Play 2001
## 1477 Metroid Prime 2: Echoes
## 1478 UFC Undisputed 2010
## 1479 Final Fantasy X / X-2 HD Remaster
## 1480 Corvette
## 1481 Petz Wild Animals: Dolphinz
## 1482 Pokemon Ranger: Guardian Signs
## 1483 Middle-Earth: Shadow of Mordor
## 1484 Need for Speed Underground Rivals
## 1485 LEGO Batman: The Videogame
## 1486 Dark Souls II
## 1487 World of Warcraft: Wrath of the Lich King
## 1488 Kingdom Hearts II
## 1489 The LEGO Movie Videogame
## 1490 TOCA 2: Touring Cars
## 1491 Gyromite
## 1492 NFL 2K3
## 1493 Fighting Force
## 1494 Mega Man Battle Network 4: Red Sun / Blue Moon
## 1495 MAG: Massive Action Game
## 1496 Madden NFL 97
## 1497 Cars 2
## 1498 Skylanders Giants
## 1499 LEGO Batman: The Videogame
## 1500 TNN Motor Sports Hardcore 4x4
## 1501 IHRA Drag Racing 2
## 1502 The Beatles: Rock Band
## 1503 Tekken 6
## 1504 [Prototype]
## 1505 Deal or No Deal
## 1506 Madagascar
## 1507 Rugrats Studio Tour
## 1508 LEGO Battles
## 1509 Pitfall II: Lost Caverns
## 1510 Turok: Evolution
## 1511 High School Musical 3: Senior Year DANCE!
## 1512 Gold's Gym: Cardio Workout
## 1513 Burnout 3: Takedown
## 1514 Adventure
## 1515 Yu-Gi-Oh! The Sacred Cards
## 1516 Crysis 2
## 1517 NBA Live 07
## 1518 Saints Row IV
## 1519 SingStar '80s
## 1520 EA Playground
## 1521 Test Drive 5
## 1522 Romancing SaGa 3
## 1523 EA Sports Active 2
## 1524 Digimon World
## 1525 Rise of the Tomb Raider
## 1526 Need for Speed Carbon
## 1527 Yoshi's Woolly World
## 1528 Mega Man Battle Network 3 Blue / White Version
## 1529 FIFA Street
## 1530 Resident Evil Zero
## 1531 Need for Speed: Most Wanted
## 1532 Tom Clancy's Rainbow Six: Siege
## 1533 Pirates of the Caribbean: The Curse of the Black Pearl
## 1534 Transformers
## 1535 Guitar Hero: Aerosmith
## 1536 Mystery Case Files: MillionHeir
## 1537 Valkyria Chronicles
## 1538 Midnight Club 3: DUB Edition (America weekly sales)
## 1539 Champions of Norrath
## 1540 Watch Dogs
## 1541 Imagine: Wedding Designer
## 1542 Metal Gear Solid V: Ground Zeroes
## 1543 Yakuman
## 1544 Assassin's Creed Syndicate
## 1545 Army Men 3D
## 1546 WWE '13
## 1547 Twisted Metal 4
## 1548 Manhunt
## 1549 Kid Icarus: Uprising
## 1550 Silent Hill 2
## 1551 Tomb Raider: Underworld
## 1552 Castlevania: Symphony of the Night
## 1553 The Sims 2: Nightlife
## 1554 LEGO Batman: The Videogame
## 1555 Road Rash
## 1556 Pokemon Mystery Dungeon: Gates to Infinity
## 1557 Atlantis
## 1558 NBA 2K9
## 1559 WWE '12
## 1560 Tony Hawk's Underground
## 1561 Hogan's Alley
## 1562 The Elder Scrolls Online
## 1563 Jillian Michaels' Fitness Ultimatum 2009
## 1564 .hack//Infection Part 1
## 1565 Rockstar Games presents Table Tennis
## 1566 Sonic Adventure DX: Director's Cut
## 1567 Jet Li: Rise to Honor
## 1568 Battle Arena Toshinden
## 1569 Yokai Watch 3
## 1570 Kung Fu Panda
## 1571 Tamagotchi Connection: Corner Shop
## 1572 Football Manager 2011
## 1573 Devil Dice
## 1574 Final Fantasy IV
## 1575 Hyrule Warriors
## 1576 Need for Speed Carbon
## 1577 Championship Manager 03/04
## 1578 Brian Lara Cricket
## 1579 Ratatouille
## 1580 Wheel of Fortune
## 1581 LEGO The Lord of the Rings
## 1582 Winter Sports: The Ultimate Challenge
## 1583 SOCOM: U.S. Navy SEALs Confrontation
## 1584 NBA Live 2001
## 1585 Star Wars: The Force Unleashed
## 1586 Combat
## 1587 Tom Clancy's Rainbow Six: Vegas
## 1588 Dragon Ball: Daimaou Fukkatsu
## 1589 Gegege no Kitarou 2: Youkai Gundan no Chousen
## 1590 Reel Fishing
## 1591 Injustice: Gods Among Us
## 1592 Pokemon XD: Gale of Darkness
## 1593 Black
## 1594 RollerCoaster Tycoon 2
## 1595 Lara Croft Tomb Raider: The Angel of Darkness
## 1596 Tom Clancy's Splinter Cell: Pandora Tomorrow
## 1597 Road Rash 3D
## 1598 Ratchet: Deadlocked
## 1599 Baldur's Gate: Dark Alliance
## 1600 Transformers: Autobots / Decepticons
## 1601 Tales of Xillia
## 1602 Diddy Kong Racing DS
## 1603 [Prototype]
## 1604 Assassin's Creed: Bloodlines
## 1605 Oddworld: Abe's Oddysee
## 1606 The Witcher 3: Wild Hunt
## 1607 Ridge Racer V
## 1608 WWE SmackDown vs. Raw 2009
## 1609 Tetris 2 (All region sales)
## 1610 Star Wars Episode III: Revenge of the Sith
## 1611 Ben 10: Protector of Earth
## 1612 Frogger: The Great Quest
## 1613 2010 FIFA World Cup South Africa
## 1614 Ninja Gaiden
## 1615 Crash Bandicoot: The Wrath of Cortex
## 1616 Driv3r
## 1617 Disney's Tarzan / Disney's Aladdin in Nasira's Revenge / Disney's The Emperor's New Groove Action Game
## 1618 Farming Simulator 2015
## 1619 Guitar Hero: Aerosmith
## 1620 Medal of Honor: Airborne
## 1621 Kirby Tilt 'n' Tumble
## 1622 SpongeBob SquarePants: Battle for Bikini Bottom
## 1623 Vigilante 8
## 1624 Castlevania
## 1625 Donkey Kong Country 2
## 1626 Bayonetta
## 1627 WarioWare, Inc.: Mega MicroGame$
## 1628 Star Wars: Battlefront II
## 1629 Madden NFL 17
## 1630 Boom Blox
## 1631 Fallout 4
## 1632 The Sims 2: Castaway
## 1633 LEGO Batman 2: DC Super Heroes
## 1634 Naruto Shippuden: Ultimate Ninja Storm 2
## 1635 Mario Power Tennis
## 1636 Intelligent Qube
## 1637 Game & Watch Gallery 2
## 1638 Game & Watch Gallery 3
## 1639 Pac-Man
## 1640 Parfait: Chocolat Second Style
## 1641 F1 2011
## 1642 Cars
## 1643 NBA Live 99
## 1644 Chocobo no Fushigi Dungeon
## 1645 Golden Sun: The Lost Age
## 1646 SimCity 2000
## 1647 Max Payne
## 1648 WCW Mayhem
## 1649 NBA 2K2
## 1650 NASCAR Thunder 2003
## 1651 Super Street Fighter IV: 3D Edition
## 1652 Cars
## 1653 Fuzion Frenzy
## 1654 Call of Duty: Finest Hour
## 1655 FIFA Soccer 11
## 1656 Sly Cooper and the Thievius Raccoonus
## 1657 LEGO Indiana Jones 2: The Adventure Continues
## 1658 The Magical Quest starring Mickey Mouse
## 1659 Dragon Quest IV: Michibikareshi Monotachi
## 1660 Star Wars Episode 1: Jedi Power Battles
## 1661 Dino Crisis 2
## 1662 Need for Speed Underground
## 1663 Shrek / Shrek 2 2-in-1 Gameboy Advance Video
## 1664 Test Drive 4
## 1665 FIFA Soccer 07
## 1666 World Soccer Winning Eleven 9 (JP & Others sales)
## 1667 The Lord of the Rings: The Fellowship of the Ring
## 1668 LEGO Star Wars III: The Clone Wars
## 1669 ATV Offroad Fury 3
## 1670 Pikmin 2
## 1671 Just Dance 2016
## 1672 Disney Sing It
## 1673 Battlefield: Hardline
## 1674 WWE 2K16
## 1675 Dragon Ball Z: La Legende Saien
## 1676 TwinBee
## 1677 Ganbare Goemon! Karakuri Douchuu
## 1678 NFL 2K
## 1679 SolarStriker
## 1680 Enter the Matrix
## 1681 NHL 2002
## 1682 Mario vs. Donkey Kong 2: March of the Minis
## 1683 PokéPark Wii: Pikachu's Adventure
## 1684 One Piece: Pirate Warriors
## 1685 WWE 2K14
## 1686 Metal Gear Solid: Portable Ops
## 1687 Nuclear Strike
## 1688 Captain Toad: Treasure Tracker
## 1689 WWE SmackDown vs Raw 2008
## 1690 The Simpsons: Road Rage
## 1691 Pro Evolution Soccer 2008
## 1692 SpongeBob SquarePants: Revenge of the Flying Dutchman
## 1693 Mario & Sonic at the London 2012 Olympic Games
## 1694 Scarface: The World is Yours
## 1695 Kobe Bryant in NBA Courtside
## 1696 Disney's Chip 'n Dale: Rescue Rangers
## 1697 The Dukes of Hazzard: Racing for Home
## 1698 Hitman 2: Silent Assassin
## 1699 FIFA 14
## 1700 Spider-Man: The Movie
## 1701 Final Fantasy I & II: Dawn of Souls
## 1702 NBA 2K17
## 1703 Pokemon Super Mystery Dungeon
## 1704 Just Dance 4
## 1705 Metal Gear Solid VR Missions
## 1706 Pole Position
## 1707 Resident Evil: Operation Raccoon City
## 1708 LEGO Indiana Jones: The Original Adventures
## 1709 Pro Yakyuu Family Stadium '88
## 1710 Shenmue
## 1711 Mario Tennis
## 1712 Tony Hawk's Pro Skater 2
## 1713 WWE '12
## 1714 WWE SmackDown vs. Raw 2010
## 1715 Plants vs. Zombies
## 1716 Sonic the Hedgehog
## 1717 Super Ghouls 'n Ghosts
## 1718 Spore
## 1719 Soviet Strike
## 1720 Your Shape: Fitness Evolved 2012
## 1721 Army of Two
## 1722 Gun
## 1723 Ty the Tasmanian Tiger
## 1724 Wario Land: Shake It!
## 1725 Sonic Rush Adventure
## 1726 Medal of Honor: Warfighter
## 1727 Mega Man 3
## 1728 Ratchet & Clank (2016)
## 1729 Mission: Impossible
## 1730 Romancing SaGa 2
## 1731 Cabela's Dangerous Hunts
## 1732 Cool Boarders 4
## 1733 Rage Racer
## 1734 Medal of Honor: Rising Sun
## 1735 Football Manager 2013
## 1736 Destruction Derby 2
## 1737 Mirror's Edge
## 1738 Destiny: The Taken King
## 1739 Mario vs. Donkey Kong
## 1740 007: Quantum of Solace
## 1741 EA Sports Active: More Workouts
## 1742 Fallout: New Vegas
## 1743 Need for Speed: Most Wanted
## 1744 Final Fantasy Tactics: The War of the Lions
## 1745 Midnight Club 3: DUB Edition Remix
## 1746 Tom Clancy's Ghost Recon: Jungle Storm
## 1747 SingStar
## 1748 Bushido Blade
## 1749 LEGO Star Wars III: The Clone Wars
## 1750 NASCAR Thunder 2002
## 1751 Jet Force Gemini
## 1752 Mega Man X
## 1753 Yu-Gi-Oh! The Sacred Cards (American and Others sales)
## 1754 Sega Rally Championship
## 1755 Test Drive: Off Road
## 1756 Medal of Honor Heroes 2
## 1757 Sniper: Ghost Warrior
## 1758 Rocksmith
## 1759 LEGO Star Wars: The Video Game
## 1760 FIFA Soccer 10
## 1761 Plants vs. Zombies: Garden Warfare
## 1762 Worldwide Soccer Manager 2009
## 1763 Omerta: City of Gangsters
## 1764 Gauntlet: Dark Legacy
## 1765 Ninja Gaiden Sigma
## 1766 Bad Boys: Miami Takedown
## 1767 Kaboom!
## 1768 Red Dead Redemption: Undead Nightmare
## 1769 Sonic and the Black Knight
## 1770 Call of Duty 4: Modern Warfare
## 1771 Qix
## 1772 Derby Stallion III
## 1773 Doraemon
## 1774 High School Musical 2: Work This Out!
## 1775 Ratchet & Clank: All 4 One
## 1776 Donkey Konga
## 1777 Fight Night Champion
## 1778 Dragon Quest I & II
## 1779 Tak and the Power of Juju
## 1780 Asteroids
## 1781 Puyo Puyo Sun Ketteiban
## 1782 Pokemon Rumble Blast
## 1783 Action Bass
## 1784 Tenchu: Wrath of Heaven
## 1785 Shadow of the Colossus
## 1786 Brave Fencer Musashi
## 1787 Hot Shots Golf: Out of Bounds
## 1788 Dance Dance Revolution Extreme 2
## 1789 Mirror's Edge
## 1790 Rabbids Go Home
## 1791 South Park
## 1792 Commando
## 1793 Pilotwings
## 1794 Resident Evil - Code: Veronica
## 1795 Super R.C. Pro-Am
## 1796 The Lord of the Rings: The Return of the King
## 1797 LEGO Star Wars: The Video Game
## 1798 Royal Palace of White Sword and The City of Gentiles
## 1799 Guitar Hero 5
## 1800 Mobile Suit Gundam: Federation vs. Zeon
## 1801 Need for Speed Underground 2
## 1802 MechAssault
## 1803 ModNation Racers
## 1804 LEGO Star Wars III: The Clone Wars
## 1805 Derby Stallion 99
## 1806 Cars
## 1807 Fantasy Life
## 1808 Tom Clancy's Rainbow Six 3: Black Arrow
## 1809 WWE 2K15
## 1810 Donkey Kong
## 1811 Jampack Winter '98
## 1812 WWE 2K14
## 1813 Alien: Isolation
## 1814 Yakuza 3
## 1815 Pokémon Mystery Dungeon: Red Rescue Team (US weekly sales)
## 1816 The Beatles: Rock Band
## 1817 Dragon Age II
## 1818 Moon Patrol
## 1819 Supercar Street Challenge
## 1820 Pilotwings 64
## 1821 Crackdown 2
## 1822 Final Fantasy XIV: A Realm Reborn
## 1823 Castlevania: Lords of Shadow
## 1824 Rocksmith
## 1825 Disney Infinity 2.0: Marvel Super Heroes
## 1826 SOCOM: U.S. Navy SEALs Fireteam Bravo
## 1827 Call Of Duty 2: Big Red One
## 1828 Yoshi's Cookie
## 1829 Guitar Hero 5
## 1830 Worldwide Soccer Manager 2008
## 1831 Spider-Man 2
## 1832 Counter-Strike
## 1833 Mad Max (2015)
## 1834 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 1835 GRID
## 1836 Guitar Hero Encore: Rocks The 80s
## 1837 Sunset Overdrive
## 1838 Rock Band
## 1839 Tom Clancy's Splinter Cell: Chaos Theory
## 1840 Donkey Kong Jr.
## 1841 Arc the Lad
## 1842 NBA Jam Tournament Edition
## 1843 Need for Speed: ProStreet
## 1844 Pikmin 3
## 1845 Legend of Mana
## 1846 Lumines: Puzzle Fusion
## 1847 Toy Story 3: The Video Game
## 1848 Guitar Hero 5
## 1849 Megamania
## 1850 Medal of Honor: Airborne
## 1851 The Legend of Zelda: Tri Force Heroes
## 1852 Jungle Hunt
## 1853 Triple Play 98
## 1854 LEGO The Lord of the Rings
## 1855 Petz Dogz 2
## 1856 WWE SmackDown vs. Raw 2011
## 1857 Yu-Gi-Oh! Duel Monsters II: Dark Duel Stories
## 1858 Lode Runner
## 1859 The Final Fantasy Legend
## 1860 Famicom Jump: Eiyuu Retsuden
## 1861 F-Zero X
## 1862 Popeye
## 1863 NERF N-Strike
## 1864 NBA Live 2001
## 1865 SingStar Legends
## 1866 SingStar Rocks!
## 1867 Tales of Symphonia
## 1868 Untold Legends: Brotherhood of the Blade
## 1869 Star Ocean: The Second Story
## 1870 Lightning Returns: Final Fantasy XIII
## 1871 Star Wars: The Force Unleashed
## 1872 Imagine: Babysitters
## 1873 The Simpsons Game
## 1874 Yakuza 2
## 1875 Skate 2
## 1876 Dragon Ball Z: The Legacy of Goku II
## 1877 Virtua Fighter 5
## 1878 NFL 2K1
## 1879 BeatMania
## 1880 Namco Museum Battle Collection
## 1881 LEGO Star Wars II: The Original Trilogy
## 1882 Madden NFL 2004
## 1883 Empire: Total War
## 1884 The Godfather
## 1885 Tiger Woods PGA Tour 10
## 1886 Star Wars: Bounty Hunter
## 1887 Densha De Go!
## 1888 Dante's Inferno
## 1889 Sonic & Sega All-Stars Racing
## 1890 Skylanders Giants
## 1891 Endless Ocean
## 1892 NFL Blitz 2000
## 1893 Sonic Free Riders
## 1894 NASCAR Thunder 2004
## 1895 Prince of Persia
## 1896 SpongeBob SquarePants: Revenge of the Flying Dutchman
## 1897 Grand Theft Auto V
## 1898 The Biggest Loser
## 1899 Fisherman's Bass Club
## 1900 MySims Agents
## 1901 Resident Evil: The Darkside Chronicles
## 1902 NCAA Football 13
## 1903 Grand Theft Auto: Chinatown Wars
## 1904 FIFA Soccer 11
## 1905 The Orange Box
## 1906 Joust
## 1907 Tomb Raider: Underworld
## 1908 Tom Clancy's Ghost Recon 2
## 1909 DiRT 3
## 1910 LEGO City Undercover
## 1911 Spore Creatures
## 1912 Ready 2 Rumble Boxing
## 1913 Dragon Ball Z: Taiketsu
## 1914 Disney's Lilo & Stitch
## 1915 Star Fox: Assault
## 1916 Naruto: Ultimate Ninja Storm
## 1917 Marvel vs. Capcom 3: Fate of Two Worlds
## 1918 NCAA Football 14
## 1919 Doko Demo Issyo
## 1920 Call of Duty 3
## 1921 Imagine: Fashion Designer New York
## 1922 Red Dead Redemption: Undead Nightmare
## 1923 Bully: Scholarship Edition
## 1924 Virtua Fighter
## 1925 Championship Manager 99/00
## 1926 WWE SmackDown vs. Raw 2010
## 1927 Pro Evolution Soccer 2008
## 1928 Super Princess Peach
## 1929 NHL 99
## 1930 SoulCalibur III
## 1931 Skylanders SWAP Force
## 1932 F1 2012
## 1933 World Tour Soccer
## 1934 Disney Universe
## 1935 Ridge Racer Revolution
## 1936 LEGO Pirates of the Caribbean: The Video Game
## 1937 Hot Wheels Turbo Racing
## 1938 NCAA Football 99
## 1939 Mortal Kombat: Armageddon
## 1940 Aliens vs Predator
## 1941 Freekstyle
## 1942 Junior Brain Trainer
## 1943 Darksiders
## 1944 DiRT
## 1945 Call of Duty 4: Modern Warfare
## 1946 Simple 1500 Series Vol. 1: The Mahjong
## 1947 Sega Superstars Tennis
## 1948 NBA Street V3
## 1949 Sleeping Dogs
## 1950 Mercenaries 2: World in Flames
## 1951 Worms Armageddon
## 1952 Hulk
## 1953 LEGO Indiana Jones: The Original Adventures
## 1954 NFL Blitz
## 1955 NFL Quarterback Club 98
## 1956 DJ Hero
## 1957 Dora the Explorer: Dora Saves the Mermaids
## 1958 Diablo II: Lord of Destruction
## 1959 Naruto Shippuden: Ultimate Ninja Storm 4
## 1960 Spider-Man 2
## 1961 Virtua Tennis 3
## 1962 Seek and Destroy
## 1963 Warhawk
## 1964 Apollo Justice: Ace Attorney
## 1965 Assassin's Creed: Rogue
## 1966 Cosmic Ark
## 1967 SOCOM: U.S. Navy SEALs Fireteam Bravo 2
## 1968 Skylanders: Trap Team
## 1969 Aliens vs Predator
## 1970 Defender
## 1971 Dance on Broadway
## 1972 Adventure Island
## 1973 Arc the Lad II
## 1974 Tag Team Match M.U.S.C.L.E.
## 1975 Derby Stallion 96
## 1976 UFC Undisputed 3
## 1977 NBA 2K3
## 1978 Dragon Ball: XenoVerse
## 1979 The Simpsons: Road Rage
## 1980 Dave Mirra Freestyle BMX
## 1981 Imagine: Animal Doctor
## 1982 WWE SmackDown vs. Raw 2010
## 1983 Forza Motorsport
## 1984 Sonic the Hedgehog
## 1985 MySims Agents
## 1986 Monster Rancher 2
## 1987 Pokemon Conquest
## 1988 The Simpsons Game
## 1989 Guinness World Records: The Videogame
## 1990 MVP Baseball 2003
## 1991 Legacy of Kain: Soul Reaver
## 1992 Dragon Ball Z: Budokai Tenkaichi 3
## 1993 Disney Tangled
## 1994 Tales of Destiny
## 1995 ATV: Quad Power Racing
## 1996 Disney Fairies: Tinker Bell and the Lost Treasure
## 1997 Mega Man X4
## 1998 Naruto: Clash of Ninja 2
## 1999 Dance Dance Revolution SuperNOVA
## 2000 Brink
## 2001 F-Zero: Maximum Velocity
## 2002 Bomberman 64
## 2003 Jeremy McGrath Supercross 98
## 2004 LEGO Indiana Jones 2: The Adventure Continues
## 2005 Project CARS
## 2006 Need for Speed: Most Wanted
## 2007 Kirby: Mass Attack
## 2008 LEGO Marvel Super Heroes
## 2009 ZhuZhu Pets
## 2010 Tom Clancy's Ghost Recon Advanced Warfighter 2
## 2011 MotorStorm: Arctic Edge
## 2012 WipEout Pure
## 2013 EA Sports UFC
## 2014 MX vs. ATV Unleashed
## 2015 Sonic Unleashed
## 2016 Tiger Woods PGA Tour 08
## 2017 Rayman Origins
## 2018 Epic Mickey 2: The Power of Two
## 2019 NCAA March Madness 2004
## 2020 Donkey Kong Land III
## 2021 Bomberman
## 2022 The Simpsons Game
## 2023 Tomb Raider
## 2024 Rock Band 2
## 2025 Street Fighter Alpha 3
## 2026 Bulletstorm
## 2027 FIFA Soccer 08
## 2028 Naruto: Clash of Ninja Revolution
## 2029 Tom Clancy's Ghost Recon Advanced Warfighter 2
## 2030 ZombiU
## 2031 Shrek 2
## 2032 Petz: Catz 2
## 2033 Tales of Graces f
## 2034 Final Fight 2
## 2035 Wall-E
## 2036 The Lost World: Jurassic Park
## 2037 Ace Combat 6: Fires of Liberation
## 2038 Madden NFL 07
## 2039 Disney Infinity 2.0: Marvel Super Heroes
## 2040 Harry Potter and the Prisoner of Azkaban
## 2041 Pong: The Next Level
## 2042 Bayonetta 2
## 2043 Prince of Persia
## 2044 God of War: Ghost of Sparta
## 2045 Sonic Generations
## 2046 Ninja Gaiden II
## 2047 NBA Jam Tournament Edition
## 2048 Championship Manager 3
## 2049 Guitar Hero: Warriors of Rock
## 2050 Oshare Majo Love and Berry: DS Collection
## 2051 Monster Rancher
## 2052 The LEGO Movie Videogame
## 2053 DiRT 2
## 2054 Rayman Legends
## 2055 NERF N-Strike Elite
## 2056 Ford Racing 2
## 2057 Breath of Fire III
## 2058 PES 2009: Pro Evolution Soccer
## 2059 Dead or Alive 2
## 2060 1942
## 2061 Excitebike 64
## 2062 NES Open Tournament Golf
## 2063 Game & Watch Gallery
## 2064 Jissen Pachi-Slot Hisshouhou: Hokuto no Ken
## 2065 SoulCalibur II
## 2066 Haze
## 2067 UFC Undisputed 3
## 2068 Winning Eleven: Pro Evolution Soccer 2007 (All Region sales)
## 2069 Road & Track Presents: The Need for Speed
## 2070 NFL GameDay 2001
## 2071 Killzone: Mercenary
## 2072 NBA Live 97
## 2073 Dynasty Warriors 3: Xtreme Legends
## 2074 Zoo Tycoon DS
## 2075 Rocksmith 2014
## 2076 Dead Space 3
## 2077 Wheel of Fortune
## 2078 Disney Infinity
## 2079 Dark Souls
## 2080 Puzzler Collection
## 2081 Jampack Winter 2000
## 2082 Dead Space 3
## 2083 Phoenix Wright: Ace Attorney
## 2084 NFL Fever 2002
## 2085 The Simpsons: Hit & Run
## 2086 Littlest Pet Shop: Winter
## 2087 LEGO Harry Potter: Years 5-7
## 2088 Tom Clancy's Splinter Cell: Blacklist
## 2089 Ace Combat X: Skies of Deception
## 2090 NCAA Football 12
## 2091 LEGO Pirates of the Caribbean: The Video Game
## 2092 Band Hero
## 2093 Cars: Race-O-Rama
## 2094 Oddworld: Abe's Exoddus
## 2095 EyePet
## 2096 Scooby-Doo! First Frights
## 2097 Midnight Club: LA Remix
## 2098 The Bouncer
## 2099 Guitar Hero: Aerosmith
## 2100 WWE SmackDown vs Raw 2008
## 2101 FIFA Soccer 10
## 2102 Shadow The Hedgehog
## 2103 Farming Simulator 2013
## 2104 Fallout 3
## 2105 Cars
## 2106 Pro Evolution Soccer 2008
## 2107 Far Cry 3
## 2108 Xenoblade Chronicles
## 2109 Just Dance 2014
## 2110 Mario Party Advance
## 2111 Sonic & Sega All-Stars Racing
## 2112 Tetris 2
## 2113 NASCAR 99
## 2114 Air-Sea Battle
## 2115 Suikoden III
## 2116 Kingdom Hearts Re:coded
## 2117 South Park: The Stick of Truth
## 2118 Driver: San Francisco
## 2119 Sniper Elite V2
## 2120 Far Cry 4
## 2121 Grand Theft Auto: San Andreas
## 2122 Tom Clancy's Splinter Cell: Blacklist
## 2123 Pro Evolution Soccer 2014
## 2124 Madden NFL 16
## 2125 Madden NFL 10
## 2126 Brutal Legend
## 2127 Tamagotchi Connection: Corner Shop 2
## 2128 Final Fantasy Type-0
## 2129 Madden NFL 08
## 2130 de Blob
## 2131 NCAA Football 06
## 2132 Mass Effect 3
## 2133 NBA 2K10
## 2134 Fire Emblem
## 2135 Yakuza 4
## 2136 Skylanders: Spyro's Adventure
## 2137 Club Penguin: Game Day!
## 2138 NHL 2004
## 2139 Grand Theft Auto: Vice City Stories
## 2140 NBA 2K16
## 2141 FIFA Soccer 2005
## 2142 LEGO The Lord of the Rings
## 2143 Romancing SaGa
## 2144 Donkey Kong Junior
## 2145 LEGO Star Wars II: The Original Trilogy
## 2146 LEGO Harry Potter: Years 5-7
## 2147 Final Fantasy X / X-2 HD Remaster
## 2148 Medal of Honor: Underground
## 2149 The Sims 2
## 2150 Dark Cloud 2
## 2151 Jampack Summer '99
## 2152 PlayStation All-Stars Battle Royale
## 2153 Dance Dance Revolution 2nd ReMIX
## 2154 Monster High: Ghoul Spirit
## 2155 Dragon Quest X
## 2156 LEGO Pirates of the Caribbean: The Video Game
## 2157 Gangs of London
## 2158 Mortal Kombat Trilogy
## 2159 Star Soldier
## 2160 Sonic Unleashed
## 2161 Lost Planet 2
## 2162 NHL 2001
## 2163 Dragon Quest Monsters: Terry's Wonderland 3D
## 2164 My Weight Loss Coach
## 2165 Tom Clancy's Ghost Recon: Future Soldier
## 2166 Mega Man Star Force Dragon / Leo / Pegasus
## 2167 Shinobi
## 2168 Mortal Kombat: Deadly Alliance
## 2169 The Witcher 2: Assassins of Kings
## 2170 PilotWings Resort
## 2171 Naruto Shippuden: Ultimate Ninja Storm 3
## 2172 LEGO Jurassic World
## 2173 ESPN NBA 2K5
## 2174 Wheel of Fortune
## 2175 World Championship Poker
## 2176 Tom Clancy's Splinter Cell: Chaos Theory
## 2177 SpongeBob SquarePants: Battle for Bikini Bottom
## 2178 South Park: The Stick of Truth
## 2179 Ben 10: Alien Force
## 2180 SingStar Abba
## 2181 Cars 2
## 2182 Wild ARMs
## 2183 Kessen
## 2184 Yu-Gi-Oh! Worldwide Edition: Stairway to the Destined Duel
## 2185 NCAA Football 2000
## 2186 Brutal Legend
## 2187 Skylanders: Spyro's Adventure
## 2188 Guitar Hero: Metallica
## 2189 Evolve
## 2190 WWE SmackDown vs. Raw 2009
## 2191 Army of Two: The 40th Day
## 2192 Tony Hawk: RIDE
## 2193 Lego Batman 3: Beyond Gotham
## 2194 Wii Play: Motion
## 2195 Killzone
## 2196 The Tomb Raider Trilogy
## 2197 Colin McRae Rally 04
## 2198 Star Fox 64 3D
## 2199 The SpongeBob SquarePants Movie
## 2200 Rocksmith 2014
## 2201 Midway Presents Arcade's Greatest Hits: The Atari Collection 1
## 2202 Cars
## 2203 Assassin's Creed III
## 2204 Castlevania: Lament of Innocence
## 2205 Mario Tennis Open
## 2206 The Witcher 2: Assassins of Kings
## 2207 Bayonetta
## 2208 Destroy All Humans!
## 2209 MVP Baseball 2005
## 2210 SaGa Frontier 2
## 2211 NCAA Football 10
## 2212 MLB 2000
## 2213 The Legend of Zelda: Twilight Princess HD
## 2214 Bully
## 2215 Prince of Persia: The Sands of Time
## 2216 Phantasy Star Portable
## 2217 Hot Shots Golf Fore!
## 2218 MLB 06: The Show
## 2219 NHL 2003
## 2220 Operation Flashpoint: Dragon Rising
## 2221 Nickelodeon Fit
## 2222 Buzz! Quiz World
## 2223 Bentley's Hackpack
## 2224 Tony Hawk's Pro Skater 4
## 2225 Borderlands 2
## 2226 EA Sports Grand Slam Tennis
## 2227 White Knight Chronicles: International Edition
## 2228 SSX
## 2229 Sonic Riders: Zero Gravity
## 2230 LEGO Jurassic World
## 2231 Build-A-Bear Workshop
## 2232 Crash City Mayhem
## 2233 Spider-Man
## 2234 Mega Man 4
## 2235 Castlevania II: Simon's Quest
## 2236 Toy Story 2: Buzz Lightyear to the Rescue!
## 2237 Teenage Mutant Ninja Turtles
## 2238 MLB 07: The Show
## 2239 Skylanders: Trap Team
## 2240 Cars
## 2241 Brothers in Arms: Hell's Highway
## 2242 Inazuma Eleven 3
## 2243 Pokken Tournament
## 2244 SnoCross Championship Racing
## 2245 Teenage Mutant Ninja Turtles
## 2246 Top Gun: Combat Zones
## 2247 Blue Dragon
## 2248 007: The World is not Enough
## 2249 NCAA Football 11
## 2250 NHL 98
## 2251 FIFA Street
## 2252 EA Sports Active 2
## 2253 SpongeBob SquarePants: The Yellow Avenger
## 2254 WWE SmackDown vs. Raw 2009
## 2255 Dante's Inferno
## 2256 Wipeout: In The Zone
## 2257 Space Jam
## 2258 Kung Fu Panda
## 2259 Knockout Kings 2000
## 2260 Balloon Fight
## 2261 Assassin's Creed
## 2262 Disney Magical World
## 2263 Crysis 3
## 2264 Lego Batman 3: Beyond Gotham
## 2265 Dynasty Warriors 7
## 2266 The Evil Within
## 2267 MLB 12: The Show
## 2268 Sonic Riders
## 2269 Starsky & Hutch
## 2270 Tobal No.1
## 2271 Lost Odyssey
## 2272 MLB 15: The Show
## 2273 Operation Flashpoint: Dragon Rising
## 2274 Homefront
## 2275 AMF Bowling Pinbusters!
## 2276 Street Hoops
## 2277 Avatar: The Game
## 2278 Harvest Moon 3D: A New Beginning
## 2279 Tom Clancy's EndWar
## 2280 Knockout Kings 2002
## 2281 Tokyo Xtreme Racer 3
## 2282 LEGO Indiana Jones 2: The Adventure Continues
## 2283 Colin McRae Rally 2.0
## 2284 Glover
## 2285 MX vs. ATV Reflex
## 2286 Minecraft: Story Mode
## 2287 Namco Museum
## 2288 Marvel: Ultimate Alliance 2
## 2289 Call of Duty: World at War
## 2290 Super Momotarou Dentetsu III
## 2291 Sonic Mega Collection Plus
## 2292 DJ Hero
## 2293 Dragon Age: Inquisition
## 2294 The Simpsons Game
## 2295 Tiger Woods PGA Tour 2002
## 2296 Rhythm Heaven
## 2297 Mini-Yonku Shining Scorpion: Let's & Go!!
## 2298 MLB 2005
## 2299 SOCOM 4: U.S. Navy SEALs
## 2300 Burnout Revenge
## 2301 Buzz! Quiz TV
## 2302 We Ski & Snowboard
## 2303 Destruction Derby
## 2304 TouchMaster 2
## 2305 Crysis 3
## 2306 3Xtreme
## 2307 Hot Shots Tennis
## 2308 Sonic Heroes
## 2309 Resistance: Retribution
## 2310 Tiger Woods PGA Tour 12: The Masters
## 2311 Star Wars: The Force Unleashed
## 2312 Madden NFL 99
## 2313 Spider-Man 3
## 2314 James Bond 007: Agent Under Fire
## 2315 Samba De Amigo
## 2316 The Elder Scrolls Online
## 2317 Pure
## 2318 FIFA Soccer 09 All-Play
## 2319 Fossil Fighters
## 2320 LittleBigPlanet Karting
## 2321 X-Men Legends
## 2322 NBA Live 2005
## 2323 Harry Potter: Quidditch World Cup
## 2324 The Biggest Loser: Ultimate Workout
## 2325 Madagascar
## 2326 Call of Juarez: Bound in Blood
## 2327 Killzone: Liberation
## 2328 Madden NFL 08
## 2329 Blitz: The League
## 2330 LEGO Jurassic World
## 2331 Castlevania: Circle of the Moon
## 2332 Sonic Chronicles: The Dark Brotherhood
## 2333 Tiger Woods PGA Tour 06
## 2334 Classic NES Series: The Legend of Zelda
## 2335 The Jak and Daxter Collection
## 2336 Fire Emblem: The Sacred Stones
## 2337 Pokemon Card GB2: Here Comes Team GR!
## 2338 Finding Nemo
## 2339 CSI: Hard Evidence
## 2340 Ace Combat 2
## 2341 F1 2009
## 2342 NFL 2K2
## 2343 EA Sports UFC 2
## 2344 Dissidia 012: Duodecim Final Fantasy
## 2345 LEGO Marvel Super Heroes
## 2346 F1 2010
## 2347 Monster 4X4: World Circuit
## 2348 Call of Duty: Modern Warfare 2
## 2349 Wii Fit U
## 2350 Kingdoms of Amalur: Reckoning
## 2351 Call of Duty: Modern Warfare 3
## 2352 MLB 2001
## 2353 SingStar Anthems
## 2354 Seiken Densetsu 3
## 2355 Mega Man 8 Anniversary Collector's Edition
## 2356 WWE SmackDown vs. Raw 2011
## 2357 Sleeping Dogs
## 2358 Grand Theft Auto IV
## 2359 Peppa Pig: The Game
## 2360 Michael Jackson: The Experience
## 2361 Ghostbusters: The Video Game
## 2362 Rock Band 3
## 2363 Resident Evil: Revelations
## 2364 NBA 2K6
## 2365 Buzz! The Mega Quiz
## 2366 Endless Ocean: Blue World
## 2367 Star Wars: Rebel Assault II - The Hidden Empire
## 2368 Just Cause 3
## 2369 Metal Gear Ac!d
## 2370 Cooking Mama: World Kitchen
## 2371 Tekken Tag Tournament 2
## 2372 ESPN NHL 2K5
## 2373 GRID
## 2374 Phantasy Star Portable 2
## 2375 Crimson Skies: High Road to Revenge
## 2376 Spec Ops: Ranger Elite
## 2377 Gex
## 2378 NBA 2K14
## 2379 DiRT
## 2380 Derby Stallion II
## 2381 Gold's Gym: Dance Workout
## 2382 Red Faction: Guerrilla
## 2383 Tom Clancy's Ghost Recon: Island Thunder
## 2384 Mercenaries 2: World in Flames
## 2385 Need for Speed: V-Rally
## 2386 Kingdom Hearts Re: Chain of Memories
## 2387 Pictionary
## 2388 NCAA Football 13
## 2389 Kingdoms of Amalur: Reckoning
## 2390 NFL GameDay '97
## 2391 Beijing 2008
## 2392 The House of the Dead: Overkill
## 2393 Tony Hawk's Project 8
## 2394 Injustice: Gods Among Us
## 2395 NHL 2000
## 2396 Buzz! Master Quiz
## 2397 Brothers in Arms: Hell's Highway
## 2398 Fight Night Round 2
## 2399 Wizards of Waverly Place
## 2400 Scooby-Doo! First Frights
## 2401 Conflict: Desert Storm
## 2402 Triple Play 2002
## 2403 Vagrant Story
## 2404 Lemmings
## 2405 Warriors Orochi
## 2406 Guitar Hero: Warriors of Rock
## 2407 Enduro
## 2408 Tales of Xillia 2
## 2409 SingStar '90s
## 2410 Monster Strike 3DS
## 2411 Tomb Raider: Anniversary
## 2412 Winning Eleven: Pro Evolution Soccer 2007
## 2413 Darksiders II
## 2414 Ghostbusters: The Video Game
## 2415 The World Ends With You
## 2416 The Lord of the Rings: War in the North
## 2417 Rocky
## 2418 Dragon Quest VIII: Journey of the Cursed King
## 2419 Ford Racing
## 2420 Madden Football 64
## 2421 MLB 99
## 2422 Dragon Ball Z: Burst Limit
## 2423 The Lord of the Rings: War in the North
## 2424 The Legendary Starfy
## 2425 2010 FIFA World Cup South Africa
## 2426 Dynasty Warriors 4: Xtreme Legends
## 2427 Ninja Gaiden Sigma 2
## 2428 Forza Horizon 2
## 2429 Skate 2
## 2430 FIFA Soccer 08
## 2431 Army Men: Air Attack
## 2432 Need for Speed: Nitro
## 2433 Madden NFL 09 All-Play
## 2434 NBA 2K8
## 2435 Far Cry: Primal
## 2436 Street Fighter Alpha 2
## 2437 Tiger Woods PGA Tour 2005
## 2438 Army of Two: The 40th Day
## 2439 Blazing Angels: Squadrons of WWII
## 2440 Castlevania III: Dracula's Curse
## 2441 Harry Potter and the Order of the Phoenix
## 2442 Rampage World Tour
## 2443 Burnout Legends
## 2444 WWE 2K15
## 2445 Overwatch
## 2446 Ratatouille
## 2447 NFL GameDay
## 2448 Burnout 2: Point of Impact
## 2449 Kirby: Planet Robobot
## 2450 Street Fighter EX3
## 2451 Karaoke Revolution Glee
## 2452 Sniper Elite V2
## 2453 Thief (2014)
## 2454 Spider-Man 2
## 2455 Golden Sun: Dark Dawn
## 2456 Tiger Woods PGA Tour 11
## 2457 Devil May Cry HD Collection
## 2458 MLB 16: The Show
## 2459 NBA 2K10
## 2460 Xenoblade Chronicles X
## 2461 Petz Dogz Fashion
## 2462 The Incredibles
## 2463 NCAA Football 11
## 2464 Dragon Age II
## 2465 ATV Quad Power Racing 2
## 2466 Harvest Moon: Tree of Tranquility
## 2467 Final Fantasy
## 2468 Street Fighter X Tekken
## 2469 Rocket Power: Team Rocket Rescue
## 2470 Duke Nukem Forever
## 2471 Big Mutha Truckers
## 2472 Borderlands: The Handsome Collection
## 2473 Rogue Galaxy
## 2474 ESPN College Hoops 2K5
## 2475 Metroid: Zero Mission
## 2476 FIFA 15
## 2477 Time Crisis 4
## 2478 Ben 10: Protector of Earth
## 2479 Need for Speed Rivals
## 2480 Q*bert
## 2481 WWE SmackDown vs. Raw 2009
## 2482 Ace Combat 3: Electrosphere
## 2483 Dynasty Warriors 2
## 2484 Battle of Giants: Dinosaurs
## 2485 Madden NFL 07
## 2486 Lizzie McGuire 2: Lizzie Diaries
## 2487 Borderlands 2
## 2488 FIFA Soccer World Championship
## 2489 Brute Force
## 2490 Dance Central 3
## 2491 Yu-Gi-Oh! Dark Duel Stories
## 2492 The Game of Life
## 2493 Mega Man Legends
## 2494 NCAA Football 12
## 2495 Sly 3: Honor Among Thieves
## 2496 The Price is Right
## 2497 Sid Meier's Civilization Revolution
## 2498 MLB SlugFest 20-03
## 2499 I Spy: Fun House
## 2500 The Amazing Spider-Man (Console Version)
## 2501 Dragon Ball: Raging Blast 2
## 2502 MediEvil
## 2503 Casper
## 2504 Deca Sports 2
## 2505 James Bond 007: Nightfire
## 2506 Madden NFL 17
## 2507 Tony Hawk's Underground 2 Remix
## 2508 Tony Hawk's Pro Skater 3
## 2509 Marvel: Ultimate Alliance
## 2510 Star Wars The Clone Wars: Republic Heroes
## 2511 DJ Hero 2
## 2512 Street Fighter V
## 2513 Need for Speed: Hot Pursuit 2
## 2514 Clu Clu Land
## 2515 Killer Instinct Gold
## 2516 Amped: Freestyle Snowboarding
## 2517 Custer's Revenge
## 2518 MediEvil: Resurrection
## 2519 DmC: Devil May Cry
## 2520 Tales of the Abyss
## 2521 Rocket Power: Beach Bandits
## 2522 Guitar Hero: Warriors of Rock
## 2523 Hasbro Family Game Night 3
## 2524 Madden NFL 16
## 2525 Stranglehold
## 2526 Imagine: Rock Star
## 2527 Shin Megami Tensei: Persona 4
## 2528 SingStar Vol. 2
## 2529 Shaun White Snowboarding
## 2530 Madden NFL 25
## 2531 Twisted Metal (2012)
## 2532 Dragon Warrior III
## 2533 Disney's The Little Mermaid: Ariel's Undersea Adventure
## 2534 Ready 2 Rumble Boxing: Round 2
## 2535 Kamaitachi no Yoru
## 2536 Patapon
## 2537 Tales of Destiny II
## 2538 Super Bomberman 2
## 2539 NASCAR 2001
## 2540 EA Sports Active NFL Training Camp
## 2541 The Legend of Zelda: Four Swords Adventures
## 2542 Jikkyou Powerful Pro Yakyuu '99 Kaimakuban
## 2543 Guitar Hero Live
## 2544 Valkyrie Profile
## 2545 Final Fantasy Type-0
## 2546 Pro Evolution Soccer 2010
## 2547 Army Men: Sarge's Heroes
## 2548 Mega Man
## 2549 Tom Clancy's Rainbow Six 3
## 2550 Lego Batman 3: Beyond Gotham
## 2551 EarthBound
## 2552 DiRT 2
## 2553 Professor Layton vs Phoenix Wright: Ace Attorney
## 2554 The Next Tetris
## 2555 Dying Light
## 2556 NCAA Football 10
## 2557 Ben 10: Alien Force
## 2558 World Soccer Jikkyou Winning Eleven 3: World Cup France '98
## 2559 Final Fantasy XI: Wings of the Goddess
## 2560 The Sims 2
## 2561 Guitar Hero: Metallica
## 2562 NCAA Football 14
## 2563 MadWorld
## 2564 Fight Night Champion
## 2565 Who wants to be a millionaire
## 2566 Yakuza
## 2567 Star Wars Rogue Squadron III: Rebel Strike
## 2568 ABBA: You Can Dance
## 2569 Moto Racer
## 2570 Hitman: Contracts
## 2571 The Sims 2: Pets
## 2572 Final Fantasy Anthology
## 2573 Aliens: Colonial Marines
## 2574 Pro Evolution Soccer 2010
## 2575 [Prototype 2]
## 2576 Sonic & SEGA All-Stars Racing with Banjo-Kazooie
## 2577 Goldeneye 007: Reloaded
## 2578 NBA 2K16
## 2579 All Star Cheer Squad
## 2580 The Sims 2: Castaway
## 2581 Prince of Persia: Warrior Within
## 2582 Dragon's Dogma
## 2583 Darksiders II
## 2584 Resident Evil: Revelations
## 2585 Rayman Raving Rabbids 2
## 2586 Super Robot Taisen α
## 2587 PES 2009: Pro Evolution Soccer
## 2588 Need for Speed: Hot Pursuit 2
## 2589 Star Wars: The Force Unleashed II
## 2590 Band Hero
## 2591 Mario & Sonic at the Sochi 2014 Olympic Winter Games
## 2592 Tales of Destiny 2
## 2593 Capcom's Soccer Shootout
## 2594 Sniper: Ghost Warrior
## 2595 The Godfather II
## 2596 pro evolution soccer 2011
## 2597 Alien
## 2598 Dragon Ball Z: Budokai Tenkaichi 2
## 2599 The Walking Dead: Season One
## 2600 Rayman Origins
## 2601 Guitar Hero: Aerosmith
## 2602 Ridge Racer
## 2603 Final Fantasy Tactics A2: Grimoire of the Rift
## 2604 Harvest Moon: A Wonderful Life
## 2605 Momotarou Dentetsu 7
## 2606 Invizimals
## 2607 Motocross Mania
## 2608 Tiger Woods PGA Tour 10
## 2609 Star Wars The Clone Wars: Jedi Alliance
## 2610 WCW Mayhem
## 2611 Mega Man 5
## 2612 Star Ocean: The Last Hope
## 2613 Dance Dance Revolution SuperNOVA 2
## 2614 Armored Core 2
## 2615 Dragon Quest Monsters 2
## 2616 Ghost Squad
## 2617 Dead Island: Riptide
## 2618 Drawn to Life
## 2619 Major League Baseball Featuring Ken Griffey Jr
## 2620 FIFA 12
## 2621 Too Human
## 2622 Sid Meier's Civilization Revolution
## 2623 NCAA Football 08
## 2624 FIFA Soccer 2004
## 2625 Personal Trainer: Walking
## 2626 Naruto Shippuden: Ultimate Ninja Storm 2
## 2627 PokePark 2: Wonders Beyond
## 2628 Professor Layton and the Azran Legacy
## 2629 Tom Clancy's Splinter Cell: Double Agent
## 2630 Yars' Revenge
## 2631 Lips
## 2632 Secret Agent Barbie: Royal Jewels Mission
## 2633 Metroid Prime Hunters
## 2634 The 7th Guest
## 2635 Doom
## 2636 Buzz! The Hollywood Quiz
## 2637 Puzzler World
## 2638 My Little Pony: Pinkie Pie's Party
## 2639 We Sing
## 2640 Marvel vs. Capcom: Clash of Super Heroes
## 2641 God of War Saga
## 2642 Battle Stations
## 2643 Tetris Party Deluxe
## 2644 Pro Evolution Soccer 2016
## 2645 Worms: Open Warfare
## 2646 Star Wars Battlefront: Elite Squadron
## 2647 UFC Personal Trainer: The Ultimate Fitness System
## 2648 Resident Evil: Operation Raccoon City
## 2649 NBA 2K7
## 2650 Need for Speed: ProStreet
## 2651 Toy Story 3: The Video Game
## 2652 Torneko no Daibouken: Fushigi no Dungeon
## 2653 Jr. Pac-Man
## 2654 James Bond 007: Nightfire
## 2655 Banjo-Kazooie: Nuts & Bolts
## 2656 NBA ShootOut 98
## 2657 Avatar: The Game
## 2658 Harry Potter and the Half-Blood Prince
## 2659 DJ Hero
## 2660 Perfect Dark Zero
## 2661 Galaxian
## 2662 Andretti Racing
## 2663 Caesars Palace 2000: Millennium Gold Edition
## 2664 Madden NFL 25
## 2665 Air Raid
## 2666 Need For Speed: Undercover
## 2667 Duke Nukem Forever
## 2668 Freedom Wars
## 2669 Marvel Nemesis: Rise of the Imperfects
## 2670 Boxing
## 2671 Need for Speed: Porsche Unleashed
## 2672 Dragon Ball: Raging Blast
## 2673 Crystal Castles
## 2674 Conker's Bad Fur Day
## 2675 Dragon Warrior I&II
## 2676 Star Wars Episode II: Attack of the Clones
## 2677 My Baby Girl
## 2678 LEGO Batman 2: DC Super Heroes
## 2679 Twisted Metal: Head On
## 2680 Conflict: Desert Storm II - Back to Bagdhad
## 2681 Maximo: Ghosts to Glory
## 2682 Pokemon Dash
## 2683 Donkey Kong Country 3
## 2684 All-Star Baseball 2003
## 2685 Unlimited Saga
## 2686 Cabela's Deer Hunt: 2004 Season
## 2687 Sonic Unleashed
## 2688 Formula 1
## 2689 Plants vs. Zombies: Garden Warfare
## 2690 Raving Rabbids: Travel in Time
## 2691 The Sims 3
## 2692 Driv3r
## 2693 Mercenaries: Playground of Destruction
## 2694 MTV Celebrity Deathmatch
## 2695 Street Fighter Alpha: Warriors' Dreams
## 2696 Mortal Kombat
## 2697 ISS Pro Evolution
## 2698 Lost Planet 2
## 2699 SoulCalibur V
## 2700 Portal 2
## 2701 Super Monkey Ball: Touch & Roll
## 2702 Pro Evolution Soccer 2015
## 2703 Drawn to Life: The Next Chapter
## 2704 The Lord of the Rings: Conquest
## 2705 Final Fantasy II
## 2706 Tony Hawk's Pro Skater 2
## 2707 Taiko no Tatsujin: Tatakon de Dodon ga Don
## 2708 Mega Man Battle Network 6: Cybeast Falzar / Gregar
## 2709 Syphon Filter: The Omega Strain
## 2710 FIFA Soccer 11
## 2711 Deer Drive
## 2712 Kane & Lynch: Dead Men
## 2713 Assassin's Creed: Revelations
## 2714 Mortal Kombat: Deception
## 2715 Ace Attorney Investigations: Miles Edgeworth
## 2716 That's So Raven
## 2717 FIFA 15
## 2718 Marvel vs. Capcom 2: New Age of Heroes
## 2719 Need for Speed: Shift
## 2720 Kane & Lynch: Dead Men
## 2721 Dark Souls II
## 2722 True Crime: New York City
## 2723 Legends of Wrestling
## 2724 Rockstar Games presents Table Tennis
## 2725 Monopoly Streets
## 2726 Genji: Days of the Blade
## 2727 Harvest Moon: Animal Parade
## 2728 Final Fantasy Legend III
## 2729 Total War: Rome II
## 2730 Rare Replay
## 2731 Spectrobes
## 2732 Wall-E
## 2733 WWE SmackDown vs. Raw 2009
## 2734 Band Hero
## 2735 Mega Man X5
## 2736 Tearaway
## 2737 DJ Hero 2
## 2738 The Godfather II
## 2739 WWE SmackDown vs. Raw 2010
## 2740 Turok
## 2741 [Prototype 2]
## 2742 Shark Tale
## 2743 San Francisco Rush: Extreme Racing
## 2744 The Amazing Spider-Man (Console Version)
## 2745 Zone of the Enders
## 2746 Red Faction: Guerrilla
## 2747 Street Fighter EX Plus Alpha
## 2748 Madden NFL 06
## 2749 Coded Arms
## 2750 Tony Hawk's Underground 2
## 2751 Tales of Vesperia
## 2752 X-Men Origins: Wolverine - Uncaged Edition
## 2753 Madagascar: Escape 2 Africa
## 2754 Split/Second
## 2755 Capcom vs. SNK 2: Mark of the Millennium 2001
## 2756 MVP 06 NCAA Baseball
## 2757 Just Dance 2015
## 2758 Borderlands: The Pre-Sequel
## 2759 LittleBigPlanet 3
## 2760 Marvel: Ultimate Alliance 2
## 2761 Sega Superstars Tennis
## 2762 The Walking Dead: Season One
## 2763 Ace Combat: Assault Horizon
## 2764 Jump Ultimate Stars
## 2765 Jampack Summer 2001
## 2766 Resonance of Fate
## 2767 Burnout
## 2768 Tom Clancy's Rainbow Six: Vegas
## 2769 Final Fantasy XIII-2
## 2770 LEGO Batman 2: DC Super Heroes
## 2771 Mortal Kombat: Unchained
## 2772 Mario & Luigi: Paper Jam
## 2773 Yu-Gi-Oh! Dungeon Dice Monsters
## 2774 Brink
## 2775 LEGO Marvel Super Heroes
## 2776 Blur
## 2777 Madden NFL 11
## 2778 Namco Museum Remix
## 2779 Midnight Club 3: DUB Edition
## 2780 Crysis 2
## 2781 The Lord of the Rings: The Two Towers
## 2782 Tiger Woods PGA Tour 2001
## 2783 Indiana Jones and the Staff of Kings
## 2784 Jet Moto 3
## 2785 Naruto Shippuden: Ultimate Ninja Storm Generations
## 2786 Unreal Championship
## 2787 WarioWare: Twisted!
## 2788 Pirates of the Caribbean: At World's End
## 2789 Tiger Woods PGA Tour 08
## 2790 Persona 4: Arena
## 2791 Sword of Mana
## 2792 Harvest Moon DS: Island of Happiness
## 2793 Star Ocean: The Last Hope International
## 2794 The Sims 2: Castaway
## 2795 FIFA: Road to World Cup 98
## 2796 Dragon Ball Z: Ultime Menace
## 2797 Classic NES Series: Donkey Kong
## 2798 Call of Duty: Ghosts
## 2799 Yoshi
## 2800 Mortal Kombat 4
## 2801 F1 2011
## 2802 Madden NFL 10
## 2803 Kirby: Canvas Curse
## 2804 Croc 2
## 2805 Practise English!
## 2806 Oddworld: Munch's Oddysee
## 2807 Berzerk
## 2808 NHL 11
## 2809 Dragon Age: Inquisition
## 2810 iCarly
## 2811 DiRT 3
## 2812 NCAA Football 07
## 2813 Just Dance Wii
## 2814 Full Spectrum Warrior
## 2815 Katamari Damacy
## 2816 Beyblade VForce: Ultimate Blader Jam
## 2817 Ratchet & Clank Collection
## 2818 Avatar: The Game
## 2819 Shaun Palmer's Pro Snowboarder
## 2820 MX vs. ATV Reflex
## 2821 Imagine: Interior Designer
## 2822 SSX
## 2823 Style Savvy: Trendsetters
## 2824 James Bond 007: Agent Under Fire
## 2825 XCOM: Enemy Unknown
## 2826 Rabbids Go Home
## 2827 Star Wars Episode III: Revenge of the Sith
## 2828 Ultimate Spider-Man
## 2829 FIFA Soccer 13
## 2830 God Eater
## 2831 Final Fantasy XIV: A Realm Reborn
## 2832 SD Gundam G Generation
## 2833 Area 51
## 2834 NBA Live 08
## 2835 Dead to Rights
## 2836 Tiger Woods PGA Tour 07
## 2837 Test Drive 6
## 2838 Kouchuu Ouja Mushi King
## 2839 LEGO Harry Potter: Years 5-7
## 2840 Major League Baseball 2K7
## 2841 X-Men: Mutant Academy 2
## 2842 Terraria
## 2843 Jampack Winter 2001
## 2844 Kangaroo
## 2845 James Bond 007: Blood Stone
## 2846 Ben 10: Protector of Earth
## 2847 Skate
## 2848 Super Monkey Ball Jr.
## 2849 Driver: San Francisco
## 2850 MLB 09: The Show
## 2851 Monster Hunter Tri
## 2852 Mobile Suit Gundam: Encounters in Space
## 2853 Catherine
## 2854 Fear Effect
## 2855 FIFA Soccer 11
## 2856 Crysis
## 2857 Battlefield: Bad Company 2
## 2858 The Lord of the Rings: The Two Towers
## 2859 Madden NFL 2003
## 2860 Dragon Quest Swords: The Masked Queen and the Tower of Mirrors
## 2861 MLB 13: The Show
## 2862 Omerta: City of Gangsters
## 2863 Dragon Quest Heroes: The World's Tree Woe and the Blight Below
## 2864 Virtua Fighter 4: Evolution
## 2865 Top Spin 4
## 2866 Resident Evil: Survivor
## 2867 Dynasty Warriors 6
## 2868 Super Trucks Racing
## 2869 Persona Q: Shadow of the Labyrinth
## 2870 Madden NFL 08
## 2871 Godzilla: Destroy All Monsters Melee
## 2872 Jeremy McGrath Supercross 2000
## 2873 Conker: Live And Reloaded
## 2874 Silent Hill 3
## 2875 Madden NFL 09
## 2876 Final Fantasy X/X-2 HD Remaster
## 2877 Yu-Gi-Oh! The Falsebound Kingdom
## 2878 LEGO Rock Band
## 2879 MLB 10: The Show
## 2880 Spyro: Enter the Dragonfly
## 2881 Scooby-Doo 2: Monsters Unleashed
## 2882 Power Rangers: Dino Thunder
## 2883 Rhythm Heaven: The Best+
## 2884 LEGO Racers
## 2885 WWF Attitude
## 2886 Blast Corps
## 2887 LEGO Harry Potter: Years 1-4
## 2888 Tactics Ogre: Let Us Cling Together
## 2889 WarioWare, Inc.: Mega Party Game$
## 2890 Football Manager 2014
## 2891 Battle Arena Toshinden 2
## 2892 WWE SmackDown vs. Raw 2011
## 2893 Jeopardy!
## 2894 South Park
## 2895 Metal Gear Solid V: The Phantom Pain
## 2896 Two Worlds
## 2897 Doom 3: Resurrection of Evil
## 2898 NCAA Football 09
## 2899 NBA Live 09
## 2900 Ratchet & Clank: Into the Nexus
## 2901 Spider-Man 2
## 2902 2014 FIFA World Cup Brazil
## 2903 London 2012: The Official Video Game of the Olympic Games
## 2904 NHL 12
## 2905 Tony Hawk's Underground
## 2906 Infinite Undiscovery
## 2907 Super Bomberman 3
## 2908 Command & Conquer: Red Alert Retaliation
## 2909 The Sims 2: Apartment Pets
## 2910 Star Wars: Obi-Wan
## 2911 NCAA Football 08
## 2912 Kill.Switch
## 2913 Lalaloopsy
## 2914 Madden NFL 2005
## 2915 F-14 Tomcat
## 2916 SplashDown
## 2917 NCAA Football 98
## 2918 Jade Empire
## 2919 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 2920 The Sims 3
## 2921 Skylanders: Trap Team
## 2922 Prince of Persia: The Forgotten Sands
## 2923 Chocobo's Dungeon 2
## 2924 Advance Wars
## 2925 Hannah Montana: The Movie
## 2926 World of Zoo
## 2927 Ape Escape: On the Loose
## 2928 NASCAR 2001
## 2929 IL-2 Sturmovik: Birds of Prey
## 2930 Book of Spells
## 2931 NCAA Football 2001
## 2932 Mafia
## 2933 Mobile Suit Gundam: Journey to Jaburo
## 2934 Metal Gear Solid V: The Phantom Pain
## 2935 TimeSplitters 2
## 2936 MotionSports
## 2937 MLB 08: The Show
## 2938 Classic NES Series: Zelda II: The Adventure of Link
## 2939 Fire Emblem: Monsh? no Nazo
## 2940 Disney's Chicken Little
## 2941 King Kong
## 2942 WWE 2K15
## 2943 The LEGO Movie Videogame
## 2944 X-Men Origins: Wolverine - Uncaged Edition
## 2945 Metal Gear Solid: Portable Ops Plus
## 2946 Disney Tangled
## 2947 Shrek the Third
## 2948 Test Drive Unlimited 2
## 2949 Moto Racer 2
## 2950 Halo 2 Multiplayer Map Pack
## 2951 Minecraft: Story Mode
## 2952 Mortal Kombat: Shaolin Monks
## 2953 MX vs. ATV Unleashed: On the Edge
## 2954 Skylanders: Trap Team
## 2955 Mario Pinball Land
## 2956 Mappy
## 2957 J-League Soccer: Prime Goal
## 2958 Dragon Ball Z: Budokai
## 2959 NFL Xtreme
## 2960 The Sly Collection
## 2961 One Piece: Pirate Warriors 2
## 2962 Assassin's Creed IV: Black Flag
## 2963 Harry Potter and the Chamber of Secrets
## 2964 Need for Speed: Shift 2 Unleashed
## 2965 The Lord of the Rings: The Return of the King
## 2966 Nintendo Presents: New Style Boutique 2 - Fashion Forward
## 2967 MX vs. ATV Untamed
## 2968 The Last Remnant
## 2969 Frozen: Olaf's Quest
## 2970 The Sims: Medieval
## 2971 Baldur's Gate: Dark Alliance II
## 2972 Shark Tale
## 2973 Plants vs. Zombies: Garden Warfare
## 2974 Kirby's Dream Collection: Special Edition
## 2975 Bakugan: Battle Brawlers
## 2976 Star Wars: Masters of Teras Kasi
## 2977 The Last Story
## 2978 NBA Street Vol. 2
## 2979 Iron Man
## 2980 Disney Infinity 3.0
## 2981 Spider-Man 3
## 2982 NCAA Football 2005
## 2983 Mortal Kombat Mythologies: Sub-Zero
## 2984 Rayman Legends
## 2985 Naruto: Clash of Ninja
## 2986 Prince of Persia: The Two Thrones
## 2987 Hot Shots Golf: Open Tee 2
## 2988 Metro: Last Light
## 2989 Fossil Fighters: Champions
## 2990 Mercenaries: Playground of Destruction
## 2991 Sniper Elite 3
## 2992 Doom (2016)
## 2993 Bushido Blade 2
## 2994 Suikoden II
## 2995 Need for Speed (2015)
## 2996 Cars: Mater-National Championship
## 2997 FIFA Soccer 06
## 2998 Hidden Objects: Mystery Stories
## 2999 Red Steel
## 3000 Fight Night 2004
## 3001 Tourist Trophy: The Real Riding Simulator
## 3002 Mass Effect
## 3003 .hack//Mutation Part 2
## 3004 Country Dance
## 3005 Turok
## 3006 Midway Arcade Treasures 2
## 3007 100 Classic Books
## 3008 Unreal Tournament III
## 3009 Final Fantasy Crystal Chronicles: Ring of Fates
## 3010 Return to Castle Wolfenstein: Tides of War
## 3011 Need for Speed Rivals
## 3012 Lollipop Chainsaw
## 3013 The Darkness
## 3014 Street Sk8er
## 3015 Club Penguin: Elite Penguin Force - Herbert's Revenge
## 3016 Contra: Legacy of War
## 3017 Blazing Angels: Squadrons of WWII
## 3018 Fight Night Round 2004
## 3019 Wolfenstein: The New Order
## 3020 The Biggest Loser: Challenge
## 3021 Zaidan Houjin Nippon Kanji Nouryoko Kentei Kyoukai Kounin: KanKen DS
## 3022 Spice World
## 3023 Star Wars: Republic Commando
## 3024 Armored Core 3
## 3025 Need For Speed: Undercover
## 3026 Taiko no Tatsujin Wii
## 3027 The Witcher 3: Wild Hunt
## 3028 Virtua Tennis: World Tour (US & Others sales)
## 3029 The LEGO Movie Videogame
## 3030 Ratatouille
## 3031 RIFT
## 3032 Wild ARMs 2
## 3033 Summer Sports: Paradise Island (Others sales)
## 3034 Castlevania: Lords of Shadow
## 3035 BioShock Infinite
## 3036 Minecraft: Story Mode
## 3037 TV Show King Party
## 3038 Crafting Mama
## 3039 007: Quantum of Solace
## 3040 Rock Band 3
## 3041 Command & Conquer: Red Alert 3
## 3042 The Fairly Odd Parents: Breakin Da Rules
## 3043 WWE SmackDown vs. RAW 2007
## 3044 Peppa Pig: Fun and Games
## 3045 Adventures of Tron
## 3046 Phoenix Wright: Ace Attorney - Trials and Tribulations
## 3047 NHL 13
## 3048 Borderlands: The Pre-Sequel
## 3049 The Sims 3: High-End Loft Stuff
## 3050 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 3051 Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Koushiki Soft: 200 Mannin no KanKen: Tokoton Kanji Nou
## 3052 Pro Pinball: Big Race USA
## 3053 NFL Street
## 3054 Shaun White Snowboarding
## 3055 The LEGO Movie Videogame
## 3056 Tony Hawk's Proving Ground
## 3057 MLB 2004
## 3058 Naruto Shippuden: Ultimate Ninja 4
## 3059 Tiger Woods PGA Tour 2000
## 3060 Darkstone
## 3061 NCAA March Madness 2003
## 3062 Finding Nemo
## 3063 Thrillville
## 3064 NHL 10
## 3065 Jikkyou World Soccer 2000 Final Edition
## 3066 Madagascar
## 3067 Puzzler Brain Games
## 3068 Dragon Quest Monsters: Caravan Heart
## 3069 Strawberry Shortcake: Summertime Adventure
## 3070 Rayman Legends
## 3071 Rocksmith 2014
## 3072 Street Fighter Anniversary Collection
## 3073 Legend of Legaia
## 3074 Napoleon: Total War
## 3075 Fist of the North Star: Ken's Rage
## 3076 Wario: Master of Disguise
## 3077 Toy Story 3: The Video Game
## 3078 The Sims: Bustin' Out
## 3079 Tiger Woods PGA Tour 09
## 3080 Keystone Kapers
## 3081 LEGO Marvel Super Heroes
## 3082 New Play Control! Pikmin
## 3083 Shrek: Hassle at the Castle
## 3084 Suikoden IV
## 3085 Gods Eater Burst
## 3086 Disney's Kim Possible 2: Drakken's Demise
## 3087 Um Jammer Lammy
## 3088 Brothers In Arms: Road to Hill 30
## 3089 Madden NFL 10
## 3090 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3091 Taiko no Tatsujin DS: Touch de Dokodon!
## 3092 F1 2015
## 3093 Scene It? Box Office Smash
## 3094 Animaniacs Ten Pin Alley
## 3095 Disney Infinity 2.0: Marvel Super Heroes
## 3096 NHL 13
## 3097 Kung Fu Panda
## 3098 Tom Clancy's EndWar
## 3099 The Evil Within
## 3100 Tiger Woods PGA Tour 09
## 3101 Radiata Stories
## 3102 F-Zero GX
## 3103 Disney's Chicken Little
## 3104 Wall-E
## 3105 Yoshi Topsy-Turvy
## 3106 Up
## 3107 Monster Jam: Maximum Destruction
## 3108 Real Heroes: Firefighter
## 3109 Cartoon Network Block Party / Cartoon Network Speedway Double Pack
## 3110 World of Dragon Warrior - Torneko: The Last Hope
## 3111 Drawn to Life: The Next Chapter
## 3112 MLB 14: The Show
## 3113 Tiger Woods PGA Tour 10
## 3114 Advance Wars 2: Black Hole Rising
## 3115 Fire Emblem: Shadow Dragon
## 3116 Centipede
## 3117 Drakengard
## 3118 SingStar Pop Hits
## 3119 Kung-Fu Master
## 3120 Champions: Return to Arms
## 3121 Harry Potter and the Goblet of Fire
## 3122 SingStar R&B
## 3123 Mary-Kate and Ashley: Magical Mystery Mall
## 3124 MX vs. ATV Untamed
## 3125 Disney Sing It: Party Hits
## 3126 Dead or Alive 5
## 3127 Star Ocean: First Departure
## 3128 Super Robot Taisen Impact
## 3129 Dragon Age: Inquisition
## 3130 The Black Eyed Peas Experience
## 3131 Meccha! Taiko no Tatsujin Master DS: 7-tsu no Shima no Daibouken
## 3132 Sengoku Basara: Samurai Heroes
## 3133 Crysis 3
## 3134 Paws & Claws: Pet Vet
## 3135 Harry Potter and the Half-Blood Prince
## 3136 Crash Bandicoot Purple: Ripto's Rampage
## 3137 Diablo III
## 3138 Spyro: A Hero's Tail
## 3139 Crash of the Titans
## 3140 Aliens: Colonial Marines
## 3141 Crash: Twinsanity
## 3142 Test Drive Unlimited 2
## 3143 Max Payne 2: The Fall of Max Payne
## 3144 Dragon Ball: Raging Blast 2
## 3145 GoldenEye: Rogue Agent
## 3146 NBA 2K17
## 3147 Lost Planet: Extreme Condition
## 3148 XCOM: Enemy Unknown
## 3149 Rayman 3D
## 3150 LEGO Marvel's Avengers
## 3151 James Bond 007: Everything or Nothing
## 3152 X2: Wolverine's Revenge
## 3153 Stuntman: Ignition
## 3154 NBA Live 06
## 3155 Dragon Age II
## 3156 LEGO Star Wars II: The Original Trilogy
## 3157 Tom Clancy's Rainbow Six
## 3158 Castlevania
## 3159 Rayman 2: The Great Escape
## 3160 Nicktoons Collection: Game Boy Advance Video Volume 1
## 3161 The Lord of the Rings: Conquest
## 3162 TimeSplitters 2
## 3163 Onimusha: Dawn of Dreams
## 3164 NieR
## 3165 The Princess and the Frog
## 3166 Sega Rally Revo
## 3167 SpongeBob SquarePants: Game Boy Advance Video Volume 1
## 3168 Gravity Rush
## 3169 Konami Collector's Series: Arcade Advanced
## 3170 White Knight Chronicles II
## 3171 Wolfenstein
## 3172 Jampack Volume 13 (RP-T)
## 3173 LEGO Dimensions
## 3174 Start the Party!
## 3175 Cruis'n World
## 3176 Madden NFL 2001
## 3177 NBA Live 08
## 3178 The Walking Dead: Survival Instinct
## 3179 Donkey Kong Barrel Blast
## 3180 Okami
## 3181 Lemony Snicket's A Series of Unfortunate Events
## 3182 Middle-Earth: Shadow of Mordor
## 3183 Family Feud: 2010 Edition
## 3184 Red Steel 2
## 3185 X-Men Legends II: Rise of Apocalypse
## 3186 Nightmare Creatures
## 3187 SingStar Queen
## 3188 Just Dance 2015
## 3189 F1 2013
## 3190 Juiced 2: Hot Import Nights
## 3191 Tony Hawk's Pro Skater 2x
## 3192 Sim Theme Park
## 3193 FIFA Soccer 2003
## 3194 Ghostbusters: The Video Game
## 3195 Monster Hunter 2
## 3196 NASCAR 06: Total Team Control
## 3197 Tony Hawk's Project 8
## 3198 Dogz
## 3199 Disney Universe
## 3200 Guitar Hero: Metallica
## 3201 Iron Man
## 3202 Taiko no Tatsujin: Chibi Dragon to Fushigi na Orb
## 3203 Harry Potter and the Half-Blood Prince
## 3204 A Bug's Life
## 3205 Super Castlevania IV
## 3206 DJ Hero 2
## 3207 Angry Birds Trilogy
## 3208 Condemned 2: Bloodshot
## 3209 Cabela's Big Game Hunter (2008)
## 3210 Mobile Suit Z Gundam: AEUG vs. Titans
## 3211 Just Dance 3
## 3212 Call of Duty: Black Ops
## 3213 God of War III
## 3214 Ape Escape 2
## 3215 Metroid Prime: Trilogy
## 3216 X-Man
## 3217 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 3218 Advance Wars: Days of Ruin
## 3219 The Sims 3: Generations
## 3220 The Crew
## 3221 Battle of Giants: Dragons
## 3222 Dragon Quest Monsters Joker 3
## 3223 Sonic & All-Stars Racing Transformed
## 3224 Shin Megami Tensei: Persona 3 FES
## 3225 FIFA Soccer 2002
## 3226 Shin Megami Tensei: Persona 3 Portable
## 3227 Final Fantasy VII International
## 3228 Tiger Woods PGA Tour 12: The Masters
## 3229 Okami
## 3230 NHL 2001
## 3231 World of Zoo
## 3232 LEGO Jurassic World
## 3233 Wet
## 3234 MySims Racing
## 3235 Buzz Lightyear of Star Command
## 3236 Namco Museum
## 3237 Nobunaga no Yabou: Haouden
## 3238 Virtua Cop
## 3239 Metal Gear Solid 2: Substance
## 3240 Tony Hawk's American Wasteland
## 3241 WWF in Your House
## 3242 Prince of Persia: The Forgotten Sands
## 3243 Vanquish
## 3244 Wild ARMs 3
## 3245 NBA ShootOut '97
## 3246 Sacred 2: Fallen Angel
## 3247 Madden NFL 07
## 3248 Far Cry 4
## 3249 Battlezone
## 3250 Tiger Woods PGA Tour 2004
## 3251 LEGO Pirates of the Caribbean: The Video Game
## 3252 Pro Evolution Soccer 2015
## 3253 Evolve
## 3254 Tak 2: The Staff of Dreams
## 3255 Dead Island: Riptide
## 3256 Warriors Orochi 3
## 3257 Bolt
## 3258 Viewtiful Joe
## 3259 The Urbz: Sims in the City
## 3260 Beetle Adventure Racing!
## 3261 FIFA Soccer
## 3262 Disney's 102 Dalmatians: Puppies to the Rescue
## 3263 Wipeout: The Game
## 3264 Strike Force Bowling
## 3265 SpongeBob's Atlantis SquarePantis
## 3266 Metal Gear Solid V: Ground Zeroes
## 3267 Halloween
## 3268 Dragon Ball Z: Ultimate Tenkaichi
## 3269 WWE SmackDown vs. Raw 2010
## 3270 Bass Landing
## 3271 XGRA: Extreme G-Racing Association
## 3272 Mario's Picross
## 3273 Pac-Man Player's Choice Bundle
## 3274 Rocksmith 2014
## 3275 Fighters MEGAMiX
## 3276 Bahamut Lagoon
## 3277 Wall-E
## 3278 Tomb Raider III: Adventures of Lara Croft
## 3279 Toshochu: Run for Money
## 3280 Dragon Quest Monsters: Joker 2 Professional
## 3281 NFL Quarterback Club 99
## 3282 Super Robot Taisen α Gaiden
## 3283 Formula 1: Championship Edition
## 3284 Muramasa: The Demon Blade
## 3285 NBA 2K9
## 3286 SingStar Singalong With Disney
## 3287 NHL 16
## 3288 Plants vs. Zombies: Garden Warfare
## 3289 NFL Fever 2003
## 3290 Samurai Warriors 2
## 3291 Dynasty Warriors 8
## 3292 Disney Sing It: Family Hits
## 3293 2 Games in 1: Sonic Battle & ChuChu Rocket!
## 3294 Robotech: Battlecry
## 3295 Dora the Explorer: Super Spies
## 3296 New Carnival Games
## 3297 Tony Hawk: RIDE
## 3298 Just Dance 2014
## 3299 Cooking Mama 4: Kitchen Magic!
## 3300 Texas Hold 'Em Poker
## 3301 Time Crisis 3
## 3302 Cabela's Monster Buck Hunter
## 3303 Ganbaru Watashi no Kakei Diary
## 3304 pro evolution soccer 2011
## 3305 New Play Control! Donkey Kong Jungle Beat
## 3306 Small Soldiers
## 3307 Yakuza: Dead Souls
## 3308 Littlest Pet Shop: Garden
## 3309 Half-Life 2
## 3310 Duke Nukem: Total Meltdown
## 3311 Pac-Man Party
## 3312 Jak and Daxter: The Lost Frontier
## 3313 Major League Baseball 2K8
## 3314 SimCity DS
## 3315 Major League Baseball 2K9
## 3316 Petz: Dogz Pack
## 3317 Split/Second
## 3318 Final Fantasy IV Advance
## 3319 Madden NFL 2003
## 3320 Tomb Raider Chronicles
## 3321 Harry Potter and the Goblet of Fire
## 3322 Dragon Ball Z: Buu's Fury
## 3323 Madden NFL 2002
## 3324 Guitar Hero: Smash Hits
## 3325 Disney TH!NK Fast: The Ultimate Trivia Showdown
## 3326 Spider-Man: Mysterio's Menace
## 3327 Madden NFL 2000
## 3328 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3329 Game & Watch Gallery 4
## 3330 Littlest Pet Shop: Jungle
## 3331 Naruto: Ultimate Ninja
## 3332 Fighters Uncaged
## 3333 Call of Juarez: Bound in Blood
## 3334 New Play Control! Pikmin 2
## 3335 Tony Hawk's Underground
## 3336 Hot Shots Golf: World Invitational
## 3337 Monster Trucks
## 3338 Shadow The Hedgehog
## 3339 Wave Race: Blue Storm
## 3340 Backyard Wrestling: Don't Try This at Home
## 3341 Fight Night Round 2
## 3342 MonHun Nikki: Poka Poka Ailu Mura
## 3343 The Golden Compass
## 3344 NBA 2K8
## 3345 Phineas and Ferb: Across the 2nd Dimension
## 3346 Disney Infinity
## 3347 The Golden Compass
## 3348 WarioWare D.I.Y.
## 3349 Tony Hawk: RIDE
## 3350 LEGO Jurassic World
## 3351 Alice: Madness Returns
## 3352 LEGO The Hobbit
## 3353 Suikoden
## 3354 Secret Agent Clank
## 3355 Rayman Arena
## 3356 Avatar: The Game
## 3357 Jaws Unleashed
## 3358 Puyo Puyo Sun
## 3359 Half-Life
## 3360 Tomb Raider (2013)
## 3361 Mickey's Speedway USA
## 3362 International Superstar Soccer 64
## 3363 Skylanders SWAP Force
## 3364 NASCAR Heat 2002
## 3365 Disney Sing It! High School Musical 3: Senior Year
## 3366 From TV Animation One Piece: Grand Battle 2
## 3367 BeatMania Append 3rdMix
## 3368 PGR3 - Project Gotham Racing 3
## 3369 XCOM: Enemy Unknown
## 3370 Blur
## 3371 Xena: Warrior Princess
## 3372 Scribblenauts: Unlimited
## 3373 Front Mission
## 3374 NHL 11
## 3375 Kinect Rush: A Disney Pixar Adventure
## 3376 Monopoly
## 3377 Disney Infinity 2.0: Marvel Super Heroes
## 3378 Major League Baseball 2K7
## 3379 Asphalt: Urban GT
## 3380 The Fight: Lights Out
## 3381 Dai-2-Ji Super Robot Taisen α
## 3382 Pokemon Trozei!
## 3383 Dead Space
## 3384 Hot Wheels: Stunt Track Challenge
## 3385 Rayman Origins
## 3386 London 2012: The Official Video Game of the Olympic Games
## 3387 Beijing 2008
## 3388 Dai-3-Ji Super Robot Taisen α: Shuuen no Ginga e
## 3389 Jeopardy!
## 3390 Jikkyou Powerful Pro Yakyuu '97 Kaimakuban
## 3391 Assassin's Creed: Brotherhood
## 3392 CyberTiger
## 3393 Jampack Fall 2001
## 3394 Medal of Honor: Frontline
## 3395 Final Fantasy: The 4 Heroes of Light
## 3396 Iron Man
## 3397 Kane & Lynch 2: Dog Days
## 3398 NFL Blitz 2001
## 3399 Total War: Shogun 2
## 3400 Jikkyou Powerful Pro Yakyuu '98 Kaimakuban
## 3401 Rock Band 2
## 3402 Yakuza 5
## 3403 LEGO Indiana Jones 2: The Adventure Continues
## 3404 BurgerTime
## 3405 Naruto: The Broken Bond
## 3406 2002 FIFA World Cup
## 3407 MVP Baseball 2004
## 3408 Crash Bandicoot: The Wrath of Cortex
## 3409 Smurf: Rescue In Gargamel's Castle
## 3410 Spelling Challenges and more!
## 3411 Go Diego Go! Great Dinosaur Rescue
## 3412 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3413 Extreme-G
## 3414 Ready 2 Rumble Boxing
## 3415 Payday 2
## 3416 Dead or Alive Xtreme Beach Volleyball
## 3417 Tales of Rebirth
## 3418 SoulCalibur V
## 3419 NHL 12
## 3420 Tales of Zestiria
## 3421 Silent Hill: Shattered Memories
## 3422 Madden NFL 06
## 3423 Skate it
## 3424 Game Party in Motion
## 3425 Barbie: Race & Ride
## 3426 Lost: Via Domus
## 3427 Mega Man Anniversary Collection
## 3428 Final Fantasy Anniversary Edition
## 3429 Dark Souls II
## 3430 Ben 10: Alien Force
## 3431 Deus Ex: Human Revolution
## 3432 Zumba Fitness
## 3433 Harvest Moon: Friends of Mineral Town
## 3434 Backyard NBA Basketball
## 3435 FIFA Soccer 10
## 3436 Kirby's Dream Course
## 3437 Doom 3 BFG Edition
## 3438 Mega Man X7
## 3439 Top Spin 3
## 3440 Petz Dogz 2
## 3441 SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3442 The Conduit
## 3443 Just Dance 2016
## 3444 Tokimeki Memorial: Forever with You
## 3445 Diablo
## 3446 Cabela's Dangerous Hunts 2011
## 3447 NHL 15
## 3448 Q*bert
## 3449 Romancing SaGa
## 3450 The Lord of the Rings: The Third Age
## 3451 Harvest Moon: Sunshine Islands
## 3452 Trivial Pursuit
## 3453 The Legend of Spyro: Dawn of the Dragon
## 3454 The Sims 3: World Adventures
## 3455 Kinect Sports Rivals
## 3456 Rayman Origins
## 3457 WWE 2K16
## 3458 Titanfall
## 3459 NCAA Football 09
## 3460 Tom Clancy's HAWX
## 3461 Sammy Sosa High Heat Baseball 2001
## 3462 Frozen: Olaf's Quest
## 3463 Terminator 3: Rise of the Machines
## 3464 Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 3465 Harvest Moon: The Tale of Two Towns
## 3466 FIFA: Road to World Cup 98
## 3467 World Cup 98
## 3468 International Superstar Soccer '98
## 3469 NASCAR: Dirt to Daytona
## 3470 Unreal Tournament
## 3471 Digimon World 2
## 3472 Tales of Phantasia
## 3473 Prince of Persia: The Two Thrones
## 3474 Xenosaga Episode II: Jenseits von Gut und Böse
## 3475 Gex: Enter the Gecko
## 3476 Shrek 2: Beg for Mercy
## 3477 Mega Man Star Force 2: Zerker x Ninja / Saurian
## 3478 JoJo's Bizarre Adventure: All Star Battle
## 3479 Petz Nursery
## 3480 Contra: Shattered Soldier
## 3481 Championship Motocross featuring Ricky Carmichael
## 3482 Dragon Ball Z: Chou Saiya Densetsu
## 3483 NBA 2K7
## 3484 WWE 2K16
## 3485 Phoenix Wright: Ace Attorney - Justice for All
## 3486 Fire Emblem: Seisen no Keifu
## 3487 Rock Band 3
## 3488 Disgaea 4: A Promise Unforgotten
## 3489 BlazBlue: Calamity Trigger
## 3490 Tenchu 2: Birth of the Stealth Assassins
## 3491 Tony Hawk's Pro Skater 4
## 3492 MLB 11: The Show
## 3493 Naruto: Uzumaki Chronicles 2
## 3494 NHL 06
## 3495 NHL 10
## 3496 Rooms: The Main Building
## 3497 Rapala: We Fish
## 3498 Parasite Eve II
## 3499 Tetris Party Deluxe
## 3500 NFL Blitz 2000
## 3501 Ratchet & Clank: Quest for Booty
## 3502 Madden NFL 2002
## 3503 NCAA Football 10
## 3504 Top Spin 3
## 3505 Shin Megami Tensei IV
## 3506 Theme Park
## 3507 Blacksite: Area 51
## 3508 Spider-Man 3
## 3509 ATV Offroad Fury: Blazin' Trails
## 3510 Far Cry Instincts
## 3511 Hasbro Family Game Night
## 3512 Tony Hawk's Pro Skater 4
## 3513 Up
## 3514 Tales of the Abyss
## 3515 Disney Universe
## 3516 Iron Man
## 3517 Mobile Suit Gundam: Giren no Yabou- Zeon no Keifu
## 3518 Spyro Orange: The Cortex Conspiracy
## 3519 Enslaved: Odyssey to the West
## 3520 SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3521 Beyond The Beyond
## 3522 Ben 10: Alien Force
## 3523 Tomb Raider: Anniversary
## 3524 Warhammer 40,000: Space Marine
## 3525 Madden NFL 06
## 3526 No More Heroes
## 3527 Assassin's Creed II
## 3528 Petz Wild Animals: Tigerz
## 3529 Naruto: Ultimate Ninja 2
## 3530 Defiance
## 3531 Dogz
## 3532 3D Dot Game Heroes
## 3533 The Mysterious Murasame Castle
## 3534 NBA Hangtime
## 3535 Jillian Michaels Fitness Ultimatum 2010
## 3536 Pro Evolution Soccer 2012
## 3537 Grease
## 3538 Blood Wake
## 3539 Dynasty Warriors 5: Xtreme Legends
## 3540 Skylanders: Spyro's Adventure
## 3541 Dora The Explorer: Dora Saves the Snow Princess
## 3542 Jampack Summer 2002
## 3543 FIFA World Cup Germany 2006
## 3544 Wreckless: ThE YaKuza MisSiOns
## 3545 Super Bomberman
## 3546 SpongeBob SquarePants: Battle for Bikini Bottom
## 3547 Spec Ops: The Line
## 3548 SD Gundam G Generation Neo
## 3549 Bratz 4 Real
## 3550 RalliSport Challenge
## 3551 Resident Evil Outbreak File #2
## 3552 Bob the Builder: Can We Fix It?
## 3553 XIII
## 3554 NHL 14
## 3555 LEGO Rock Band
## 3556 Bolt
## 3557 Top Spin 3
## 3558 Tom Clancy's HAWX
## 3559 LEGO Dimensions
## 3560 Breath of Fire IV
## 3561 True Crime: Streets of LA
## 3562 Odin Sphere
## 3563 Donkey Kong Jungle Climber
## 3564 The Incredible Hulk
## 3565 Ms. Pac-Man Maze Madness
## 3566 Arena Football
## 3567 The Lord of the Rings: The Return of the King
## 3568 NHL Hitz 20-02
## 3569 Classic NES Series: Dr. Mario
## 3570 The Sims: Bustin' Out
## 3571 NCAA March Madness 07
## 3572 Monsters, Inc. Scream Team
## 3573 Harry Potter Collection
## 3574 Tony Hawk's Project 8
## 3575 Yu-Gi-Oh! World Championship Tournament 2004
## 3576 Cabela's Big Game Hunter 2005 Adventures
## 3577 Hotel Dusk: Room 215
## 3578 Knockout Kings 2001
## 3579 Army Men: Sarge's Heroes
## 3580 Phineas and Ferb: Across the 2nd Dimension
## 3581 Petz Dogz 2
## 3582 Battlefield 2: Modern Combat
## 3583 Wolfenstein
## 3584 All-Star Baseball 2002
## 3585 Backyard NFL Football
## 3586 Need for Speed: Most Wanted
## 3587 NASCAR Rumble
## 3588 Tony Hawk: Shred
## 3589 Tony Hawk's Proving Ground
## 3590 WWE Raw 2
## 3591 Resident Evil 2
## 3592 Mega Man X2
## 3593 Manhunt 2
## 3594 Xenoblade Chronicles
## 3595 Fullmetal Alchemist and the Broken Angel
## 3596 Monster High: Ghoul Spirit
## 3597 Final Fantasy IV: The Complete Collection
## 3598 Frontlines: Fuel of War
## 3599 Lips: Number One Hits
## 3600 Hamtaro: Ham-Hams Unite!
## 3601 Batman Begins
## 3602 Viva Pinata: Pocket Paradise
## 3603 Dr. Seuss' The Cat in the Hat
## 3604 Barbie Groovy Games
## 3605 Yu-Gi-Oh! Reshef of Destruction
## 3606 Blinx: The Time Sweeper
## 3607 Madagascar: Escape 2 Africa
## 3608 Archer Maclean's Mercury
## 3609 ESPN NFL Football
## 3610 Fatal Fury Special
## 3611 Catz
## 3612 Major League Baseball 2K5
## 3613 DS Bimoji Training
## 3614 WWE 2K15
## 3615 Petz Catz Clan
## 3616 Soul Sacrifice
## 3617 G-Force
## 3618 Tiger Woods PGA Tour 11
## 3619 Soldier of Fortune: Gold Edition
## 3620 Rune Factory: A Fantasy Harvest Moon
## 3621 Monster Jam: Path of Destruction
## 3622 Rapala Tournament Fishing!
## 3623 MX 2002 Featuring Ricky Carmichael
## 3624 Purr Pals
## 3625 NCAA Football 07
## 3626 God of War: Origins Collection
## 3627 MX vs. ATV: Alive
## 3628 Lunar: Silver Star Story Complete
## 3629 Dragon Ball: XenoVerse
## 3630 NBA Showtime: NBA on NBC
## 3631 ZhuZhu Pets 2: Featuring The Wild Bunch
## 3632 Dragon Age: Inquisition
## 3633 Soul Reaver 2
## 3634 Metal Gear Solid 3: Subsistence
## 3635 Sly Cooper: Thieves in Time
## 3636 The Godfather (old US sales)
## 3637 Daytona USA
## 3638 Harry Potter and the Deathly Hallows - Part 1
## 3639 Tiger Woods PGA Tour 13
## 3640 WWF Raw
## 3641 Shin Super Robot Taisen
## 3642 Jump Super Stars
## 3643 Legends of WrestleMania
## 3644 The Activision Decathlon
## 3645 Simple 1500 Series Vol. 73: The Invaders ~Space Invaders 1500~
## 3646 50 Classic Games
## 3647 Fighting Force 2
## 3648 Sakura Wars
## 3649 Yokai Sangokushi
## 3650 Extermination
## 3651 Batman: Vengeance
## 3652 Unit 13
## 3653 Tatsunoko vs. Capcom: Ultimate All-Stars
## 3654 TMNT
## 3655 F.E.A.R.
## 3656 Secret Agent Clank(US sales)
## 3657 Assassin's Creed: Unity
## 3658 Derby Stallion 04
## 3659 NBA 2K8
## 3660 Barbie Horse Adventures: Riding Camp
## 3661 CrossworDS
## 3662 Tony Hawk's Pro Skater 3
## 3663 Mega Man Zero
## 3664 Contender 2
## 3665 The Amazing Spider-Man 2 (2014)
## 3666 Star Wars: Dark Forces
## 3667 SD Gundam G Generation Zero
## 3668 Super Robot Taisen F
## 3669 Shrek 2
## 3670 Soccer Tsuku 2002: J-League Pro Soccer Club o Tsukurou!
## 3671 Time Crisis: Razing Storm
## 3672 SpongeBob SquarePants: SuperSponge
## 3673 Super Robot Taisen F Kanketsuhen
## 3674 Enslaved: Odyssey to the West
## 3675 Rune Factory 4
## 3676 Summer Sports: Paradise Island
## 3677 Tak and the Power of Juju
## 3678 Dynasty Warriors: Gundam 3
## 3679 Mortal Kombat 3
## 3680 Turok: Evolution
## 3681 Jak X: Combat Racing
## 3682 Metro 2033
## 3683 Are You Smarter than a 5th Grader? Make the Grade
## 3684 American Idol
## 3685 Top Gun: Fire at Will!
## 3686 Red Dead Revolver
## 3687 Dragon Ball Z: Shin Budokai
## 3688 LEGO The Hobbit
## 3689 Iron Man
## 3690 SingStar Summer Party
## 3691 Tiger Woods PGA Tour 08
## 3692 NBA Live 10
## 3693 The SpongeBob SquarePants Movie
## 3694 FIFA Soccer 07
## 3695 Gekikuukan Pro Yakyuu: At the End of the Century 1999
## 3696 Medarot 2: Kabuto / Kuwagata Version
## 3697 Excite Truck
## 3698 Sacred 2: Fallen Angel
## 3699 System 3 presents Ferrari Challenge Trofeo Pirelli
## 3700 Dance Dance Revolution Ultramix
## 3701 ModNation Racers
## 3702 Crash Tag Team Racing
## 3703 Two Worlds II
## 3704 Sonic & All-Stars Racing Transformed
## 3705 Michael Jackson: The Experience
## 3706 Front Mission 4
## 3707 The Fairly Odd Parents: Breakin' Da Rules
## 3708 LEGO Dimensions
## 3709 Inazuma Eleven
## 3710 Ninokuni: Shikkoku no Madoushi
## 3711 Minecraft: Story Mode
## 3712 Resident Evil: Revelations 2
## 3713 Manhunt 2
## 3714 SRS: Street Racing Syndicate
## 3715 Despicable Me: The Game - Minion Mayhem
## 3716 Def Jam: Fight for NY
## 3717 Action Force
## 3718 Gauntlet Legends
## 3719 FIFA 99
## 3720 Kidou Senshi Gundam: Extreme VS
## 3721 Dragon Ball Z: Ultimate Tenkaichi
## 3722 Tales of Symphonia
## 3723 Bust A Groove
## 3724 Fire Emblem: Path of Radiance
## 3725 Dragon Quest Characters: Torneko no Daibouken 3: Fushigi no Dungeon
## 3726 Let's Draw!
## 3727 Pachi-Slot Aruze Oukoku 2
## 3728 NHL 14
## 3729 Valkyria Chronicles II
## 3730 Middle-Earth: Shadow of Mordor
## 3731 Madden NFL 13
## 3732 Rune Factory 2: A Fantasy Harvest Moon
## 3733 Terminator Salvation
## 3734 Cars 2
## 3735 Bratz: Rock Angelz
## 3736 How to Train Your Dragon
## 3737 SSX Tricky
## 3738 WWE SmackDown vs. Raw 2010
## 3739 Greg Hastings' Tournament Paintball
## 3740 Hello Kitty: Big City Dreams
## 3741 Star Fox Command
## 3742 World Soccer Winning Eleven 7 International (JP version)
## 3743 ESPN NBA Basketball
## 3744 Inazuma Eleven GO
## 3745 Over the Hedge
## 3746 Mat Hoffman's Pro BMX
## 3747 Lego Star Wars: The Force Awakens
## 3748 Epic Mickey 2: The Power of Two
## 3749 Popeye
## 3750 Magician's Quest: Mysterious Times
## 3751 The Hobbit
## 3752 War of the Monsters
## 3753 Tales of Symphonia: Dawn of the New World
## 3754 NBA Street Vol. 2
## 3755 The Incredible Hulk: Ultimate Destruction
## 3756 Star Wars Battlefront (2015)
## 3757 Sakura Taisen 2 - Kimi, Shinitamou Koto Nakare
## 3758 Jewel Master Egypt
## 3759 Time Crisis II
## 3760 Clock Tower
## 3761 NCAA March Madness 06
## 3762 SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3763 Jampack Volume 11
## 3764 Dragon's Crown
## 3765 Tactics Ogre: Let Us Cling Together
## 3766 Legacy of Kain: Defiance
## 3767 SpongeBob SquarePants: Game Boy Advance Video Volume 2
## 3768 NCAA March Madness 2005
## 3769 007 Racing
## 3770 Conflict: Vietnam
## 3771 2 in 1 Combo Pack: Sonic Heroes / Super Monkey Ball Deluxe
## 3772 Mystery Dungeon: Shiren the Wanderer
## 3773 SimAnimals
## 3774 MLB SlugFest 20-04
## 3775 Gex 3: Deep Cover Gecko
## 3776 NASCAR 09
## 3777 Blitz: The League
## 3778 Jampack Vol. 2
## 3779 LEGO Jurassic World
## 3780 Sesame Street: Once Upon A Monster
## 3781 Virtual Soccer
## 3782 Romance of the Three Kingdoms IV: Wall of Fire
## 3783 Winning Post
## 3784 Peter Jackson's King Kong: The Official Game of the Movie
## 3785 SingStar Dance
## 3786 Kirby and the Rainbow Curse
## 3787 Burnout Revenge
## 3788 FIFA 12
## 3789 Medal of Honor: European Assault
## 3790 Batman: Arkham City
## 3791 Ty the Tasmanian Tiger 2: Bush Rescue
## 3792 The Lord of the Rings: The Fellowship of the Ring
## 3793 NBA 06
## 3794 Sonic & All-Stars Racing Transformed
## 3795 Spider-Man
## 3796 We Cheer
## 3797 Tom Clancy's Ghost Recon Advanced Warfighter 2
## 3798 X-Men Legends
## 3799 Alice in Wonderland
## 3800 Littlest Pet Shop 3: Biggest Stars - Blue / Pink / Purple Team
## 3801 Front Mission 2
## 3802 Bulletstorm
## 3803 F.E.A.R. 2: Project Origin
## 3804 Tiger Woods PGA Tour 11
## 3805 Stuntman: Ignition
## 3806 Are You Smarter Than A 5th Grader?
## 3807 F1 2009
## 3808 Oni
## 3809 The Lord of the Rings: The Two Towers
## 3810 Juiced
## 3811 The Warriors
## 3812 Batman: Arkham Origins Blackgate
## 3813 J-League Soccer: Prime Goal 2
## 3814 Go Diego Go! Safari Rescue
## 3815 The Walking Dead: Survival Instinct
## 3816 Picross 3D
## 3817 Just Dance 2015
## 3818 Silent Hill: Origins
## 3819 NASCAR 2000
## 3820 Wayne Gretzky's 3D Hockey
## 3821 Pachi-Slot Aruze Oukoku 4
## 3822 Return to Castle Wolfenstein: Operation Resurrection
## 3823 Mario Tennis: Power Tour
## 3824 Seaman
## 3825 Guinness World Records: The Videogame
## 3826 The Grinch
## 3827 GT Pro Series
## 3828 Tales of Destiny
## 3829 Spectrobes: Beyond the Portals
## 3830 Classic Word Games
## 3831 Naruto Shippuden: Clash of Ninja Revolution 3
## 3832 Fight Night Round 3
## 3833 The Golden Compass
## 3834 Final Fantasy Chronicles
## 3835 NBA Live 08
## 3836 Syphon Filter 3
## 3837 Star Wars Battlefront: Elite Squadron
## 3838 Metal Gear Solid 2: Substance
## 3839 We Love Katamari
## 3840 NCAA Football 2003
## 3841 Way of the Samurai 3
## 3842 NBA Live 09
## 3843 DC Universe Online
## 3844 Ready 2 Rumble Boxing: Round 2
## 3845 Mega Man 6
## 3846 Mission: Impossible
## 3847 Final Fantasy Explorers
## 3848 Rival Schools: United By Fate
## 3849 Bully: Scholarship Edition
## 3850 IL-2 Sturmovik: Birds of Prey
## 3851 PlayStation All-Stars Battle Royale
## 3852 Ratatouille
## 3853 Cars Toon: Mater's Tall Tales
## 3854 Kung Fu Panda
## 3855 Swing Away Golf
## 3856 J-League Pro Soccer Club o Tsukurou! 3
## 3857 Tomb Raider: Legend
## 3858 Ratatouille
## 3859 Freedom Fighters
## 3860 Gun
## 3861 That's So Raven 2: Supernatural Style
## 3862 Lair
## 3863 Madden NFL 07
## 3864 The Punisher
## 3865 Front Mission 3
## 3866 Kenkou Ouen Recipe 1000: DS Kondate Zenshuu
## 3867 SSX On Tour
## 3868 Tony Hawk's Pro Skater 3
## 3869 Harry Potter and the Prisoner of Azkaban
## 3870 Petz: Hamsterz Life 2
## 3871 Omega Boost
## 3872 The Sims 2: Open for Business
## 3873 Iron Man
## 3874 NFL 2K3
## 3875 NBA Live 2002
## 3876 Jampack Winter 2002
## 3877 My Word Coach
## 3878 Way of the Samurai
## 3879 Dragon Age: Origins
## 3880 Naruto Shippuden: Ultimate Ninja Storm 3
## 3881 Fishing Derby
## 3882 Pac-Man Fever
## 3883 The LEGO Movie Videogame
## 3884 The 3rd Birthday
## 3885 Prince of Persia Trilogy
## 3886 International Track & Field
## 3887 100 All-Time Favorites
## 3888 HSX HyperSonic.Xtreme
## 3889 StarCraft II: Legacy of the Void
## 3890 Tiger Woods PGA Tour 13
## 3891 SoulCalibur: Broken Destiny
## 3892 The Saboteur
## 3893 Lords of the Fallen
## 3894 Pro Evolution Soccer 2010
## 3895 Goldeneye 007: Reloaded
## 3896 Jam With the Band
## 3897 Madden NFL 2004
## 3898 Jikkyou Powerful Pro Yakyuu 10
## 3899 Summoner
## 3900 Virtual Pool
## 3901 NBA Live 07
## 3902 Sega Bass Fishing
## 3903 Fire Emblem: Radiant Dawn
## 3904 Dynasty Warriors
## 3905 SpongeBob SquarePants: Lights, Camera, Pants!
## 3906 Dragon Ball: Raging Blast
## 3907 Rugrats: Scavenger Hunt
## 3908 Wrecking Crew
## 3909 International Superstar Soccer 2000 (All region sales)
## 3910 Major League Baseball 2K10
## 3911 Monsters vs. Aliens
## 3912 Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 3913 SpongeBob SquarePants: Creature from the Krusty Krab
## 3914 Lost: Via Domus
## 3915 NBA Live 2004
## 3916 Dai-4-Ji Super Robot Taisen S
## 3917 Disney's Kim Possible: Revenge of Monkey Fist
## 3918 WWE SmackDown vs. RAW 2007
## 3919 Ace Combat Zero: The Belkan War
## 3920 R.U.S.E.
## 3921 Disgaea 3: Absence of Justice
## 3922 Test Drive Unlimited
## 3923 LEGO Dimensions
## 3924 Picross DS
## 3925 Final Fantasy II Anniversary Edition
## 3926 NHL 07
## 3927 Harry Potter and the Half-Blood Prince
## 3928 Quantum Break
## 3929 NBA 2K11
## 3930 World Championship Poker
## 3931 The BIGS
## 3932 Final Fantasy
## 3933 Burnout Revenge
## 3934 Rory McIlroy PGA Tour
## 3935 Euro Truck Simulator
## 3936 Dragon Ball Z: Supersonic Warriors
## 3937 Dishonored
## 3938 Paws & Claws: Dogs & Cats Best Friends
## 3939 NBA Ballers
## 3940 Silent Hill 4: The Room
## 3941 River Raid II
## 3942 Capcom Classics Collection
## 3943 Guitar Hero Live
## 3944 Wolfenstein: The New Order
## 3945 Monopoly Party
## 3946 Hidden Mysteries: Titanic - Secrets of the Fateful Voyage
## 3947 NHL FaceOff 98
## 3948 The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 3949 F1 2012
## 3950 NHL 09
## 3951 Sonic Riders
## 3952 Looney Tunes: Back in Action
## 3953 Wet
## 3954 Midnight Magic
## 3955 Alice: Madness Returns
## 3956 Pro Evolution Soccer 2012
## 3957 Tiger Woods PGA Tour 07
## 3958 Midnight Club II
## 3959 Atelier Rorona: Alchemist of Arland
## 3960 Monster Hunter Freedom 2
## 3961 Dragon Ball Z: Supersonic Warriors 2
## 3962 Avatar: The Last Airbender
## 3963 Blue's Clues: Blue's Big Musical
## 3964 The Mummy Returns
## 3965 Hitman: Blood Money
## 3966 Disney Sing It
## 3967 Chopper Command
## 3968 Activision Anthology
## 3969 Crash: Mind Over Mutant
## 3970 WWE 2K16
## 3971 LEGO The Hobbit
## 3972 Babysitting Mama
## 3973 Boogie
## 3974 Theatrhythm: Final Fantasy
## 3975 Bleach: Soul Resurreccion
## 3976 Madden NFL 07
## 3977 Rugrats in Paris: The Movie
## 3978 Dance Dance Revolution Universe 2
## 3979 Star Wars: Jedi Starfighter
## 3980 Tactics Ogre: The Knight of Lodis
## 3981 Fortune Street
## 3982 Super Robot Taisen MX
## 3983 Alice in Wonderland
## 3984 NBA Street Homecourt
## 3985 Spider-Man 2
## 3986 Bases Loaded '96: Double Header
## 3987 Dead or Alive Ultimate
## 3988 RPG Maker
## 3989 FIFA 14
## 3990 Star Wars: Clone Wars
## 3991 The Saboteur
## 3992 The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 3993 Metal Gear Rising: Revengeance
## 3994 Madden NFL 11
## 3995 Major League Baseball 2K12
## 3996 Alien: Isolation
## 3997 The Price is Right
## 3998 Monster Hunter
## 3999 Cars 2
## 4000 Dreamworks Madagascar Kartz
## 4001 Tony Hawk's Underground 2
## 4002 SplashDown: Rides Gone Wild
## 4003 Super Famista 5
## 4004 Dynasty Warriors: Gundam 2
## 4005 Shrek SuperSlam
## 4006 Rayman Advance
## 4007 Super Robot Taisen Z
## 4008 PoPoLoCrois Monogatari
## 4009 Tomb Raider: Anniversary
## 4010 Fantastic 4
## 4011 Epic Mickey 2: The Power of Two
## 4012 Men in Black II: Alien Escape
## 4013 The Evil Within
## 4014 RealSports Tennis
## 4015 Nicktoons: Attack of the Toybots
## 4016 Raiders of the Lost Ark
## 4017 Gauntlet
## 4018 Ridge Racer 3D
## 4019 Cars Mater-National Championship
## 4020 Ace Combat: Assault Horizon
## 4021 Resident Evil: The Mercenaries 3D
## 4022 Super Monkey Ball 3D
## 4023 Tony Hawk's Project 8
## 4024 Tony Hawk's Underground 2
## 4025 MotorStorm: Apocalypse
## 4026 Ice Hockey
## 4027 Dragon Quest Heroes: The World's Tree Woe and the Blight Below
## 4028 Lego Batman 3: Beyond Gotham
## 4029 The Matrix: Path of Neo
## 4030 Kane & Lynch 2: Dog Days
## 4031 Lollipop Chainsaw
## 4032 WWE Wrestlemania X8
## 4033 Sonic Lost World
## 4034 Power Rangers: Dino Thunder
## 4035 GoldenEye: Rogue Agent
## 4036 Ultimate I Spy
## 4037 SpongeBob SquarePants: Creature from the Krusty Krab
## 4038 The Sims
## 4039 Grandia III
## 4040 FIFA Soccer 09
## 4041 Mobile Suit Gundam Seed Destiny: Rengou vs. Z.A.F.T. II Plus
## 4042 Mario & Wario
## 4043 Scarface: The World is Yours
## 4044 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4045 Pokemon Art Academy
## 4046 FIFA Soccer 64
## 4047 Dragon Ball Z: Burst Limit
## 4048 Bakugan Battle Brawlers: Defenders of the Core
## 4049 Medal of Honor
## 4050 Doom 3 BFG Edition
## 4051 J-League Pro Soccer Club wo Tsukurou! 2
## 4052 Terraria
## 4053 Backyard Baseball
## 4054 WipEout Pulse
## 4055 Barbie Horse Adventures: Wild Horse Rescue
## 4056 Epic Mickey: Power of Illusion
## 4057 LEGO Marvel Super Heroes
## 4058 Taiko no Tatsujin: Appare Sandaime
## 4059 Alone in the Dark
## 4060 One Piece: Grand Battle!
## 4061 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4062 Football Manager Handheld 2009
## 4063 Sniper: Art of Victory
## 4064 Crazy Taxi
## 4065 Spy Hunter 2
## 4066 F1 2014
## 4067 Pac-Man World 2
## 4068 Bass Pro Shops: The Strike
## 4069 Die Hard Trilogy 2: Viva Las Vegas
## 4070 Jake Power: Fireman
## 4071 Asphalt 3D
## 4072 Momotarou Dentetsu X: Kyuushuu-hen mo Arubai
## 4073 Steel Diver
## 4074 Tales of Legendia
## 4075 SimCity 2000
## 4076 Crash of the Titans
## 4077 Far Cry 2
## 4078 Battlefield: Hardline
## 4079 Harry Potter and the Order of the Phoenix
## 4080 Rayman Raving Rabbids: TV Party
## 4081 F.E.A.R. 2: Project Origin
## 4082 Sonic & All-Stars Racing Transformed
## 4083 Scene It? Lights Camera Action
## 4084 Dead Space Extraction
## 4085 Scrabble 2007 Edition
## 4086 Shrek the Third
## 4087 Metal Gear Solid HD Edition
## 4088 Children of Mana
## 4089 Madagascar: Operation Penguin
## 4090 Active Life: Extreme Challenge
## 4091 The Sims 2: Pets
## 4092 Mario Golf: World Tour
## 4093 Need for Speed: Porsche Unleashed
## 4094 Yu-Gi-Oh! Forbidden Memories (JP sales)
## 4095 NFL Street 2
## 4096 Silent Hill: Shattered Memories
## 4097 Millipede
## 4098 The Legend of the Mystical Ninja
## 4099 You're in the Movies
## 4100 Dark Sector
## 4101 James Bond 007: Blood Stone
## 4102 Jeopardy!
## 4103 Destroy All Humans! 2
## 4104 ECW Hardcore Revolution
## 4105 Pinball Hall of Fame: The Williams Collection
## 4106 Tiger Woods PGA Tour 07
## 4107 Wu-Tang: Shaolin Style
## 4108 World of Warcraft: Warlords of Draenor
## 4109 Rock Band Unplugged
## 4110 OkamiDen
## 4111 Crash: Mind Over Mutant
## 4112 2010 FIFA World Cup South Africa
## 4113 Secret Weapons Over Normandy
## 4114 Go Diego Go! Great Dinosaur Rescue
## 4115 All-Star Baseball 99
## 4116 Harvest Moon 64
## 4117 NCAA Football 09
## 4118 Bratz: The Movie
## 4119 FIFA Soccer 13
## 4120 Harvest Moon DS (US sales)
## 4121 Vigilante 8: 2nd Offense
## 4122 Two Worlds II
## 4123 Football Manager 2015
## 4124 Theme Park Roller Coaster
## 4125 Need for Speed: Hot Pursuit
## 4126 Skylanders: SuperChargers
## 4127 Viva Pinata: Trouble in Paradise
## 4128 Nickelodeon Team Umizoomi
## 4129 FlingSmash
## 4130 NFL Xtreme 2
## 4131 Spider-Man 3
## 4132 Midnight Club: Street Racing
## 4133 Dynasty Warriors Gundam
## 4134 Tomb Raider: Underworld
## 4135 Final Fantasy Crystal Chronicles: Echoes of Time
## 4136 Fable
## 4137 Tiger Woods PGA Tour 06
## 4138 FIFA World Cup Germany 2006
## 4139 Up
## 4140 Grand Prix
## 4141 Ford Racing Off Road
## 4142 SimCity Creator
## 4143 World of Outlaws: Sprint Cars 2002
## 4144 Cars: Race-O-Rama
## 4145 Emergency Heroes
## 4146 Sonic the Hedgehog
## 4147 Fantavision
## 4148 Double Dragon
## 4149 Alien Trilogy
## 4150 NBA Live 99
## 4151 Bravely Second: End Layer
## 4152 Karate
## 4153 Dark Sector
## 4154 Unreal Tournament III
## 4155 X-Men: Next Dimension
## 4156 Street Fighter X Tekken
## 4157 The Godfather (JP sales)
## 4158 MySims Racing
## 4159 Hamsterz Life
## 4160 Dragon Age Origins: Awakening
## 4161 Super Puyo Puyo 2
## 4162 Gauntlet Legends
## 4163 Castlevania: Dawn of Sorrow
## 4164 Naruto Shippuden: Ultimate Ninja Storm Revolution
## 4165 Deadpool
## 4166 WipEout
## 4167 ICO
## 4168 Silent Hill: Downpour
## 4169 2014 FIFA World Cup Brazil
## 4170 WWE SmackDown vs. Raw 2011
## 4171 Dragon Quest 25 Shuunen Kinin: Famicom & Super Famicom Dragon Quest I-II-III
## 4172 Victorious Boxers: Ippo's Road to Glory
## 4173 Petz Sports
## 4174 Lego Batman 3: Beyond Gotham
## 4175 Densetsu no Stafi
## 4176 Valkyrie Profile 2: Silmeria
## 4177 Hot Wheels Velocity X
## 4178 Shadowrun
## 4179 FIFA Soccer 13
## 4180 Virtua Tennis 4: World Tour
## 4181 Warhammer 40,000: Dawn of War II
## 4182 Crazy Taxi: Fare Wars
## 4183 Clash of Elementalists
## 4184 Spider-Man 3
## 4185 Disney Infinity 3.0
## 4186 L.A. Rush
## 4187 Bomberman Hero
## 4188 Automobili Lamborghini
## 4189 Quest 64
## 4190 Momotarou Dentetsu V
## 4191 Doom 64
## 4192 Boom Blox Bash Party
## 4193 The Sims 3: Ambitions
## 4194 Dead or Alive 4
## 4195 Commando
## 4196 Rise of Nightmares
## 4197 The Princess and the Frog
## 4198 NBA Ballers: Phenom
## 4199 Need for Speed Carbon
## 4200 Tiger Woods PGA Tour 07
## 4201 NHL 16
## 4202 FIFA 12
## 4203 MTV Music Generator
## 4204 Spider-Man: Friend or Foe
## 4205 Major League Baseball 2K13
## 4206 Super Momotarou Dentetsu DX
## 4207 World Soccer Winning Eleven 8: Liveware Evolution
## 4208 The Sims 3: Outdoor Living Stuff
## 4209 Cars: Race-O-Rama
## 4210 Downhill Domination
## 4211 NHL 15
## 4212 Pirates of the Caribbean: Dead Man's Chest
## 4213 World Series of Poker
## 4214 Inazuma Eleven Go 2: Chrono Stone
## 4215 NHL 97
## 4216 We Sing Encore
## 4217 Kong: The 8th Wonder of the World
## 4218 MX vs. ATV: Alive
## 4219 Mega Man Star Force 3: Black Ace / Red Joker
## 4220 Crayola: Treasure Adventures
## 4221 Godzilla: Save the Earth
## 4222 Dance Dance Revolution: Mario Mix
## 4223 Metal Gear Solid: The Twin Snakes
## 4224 Imagine: Figure Skater (US sales)
## 4225 Mat Hoffman's Pro BMX 2
## 4226 Metal Gear Solid: The Essential Collection
## 4227 The Legend of Spyro: Dawn of the Dragon
## 4228 Iridion 3D
## 4229 MX vs. ATV Untamed
## 4230 Classic NES Series: Pac-Man
## 4231 Destroy All Humans!
## 4232 Dragon Ball Z: Collectible Card Game
## 4233 Circus Atari
## 4234 Country Dance 2
## 4235 Razor Freestyle Scooter
## 4236 Crash of the Titans
## 4237 F.E.A.R. 3
## 4238 Disney's Kim Possible 3: Team Possible
## 4239 Rygar: The Legendary Adventure
## 4240 Syphon Filter: Logan's Shadow
## 4241 Super Batter Up
## 4242 Kessen II
## 4243 Crayon Shin-Chan: Arashi o Yobu Enji
## 4244 Stuart Little 2
## 4245 Wolfenstein: The New Order
## 4246 Warhammer 40,000: Space Marine
## 4247 Tak 2: The Staff of Dreams
## 4248 Art Academy: Lessons for Everyone
## 4249 Sid Meier's Civilization Revolution
## 4250 ATV Offroad Fury Pro
## 4251 Dora The Explorer: Dora Saves the Snow Princess
## 4252 SingStar Amped
## 4253 Brothers In Arms: Earned in Blood
## 4254 Walk it Out!
## 4255 Transformers: Dark of the Moon - Autobots/Decepticons
## 4256 Dragon Ball Z: Sagas
## 4257 Scooby-Doo
## 4258 The Legend of Spyro: Dawn of the Dragon
## 4259 Hydro Thunder
## 4260 Brothers In Arms: D-Day
## 4261 American Girl: Kit Mystery Challenge!
## 4262 Mario & Sonic at the Rio 2016 Olympic Games
## 4263 NHL FaceOff '97
## 4264 Deadpool
## 4265 Brothers In Arms: Road to Hill 30
## 4266 Virtua Tennis 4
## 4267 EA Sports UFC
## 4268 Gremlins
## 4269 The Mark of Kri
## 4270 Jampack Winter 2003 (RP-M)
## 4271 Rugrats: Castle Capers
## 4272 Crash Nitro Kart
## 4273 Star Wars The Clone Wars: Republic Heroes
## 4274 Farming Simulator 2015
## 4275 Bleach: The Blade of Fate
## 4276 Madden NFL 12
## 4277 LEGO Rock Band
## 4278 Mad Max (2015)
## 4279 Barbie: Jet, Set & Style!
## 4280 Jak and Daxter: The Lost Frontier
## 4281 Momotarou Dentetsu 11
## 4282 Command & Conquer: Red Alert 3
## 4283 Tomb Raider: Legend
## 4284 Skylanders: SuperChargers
## 4285 The Golden Compass
## 4286 Star Wars: Demolition
## 4287 Scooby-Doo! and the Spooky Swamp
## 4288 Sword Art Online: Lost Song
## 4289 Bloody Roar II
## 4290 Delta Force: Black Hawk Down
## 4291 Burnout Dominator
## 4292 NBA Live 07
## 4293 Vin Diesel: Wheelman
## 4294 Space Invaders
## 4295 .hack//Outbreak Part 3
## 4296 Rayman Legends
## 4297 Mother 1+2
## 4298 Hyperdimension Neptunia
## 4299 iCarly
## 4300 Puzzle & Dragons Z + Super Mario Bros. Edition
## 4301 Harry Potter and the Deathly Hallows - Part 1
## 4302 Top Spin
## 4303 Disney Guilty Party
## 4304 Warhawk
## 4305 Pirates of the Caribbean: At World's End
## 4306 Red Faction: Armageddon
## 4307 DanceStar Party
## 4308 Persona 4: Dancing All Night
## 4309 Tales of Vesperia
## 4310 Thief (2014)
## 4311 Dynasty Warriors: Strikeforce
## 4312 2 Games in 1: SpongeBob SquarePants: SuperSponge & Rugrats Go Wild
## 4313 Tales of Hearts
## 4314 Missile Command
## 4315 Lego Batman 3: Beyond Gotham
## 4316 Barbie as The Island Princess
## 4317 Jikkyou Powerful Pro Yakyuu 3
## 4318 The Walking Dead: Season One
## 4319 Jikkyou Powerful Pro Yakyuu 12
## 4320 Enter the Matrix
## 4321 Crash: Mind Over Mutant
## 4322 NASCAR 2005: Chase for the Cup
## 4323 J-League Excite Stage '95
## 4324 The New York Times Crosswords
## 4325 Phantasy Star Online Episode I & II
## 4326 Moshi Monsters: Moshlings Theme Park
## 4327 The Powerpuff Girls: Relish Rampage
## 4328 Resistance: Burning Skies
## 4329 NBA 2K13
## 4330 Dead or Alive: Dimensions
## 4331 The Chronicles of Riddick: Escape from Butcher Bay
## 4332 Brain Challenge
## 4333 NFL Head Coach
## 4334 Watch Dogs
## 4335 Karaoke Revolution Presents American Idol Encore
## 4336 Major League Baseball 2K11
## 4337 Enemy Territory: Quake Wars
## 4338 Ghostbusters
## 4339 NCAA Gamebreaker 99
## 4340 Area 51
## 4341 World Stadium 2
## 4342 Sega Rally Revo
## 4343 NHL 2005
## 4344 TNA iMPACT!
## 4345 Star Wars Jedi Knight: Jedi Academy
## 4346 Thrillville: Off the Rails
## 4347 Phoenix
## 4348 Spider-Man: Shattered Dimensions
## 4349 F.E.A.R. 3
## 4350 My Fashion Studio
## 4351 Plants vs. Zombies: Garden Warfare 2
## 4352 Rock Band Country Track Pack
## 4353 Pro Evolution Soccer 2016
## 4354 Apocalypse
## 4355 Transformers: Revenge of the Fallen (Wii & PS2 Version)
## 4356 PES 2009: Pro Evolution Soccer
## 4357 Yu-Gi-Oh! Destiny Board Traveler
## 4358 SingStar Queen
## 4359 God Eater 2
## 4360 Samurai Warriors 3
## 4361 World Soccer Winning Eleven 5 Final Evolution
## 4362 One Piece: Pirate Warriors 3
## 4363 Sphinx and the Cursed Mummy
## 4364 Fatal Fury 2
## 4365 Rampage World Tour
## 4366 Pokemon Puzzle League
## 4367 Eternal Sonata
## 4368 Dance Dance Revolution: Hottest Party 3
## 4369 FIFA 15
## 4370 Petz: Catz 2
## 4371 Bee Movie Game
## 4372 Tekken Advance
## 4373 Shin Megami Tensei: Persona 3
## 4374 Persona
## 4375 Band Hero
## 4376 Naruto Shippuden: Ultimate Ninja Storm Generations
## 4377 Hot Wheels: Stunt Track Challenge
## 4378 Viking: Battle for Asgard
## 4379 Maze Craze: A Game of Cops 'n Robbers
## 4380 Mobile Suit Gundam
## 4381 Silent Hill: Homecoming
## 4382 SingStar Take That
## 4383 SOCOM: U.S. Navy SEALs Fireteam Bravo 3
## 4384 Final Fantasy Collection
## 4385 Disney Sing It! High School Musical 3: Senior Year
## 4386 NBA Live 10
## 4387 Samurai Warriors: Xtreme Legends
## 4388 Tony Hawk's Proving Ground
## 4389 NHL FaceOff
## 4390 WWE WrestleMania 21
## 4391 Brunswick Pro Bowling
## 4392 Worms: Open Warfare 2
## 4393 NBA Live 2005
## 4394 Defender II
## 4395 WWE Day of Reckoning
## 4396 Dragon Quest Heroes: Rocket Slime
## 4397 ATV Quad Power Racing 2
## 4398 Walt Disney World Quest: Magical Racing Tour
## 4399 Sled Storm
## 4400 Vandal Hearts
## 4401 Mario Tennis Ultra Smash
## 4402 Celebrity Sports Showdown
## 4403 Jawbreaker
## 4404 Scooby-Doo! Mystery Mayhem
## 4405 Mario Golf: Advance Tour
## 4406 Crash: Mind Over Mutant
## 4407 Karaoke Revolution
## 4408 Discovery Kids: Kitten Corner
## 4409 Just Dance 2014
## 4410 Yu-Gi-Oh! Capsule Monster Coliseum
## 4411 Payday 2
## 4412 Major League Baseball 2K6
## 4413 Jampack Volume 13 (RP-M)
## 4414 World Soccer Winning Eleven 9
## 4415 NBA Live 2000
## 4416 Teenage Mutant Ninja Turtles 2: Battle Nexus
## 4417 SpongeBob SquarePants: Lights, Camera, Pants!
## 4418 Disney Infinity 3.0
## 4419 TouchMaster 3
## 4420 The Thing
## 4421 Disney Infinity 3.0
## 4422 Van Helsing
## 4423 X-Men Legends II: Rise of Apocalypse
## 4424 Food Network: Cook or Be Cooked
## 4425 Transformers: Fall of Cybertron
## 4426 Metro: Last Light
## 4427 The Urbz: Sims in the City (all regions sales)
## 4428 Spawn: Armageddon
## 4429 The Godfather (US sales)
## 4430 DmC: Devil May Cry
## 4431 Plants vs. Zombies: Garden Warfare 2
## 4432 World Stadium EX
## 4433 Tiger Woods PGA Tour 2003
## 4434 Battlefield 2: Modern Combat
## 4435 G-Force
## 4436 Ben 10 Alien Force: Vilgax Attacks
## 4437 50 Cent: Bulletproof
## 4438 Densetsu no Stafi 2
## 4439 Independence Day
## 4440 Need for Speed: Shift 2 Unleashed
## 4441 Chocobo Racing
## 4442 Ninja Gaiden 3
## 4443 Child of Eden
## 4444 LEGO Star Wars II: The Original Trilogy
## 4445 Family Fest Presents Circus Games
## 4446 My Spanish Coach
## 4447 The Darkness
## 4448 Gundam SEED: Federation vs. Z.A.F.T.
## 4449 Ms. Pac-Man Maze Madness
## 4450 Blood Omen: Legacy of Kain
## 4451 Super Bomberman 4
## 4452 Bomberman II
## 4453 Duke Nukem 64
## 4454 Sin and Punishment: Star Successor
## 4455 Jump Start Pet Rescue
## 4456 Naughty Bear
## 4457 SpongeBob SquarePants: Lights, Camera, Pants!
## 4458 Super Robot Taisen OG: Original Generations
## 4459 Army Men World War: Final Front
## 4460 Petz: Horsez 2
## 4461 Puppy Luv: Spa and Resort
## 4462 Yu-Gi-Oh! 5D's Tag Force 4
## 4463 MX Unleashed
## 4464 Jikkyou Powerful Pro Yakyuu 9
## 4465 Grind Session
## 4466 Naruto: Gekito Ninja Taisen! 3
## 4467 Barbie: Groom and Glam Pups
## 4468 Wario World
## 4469 Scooby-Doo! Mystery Mayhem
## 4470 Super Breakout
## 4471 Taiko no Tatsujin: Doki! Shinkyoku Darake no Haru Matsuri
## 4472 Deer Drive
## 4473 Robert Ludlum's The Bourne Conspiracy
## 4474 Just Dance 4
## 4475 TimeSplitters 2
## 4476 Battlebots: Design & Destroy
## 4477 Devil May Cry HD Collection
## 4478 Eternal Darkness: Sanity's Requiem
## 4479 Power Rangers: S.P.D.
## 4480 Naruto: Ultimate Ninja 3
## 4481 SingStar Motown
## 4482 Neon Genesis Evangelion
## 4483 Nicktoons: Attack of the Toybots
## 4484 Mobile Suit Gundam: One Year War
## 4485 Tongari Boushi to Mahou no Otana
## 4486 NFL Blitz 20-03
## 4487 Just Dance: Summer Party
## 4488 SpongeBob's Atlantis SquarePantis
## 4489 Dragon Ball Z: Shin Budokai - Another Road
## 4490 Master of Illusion
## 4491 Star Wars: Jedi Starfighter
## 4492 Remington Great American Bird Hunt
## 4493 Classic NES Series: Metroid
## 4494 Alpha Protocol
## 4495 Tetris Axis
## 4496 Dora the Explorer: Dora Puppy
## 4497 Primal
## 4498 Madden NFL 2002
## 4499 Need for Speed Underground 2
## 4500 007: Quantum of Solace
## 4501 Spec Ops: Covert Assault
## 4502 SSX Tricky
## 4503 Flight Control Rocket
## 4504 FIFA 14
## 4505 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 4506 Trials Fusion
## 4507 Wheel of Fortune
## 4508 NiGHTS into dreams...
## 4509 NCAA Football 2004
## 4510 Overwatch
## 4511 Rock Band 4
## 4512 NBA Jam
## 4513 Bionicle
## 4514 Minecraft
## 4515 MLB 2002
## 4516 Sleeping Dogs
## 4517 TimeSplitters
## 4518 Barnstorming
## 4519 InuYasha: The Secret of the Cursed Mask
## 4520 Rune Factory 3: A Fantasy Harvest Moon
## 4521 The Powerpuff Girls: Him and Seek
## 4522 Mega Man Zero 2
## 4523 Wonder Project J: Kikai no Shonen Pino
## 4524 2010 FIFA World Cup South Africa
## 4525 Atelier Totori: The Adventurer of Arland
## 4526 Spec Ops: The Line
## 4527 The Fairly Odd Parents: Game Boy Advance Video Volume 1
## 4528 Ghostbusters: The Video Game
## 4529 Hunter: The Reckoning Wayward
## 4530 How to Train Your Dragon
## 4531 Command & Conquer 3: Tiberium Wars
## 4532 WipEout 64
## 4533 Mischief Makers
## 4534 Max Payne 3
## 4535 Petz Bunnyz
## 4536 Castlevania: Portrait of Ruin
## 4537 NHL Slapshot
## 4538 EyeToy: AntiGrav
## 4539 FIFA 14
## 4540 EverQuest Online Adventures
## 4541 Cool Boarders
## 4542 999: Nine Hours, Nine Persons, Nine Doors
## 4543 Mobile Suit Gundam: Zeonic Front
## 4544 Zone of the Enders HD Collection
## 4545 Def Jam Icon
## 4546 Tales of the World: Radiant Mythology
## 4547 Monopoly
## 4548 Dawn of Mana
## 4549 Microsoft Flight Simulator X
## 4550 Lego Batman 3: Beyond Gotham
## 4551 Madden NFL 2003
## 4552 NASCAR Kart Racing
## 4553 Disney Sing It
## 4554 Backyard Baseball
## 4555 Call of Duty: Black Ops II
## 4556 TRON: Evolution
## 4557 Midway Arcade Treasures
## 4558 Call of Duty: Modern Warfare: Mobilized
## 4559 Petz: Horsez 2
## 4560 The Smurfs
## 4561 Bakugan: Battle Brawlers
## 4562 NHL FaceOff 99
## 4563 Skylanders: Trap Team
## 4564 SEGA Classics Collection
## 4565 Pirates of the Caribbean: At World's End
## 4566 Juiced: Eliminator
## 4567 Naruto: Ninja Council 3
## 4568 Neon Genesis Evangelion 2nd Impression
## 4569 Dai-2-Ji Super Robot Taisen Z: Hakai-hen
## 4570 NBA Street
## 4571 Ben 10 Alien Force: Vilgax Attacks
## 4572 Ben 10 Alien Force: Vilgax Attacks
## 4573 Valkyrie Profile: Covenant of the Plume
## 4574 The Legend of Spyro: The Eternal Night
## 4575 Mega Man Battle Network
## 4576 LEGO Rock Band
## 4577 25 to Life
## 4578 NHL 2K6
## 4579 Medal of Honor: Rising Sun
## 4580 The Sims
## 4581 Guitar Hero: Smash Hits
## 4582 Dog's Life
## 4583 The X Files
## 4584 Super Wagyan Land
## 4585 Rascal
## 4586 Hometown Story
## 4587 Tony Hawk's American Wasteland
## 4588 Top Spin 4
## 4589 Famicom Mini: Super Mario Bros. 2
## 4590 Crash: Mind Over Mutant
## 4591 Medal of Honor Heroes 2
## 4592 Yu-Gi-Oh! GX: Tag Force 2
## 4593 Colony Wars
## 4594 All-Star Baseball 2004
## 4595 Big Strike Bowling
## 4596 Ragnarok Odyssey
## 4597 Harry Potter and the Deathly Hallows - Part 1
## 4598 Horsez
## 4599 SpongeBob's Truth or Square (US sales)
## 4600 NASCAR Thunder 2002
## 4601 Grandia
## 4602 ESPN NHL 2K5
## 4603 Yu-Gi-Oh! 7 Trials to Glory: World Championship Tournament 2005
## 4604 Hot Wheels World Race
## 4605 Avatar: The Last Airbender - The Burning Earth
## 4606 Superman: Shadow of Apokolips
## 4607 NiGHTS: Journey of Dreams
## 4608 American Chopper
## 4609 Vanquish
## 4610 Star Wars Trilogy: Apprentice of the Force
## 4611 Marvel Super Hero Squad
## 4612 Lemony Snicket's A Series of Unfortunate Events
## 4613 JGTC: All-Japan Grand Touring Car Championship
## 4614 NBA Live 06
## 4615 Arc the Lad III
## 4616 Solitaire Overload
## 4617 Mobile Suit Gundam: Gundam vs. Gundam
## 4618 Test Drive
## 4619 Jikkyou Powerful Pro Yakyuu 11
## 4620 Ghost Trick: Phantom Detective
## 4621 The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 4622 Rush 2: Extreme Racing USA
## 4623 NFL Blitz 2001
## 4624 Dr. Mario 64
## 4625 Jikkyou Powerful Pro Yakyuu 6
## 4626 Army Men: Sarge's Heroes 2
## 4627 James Bond 007: Everything or Nothing
## 4628 Green Day: Rock Band
## 4629 Wolfenstein: The Old Blood
## 4630 MLB 08: The Show
## 4631 Disney Infinity 2.0: Marvel Super Heroes
## 4632 Dance Dance Revolution Ultramix 2
## 4633 Mega Man Anniversary Collection
## 4634 Blazing Angels: Squadrons of WWII
## 4635 Super Famista 4
## 4636 The Fairly Odd Parents: Game Boy Advance Video Volume 2
## 4637 Cabela's Legendary Adventures
## 4638 Taiko no Tatsujin DS: Dororon! Youkai Daikessen!!
## 4639 Harry Potter and the Goblet of Fire
## 4640 JumpStart: Escape from Adventure Island
## 4641 Thrillville: Off the Rails
## 4642 Style Lab: Makeover
## 4643 Condemned: Criminal Origins
## 4644 Mega Man X6
## 4645 Monster Jam: Urban Assault
## 4646 BloodRayne
## 4647 Kumamon Bomber: Puzzle de Kumamon Taisou
## 4648 Castlevania: Curse of Darkness
## 4649 Tom Clancy's HAWX 2
## 4650 Harvest Moon: Grand Bazaar
## 4651 International Superstar Soccer Pro '98
## 4652 Jimmy Neutron: Boy Genius
## 4653 Black
## 4654 Zack & Wiki: Quest for Barbaros' Treasure
## 4655 Double Pack: Finding Nemo / The Incredibles
## 4656 Star Wars The Clone Wars: Republic Heroes
## 4657 NBA 2K11
## 4658 Animal Crossing: Amiibo Festival
## 4659 Hyrule Warriors
## 4660 Harry Potter and the Deathly Hallows - Part 1
## 4661 Fishing Resort
## 4662 WWE All Stars
## 4663 Lord of the Rings: The Third Age
## 4664 Football Manager Handheld 2011
## 4665 Pirates of the Caribbean: At World's End
## 4666 Mega Man Legends 2
## 4667 X-Men vs. Street Fighter
## 4668 High Rollers Casino
## 4669 Castlevania: The Dracula X Chronicles
## 4670 The Suffering
## 4671 Cyber Troopers Virtual-On
## 4672 Katamari Forever
## 4673 Star Wars Starfighter: Special Edition
## 4674 TimeShift
## 4675 NBA Jam
## 4676 Zone of the Enders: The 2nd Runner
## 4677 Ghostbusters: The Video Game
## 4678 Attack on Titan: Humanity in Chains
## 4679 Jampack Spring 2004 (RP-T)
## 4680 Dexter's Laboratory Deesaster Strikes
## 4681 NFL GameDay 2004
## 4682 Scooby-Doo and the Cyber Chase
## 4683 Danganronpa: Trigger Happy Havoc
## 4684 TERA
## 4685 Tomb Raider: The Last Revelation
## 4686 pro evolution soccer 2011
## 4687 Sega Rally Championship 2
## 4688 Quake II
## 4689 Crash of the Titans
## 4690 BioShock
## 4691 Cars: Mater-National Championship
## 4692 MLB 10: The Show
## 4693 Wheel of Fortune: 2nd Edition
## 4694 Tom Clancy's Rainbow Six: Lockdown
## 4695 Mobile Suit Gundam: Gundam vs. Gundam NEXT PLUS
## 4696 Cool Boarders 2001
## 4697 Grudge Warriors
## 4698 World Soccer Jikkyou Winning Eleven 2000: U-23 Medal heno Chousen
## 4699 Destiny: The Taken King
## 4700 Mobile Suit Gundam
## 4701 Mass Effect Trilogy
## 4702 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4703 Wolfenstein: The New Order
## 4704 James Patterson Women's Murder Club: Games of Passion
## 4705 Farming Simulator 2015
## 4706 Jimmy Neutron: Boy Genius
## 4707 Itadaki Street DS
## 4708 Castlevania: Order of Ecclesia
## 4709 BlazBlue: Continuum Shift
## 4710 X-Men: The Official Game
## 4711 300: March to Glory
## 4712 E0: Enemy Zero
## 4713 Nicktoons: Unite!
## 4714 Six Flags Fun Park
## 4715 Spore Hero
## 4716 Mass Effect Trilogy
## 4717 NASCAR Racing
## 4718 LEGO Jurassic World
## 4719 Monotaro Dentetsu 2010: Sengoku Ishin no Hero Daishuugou! no Maki
## 4720 Up
## 4721 Spider-Man: Web of Shadows
## 4722 Boku no Natsuyasumi 2: Umi no Bouken Hen
## 4723 SpongeBob SquigglePants
## 4724 Cars: Race-O-Rama
## 4725 Fantastic Pets
## 4726 Command & Conquer: Red Alert
## 4727 Star Wars The Clone Wars: Republic Heroes
## 4728 Dig Dug
## 4729 Ogre Battle 64: Person of Lordly Caliber
## 4730 Superman: The New Superman Adventures
## 4731 UEFA Euro 2008 Austria-Switzerland
## 4732 The Terminator: Dawn of Fate
## 4733 The LEGO Movie Videogame
## 4734 Rogue Galaxy: Director's Cut
## 4735 Armored Core
## 4736 Monster Trucks Mayhem
## 4737 Winter Sports 2: The Next Challenge
## 4738 Green Day: Rock Band
## 4739 Densha De Go! 2
## 4740 Transformers: Fall of Cybertron
## 4741 Call of Duty: Advanced Warfare
## 4742 Disney Princess: Enchanting Storybooks
## 4743 Monopoly Streets
## 4744 Band Hero
## 4745 The Wonderful 101
## 4746 No More Heroes 2: Desperate Struggle
## 4747 Battlefield 2: Modern Combat
## 4748 Armored Core 2: Another Age
## 4749 Buzz! Junior: Jungle Party
## 4750 Mortal Kombat: Deadly Alliance
## 4751 Marvel: Ultimate Alliance
## 4752 NBA 2K11
## 4753 AKB1/48: Idol to Koishitara...
## 4754 Pro Pinball
## 4755 '98 Koshien
## 4756 NBA 2K9
## 4757 Yu-Gi-Oh! The Eternal Duelist Soul (JP sales)
## 4758 Speed Racer: The Videogame
## 4759 Naughty Bear
## 4760 Littlest Pet Shop
## 4761 TNA iMPACT!
## 4762 Just Dance Kids 2
## 4763 Duke Nukem Forever
## 4764 Hatsune Miku: Project Diva 2nd
## 4765 Marvel: Ultimate Alliance 2
## 4766 Mario no Super Picross
## 4767 Ed, Edd n Eddy: The Mis-Edventures
## 4768 Jikkyou Powerful Pro Yakuu '94
## 4769 Disney's Tarzan Untamed
## 4770 Borderlands: The Handsome Collection
## 4771 The Gunstringer
## 4772 Knockout Kings 2001
## 4773 From Russia With Love
## 4774 FIFA Soccer 13
## 4775 Asura's Wrath
## 4776 Avatar: The Game
## 4777 My Virtual Tutor: Reading Adventure First to Second Grade
## 4778 Minority Report: Everybody Runs
## 4779 Disney's Hercules / Disney's The Jungle Book: Groove Party / A Bug's Life
## 4780 NFL GameDay 2002
## 4781 Pengo
## 4782 Disney Sing It! High School Musical 3: Senior Year
## 4783 Story of Seasons
## 4784 Beowulf: The Game
## 4785 Mouse Trap
## 4786 Super Monkey Ball: Step & Roll
## 4787 Hatsune Miku: Project Diva F 2nd
## 4788 Overlord
## 4789 Tak and the Power of Juju
## 4790 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 4791 Sega Superstars Tennis
## 4792 LEGO Harry Potter: Years 5-7
## 4793 Dragon Quest X
## 4794 Wall-E
## 4795 Medarot: Kabuto / Kuwagata Version
## 4796 NBA 2K10
## 4797 Defender
## 4798 NFL GameDay 2003
## 4799 WipeOut 3 The Game
## 4800 Taiko no Tatsujin Wii: Dodon to 2 Yome!
## 4801 Thief (2014)
## 4802 Congo Bongo
## 4803 Gauntlet: Seven Sorrows
## 4804 Harry Potter: Quidditch World Cup
## 4805 Advance Wars: Dual Strike
## 4806 Yu-Gi-Oh! 5D's Stardust Accelerator: World Championship 2009
## 4807 Warriors Orochi 2 (JP sales)
## 4808 WWE SmackDown! vs. RAW 2006
## 4809 The Chronicles of Narnia: Prince Caspian
## 4810 The Incredibles: Rise of the Underminer
## 4811 Pet in TV
## 4812 Battalion Wars
## 4813 NBA ShootOut 2000
## 4814 Power Rangers: Dino Thunder
## 4815 Rocksmith 2014
## 4816 Samurai Shodown
## 4817 NHL 15
## 4818 TMNT
## 4819 Final Fantasy Crystal Chronicles: The Crystal Bearers
## 4820 Cabela's Big Game Hunter 2010
## 4821 EA Sports UFC 2
## 4822 Fighting Vipers
## 4823 NCAA GameBreaker 2000
## 4824 Iron Man 2
## 4825 The Legend of Spyro: Dawn of the Dragon
## 4826 AKB1/48: Idol to Guam de Koishitara...
## 4827 RR64: Ridge Racer 64
## 4828 Top Gear Rally
## 4829 NFL Quarterback Club 2000
## 4830 Mortal Kombat Mythologies: Sub-Zero
## 4831 18 Wheeler: American Pro Trucker
## 4832 Atari Anthology
## 4833 Bugs Bunny: Lost in Time
## 4834 NBA Jam
## 4835 Sherlock Holmes: The Mystery of the Mummy
## 4836 Hot Wheels: Beat That!
## 4837 MLB 2006
## 4838 Star Wars The Clone Wars: Republic Heroes
## 4839 Brunswick Pro Bowling
## 4840 Mafia II
## 4841 Rocket Power: Dream Scheme
## 4842 SpongeBob's Truth or Square (US sales)
## 4843 MX vs. ATV Unleashed
## 4844 Rampage: Total Destruction
## 4845 Planet 51
## 4846 The Urbz: Sims in the City
## 4847 Road Rash: Jailbreak
## 4848 Mother 3
## 4849 Nicktoons: Freeze Frame Frenzy
## 4850 Diner Dash: Sizzle & Serve
## 4851 Rapala Pro Bass Fishing 2010
## 4852 Legends of WrestleMania
## 4853 Wii Sports Club
## 4854 Tomb Raider: Anniversary
## 4855 You Don't Know Jack
## 4856 Mystery Dungeon: Shiren the Wanderer
## 4857 Sonic Lost World
## 4858 Condemned 2: Bloodshot
## 4859 Silent Hill: Homecoming
## 4860 Star Wars: Clone Wars
## 4861 NBA Live 2002
## 4862 Boku no Natsuyasumi
## 4863 Armored Core V
## 4864 I-Ninja
## 4865 Command & Conquer
## 4866 Harvest Moon: Save the Homeland
## 4867 NBA Jam
## 4868 Mass Effect 2
## 4869 SD Gundam G Generation Seed
## 4870 Call of Duty: Finest Hour
## 4871 Scooby-Doo! and the Spooky Swamp
## 4872 Naruto: Path of the Ninja
## 4873 Rise of the Tomb Raider
## 4874 Hitman: Blood Money
## 4875 Tales of Phantasia
## 4876 Alpha Protocol
## 4877 Suzuki TT Superbikes
## 4878 Rumble Roses
## 4879 Just Dance 2014
## 4880 Fantastic Four: Rise of the Silver Surfer
## 4881 Ultimate Spider-Man
## 4882 GRID 2
## 4883 LEGO The Lord of the Rings
## 4884 Juiced 2: Hot Import Nights
## 4885 Skylanders: SuperChargers
## 4886 NHL 99
## 4887 NBA 2K10
## 4888 Dungeon Siege III
## 4889 Viking: Battle for Asgard
## 4890 Brunswick Pro Bowling
## 4891 Monster Jam: Urban Assault
## 4892 Danball Senki
## 4893 NASCAR Heat
## 4894 Bloody Roar
## 4895 Bump 'n' Jump
## 4896 Mobile Suit Gundam: Lost War Chronicles
## 4897 Disney's Brother Bear
## 4898 Naruto: Clash of Ninja Revolution 2
## 4899 NBA Live 09
## 4900 LEGO Star Wars III: The Clone Wars
## 4901 The House of The Dead III
## 4902 Rune Factory: Frontier
## 4903 Fire Emblem: Fuuin no Tsurugi
## 4904 SpongeBob's Truth or Square (US sales)
## 4905 FIFA 12
## 4906 Ener-G: Gym Rockets
## 4907 The Darkness II
## 4908 NBA Live 09
## 4909 Laser Blast
## 4910 Dancing with the Stars: We Dance!
## 4911 LocoRoco
## 4912 Thrasher Presents: Skate and Destroy
## 4913 Are You Smarter than a 5th Grader? Make the Grade
## 4914 Donkey Konga 2
## 4915 Just Dance 2014
## 4916 Metal Gear Solid: The Legacy Collection
## 4917 Tear Ring Saga Yutona Eiyuu Senki
## 4918 Project X Zone
## 4919 Red Faction: Armageddon
## 4920 Wipeout 2048
## 4921 Need for Speed: Nitro
## 4922 Mystery Case Files: The Malgrave Incident
## 4923 Yoshi Touch & Go
## 4924 EA Sports Active 2
## 4925 Combat of Giants: Dinosaurs 3D
## 4926 Taiko no Tatsujin Wii: Ketteiban
## 4927 Age of Empires III
## 4928 SSX 3
## 4929 MLB 15: The Show
## 4930 Madden NFL 2005
## 4931 All-Star Baseball 2000
## 4932 Custom Robo V2
## 4933 Extreme-G: XG2
## 4934 BattleTanx: Global Assault
## 4935 Robert Ludlum's The Bourne Conspiracy
## 4936 Chibi-Robo! Plug into Adventure!
## 4937 Dawn of Discovery
## 4938 Jampack Winter 2003 (RP-T)
## 4939 Dancing with the Stars: We Dance!
## 4940 Kengo: Master of Bushido
## 4941 Blood Omen 2
## 4942 Sesame Street: Elmo's A-to-Zoo Adventure
## 4943 Skylanders Giants
## 4944 Just Dance 4
## 4945 Super Fire ProWrestling
## 4946 Cabela's Dangerous Hunts 2
## 4947 Marvel: Ultimate Alliance
## 4948 SpongeBob vs The Big One: Beach Party Cook Off
## 4949 MotoGP 08
## 4950 Imagine: Party Babyz
## 4951 Chessmaster
## 4952 Tiger Woods PGA Tour 14
## 4953 Fatal Fury
## 4954 Farming Simulator 2013
## 4955 From TV Animation One Piece: Yume no Lufy Kaizokudan Tanjou!
## 4956 The Dog Island
## 4957 Madden NFL Football
## 4958 The Sims 2
## 4959 Ice Age 2: The Meltdown
## 4960 MLB 14: The Show
## 4961 Super Famista 3
## 4962 Auto Modellista
## 4963 Tom Clancy's Ghost Recon 2: Summit Strike
## 4964 Junior Classic Games
## 4965 Hooked! Again: Real Motion Fishing
## 4966 Tiger Woods PGA Tour 08
## 4967 Karaoke Revolution Presents American Idol Encore
## 4968 Airlock
## 4969 Tokimeki Memorial 2
## 4970 Samurai Warriors Chronicles
## 4971 Tomb Raider: Legend
## 4972 Ice Age: Dawn of the Dinosaurs
## 4973 Dance Party: Pop Hits
## 4974 Harry Potter: Quidditch World Cup
## 4975 Jam Sessions: Sing and Play Guitar (US sales)
## 4976 Saints Row IV
## 4977 Evil Dead: Fistfull of Boomstick
## 4978 One Piece: Unlimited World Red
## 4979 Phantasy Star Ø
## 4980 Triple Play 97
## 4981 Virtua Tennis 2009
## 4982 Super Soccer
## 4983 Shin Megami Tensei: Nocturne
## 4984 Wario Land II (GBC)
## 4985 San Francisco Rush: Extreme Racing
## 4986 Dragon's Crown
## 4987 Bakusou Dekotora Densetsu: Otoko Ippiki Yume Kaidoi
## 4988 Imagine: Salon Stylist
## 4989 ESPN College Hoops 2K5
## 4990 Looney Tunes: Acme Arsenal
## 4991 Cabela's Dangerous Hunts 2009
## 4992 Fragile Dreams: Farewell Ruins of the Moon
## 4993 SD Gundam G Generation Spirits
## 4994 Batman: Arkham City
## 4995 Disney Sing It
## 4996 Peppa Pig: The Game
## 4997 God Eater 2: Rage Burst
## 4998 Get Fit with Mel B
## 4999 The Cat in the Hat
## 5000 Naruto Shippuden: Ultimate Ninja Heroes 3
## 5001 NFL GameDay 2002
## 5002 Turok: Evolution
## 5003 Destiny: The Taken King
## 5004 Tamagotchi Connection: Corner Shop 3
## 5005 Mobile Suit Gundam: Giren no Yabou Zeon Dokuritsu Sensouden
## 5006 Ice Age
## 5007 Sega Superstars Tennis
## 5008 Headhunter
## 5009 Skate
## 5010 Shin Megami Tensei: Devil Summoner
## 5011 Raving Rabbids: Travel in Time 3D
## 5012 NCAA Football 08
## 5013 Marvel Nemesis: Rise of the Imperfects
## 5014 NHL 15
## 5015 ESPN Extreme Games
## 5016 Forza Horizon 3
## 5017 Overlord: Dark Legend
## 5018 Ninja: Shadow of Darkness
## 5019 SD Gundam G Generation-F
## 5020 Bratz: Rock Angelz
## 5021 FlatOut
## 5022 Phoenix Wright: Ace Attorney - Dual Destinies
## 5023 SSX 3
## 5024 NCAA Football 11
## 5025 Tales of Zestiria
## 5026 Lilo & Stitch 2: Hämsterviel Havoc
## 5027 Metal Gear Solid: Snake Eater 3D
## 5028 Risk: Global Domination
## 5029 Elite Beat Agents
## 5030 NBA 2K7
## 5031 Mobile Suit Gundam version 2.0
## 5032 Grandia Xtreme
## 5033 Silent Scope
## 5034 Final Fantasy Adventure
## 5035 Virtua Tennis 2009
## 5036 Dora The Explorer: Dora Saves the Snow Princess
## 5037 The Incredible Hulk
## 5038 Mercenaries 2: World in Flames
## 5039 Cabela's Big Game Hunter 2012
## 5040 EA Sports MMA
## 5041 Iron Man 2
## 5042 DiRT 2
## 5043 Tokimeki Memorial: Forever with You
## 5044 MediEvil II
## 5045 Guitar Hero On Tour: Modern Hits
## 5046 Hunter: The Reckoning
## 5047 MX vs. ATV Untamed
## 5048 Rogue Trip: Vacation 2012
## 5049 Dai-4-Ji Super Robot Taisen
## 5050 Tiger Woods PGA Tour 08
## 5051 Pokemon Channel
## 5052 Taiko no Tatsujin Portable DX
## 5053 Etrian Odyssey IV: Legends of the Titans
## 5054 Moto Racer World Tour
## 5055 NCAA Final Four 2000
## 5056 Scribblenauts: Unlimited
## 5057 FIFA 17
## 5058 Saints Row: The Third
## 5059 Just Dance 2015
## 5060 Madagascar: Escape 2 Africa
## 5061 ZhuZhu Pets: Featuring The Wild Bunch
## 5062 Hangman
## 5063 Petz Rescue: Wildlife Vet
## 5064 Green Day: Rock Band
## 5065 Gravitar
## 5066 Monster Jam: Path of Destruction
## 5067 Toukiden: The Age of Demons
## 5068 EyeToy Play 2
## 5069 Dance Dance Revolution Ultramix 3
## 5070 Mobile Suit Gundam: Extreme VS Full Boost
## 5071 WWE SmackDown vs. Raw 2011
## 5072 Need for Speed: Hot Pursuit
## 5073 The Legend of Spyro: A New Beginning
## 5074 Pro Evolution Soccer 2011 3D
## 5075 Shin Megami Tensei: Devil Survivor Overclocked
## 5076 Dragon Ball Z: Attack of the Saiyans
## 5077 Marvel Super Hero Squad
## 5078 The House of the Dead: Overkill - Extended Cut
## 5079 The Golden Compass
## 5080 Harry Potter and the Prisoner of Azkaban
## 5081 Quake 4
## 5082 Petz Rescue: Ocean Patrol
## 5083 Solaris
## 5084 Puppy Palace
## 5085 Super Dragon Ball Z
## 5086 Paws & Claws: Pampered Pets
## 5087 ESPN: Sports Connection
## 5088 Alien: Isolation
## 5089 Naruto Shippuden: Ninja Destiny 2
## 5090 SAW
## 5091 The Legend of Spyro: The Eternal Night
## 5092 Tobal 2
## 5093 Digging for Dinosaurs
## 5094 Trivial Pursuit
## 5095 Tiger Woods PGA Tour 09
## 5096 Ultimate Spider-Man
## 5097 Life is Strange
## 5098 Kingdom Under Fire: Circle of Doom
## 5099 NBA Inside Drive 2002
## 5100 The BIGS
## 5101 Major League Baseball 2K6
## 5102 Kileak: The DNA Imperative
## 5103 Petz: Catz 2
## 5104 Mini Ninjas
## 5105 Tom Clancy's The Division
## 5106 Phantasy Star Portable 2: Infinity
## 5107 Hell's Kitchen: The Game
## 5108 LEGO Dimensions
## 5109 Monsters, Inc. Scream Arena
## 5110 Reel Fishing III
## 5111 Cabela's Deer Hunt 2005 Season
## 5112 Prince of Persia: The Forgotten Sands
## 5113 Rampage: Total Destruction
## 5114 High Heat Major League Baseball 2003
## 5115 Madden NFL 11
## 5116 Super Formation Soccer 94
## 5117 Panzer Dragoon
## 5118 Tiger Woods PGA Tour 12: The Masters
## 5119 Rage
## 5120 Spider-Man: Friend or Foe
## 5121 Yarudora Series Vol.1: Double Cast
## 5122 Dungeon Siege III
## 5123 Juiced 2: Hot Import Nights
## 5124 Rec Room Games
## 5125 Fushigi no Dungeon: Furai no Shiren 2 - Oni Shuurai! Shiren Shiro!
## 5126 Turok: Rage Wars
## 5127 Scooby-Doo! Classic Creep Capers
## 5128 Dragonfire
## 5129 Custom Robo
## 5130 FIFA Soccer 13
## 5131 Command & Conquer: Red Alert 3 Ultimate Edition
## 5132 Harry Potter and the Order of the Phoenix
## 5133 Medieval II: Total War Gold Edition
## 5134 Pac-Man World 2
## 5135 Kotoba no Puzzle: Mojipittan DS
## 5136 Barbie Horse Adventures: Blue Ribbon Race
## 5137 Bionic Commando
## 5138 Wanted: Weapons of Fate
## 5139 Slime MoriMori Dragon Quest: Shougeki No Shippo Dan
## 5140 Dishonored
## 5141 Marvel: Ultimate Alliance
## 5142 NFL Street 2 Unleashed
## 5143 Super Robot Taisen EX
## 5144 FIFA Street 2
## 5145 Bottom of the 9th
## 5146 Theatrhythm Final Fantasy: Curtain Call
## 5147 Trauma Center: Under the Knife
## 5148 Shin Megami Tensei II
## 5149 Xenosaga Episode III: Also sprach Zarathustra
## 5150 Build-A-Bear Workshop: A Friend Fur All Seasons
## 5151 Sid Meier's Civilization: Beyond Earth
## 5152 Need for Speed: The Run
## 5153 Virtua Fighter 3tb
## 5154 Transformers: Dark of the Moon
## 5155 Mini-Yonku GB: Let's & Go!!
## 5156 Skylanders SWAP Force
## 5157 LEGO Batman 2: DC Super Heroes
## 5158 Rock Band 4
## 5159 Left 4 Dead 2
## 5160 The Sims 2: Castaway
## 5161 NCAA Football 07
## 5162 The Chronicles of Narnia: Prince Caspian
## 5163 NBA Live 2003
## 5164 Dreamworks Madagascar Kartz
## 5165 My Horse & Me
## 5166 GoldenEye: Rogue Agent
## 5167 Zero4 Champ RR
## 5168 Dragon Ball Z: Infinite World
## 5169 Nonomura Byoin no Hitobito
## 5170 Tom Clancy's HAWX 2
## 5171 ESPN X Games Skateboarding
## 5172 Bejeweled 3
## 5173 Resident Evil Zero
## 5174 Super Fire ProWrestling Special
## 5175 Yuu Yuu Hakusho
## 5176 Kamaitachi no Yoru 2
## 5177 High Heat Major League Baseball 2004
## 5178 Robots
## 5179 NARC
## 5180 One Piece: Gigant Battle!
## 5181 Valkyrie Profile: Lenneth
## 5182 Tiger Woods PGA Tour 09
## 5183 Metro: Last Light
## 5184 Tiger Woods PGA Tour 14
## 5185 LocoRoco 2
## 5186 Monster Rancher 3
## 5187 The Incredibles: Rise of the Underminer
## 5188 Spider-Man: Shattered Dimensions
## 5189 BlazBlue: Calamity Trigger
## 5190 MechWarrior 2: 31st Century Combat
## 5191 Earth Defense Force 2025
## 5192 Hamtaro: Ham-Ham Heartbreak
## 5193 Okage: Shadow King
## 5194 Press Your Luck 2010 Edition
## 5195 Mobile Suit Z-Gundam
## 5196 Cubix Robots for Everyone: Clash 'n' Bash
## 5197 Tropico 4
## 5198 Speed Racer: The Videogame
## 5199 NHL 2K10
## 5200 Assassin's Creed III
## 5201 Kirby's Dream Land 3
## 5202 Big Bass World Championship
## 5203 NFL GameDay 2001
## 5204 NBA 2K6
## 5205 Jurassic Park
## 5206 Mystical Ninja starring Goemon
## 5207 Tetrisphere
## 5208 Saban's Power Rangers: Lightspeed Rescue
## 5209 Senran Kagura Shinovi Versus: Sh?jo-tachi no Sh?mei
## 5210 North American Hunting Extravaganza
## 5211 World's Scariest Police Chases
## 5212 Guitar Hero: Smash Hits
## 5213 Shaun Palmer's Pro Snowboarder
## 5214 AMF Bowling World Lanes
## 5215 MechAssault 2: Lone Wolf
## 5216 Middle-Earth: Shadow of Mordor
## 5217 Hamster Club 3
## 5218 Breath of Fire II
## 5219 Call of Duty: Ghosts
## 5220 LEGO Racers
## 5221 NBA 2K12
## 5222 Teenage Mutant Ninja Turtles: Smash-Up
## 5223 Kinectimals: Now with Bears!
## 5224 ESPN NFL Football
## 5225 ATV/Monster Truck Mayhem
## 5226 Naruto: Ultimate Ninja 3 (JP sales)
## 5227 Just Dance 2016
## 5228 Worms: Open Warfare 2
## 5229 Rapala Pro Fishing
## 5230 J-League Pro Soccer Club o Tsukurou '04
## 5231 Dark Void
## 5232 James Bond 007: Legends
## 5233 Dai-2-Ji Super Robot Taisen Z Saisei-hen
## 5234 WWE '12
## 5235 Disney's The Haunted Mansion
## 5236 Arc the Lad: Twilight of the Spirits
## 5237 Dance Dance Revolution 3rdMix
## 5238 Ryu Ga Gotoku Kenzan!
## 5239 U-Sing
## 5240 Super Robot Taisen A
## 5241 Tomb Raider (2013)
## 5242 Chicken Shoot
## 5243 Company of Heroes 2
## 5244 Defiance
## 5245 We Sing Deutsche Hits
## 5246 Boxer's Road
## 5247 Frogs And Flies
## 5248 DanceDanceRevolution
## 5249 Harry Potter and the Chamber of Secrets
## 5250 EA Sports MMA
## 5251 Toriko: Gourmet Survival!
## 5252 South Park Rally
## 5253 Ganbare Goemon 3: Shishi Jyuurokubei no Karakuri Manji Katame
## 5254 Monopoly
## 5255 Mega Man Zero Collection
## 5256 Arctic Thunder
## 5257 G-Force
## 5258 NHL 2K10
## 5259 Football Manager Handheld 2010
## 5260 J-League Pro Soccer Club o Tsukurou!
## 5261 Wonder Pets! Save the Animals!
## 5262 Formula 1 Championship Edition
## 5263 Shrek
## 5264 CSI: Deadly Intent - The Hidden Cases
## 5265 SOCOM: Tactical Strike
## 5266 Blasto
## 5267 Trauma Center: Second Opinion
## 5268 Backyard Baseball 2006
## 5269 Dark Souls III
## 5270 Cabela's Outdoor Adventures (2006)
## 5271 Nicktoons: Unite!
## 5272 Suikoden V
## 5273 Picross 2
## 5274 Remember Me
## 5275 Battalion Wars 2
## 5276 Outlaw Golf 2
## 5277 SpongeBob's Boating Bash
## 5278 Sentouchu: Densetsu no Shinobi to Survival Battle!
## 5279 Vancouver 2010 - The Official Video Game of the Olympic Winter Games
## 5280 Momotarou Dentetsu 12
## 5281 Mini Ninjas
## 5282 Tekken Tag Tournament 2
## 5283 Batman: Rise of Sin Tzu
## 5284 Disney's Tarzan: Return to the Jungle
## 5285 Cabela's Dangerous Hunts
## 5286 Terminator Salvation
## 5287 Jikkyou Powerful Pro Yakyuu 13
## 5288 Fossil Fighters: Frontier
## 5289 Star Fox: Zero
## 5290 Mega Man X3
## 5291 Mini Ninjas
## 5292 Stunt Race FX
## 5293 Bloody Roar 3
## 5294 WWE Crush Hour
## 5295 Persona 2: Eternal Punishment
## 5296 Star Wars: Flight of the Falcon
## 5297 One Piece: Gigant Battle 2 Shin Sekai
## 5298 Pac-Man All-Stars
## 5299 Def Jam Rapstar
## 5300 SimCity Creator
## 5301 Hannah Montana: The Movie
## 5302 Angry Birds Star Wars
## 5303 Dragon Ball Z: Budokai Tenkaichi 2 (JP sales)
## 5304 Mega Man ZX Advent
## 5305 Jikkyou Powerful Pro Yakyuu 2000
## 5306 Sniper: Ghost Warrior 2
## 5307 Racquet Sports
## 5308 Harry Potter and the Deathly Hallows - Part 2
## 5309 Supreme Commander 2
## 5310 Resident Evil: Dead Aim
## 5311 Need for Speed Carbon
## 5312 The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 5313 SpongeBob SquarePants: The Yellow Avenger
## 5314 The Fairly Odd Parents: Shadow Showdown
## 5315 Saban's Power Rangers: Lightspeed Rescue
## 5316 Xbox Music Mixer
## 5317 WWE All Stars
## 5318 The Shoot
## 5319 College Hoops 2K8
## 5320 Guitar Hero: Metallica
## 5321 Guilty Gear X2
## 5322 MotoGP 08
## 5323 Yu-Gi-Oh! 5D's Tag Force 5
## 5324 Enemy Territory: Quake Wars
## 5325 Tom Clancy's Rainbow Six: Lockdown
## 5326 From TV Animation One Piece: Tobidase Kaizokudan!
## 5327 The Tale of Despereaux
## 5328 Aggressive Inline
## 5329 Karaoke Revolution
## 5330 NFL Street
## 5331 Hello Kitty Daily
## 5332 Metal Arms: Glitch in the System
## 5333 Farming Simulator 2015
## 5334 Jikkyou Powerful Pro Yakyuu 7
## 5335 Rally Cross 2
## 5336 EverGrace
## 5337 Def Jam Icon
## 5338 Lunar 2: Eternal Blue Complete
## 5339 Street Fighter Alpha: Warriors' Dreams
## 5340 Rugrats: Royal Ransom
## 5341 Disney Fairies: Tinker Bell and the Great Fairy Rescue
## 5342 MLB 06: The Show
## 5343 F1 Race Stars
## 5344 Over the Hedge
## 5345 Naruto Shippuden: Ultimate Ninja Impact
## 5346 Just Dance 2016
## 5347 Charlie and the Chocolate Factory
## 5348 Pirates of the Caribbean: At World's End
## 5349 UEFA Euro 2008 Austria-Switzerland
## 5350 Kurushi Final: Mental Blocks
## 5351 Style Lab: Jewelry Design
## 5352 Risk / Battleship / Clue
## 5353 SD Gundam G Generation World
## 5354 LEGO Pirates of the Caribbean: The Video Game
## 5355 The Wild Thornberrys Movie
## 5356 High School Musical 3: Senior Year DANCE!
## 5357 Dynasty Warriors 5 Empires
## 5358 SoulCalibur
## 5359 WipEout 3
## 5360 Etrian Odyssey
## 5361 Conan
## 5362 Classic NES Series: Ice Climber
## 5363 Skylanders: Trap Team
## 5364 Avatar: The Last Airbender - The Burning Earth
## 5365 F.E.A.R.
## 5366 Tenchu Z
## 5367 Freeway
## 5368 Driver 2 Advance
## 5369 Monster Rancher 4
## 5370 Iron Man 2
## 5371 Chicken Riot
## 5372 Tim Burton's The Nightmare Before Christmas: Oogie's Revenge
## 5373 Iron Storm
## 5374 Harry Potter and the Deathly Hallows - Part 2
## 5375 MotorStorm: Arctic Edge
## 5376 The Fairly Odd Parents: Shadow Showdown
## 5377 Radiant Historia
## 5378 Marvel Super Heroes
## 5379 Super Bust-A-Move
## 5380 Hitman: Contracts
## 5381 Thunderstrike: Operation Phoenix
## 5382 Alien's Return
## 5383 Frostbite
## 5384 LEGO Marvel's Avengers
## 5385 Kameo: Elements of Power
## 5386 Power Rangers Samurai
## 5387 WWE Day of Reckoning 2
## 5388 Dynasty Warriors 6 Empires
## 5389 The Urbz: Sims in the City
## 5390 Fantastic Voyage
## 5391 The Adventures of Tintin: The Game
## 5392 Bee Movie Game
## 5393 Silent Hill HD Collection
## 5394 Night Warriors: Darkstalkers' Revenge
## 5395 Off Road Challenge
## 5396 Bank Heist
## 5397 Harry Potter and the Half-Blood Prince
## 5398 Tom Clancy's Ghost Recon: Shadow Wars
## 5399 Backstreet Billiards
## 5400 MX vs. ATV Untamed
## 5401 Carnival
## 5402 Football Manager Handheld 2008
## 5403 Leisure Suit Larry: Magna Cum Laude
## 5404 Harry Potter and the Deathly Hallows - Part 2
## 5405 MVP 06 NCAA Baseball
## 5406 Momotarou Dentetsu DS: Tokyo & Japan
## 5407 Point Blank
## 5408 Bookworm
## 5409 Smart Girl's Party Game
## 5410 Rayman Legends
## 5411 Puzzle Quest: Challenge of the Warlords
## 5412 Star Ocean: Second Evolution
## 5413 My Baby Boy
## 5414 Tiny Tank
## 5415 Jonah Lomu Rugby Challenge
## 5416 Spy Hunter
## 5417 Angry Birds Star Wars
## 5418 Imagine: Movie Star
## 5419 NHL 09
## 5420 Zoo Tycoon (2013)
## 5421 Herbie: Fully Loaded
## 5422 The Sims 3: Town Life Stuff
## 5423 Teenage Mutant Ninja Turtles
## 5424 Pony Friends 2
## 5425 Disney Sing It: Pop Hits
## 5426 Buzz! The Ultimate Music Quiz
## 5427 Persona 5
## 5428 The Eye of Judgment
## 5429 Pirates of the Caribbean: At World's End
## 5430 Modnation Racers: Road Trip
## 5431 Dynasty Warriors: Gundam 2
## 5432 Power Rangers Samurai
## 5433 Fade to Black
## 5434 MXRider
## 5435 Avatar: The Last Airbender
## 5436 Battlefield: Hardline
## 5437 Delta Force: Black Hawk Down
## 5438 Night at the Museum: Battle of the Smithsonian
## 5439 World Championship Poker 2: Featuring Howard Lederer
## 5440 Sengoku Musou 3 Z
## 5441 Operation Flashpoint: Red River
## 5442 Ninja Blade
## 5443 Tom Clancy's Ghost Recon Advanced Warfighter
## 5444 Transformers: Revenge of the Fallen (DS Versions)
## 5445 Fracture
## 5446 Tokyo Highway Battle
## 5447 Pandora's Tower
## 5448 Binary Domain
## 5449 The King of Fighters XIII
## 5450 Beyond Good & Evil
## 5451 Banjo-Kazooie: Grunty's Revenge
## 5452 Bomberman World
## 5453 The X-Factor
## 5454 Digimon World: Dawn / Dusk
## 5455 Street Fighter Alpha 3 MAX
## 5456 Untold Legends: The Warriors Code
## 5457 Virtua Tennis 2009
## 5458 Deathtrap Dungeon
## 5459 Tales of the World: Radiant Mythology 2
## 5460 Wipeout 2
## 5461 Iron Man 2
## 5462 Ape Escape Academy
## 5463 The Darkness II
## 5464 SingStar Take That
## 5465 Marvel: Ultimate Alliance 2
## 5466 Ultimate Marvel vs. Capcom 3
## 5467 WWE Wrestlemania XIX
## 5468 Planet Puzzle League
## 5469 The Sims 2
## 5470 Hulk
## 5471 Naruto: Rise of a Ninja
## 5472 Chicken Blaster
## 5473 Family Party: 90 Great Games Party Pack
## 5474 Klonoa 2: Lunatea's Veil
## 5475 Deus Ex: Invisible War
## 5476 Resonance of Fate
## 5477 Hell's Kitchen: The Game
## 5478 Disney's Treasure Planet
## 5479 NASCAR Thunder 2002
## 5480 Jeanne d'Arc
## 5481 NCAA Basketball 10
## 5482 BeatMania Append GottaMix
## 5483 Dead or Alive 5
## 5484 Tak 2: The Staff of Dreams
## 5485 Rugby World Cup 2011
## 5486 Medal of Honor: Warfighter
## 5487 Kelly Slater's Pro Surfer
## 5488 Shrek SuperSlam
## 5489 Sonic Boom: Rise of Lyric
## 5490 Legends of Wrestling II
## 5491 World Stadium 3
## 5492 Little Deviants
## 5493 Silent Hill: Downpour
## 5494 Extra Bases
## 5495 Super Power League 2
## 5496 Night at the Museum: Battle of the Smithsonian
## 5497 Capcom Classics Collection Reloaded
## 5498 Madden NFL 09
## 5499 MLB 09: The Show
## 5500 Deus Ex: Mankind Divided
## 5501 Cool Boarders 2001
## 5502 Classic NES Series: Castlevania
## 5503 Dragon Ball Z: Battle of Z
## 5504 Scooby-Doo! First Frights
## 5505 Fight Night Round 3
## 5506 GT Advance Championship Racing
## 5507 Way of the Samurai 2
## 5508 FIFA Street 3
## 5509 Custom Robo
## 5510 BattleTanx
## 5511 Hatsune Miku: Project Diva Extend
## 5512 Battlestations: Pacific
## 5513 Pitfall 3D: Beyond the Jungle
## 5514 Disgaea 2: Cursed Memories
## 5515 Cabela's Dangerous Hunts 2011
## 5516 DECA Sports Freedom
## 5517 Clock Tower 3
## 5518 Battle Dodge Ball
## 5519 Goosebumps HorrorLand
## 5520 Phineas and Ferb: Across the 2nd Dimension
## 5521 Call Of Duty 2: Big Red One
## 5522 Elebits
## 5523 Warhammer 40,000: Squad Command
## 5524 F1 2013
## 5525 Disgaea: Hour of Darkness
## 5526 NeoGeo Battle Coliseum
## 5527 SSX Blur
## 5528 DiRT 2
## 5529 Vin Diesel: Wheelman
## 5530 SpongeBob SquarePants: Creature from the Krusty Krab
## 5531 My Baby: First Steps
## 5532 MLB 08: The Show
## 5533 The Black Eyed Peas Experience
## 5534 Parodius
## 5535 Spy Kids 3-D: Game Over
## 5536 Sakura Wars 3: Paris wa Moeteiru ka
## 5537 1001 Touch Games
## 5538 NCAA GameBreaker 2001
## 5539 Power Rangers: Ninja Storm
## 5540 Angry Birds Star Wars
## 5541 Naruto: Gekito Ninja Taisen! 4
## 5542 Kidou Senshi Gundam F91: Formula Senki 0122
## 5543 Despicable Me: The Game
## 5544 Golden Axe: Beast Rider
## 5545 MySims SkyHeroes
## 5546 MVP Baseball 2005
## 5547 Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Kounin: KanKen DS 2 + Jouyou Kanji Jiten
## 5548 Carnival Games: Monkey See, Monkey Do!
## 5549 Eternal Sonata
## 5550 DX Game of Life 2
## 5551 EA Playground
## 5552 NBA Live 96
## 5553 Clash of the Titans
## 5554 Folklore
## 5555 Dragon Ball Z: Extreme Butoden
## 5556 Samurai Warriors 2: Xtreme Legends (JP sales)
## 5557 Sniper Elite 3
## 5558 Teen Titans
## 5559 Dead Rising 2: Off the Record
## 5560 Frogger II: Threeedeep!
## 5561 Etrian Odyssey III: The Drowned City
## 5562 LEGO The Lord of the Rings
## 5563 NBA Live 06
## 5564 Karaoke Revolution Presents American Idol Encore 2
## 5565 Fireball
## 5566 Batman: Arkham Origins
## 5567 Discovery Kids: Puppy Playtime
## 5568 Dr. Mario / Puzzle League
## 5569 Bleach: Shattered Blade
## 5570 Shin Nippon Pro Wrestling: Toukon Retsuden
## 5571 Major League Baseball 2K6
## 5572 Pinball Hall of Fame: The Gottlieb Collection
## 5573 God of War Collection
## 5574 Dead Space 2
## 5575 Def Jam Rapstar
## 5576 Overlord II
## 5577 NBA 2K10
## 5578 J Stars Victory Vs.
## 5579 The Witcher: Enhanced Edition
## 5580 Teenage Mutant Ninja Turtles 2: Battle Nexus
## 5581 Nicktoons: Movin'
## 5582 One Piece: Romance Dawn - Bouken no Yoake
## 5583 Batman: Arkham Origins
## 5584 SWAT: Global Strike Team
## 5585 Championship Bass
## 5586 Resident Evil: Revelations 2
## 5587 Test Drive Unlimited
## 5588 Golden Axe: Beast Rider
## 5589 Madden NFL 13
## 5590 Bratz: Girlz Really Rock
## 5591 NCAA Basketball 10
## 5592 Dead or Alive 5
## 5593 Shin Megami Tensei: Devil Survivor 2
## 5594 NHL Breakaway 98
## 5595 Momotarou Dentetsu 20-Shuunen
## 5596 LEGO Marvel's Avengers
## 5597 Tekken 6
## 5598 Kinetica
## 5599 Beautiful Katamari
## 5600 Bust-A-Move '99
## 5601 NBA Street V3
## 5602 Overlord II
## 5603 Dragon Quest Monsters 1·2
## 5604 Army of Two: The 40th Day
## 5605 Ben 10 Ultimate Alien: Cosmic Destruction
## 5606 Bigfoot: Collision Course
## 5607 Batman: Arkham Asylum
## 5608 Crash of the Titans
## 5609 The Legend of Spyro: Dawn of the Dragon
## 5610 Prey
## 5611 Birthday Party Bash
## 5612 OverBlood
## 5613 ESPN X-Games Pro Boarder
## 5614 Murdered: Soul Suspect
## 5615 Tony Hawk's American Wasteland
## 5616 Harvest Moon: Back to Nature
## 5617 Sniper Elite 3
## 5618 Naruto: Ultimate Ninja (JP sales)
## 5619 Final Fantasy XI
## 5620 The Settlers 7: Paths to a Kingdom
## 5621 Go, Diego, Go!: Great Dinosaur Rescue
## 5622 TrackMania Turbo
## 5623 The Biggest Loser
## 5624 Minute to Win It
## 5625 Darkwatch
## 5626 Singularity
## 5627 Dance Dance Revolution Universe
## 5628 SimAnimals
## 5629 Prince of Persia: The Sands of Time
## 5630 Sky Odyssey
## 5631 Nagano Winter Olympics 98
## 5632 Rayman 2: The Great Escape
## 5633 Kirby's Block Ball
## 5634 DiRT Rally
## 5635 Fortress
## 5636 FIFA 2001 Major League Soccer
## 5637 Peppa Pig: Theme Park Fun
## 5638 Rally Cross
## 5639 My Horse & Me
## 5640 Frogger's Adventures: The Rescue
## 5641 Extreme Pinball
## 5642 Shaun White Snowboarding
## 5643 Karaoke Revolution Volume 3
## 5644 Gold's Gym: Cardio Workout (Others sales)
## 5645 Seaman: Kindan no Pet - Gaze Hakushi no Jikken Shima
## 5646 Street Fighter Alpha 2
## 5647 No.1 Muscle Ranking - Kinniku Banzuke Vol. 1: Oregasaikyouno Otokoda!
## 5648 Cartoon Network Collection: Game Boy Advance Video Platinum Edition
## 5649 Ultimate Fighting Championship: Throwdown
## 5650 Marvel Nemesis: Rise of the Imperfects
## 5651 SpongeBob SquarePants: Double Pack
## 5652 Tetris 2 + Bombliss
## 5653 Harry Potter and the Half-Blood Prince
## 5654 Disney's Extreme Skate Adventure
## 5655 Rock Band Country Track Pack
## 5656 7 Wonders II
## 5657 Ed, Edd n Eddy: Jawbreakers!
## 5658 Dragster
## 5659 Frankenstein's Monster
## 5660 Riven: The Sequel to Myst
## 5661 Derby Stallion DS
## 5662 Mirror's Edge Catalyst
## 5663 Manhunt 2
## 5664 NBA 2K3
## 5665 Monster Lab
## 5666 Dragon Quest Monsters: Battle Road Victory
## 5667 Shin Momotarou Densetsu
## 5668 From TV Animation One Piece: Grand Battle! 3
## 5669 Sega Smash Pack
## 5670 All-Star Baseball 2005
## 5671 The Conveni: Ano Machi wo Dokusen Seyo
## 5672 Shin Super Robot Taisen Special Disk
## 5673 Live A Live
## 5674 NFL Fever 2004
## 5675 Madden NFL 2002
## 5676 UEFA Euro 2008 Austria-Switzerland
## 5677 Clive Barker's Jericho
## 5678 Littlest Pet Shop: City Friends
## 5679 Kingdom Under Fire: The Crusaders
## 5680 4x4 Evolution
## 5681 Cabela's Dangerous Hunts 2011
## 5682 Momotarou Dentetsu Happy
## 5683 Power Rangers: Time Force
## 5684 Romance of the Three Kingdoms VII
## 5685 Shrek the Third
## 5686 Catherine
## 5687 BlazBlue: Continuum Shift
## 5688 Monsters, Inc.
## 5689 DJ Hero
## 5690 WipEout Pulse
## 5691 Quiz Magic Academy DS
## 5692 Just Dance 2016
## 5693 Resident Evil Archives: Resident Evil
## 5694 Dynasty Warriors 4 Empires
## 5695 Shenmue II
## 5696 Heart of Darkness
## 5697 LEGO Marvel's Avengers
## 5698 Virtua Striker 2
## 5699 Fable III
## 5700 Dragon Ball: XenoVerse
## 5701 Might & Magic Heroes VI
## 5702 Fuel
## 5703 ExerBeat
## 5704 WarCraft II: The Dark Saga
## 5705 MonHun Nikki: Poka Poka Ailu Mura G
## 5706 Crash Nitro Kart
## 5707 Sesame Street: Cookie's Counting Carnival
## 5708 NBA ShootOut
## 5709 Fishing Master
## 5710 Phineas and Ferb Ride Again
## 5711 Jikkyou Powerful Pro Yakyuu 14
## 5712 Contra 4
## 5713 Madden NFL 2004
## 5714 Sniper Elite 3
## 5715 Ganbare Goemon: KiraKira Douchuu - Boku ga Dancer ni Natta Riyuu
## 5716 Bust-A-Move Universe
## 5717 Mario Golf
## 5718 Jikkyou Powerful Pro Yakyuu Portable 3
## 5719 Sesame Street: Elmo's Letter Adventure
## 5720 The Incredible Hulk
## 5721 Namco Museum: Virtual Arcade
## 5722 NBA Inside Drive 2003
## 5723 FIFA Street
## 5724 Barbie as The Island Princess
## 5725 Star Wars Episode III: Revenge of the Sith
## 5726 Hatsune Miku: Project Mirai DX
## 5727 Dragon Ball Heroes: Ultimate Mission 2
## 5728 Shrek: Forever After
## 5729 MLB 07: The Show
## 5730 Homefront: The Revolution
## 5731 Jampack: Summer 2003 (RP-M)
## 5732 Alone in the Dark: One-Eyed Jack's Revenge
## 5733 Yu-Gi-Oh! The Dawn of Destiny
## 5734 The Matrix: Path of Neo
## 5735 Mortal Kombat: Shaolin Monks
## 5736 Happy Feet
## 5737 Einhänder
## 5738 Tiny Toon Adventures: The Great Beanstalk
## 5739 Foto Frenzy: Spot The Diffrence
## 5740 Metro: Last Light
## 5741 Dark Void
## 5742 Pro Evolution Soccer 2013
## 5743 Armored Core: Silent Line
## 5744 SD Gundam G Generation Wars
## 5745 Dr. Seuss: How the Grinch Stole Christmas
## 5746 Panzer Dragoon II Zwei
## 5747 KISS Pinball
## 5748 Brothers In Arms: Earned in Blood
## 5749 2 Games in 1: Disney's Brother Bear / The Lion King 1 1/2
## 5750 Super Robot Taisen Complete Box
## 5751 Mega Man Maverick Hunter X
## 5752 Cabela's Outdoor Adventures (2009)
## 5753 Lord of Arcana
## 5754 Jikkyou Powerful Pro Yakyuu 4
## 5755 Goemon's Great Adventure
## 5756 Hot Wheels Turbo Racing
## 5757 Vigilante 8
## 5758 Bass Hunter 64
## 5759 Doubutsu no Mori
## 5760 Football Manager 2016
## 5761 Naruto: Ninja Destiny (US sales)
## 5762 TRON: Evolution
## 5763 Disney Infinity 3.0
## 5764 Taiko Drum Master: Don and Katsu's Space-Time Great Adventure
## 5765 Calvin Tucker's Redneck Jamboree
## 5766 MySims SkyHeroes
## 5767 J-League Winning Eleven 2007: Club Championship
## 5768 Shrek's Carnival Craze Party Games
## 5769 Harvest Moon: Magical Melody
## 5770 Star Wars Jedi Knight II: Jedi Outcast
## 5771 Yu-Gi-Oh! 5D's World Championship 2010 Reverse of Arcadia
## 5772 Mega Man Battle Network 2
## 5773 Little King's Story
## 5774 Mountain King
## 5775 Jampack Volume 12
## 5776 Madagascar
## 5777 Tiger Woods PGA Tour 06
## 5778 Shaun White Snowboarding
## 5779 Shin Megami Tensei: Devil Summoner - Soul Hackers
## 5780 Major League Baseball 2K8
## 5781 Rapala Pro Bass Fishing 2010
## 5782 Lord of the Rings: Battle for Middle-Earth
## 5783 Demolition Racer
## 5784 Midway Arcade Treasures 2
## 5785 Final Fantasy IV
## 5786 Math Play
## 5787 Kingdoms of Amalur: Reckoning
## 5788 NASCAR Thunder 2003
## 5789 SD Gundam G Generation: Overworld
## 5790 Sorcery
## 5791 TouchMaster: Connect
## 5792 NHL FaceOff 2000
## 5793 Star Wars Racer Revenge
## 5794 NBA Live 08
## 5795 The King of Fighters XIII
## 5796 NCAA Final Four 2002
## 5797 South Park: Chef's Luv Shack
## 5798 Music Maker
## 5799 Slot Machine
## 5800 Ganbare Goemon 2: Kiteretsu Shougun Magginesu
## 5801 Astroblast
## 5802 Blade II
## 5803 40 Winks
## 5804 The Legend of Heroes: Trails of Cold Steel
## 5805 Fate/Extra
## 5806 Shaun White Snowboarding: World Stage
## 5807 My Virtual Tutor: Reading Adventure Pre-K to Kindergarten
## 5808 Skylanders SWAP Force
## 5809 A Collection of Classic Games from the Intellivision
## 5810 Monsters vs. Aliens
## 5811 Silent Hill: Shattered Memories
## 5812 Bruce Lee: Quest of the Dragon
## 5813 Spin Jam
## 5814 KuruKuru Kururin
## 5815 Disney's The Emperor's New Groove
## 5816 Disney's Stitch: Experiment 626
## 5817 RPG Tsukuru 2
## 5818 Yuu Yuu Hakusho 2: Kakutou no Sho
## 5819 Orphen: Scion of Sorcery
## 5820 LEGO Legends of Chima: Laval's Journey
## 5821 Imagine: Family Doctor
## 5822 Magna Carta 2
## 5823 Ultimate Spider-Man
## 5824 Nicktoons: Battle for Volcano Island
## 5825 Midtown Madness 3
## 5826 Shrek Swamp Kart Speedway
## 5827 One Piece: Unlimited World Red
## 5828 Alien: Isolation
## 5829 Gameboy Gallery
## 5830 Virtua Cop 2
## 5831 Ehrgeiz
## 5832 Touhoku Daigaku Mirai Kagaku Gijutsu Kyoudou Kenkyuu Center Kawashima Ryuuta Kyouju Kanshu: Nou Ryoku Trainer Portable
## 5833 Karaoke Revolution Glee: Volume 3
## 5834 Spyro: Attack of the Rhynocs
## 5835 Army Men World War: Land, Sea, Air
## 5836 Dai-2-Ji Super Robot Taisen OG
## 5837 Stranglehold
## 5838 Trauma Center: New Blood
## 5839 Shrek the Third
## 5840 Lumines ll
## 5841 NES Remix
## 5842 1701 A.D.
## 5843 Jumping Flash!
## 5844 Karaoke Revolution Party
## 5845 Batman: The Brave and the Bold the Videogame
## 5846 Burnout
## 5847 Lizzie McGuire 3: Homecoming Havoc
## 5848 Chaos Legion
## 5849 PowerUp Heroes
## 5850 NASCAR 2011: The Game
## 5851 Puyo Puyo 7
## 5852 Shrek: Forever After
## 5853 Charlie and the Chocolate Factory
## 5854 Neopets: The Darkest Faerie
## 5855 Blazing Heroes
## 5856 Rhythm Tengoku
## 5857 Super Robot Taisen W
## 5858 Cart World Series
## 5859 Invizimals: Shadow Zone
## 5860 24: The Game
## 5861 Spider-Man 3
## 5862 The Dukes of Hazzard II: Daisy Dukes It Out
## 5863 Famista '91
## 5864 Squinkies
## 5865 Zoo Tycoon 2 DS
## 5866 Looney Tunes: Duck Amuck
## 5867 Super Robot Taisen OG: Original Generations Gaiden
## 5868 Drakengard 3
## 5869 Decathlete
## 5870 The Sims 2
## 5871 Disgaea 3: Absence of Detention
## 5872 Tom Clancy's Splinter Cell 3D
## 5873 DmC: Devil May Cry
## 5874 Jonas
## 5875 Dynasty Warriors 6
## 5876 Wacky Races: Crash & Dash
## 5877 Dynasty Warriors 8: Xtreme Legends
## 5878 Toukiden Kiwami
## 5879 Sengoku Basara: Samurai Heroes
## 5880 Romance of the Three Kingdoms VIII
## 5881 Fossil Fighters (JP sales)
## 5882 Daikaijyuu Monogatari
## 5883 Tropico 5
## 5884 Hard Hitter Tennis
## 5885 Glory of Heracles
## 5886 Monster Truck Madness 64
## 5887 Quake II
## 5888 Nounai Aeshe: IQ Suppli DS
## 5889 Crazy Taxi: Catch a Ride
## 5890 MySims Party
## 5891 Harry Potter and the Order of the Phoenix
## 5892 Skylanders: SuperChargers
## 5893 Macross Digital Mission VF-X
## 5894 One Piece Unlimited Cruise SP
## 5895 Rayman 2: Revolution
## 5896 Yu Yu Hakusho Ghost Files: Spirit Detective
## 5897 Super Bomberman 5
## 5898 N3: Ninety-Nine Nights
## 5899 Shin Megami Tensei: Persona 2: Innocent Sin
## 5900 Army Men: Air Attack 2
## 5901 Need for Speed: Most Wanted
## 5902 NBA Live 2003
## 5903 Pride FC: Fighting Championships
## 5904 Eternal Ring
## 5905 Dragon Force
## 5906 John Deere: Harvest in the Heartland
## 5907 Rabbids: Alive & Kicking
## 5908 Shin Megami Tensei: Devil Summoner - Soul Hackers
## 5909 Winning Post 2
## 5910 Star Gladiator Episode: I Final Crusade
## 5911 Spider-Man: Friend or Foe
## 5912 FIFA 15
## 5913 Dance Dance Revolution Universe 3
## 5914 Harvest Moon: The Tale of Two Towns
## 5915 We Sing Pop!
## 5916 Showdown: Legends of Wrestling
## 5917 Capcom Classics Collection Remixed
## 5918 Reel Fishing: Angler's Dream
## 5919 Call of Duty: Modern Warfare 3: Defiance
## 5920 SimCity 4
## 5921 Far East of Eden Zero
## 5922 Sword Art Online: Hollow Fragment
## 5923 Star Ocean 5: Integrity and Faithlessness
## 5924 Call of Juarez: The Cartel
## 5925 Full Spectrum Warrior
## 5926 Alvin and the Chipmunks: The Squeakquel
## 5927 Taiko no Tatsujin Wii: Minna de Party * 3-Yome!
## 5928 James Bond 007: Legends
## 5929 The Sims 2: Pets
## 5930 Dragon Quest Builders: Revive Alefgard
## 5931 The Suite Life of Zack & Cody: Circle of Spies
## 5932 Power Pro Kun Pocket 6
## 5933 Mega Man ZX
## 5934 Harvest Moon DS Cute (US sales)
## 5935 Power Pro Kun Pocket 10
## 5936 Wanted: Weapons of Fate
## 5937 Finding Nemo: The Continuing Adventures
## 5938 Spirit: Stallion of the Cimarron
## 5939 Dreamworks Madagascar Kartz
## 5940 Future Cop L.A.P.D.
## 5941 Guitar Hero: Van Halen
## 5942 Final Fantasy XI: Wings of the Goddess
## 5943 Hamster Tarou
## 5944 Shark Tale
## 5945 Fist of the North Star: Ken's Rage 2
## 5946 MLB SlugFest Loaded
## 5947 Teenage Mutant Ninja Turtles
## 5948 Trace Memory
## 5949 FIFA Street 3
## 5950 Mah Jong Quest: Expeditions
## 5951 Batman: The Brave and the Bold the Videogame
## 5952 Dragon Ball Z: Budokai Tenkaichi 2
## 5953 AMF Bowling 2004
## 5954 Thief (2014)
## 5955 Scooby-Doo! Night of 100 Frights
## 5956 Just Dance Kids 2
## 5957 RealSports Boxing
## 5958 Imagine: Makeup Artist
## 5959 Grandia II
## 5960 Syphon Filter: Dark Mirror
## 5961 Front Mission Evolved
## 5962 Tom and Jerry Tales
## 5963 Mini Ninjas
## 5964 NieR
## 5965 The BIGS 2
## 5966 X-Men Legends II: Rise of Apocalypse
## 5967 Junior Brain Trainer 2
## 5968 The Chronicles of Riddick: Assault on Dark Athena
## 5969 Need for Speed Underground
## 5970 Power Pro Kun Pocket 4
## 5971 The Godfather: Dons Edition
## 5972 Soul Sacrifice Delta
## 5973 Guardian Heroes
## 5974 Assassin's Creed IV: Black Flag
## 5975 MLB Power Pros
## 5976 Outlaw Golf
## 5977 The Amazing Spider-Man 2 (2014)
## 5978 Dynasty Warriors: Strikeforce
## 5979 Fisherman's Bait 2: Big Ol' Bass
## 5980 Lupin the 3rd: Treasure of the Sorcerer King
## 5981 Up
## 5982 Kurohyou: Ryu ga Gotoku Shinshou
## 5983 Prince of Persia: Rival Swords
## 5984 One Piece Unlimited Cruise 2: Awakening of a Hero
## 5985 Ben 10 Alien Force: Vilgax Attacks
## 5986 Majin and the Forsaken Kingdom
## 5987 NBA Street V3
## 5988 WinBack: Covert Operations
## 5989 Punch-Out!!
## 5990 FlatOut: Head On
## 5991 Kagero: Deception II
## 5992 Jikkyou Powerful Pro Yakyuu 2000 Kaimakuban
## 5993 The Bureau: XCOM Declassified
## 5994 NBA Live 06
## 5995 Guitar Hero: Van Halen
## 5996 J-League Victory Goal '96
## 5997 Shin Megami Tensei: Strange Journey
## 5998 Jeopardy! 2nd Edition
## 5999 SD Gundam G Century
## 6000 Ratchet & Clank: Size Matters
## 6001 Ben 10 Ultimate Alien: Cosmic Destruction
## 6002 Atelier Iris 3: Grand Phantasm (US Sales)
## 6003 Itadaki Street 2: Neon Sign wa Bara Iro ni
## 6004 Def Jam Rapstar
## 6005 Need for Speed: The Run
## 6006 From TV Animation One Piece: Treasure Battle!
## 6007 Starhawk
## 6008 Dolphin
## 6009 Imagine: Fashion Designer World Tour
## 6010 Area 51
## 6011 The Smurfs: Dance Party
## 6012 Disney Channel: All Star Party
## 6013 Ace Combat: Joint Assault
## 6014 Hamster Club 4: Shigessa Daidassou
## 6015 Medieval Moves: Deadmund's Quest
## 6016 Angry Birds Star Wars
## 6017 Mega Man X8
## 6018 CSI: Deadly Intent
## 6019 Ford Mustang: The Legend Lives
## 6020 Ys: Memories of Celceta
## 6021 FIFA Soccer 13
## 6022 Fast Food
## 6023 Jikkyou Powerful Pro Yakyuu 8
## 6024 Viz
## 6025 Top Gear Overdrive
## 6026 Xena: Warrior Princess - The Talisman of Fate
## 6027 Jeremy McGrath Supercross 2000
## 6028 The New Tetris
## 6029 Ken Griffey Jr.'s Slugfest
## 6030 Supercross 2000
## 6031 War Gods
## 6032 Bladestorm: The Hundred Years' War
## 6033 World of Tanks
## 6034 Jewel Quest Mysteries: Curse of the Emerald Tear
## 6035 Duel Masters: Sempai Legends
## 6036 Marvel Super Hero Squad
## 6037 Turning Point: Fall of Liberty
## 6038 Heroes of the Pacific
## 6039 Dead Rising: Chop Till You Drop
## 6040 The Lord of the Rings: The Third Age
## 6041 Disney Infinity
## 6042 Fable: The Journey
## 6043 Nicktoons: Battle for Volcano Island
## 6044 Sonic Boom: Shattered Crystal
## 6045 Just Dance Wii 2
## 6046 Madden NFL 08
## 6047 DX Game of Life
## 6048 Pirates of the Caribbean
## 6049 Operation Flashpoint: Red River
## 6050 One Piece: Pirate Warriors 3
## 6051 The Punisher
## 6052 MLB Pennant Race
## 6053 Transformers: Dark of the Moon
## 6054 SD Gundam Gaiden: Knight Gundam Monogatari: Ooinaru Isan
## 6055 GRID 2
## 6056 WWII Aces
## 6057 Puzzle Quest: Challenge of the Warlords
## 6058 Shrek Super Party
## 6059 Sakura Wars 4: Koi Seyo,Otome
## 6060 Sakura Wars: So Long, My Love
## 6061 Dynasty Tactics
## 6062 The Urbz: Sims In the City (US weekly sales)
## 6063 Lightning Returns: Final Fantasy XIII
## 6064 Feel the Magic XY/XX
## 6065 Trivial Pursuit
## 6066 Neopets Puzzle Adventure
## 6067 Sonic & All-Stars Racing Transformed
## 6068 Shrek the Third
## 6069 Snowboarding
## 6070 Purr Pals
## 6071 Dragon Ball Heroes: Ultimate Mission
## 6072 Borderlands: The Pre-Sequel
## 6073 Surf's Up
## 6074 BlazBlue: Chrono Phantasma
## 6075 Looney Tunes Racing
## 6076 Final Fantasy X-2: International + Last Mission
## 6077 Namco Museum Vol.2
## 6078 Rayman 3: Hoodlum Havoc
## 6079 Penguin no Mondai: Saikyou Penguin Densetsu! A Penguin's Troubles
## 6080 Psi-Ops: The Mindgate Conspiracy
## 6081 I Spy: Spooky Mansion
## 6082 Tomba! 2: The Evil Swine Return
## 6083 SAW
## 6084 Wappy Dog
## 6085 Dragon Quest: Shounen Yangus to Fushigi no Dungeon
## 6086 BeatMania Append 4thMix: The beat goes on
## 6087 NASCAR 08
## 6088 World of Warcraft: Legion
## 6089 Romance of the Three Kingdoms III: Dragon of Destiny
## 6090 Power Pro Kun Pocket 11
## 6091 El Shaddai: Ascension of the Metatron
## 6092 Family Guy: Back to the Multiverse
## 6093 Spyro: A Hero's Tail
## 6094 Warriors Orochi 2
## 6095 Ratatouille: Food Frenzy
## 6096 Links 2004
## 6097 PGA Tour 97
## 6098 Bratz: Super Babyz
## 6099 Battle & Get! Pokemon Typing DS
## 6100 Kung Zhu
## 6101 Earthworm Jim
## 6102 Tales of Phantasia
## 6103 The Golden Compass
## 6104 F1 Race Stars
## 6105 All Star Cheer Squad
## 6106 Rugby World Cup 2011
## 6107 Ice Age: Dawn of the Dinosaurs
## 6108 Monster 4x4: Masters of Metal
## 6109 SingStar Country
## 6110 DeathSmiles
## 6111 VMX Racing
## 6112 Hot Shots Golf: World Invitational
## 6113 Disney's Extreme Skate Adventure
## 6114 Dragon Ball GT: Transformation
## 6115 Bratz Ponyz
## 6116 Super Fire ProWrestling X
## 6117 Baby Pals
## 6118 International Superstar Soccer
## 6119 Metal Gear Solid V: Ground Zeroes
## 6120 Tigger's Honey Hunt
## 6121 The Warriors
## 6122 Monopoly Streets
## 6123 Shadow Hearts
## 6124 NHL 2K11
## 6125 One Piece: Burning Blood
## 6126 Haven: Call of the King
## 6127 Street Hoops
## 6128 Yu-Gi-Oh! Double Pack
## 6129 X-Men: Reign of Apocalypse
## 6130 R: Racing Evolution
## 6131 Tony Hawk: Shred
## 6132 Netsu Chu! Pro Yakyuu 2003
## 6133 ATV Quad Power Racing 2
## 6134 Digimon Adventure: Anode Tamer
## 6135 Fantastic 4: Flame On
## 6136 Siren: Blood Curse
## 6137 Pro Evolution Soccer 2017
## 6138 Chromehounds
## 6139 Marvel Nemesis: Rise of the Imperfects
## 6140 The King of Fighters '95
## 6141 Pirates of the Caribbean: Dead Man's Chest
## 6142 Assassin's Creed II: Discovery
## 6143 F/A-18F Super Hornet
## 6144 Avatar: The Last Airbender
## 6145 Final Fantasy VI Advance
## 6146 Polaris
## 6147 Viewtiful Joe
## 6148 Triple Play 2000
## 6149 Beyblade: Metal Masters
## 6150 Need for Speed: Most Wanted
## 6151 Arcade Hits: Frisky Tom
## 6152 Dead to Rights: Retribution
## 6153 Harry Potter and the Sorcerer's Stone
## 6154 Unreal Championship 2: The Liandri Conflict
## 6155 Kung Fu Chaos
## 6156 Mega Man: Dr. Wily's Revenge
## 6157 Yu-Gi-Oh! World Championship 2008
## 6158 Naruto Shippuden: Ultimate Ninja Storm 4
## 6159 Godzilla: Domination!
## 6160 Sly Cooper: Thieves in Time
## 6161 Tales of the World: Radiant Mythology 3
## 6162 Famista '92
## 6163 Jissen Pachi-Slot Hisshouhou! Moujuu-Oh S
## 6164 Jackass the Game
## 6165 Mega Man II
## 6166 Lord of Darkness
## 6167 Hannah Montana: Spotlight World Tour
## 6168 Rocket Power: Beach Bandits
## 6169 Surf's Up
## 6170 Carol Vorderman's Sudoku
## 6171 MX SuperFly featuring Ricky Carmichael
## 6172 Remington Super Slam Hunting: Africa
## 6173 Army of Two: The Devil's Cartel
## 6174 Syphon Filter: Dark Mirror
## 6175 Conflict: Desert Storm II - Back to Bagdhad
## 6176 Guitar Hero Live
## 6177 Mission: Impossible - Operation Surma
## 6178 Sesame Street: Elmo's A-to-Zoo Adventure
## 6179 MLB 07: The Show
## 6180 Pitfall: The Mayan Adventure
## 6181 Driver: Parallel Lines
## 6182 Sing Party
## 6183 Shrek: Ogres & Dronkeys
## 6184 Monopoly
## 6185 Hot Wheels: Track Attack
## 6186 Backyard Wrestling 2: There Goes the Neighborhood
## 6187 Virtua Fighter 5 Online
## 6188 Disney's Treasure Planet
## 6189 Dead or Alive
## 6190 Wild ARMs 5
## 6191 Bionic Commando
## 6192 NFL Blitz 20-02
## 6193 Mega Man 7
## 6194 NCAA March Madness 2005
## 6195 Shadows of the Damned
## 6196 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 6197 NBA In The Zone
## 6198 Corvette
## 6199 F1 ROC: Race of Champions
## 6200 Just Dance 2015
## 6201 The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 6202 Silent Hill 2: Restless Dreams
## 6203 Cabela's Big Game Hunter 2012
## 6204 Dragon Quest Heroes II: Twin Kings and the Prophecy's End
## 6205 Moshi Monsters: Moshlings Theme Park
## 6206 UEFA Euro 2016
## 6207 Soul Nomad & the World Eaters
## 6208 RollerCoaster Tycoon 3
## 6209 Bass Strike
## 6210 NHL Hitz 20-03
## 6211 Danganronpa Another Episode: Ultra Despair Girls
## 6212 Pac-Man Fever
## 6213 Over the Hedge
## 6214 Real Pool
## 6215 iCarly 2: iJoin The Click!
## 6216 The Warriors
## 6217 Mister Mosquito
## 6218 Kakyuusei
## 6219 Patapon 3
## 6220 Sesame Street: Cookie's Counting Carnival
## 6221 Civilization II
## 6222 Guitar Hero: Van Halen
## 6223 Dynasty Warriors: Gundam
## 6224 Madagascar
## 6225 Transformers: Cybertron Adventures
## 6226 Indiana Jones and the Staff of Kings
## 6227 F-1 Grand Prix
## 6228 Mass Effect 3
## 6229 Pinkalicious
## 6230 SimCity 2000
## 6231 Deer Hunter
## 6232 Pokemon Box: Ruby & Sapphire
## 6233 Puyo Puyo! 15th Anniversary
## 6234 Yu-Gi-Oh! Monster Capsule Breed & Battle
## 6235 FIFA Soccer 07
## 6236 Mass Effect Trilogy
## 6237 Dave Mirra Freestyle BMX 2
## 6238 AC/DC LIVE: Rock Band Track Pack
## 6239 My Japanese Coach
## 6240 Puppeteer
## 6241 Warpath: Jurassic Park
## 6242 Tak and the Guardians of Gross
## 6243 True Crime: New York City
## 6244 Summer Heat Beach Volleyball
## 6245 NCAA Basketball 09
## 6246 One Piece Unlimited Cruise 1: The Treasure Beneath the Waves
## 6247 Marvel Super Hero Squad: The Infinity Gauntlet
## 6248 Dead Rising 2: Off the Record
## 6249 Power Pro Kun Pocket 3
## 6250 Myst III: Exile
## 6251 Castlevania: Aria of Sorrow
## 6252 NBA 2K12
## 6253 R.U.S.E.
## 6254 Mobile Suit Gundam Side Story I: Senritsu no Blue
## 6255 Armored Core: Project Phantasma
## 6256 Donkey Kong GB: Dinky Kong & Dixie Kong
## 6257 Kobitodzukan: Kobito Kansatsu Set
## 6258 ExciteBots: Trick Racing
## 6259 Pro Evolution Soccer 2013
## 6260 Deadpool
## 6261 Nichibutsu Arcade Classics
## 6262 Kenka Bancho: Badass Rumble
## 6263 Cabela's Trophy Bucks
## 6264 Moero! Nekketsu Rhythm Damashii: Osu! Tatakae! Ouendan! 2
## 6265 Q-Ball: Billiards Master
## 6266 Mr. Do!
## 6267 How to Train Your Dragon 2
## 6268 Boogie
## 6269 Tao Feng: Fist of the Lotus
## 6270 Rapala Pro Bass Fishing 2010
## 6271 Shin Nippon Pro Wrestling: Toukon Retsuden 2
## 6272 Dragon Ball Z: Budokai 2
## 6273 The Legend of Zelda: The Minish Cap(weekly JP sales)
## 6274 Motocross Maniacs Advance
## 6275 Resident Evil 2: Dual Shock Edition
## 6276 Dynasty Warriors
## 6277 M&M's Blast!
## 6278 Zumba Fitness: World Party
## 6279 Need for Speed: Most Wanted
## 6280 Final Fantasy X International
## 6281 Tiny Toon Adventures: Plucky's Big Adventure
## 6282 NHL Hitz 20-02
## 6283 Iron Man 2
## 6284 Indy 500
## 6285 Littlest Pet Shop: Beach Friends
## 6286 Trivial Pursuit
## 6287 Suikoden Tierkreis
## 6288 Evil Dead: Hail to the King
## 6289 Dragon Ball GT: Final Bout
## 6290 Burstrick: Wake Boarding!!
## 6291 Dave Mirra Freestyle BMX: Maximum Remix
## 6292 Divinity: Original Sin
## 6293 R.U.S.E.
## 6294 Hatsune Miku: Project Diva f
## 6295 Resident Evil: Deadly Silence
## 6296 Pac-Pix
## 6297 Beamrider
## 6298 EyePet
## 6299 The Evil Within
## 6300 Athens 2004
## 6301 Gunship
## 6302 Jikkyou Powerful Pro Yakyuu Portable 4
## 6303 SD Gundam G Generation Portable
## 6304 Sydney 2000
## 6305 Pro Race Driver
## 6306 Baten Kaitos: Eternal Wings and the Lost Ocean
## 6307 Bishoujo Senshi Sailormoon R
## 6308 The Club
## 6309 Slam Dunk: Yonkyo Taiketsu!!
## 6310 Rhythm Thief & the Emperor's Treasure
## 6311 Rocky: Legends
## 6312 NickToons: Racing
## 6313 MotionSports: Adrenaline
## 6314 Tiger Woods PGA Tour 07
## 6315 Gun
## 6316 NHL 07
## 6317 Flag Capture
## 6318 Bridge
## 6319 G-Force
## 6320 LEGO Harry Potter: Years 5-7
## 6321 The Adventures of Tintin: The Game
## 6322 RalliSport Challenge 2
## 6323 Fushigi no Dungeon: Fuurai no Shiren GB: Tsukikagemura no Kaibutsu
## 6324 Wave Rally
## 6325 Over the Hedge
## 6326 Disgaea 5: Alliance of Vengeance
## 6327 Disney's Chicken Little
## 6328 Battle of Giants: Mutant Insects
## 6329 Ty the Tasmanian Tiger
## 6330 Sengoku Basara 4
## 6331 Yu-Gi-Oh! The Sacred Cards (JP weekly sales)
## 6332 WWE Road to WrestleMania X8
## 6333 Medarot 3: Kabuto / Kuwagata Version
## 6334 Fullmetal Alchemist 2: Curse of the Crimson Elixir
## 6335 Sherlock Holmes: Crimes & Punishments
## 6336 NASCAR 06: Total Team Control
## 6337 Bratz: The Movie
## 6338 BloodRayne 2
## 6339 Spider-Man: Web of Shadows
## 6340 NHL 2002
## 6341 Reader Rabbit Kindergarten
## 6342 Tropico 4
## 6343 NBA In The Zone '98
## 6344 Jikkyou Powerful Pro Yakyuu 5
## 6345 NBA Jam 99
## 6346 Shadow Man
## 6347 Command & Conquer
## 6348 Call of Juarez: The Cartel
## 6349 Shadow of Rome
## 6350 Tohoku Daigaku Karei Igaku Kenkyuusho - Kawashima Ryuuta Kyouju Kanshuu - Mono Sugoku Nou o Kitaeru 5-Funkan no Oni Training
## 6351 Tales of Eternia
## 6352 Harry Potter and the Order of the Phoenix
## 6353 Ben 10 Triple Pack
## 6354 Need for Speed Rivals
## 6355 Stuntman: Ignition
## 6356 Fantastic 4
## 6357 Mat Hoffman's Pro BMX
## 6358 MotoGP
## 6359 The Penguins of Madagascar
## 6360 Summer Athletics: The Ultimate Challenge (US sales)
## 6361 Rock Revolution
## 6362 Etrian Odyssey II: Heroes of Lagaard
## 6363 LEGO The Hobbit
## 6364 Jikkyou Powerful Pro Yakyuu 2
## 6365 The Incredible Hulk
## 6366 Resident Evil: Revelations
## 6367 Major League Baseball 2K10
## 6368 NASCAR 2011: The Game
## 6369 Thoroughbred Breeder II
## 6370 Shin Megami Tensei: Devil Survivor
## 6371 Magical Vacation
## 6372 XGIII: Extreme G Racing
## 6373 NBA Live 2004
## 6374 Dragon Ball: XenoVerse
## 6375 NASCAR Thunder 2003
## 6376 Section 8
## 6377 Superbike 2000
## 6378 America's Test Kitchen: Let's Get Cooking
## 6379 Final Fantasy XI: Ultimate Collection
## 6380 Fire Emblem: Shin Monshou no Nazo Hikari to Kage no Eiyuu
## 6381 F1 2016 (Codemasters)
## 6382 Connect Four / Perfection / Trouble
## 6383 Wipeout 2
## 6384 Ratatouille
## 6385 The Incredible Hulk
## 6386 Dora the Explorer: Dora Saves the Crystal Kingdom
## 6387 Alundra 2: A New Legend Begins
## 6388 Reign of Fire
## 6389 Scooby-Doo! and the Spooky Swamp
## 6390 Jikkyou Powerful Pro Yakyuu '98 Ketteiban
## 6391 Ace Attorney 6
## 6392 The Sims 2: Pets
## 6393 Cake Mania 2: Jill's Next Adventure!
## 6394 Batman: Arkham Origins Blackgate
## 6395 The BIGS
## 6396 Initial D: Special Stage
## 6397 Madden NFL 08
## 6398 Jurassic Park: Operation Genesis
## 6399 Family Feud: 2010 Edition
## 6400 Final Doom
## 6401 Deadly Premonition
## 6402 Rock Revolution
## 6403 Are You Smarter than a 5th Grader? Game Time
## 6404 NBA ShootOut 2001
## 6405 Knockout Kings 2002
## 6406 Wipeout 2
## 6407 Payday 2
## 6408 Ultimate NES Remix
## 6409 Megamind: The Blue Defender
## 6410 NFL Street 3
## 6411 Battle Arena Toshinden 3
## 6412 Teenage Mutant Ninja Turtles: Danger of the Ooze
## 6413 Jade Cocoon: Story of the Tamamayu
## 6414 Super Nazo Puyo: Ruruu no Ruu
## 6415 Cabela's Big Game Hunter 2010
## 6416 InuYasha: Feudal Combat
## 6417 Duel Masters
## 6418 Ninja Gaiden Sigma
## 6419 Super Collapse! 3
## 6420 Superman Returns
## 6421 The Dog Island
## 6422 My Virtual Tutor: Reading Adventure Kindergarten to First
## 6423 Dynasty Warriors Next
## 6424 Major League Baseball 2K9
## 6425 Jikkyou Powerful Pro Yakyuu 2010
## 6426 Operation Armored Liberty
## 6427 Rory McIlroy PGA Tour
## 6428 Dynasty Warriors 7: Xtreme Legends
## 6429 Summer Sports 2: Island Sports Party
## 6430 Imagine: Fashion Party
## 6431 Fish Tycoon
## 6432 Scene It? Twilight
## 6433 And1 Streetball
## 6434 Don King Boxing
## 6435 Atelier Ayesha: The Alchemist of Dusk
## 6436 Angry Birds Trilogy
## 6437 Dragon Ball Z: Tenkaichi Tag Team
## 6438 Sonic X: Game Boy Advance Video Volume 1
## 6439 ESPN NBA Basketball
## 6440 Gallop Racer 2: One and Only Road to Victory
## 6441 NBA 07
## 6442 Lowrider
## 6443 Reload: Target Down
## 6444 All-Pro Football 2K8
## 6445 Dungeons & Dragons: Eye of the Beholder
## 6446 The Crew
## 6447 Barbie: Jet, Set & Style!
## 6448 Battlestations: Midway
## 6449 Rayman DS
## 6450 Gundam Breaker
## 6451 The House of the Dead 2
## 6452 Create
## 6453 A.C.E.: Another Century's Episode R
## 6454 Littlest Pet Shop: Friends
## 6455 Rune: Viking Warlord
## 6456 Panzer Dragoon Orta
## 6457 Jikkyou Powerful Pro Yakyuu '99 Ketteiban
## 6458 Dragon Age Origins: Awakening
## 6459 King's Field II
## 6460 Danganronpa 2: Goodbye Despair
## 6461 Aikatsu! 2-nin no My Princess
## 6462 Beyblade: Metal Fusion
## 6463 NCAA Gamebreaker
## 6464 Petz: Horsez 2
## 6465 NPPL: Championship Paintball 2009
## 6466 Skylanders: SuperChargers
## 6467 Zoo Tycoon 2: Ultimate Collection
## 6468 Tomba!
## 6469 Love Plus
## 6470 Tales of Innocence
## 6471 MLB SlugFest 2006
## 6472 J Stars Victory Vs.
## 6473 Rugrats: I Gotta Go Party
## 6474 Virtua Racing
## 6475 Crash Tag Team Racing
## 6476 Prison Break: The Conspiracy
## 6477 Bolt
## 6478 DS Bungaku Zenshuu
## 6479 We Cheer 2
## 6480 Nancy Drew: The Mystery of the Clue Bender Society
## 6481 Inazuma Eleven GO 3: Galaxy
## 6482 Ford Racing 3
## 6483 Michael Jackson: The Experience
## 6484 Phantasy Star Universe: Ambition of the Illuminus
## 6485 Project Runway
## 6486 Jikkyou Powerful Pro Yakyuu 2013
## 6487 The Adventures of Jimmy Neutron Boy Genius vs. Jimmy Negatron
## 6488 Sengoku Basara 2
## 6489 Naruto: Ultimate Ninja Heroes
## 6490 Inazuma Eleven Strikers
## 6491 Hey Arnold! The Movie
## 6492 Final Fantasy V Advance
## 6493 Need for Speed: Most Wanted
## 6494 Lumines: Electronic Symphony
## 6495 Star Trek: Invasion
## 6496 Final Fantasy Crystal Chronicles: Echoes of Time
## 6497 Jonah Lomu Rugby Challenge
## 6498 Babysitting Mania
## 6499 Star Wars: Bounty Hunter
## 6500 Tom and Jerry in War of the Whiskers
## 6501 Ace Attorney Investigations 2
## 6502 Minute to Win It
## 6503 Smart Girl's Playhouse
## 6504 Racquet Sports
## 6505 TouchMaster 3(Others sales)
## 6506 The Elder Scrolls IV: Oblivion
## 6507 Jikkyou Powerful Pro Yakyuu 2011
## 6508 Madden NFL 2005
## 6509 Skylanders: Trap Team
## 6510 Yu-Gi-Oh! Ultimate Masters: World Championship Tournament 2006
## 6511 Power Pro Kun Pocket 5
## 6512 Konjiki no Gashbell!! Makai no Bookmark
## 6513 Plants vs. Zombies
## 6514 Riding Spirits
## 6515 Disney Sing It: Pop Hits
## 6516 Indiana Jones and the Staff of Kings
## 6517 Etrian Odyssey Untold: The Millennium Girl
## 6518 Bust A Groove 2
## 6519 Hatsune Miku: Project Diva
## 6520 Juiced 2: Hot Import Nights
## 6521 Gundam Battle Universe
## 6522 Sengoku Basara: Battle Heroes
## 6523 Nightmare Creatures
## 6524 Star Wars Episode I: Battle for Naboo
## 6525 Duke Nukem: Zero Hour
## 6526 Armorines: Project S.W.A.R.M.
## 6527 NCAA March Madness 08
## 6528 Armored Core: Nexus
## 6529 Evolution Skateboarding
## 6530 Dora the Explorer: The Search for Pirate Pig's Treasure
## 6531 Muramasa: The Demon Blade
## 6532 Yakuza: Ishin
## 6533 Indiana Jones and the Staff of Kings
## 6534 Tony Hawk: Shred
## 6535 Outlaw Volleyball
## 6536 Batman: Vengeance
## 6537 The Amazing Spider-Man 2 (2014)
## 6538 RealSports Football
## 6539 Tiger Woods PGA Tour 10
## 6540 SD Gundam G Generation: Cross Drive
## 6541 Tom Clancy's Splinter Cell: Double Agent
## 6542 Monsters vs. Aliens
## 6543 Dungeons & Dragons Heroes
## 6544 The Testament of Sherlock Holmes
## 6545 Game of Thrones
## 6546 Loving Life with Hello Kitty & Friends
## 6547 McGrath Vs. Pastrana Freestyle Motocross
## 6548 Legaia 2: Duel Saga
## 6549 Crash Nitro Kart
## 6550 Karaoke Joysound Wii
## 6551 MLB 09: The Show
## 6552 Polarium
## 6553 Samurai Warriors 4
## 6554 F1 2014
## 6555 Classic NES Series: Bomberman
## 6556 Avatar: The Last Airbender - The Burning Earth
## 6557 Peter Jackson's King Kong: The Official Game of the Movie
## 6558 Bratz Ponyz 2
## 6559 A.C.E.: Another Century's Episode
## 6560 Frogger's Journey: The Forgotten Relic
## 6561 X-Men vs. Street Fighter
## 6562 Army of Two: The Devil's Cartel
## 6563 Dora the Explorer: Game Boy Advance Video Volume 1
## 6564 Oddworld: Stranger's Wrath
## 6565 Sega Rally Revo
## 6566 King of Fighters: Maximum Impact
## 6567 Marvel Super Heroes vs. Street Fighter
## 6568 Legendary
## 6569 J-League Pro Soccer Club wo Tsukurou!
## 6570 Daisy Fuentes Pilates
## 6571 Star Trek: The Game
## 6572 Drakan: The Ancients' Gates
## 6573 Dead or Alive Xtreme 2
## 6574 Petz: Crazy Monkeyz
## 6575 SpongeBob SquarePants: Lights, Camera, Pants!
## 6576 Choro Q3
## 6577 Tokyo Jungle
## 6578 Hunted: The Demon's Forge
## 6579 Lemony Snicket's A Series of Unfortunate Events
## 6580 Pirates of the Caribbean: Dead Man's Chest
## 6581 Bionicle: Matoran Adventures
## 6582 Armored Core: Master of Arena
## 6583 Fire Emblem: Thracia 776
## 6584 Desert Falcon
## 6585 NASCAR 09
## 6586 Tengai Makyou: Daishi no Mokushiroku - The Apocalypse IV
## 6587 A.C.E.: Another Century's Episode 3: The Final
## 6588 ATV: Quad Power Racing
## 6589 Mario & Sonic at the Rio 2016 Olympic Games
## 6590 The Backyardigans
## 6591 Backyard NFL Football
## 6592 All-Star Baseball 2003
## 6593 Silent Hunter 5: Battle of the Atlantic
## 6594 MTX Mototrax
## 6595 Tomb Raider: Underworld (Others sales)
## 6596 NHL Rock the Rink
## 6597 LEGO Star Wars III: The Clone Wars
## 6598 NBA ShootOut 2004
## 6599 TOCA Race Driver 2: Ultimate Racing Simulator
## 6600 Super Robot Taisen R
## 6601 Castlevania: Harmony of Dissonance
## 6602 Metroid Prime Pinball
## 6603 Formula One 2001
## 6604 Nickelodeon Dance
## 6605 Doukyuusei if
## 6606 Baldur's Gate: Dark Alliance II
## 6607 MVP Baseball 2004
## 6608 Super Street Fighter II: Turbo Revival
## 6609 Secret Weapons Over Normandy
## 6610 Combination Pro Soccer: J-League no Kantoku ni Natte Sekai wo Mezase!!
## 6611 NHL 08
## 6612 Kidou Senshi Gundam: Giren no Yabou
## 6613 Imagine: Ballet Star
## 6614 Teen Titans
## 6615 Percy Jackson and the Olympians: The Lightning Thief
## 6616 Spelling Challenges and more!
## 6617 Crusaders of Might and Magic
## 6618 Journey
## 6619 Tearaway Unfolded
## 6620 Star Wars The Clone Wars: Republic Heroes
## 6621 Bomberman Generation
## 6622 NASCAR 09
## 6623 Surfing H3O
## 6624 Romance of the Three Kingdoms II
## 6625 The Chronicles of Riddick: Assault on Dark Athena
## 6626 Resident Evil Archives: Resident Evil Zero
## 6627 Zoo Resort 3D
## 6628 Ice Age 2: The Meltdown
## 6629 The Suite Life of Zack & Cody: Tipton Trouble
## 6630 World Series of Poker
## 6631 Hatsune Miku: Project Diva F 2nd
## 6632 Galactic Attack
## 6633 Power Pro Kun Pocket 2
## 6634 Game of Thrones
## 6635 Happy Feet
## 6636 Walt Disney's The Jungle Book: Rhythm N'Groove
## 6637 Triple Play 2002
## 6638 Scrabble
## 6639 Evil Zone
## 6640 Spy Kids Challenger
## 6641 K-ON! Houkago Live!!
## 6642 A. IV Evolution: A Ressha de Ikou 4
## 6643 Exhibition
## 6644 Scrabble
## 6645 Tony Hawk's Proving Ground
## 6646 Amped 2
## 6647 Blaster Master: Blasting Again
## 6648 College Hoops 2K6
## 6649 Cartoon Network Collection: Game Boy Advance Video Volume 1
## 6650 Cars
## 6651 Family Guy: Back to the Multiverse
## 6652 Kung Fu Panda 2
## 6653 Up
## 6654 Birds of Steel
## 6655 Madagascar: Escape 2 Africa
## 6656 WipEout XL
## 6657 Animal Paradise
## 6658 The Powerpuff Girls: Chemical X-Traction
## 6659 NHL 08
## 6660 Dynasty Warriors 6 (JP sales)
## 6661 Just Dance Kids 2
## 6662 FIFA 14
## 6663 Men of Valor
## 6664 Bomberman Tournament
## 6665 Medal of Honor European Assault
## 6666 Spider-Man: Web of Shadows
## 6667 Billy Hatcher and the Giant Egg
## 6668 Midway's Greatest Arcade Hits
## 6669 SpongeBob's Truth or Square (US sales)
## 6670 Final Fantasy II
## 6671 WipEout Fusion
## 6672 Spider-Man: Edge of Time
## 6673 UEFA Euro 2008 Austria-Switzerland
## 6674 Marie no Atelier: Salburg no Renkinjutsushi
## 6675 The Outfit
## 6676 Golden Nugget Casino
## 6677 NHL 06
## 6678 Atari Anthology
## 6679 Ultimate Fighting Championship
## 6680 XIII
## 6681 MotoGP '07
## 6682 Samurai Shodown II
## 6683 Mortal Kombat: Armageddon
## 6684 Don King Presents: Prizefighter
## 6685 Hybrid Heaven
## 6686 NBA Showtime: NBA on NBC
## 6687 Fox Sports College Hoops '99
## 6688 Wheel of Fortune
## 6689 MRC: Multi-Racing Championship
## 6690 F1 Pole Position 64
## 6691 Gex 64: Enter the Gecko
## 6692 Wayne Gretzky's 3D Hockey '98
## 6693 NBA Courtside 2 featuring Kobe Bryant
## 6694 J Stars Victory Vs.
## 6695 U-Sing: Girls Night
## 6696 The Mummy: Tomb of the Dragon Emperor
## 6697 Def Jam Vendetta
## 6698 Scooby-Doo! Unmasked
## 6699 Penny Racers
## 6700 The Sims 2
## 6701 Caesars Palace II
## 6702 Final Fantasy Type-0
## 6703 World Series Baseball 2K3
## 6704 Freshly-Picked: Tingle's Rosy Rupeeland
## 6705 Pro Yakyuu Team o Tsukurou!
## 6706 L.A. Noire: The Complete Edition
## 6707 Sentimental Graffiti
## 6708 Hitman: Absolution
## 6709 Bolt
## 6710 Marvel: Ultimate Alliance 2
## 6711 The Legend of Legacy
## 6712 Disgaea 2: Dark Hero Days
## 6713 Devil Kings
## 6714 Ultimate Band
## 6715 NBA Jam Tournament Edition
## 6716 Far Cry Instincts Predator
## 6717 Medabots AX: Metabee
## 6718 Tennis no Oji-Sama: Genius Boys Academy
## 6719 X-Men: Destiny
## 6720 Shadow Man
## 6721 X-Men Origins: Wolverine
## 6722 Netsu Chu! Pro Yakyuu 2002
## 6723 Ninja Gaiden 3
## 6724 Ben 10 Ultimate Alien: Cosmic Destruction
## 6725 Yakuza Zero: The Place of Oath
## 6726 Prince of Persia: The Forgotten Sands
## 6727 Dynasty Warriors 6
## 6728 Imagine: Zookeeper
## 6729 Porky's
## 6730 America's Army: Rise of a Soldier
## 6731 Grandia
## 6732 TV Superstars
## 6733 Armored Core 4
## 6734 F1 2000
## 6735 Littlest Pet Shop: Country Friends
## 6736 Dood's Big Adventure
## 6737 Pirates of the Caribbean: The Legend of Jack Sparrow
## 6738 We Love Golf!
## 6739 WRC: World Rally Championship
## 6740 Ed, Edd n Eddy: The Mis-Edventures
## 6741 Cars: Mater-National Championship
## 6742 Dreamworks Madagascar Kartz
## 6743 Harry Potter and the Order of the Phoenix
## 6744 Anno 2205
## 6745 Dune 2000
## 6746 Cradle of Rome
## 6747 Monster Hunter G
## 6748 Fuel
## 6749 Hasbro Family Game Night 3
## 6750 Pro Evolution Soccer 2014
## 6751 Project Overkill
## 6752 Jumping Flash! 2
## 6753 Nickelodeon Party Blast
## 6754 SBK Superbike World Championship
## 6755 Final Fantasy XI: Chains of Promathia
## 6756 Choro Q2
## 6757 Disney's A Christmas Carol
## 6758 Butt Ugly Martians: B.K.M. Battles
## 6759 Major League Baseball 2K7
## 6760 X-Men Legends II: Rise of Apocalypse
## 6761 Sorry! / Aggravation / Scrabble Junior
## 6762 Driver '76
## 6763 Turning Point: Fall of Liberty
## 6764 NBA Courtside 2002
## 6765 How to Train Your Dragon 2
## 6766 The Adventures of Tintin: The Game
## 6767 Classic NES Series: Excitebike
## 6768 Classic NES Series: Xevious
## 6769 Avatar: The Last Airbender - Into the Inferno
## 6770 Disney's Planes
## 6771 Dora the Explorer: Journey to the Purple Planet
## 6772 Tales of Hearts
## 6773 Digimon World: Data Squad
## 6774 Dynasty Warriors 7
## 6775 Catz
## 6776 Jikkyou Powerful Pro Yakyuu 2001
## 6777 Transformers: War for Cybertron (DS Version)
## 6778 Mega Man X Collection
## 6779 Trials Fusion
## 6780 LEGO Ninjago: Shadow of Ronin
## 6781 Avalon Code
## 6782 That's So Raven: Psychic on the Scene
## 6783 Monster Jam: Path of Destruction
## 6784 Tongari Boushi to Oshare na Mahou Tsukai
## 6785 Panzer General
## 6786 Broken Sword: Shadow of the Templars - The Director's Cut
## 6787 Gallop Racer (JP)
## 6788 Spawn the Eternal
## 6789 MLB
## 6790 Army Men: Sarge's Heroes 2
## 6791 Command & Conquer 3: Kane's Wrath
## 6792 Dreamcast Collection
## 6793 Madden NFL 13
## 6794 Corpse Party: Blood Drive
## 6795 Homefront
## 6796 Disney Stitch Jam
## 6797 Bakugan: Battle Brawlers
## 6798 Britney's Dance Beat
## 6799 Guitar Freaks
## 6800 World Soccer Winning Eleven 7
## 6801 Ace Combat: Assault Horizon Legacy
## 6802 Cabela's Outdoor Adventures (2009)
## 6803 SRS: Street Racing Syndicate
## 6804 Namco Tennis Smash Court
## 6805 Vexx
## 6806 The Incredible Hulk
## 6807 BioShock 2
## 6808 Marvel vs. Capcom Origins
## 6809 Pro Yaky? Spirits 2011
## 6810 Imagine: Teacher Class Trip
## 6811 TimeSplitters: Future Perfect
## 6812 Final Fantasy Fables: Chocobo Tales
## 6813 Harvest Moon: Magical Melody
## 6814 Genma Onimusha
## 6815 DK: King of Swing
## 6816 K-1 Revenge
## 6817 G-Police
## 6818 Pure Futbol
## 6819 Spider-Man: Shattered Dimensions
## 6820 Corvette
## 6821 Atelier Meruru: Alchemist of Arland 3
## 6822 AC/DC LIVE: Rock Band Track Pack
## 6823 Deca Sports 3
## 6824 Harry Potter and the Goblet of Fire
## 6825 Midway Arcade Treasures: Extended Play
## 6826 F1 2015
## 6827 Skylanders SWAP Force
## 6828 Bass Pro Shops: The Hunt
## 6829 What Did I Do to Deserve This, My Lord!? 2
## 6830 Boogie SuperStar
## 6831 Burnout 2: Point of Impact
## 6832 Rock Band Track Pack Volume 1
## 6833 Singularity
## 6834 Super Monkey Ball Deluxe
## 6835 Street Fighter X Tekken
## 6836 Kill.Switch
## 6837 Ben 10 Ultimate Alien: Cosmic Destruction
## 6838 Metro 2033
## 6839 Peter Jackson's King Kong: The Official Game of the Movie
## 6840 Stella Glow
## 6841 Dancing With The Stars
## 6842 Summon Night 3
## 6843 Pro Yaky? Spirits 2010
## 6844 The Simpsons: Road Rage
## 6845 Megamind: Mega Team Unite
## 6846 PDC World Championship Darts 2008
## 6847 Jissen Pachi-Slot Hisshouhou! Hokuto no Ken SE
## 6848 Azurik: Rise of Perathia
## 6849 Luminous Arc
## 6850 All Grown Up!: Game Boy Advance Video Volume 1
## 6851 The Lord of the Rings: Aragorn's Quest
## 6852 Dragon Ball Z: Sagas
## 6853 Paws & Claws: Pet Resort
## 6854 Grand Slam Tennis 2
## 6855 Sakura Wars: Atsuki Chishio Ni
## 6856 Ms. Pac-Man: Maze Madness / Pac-Man World
## 6857 NHRA Championship Drag Racing
## 6858 The Price is Right 2010 Edition
## 6859 Monster Jam
## 6860 Valhalla Knights
## 6861 Harvest Moon: Another Wonderful Life
## 6862 NBA Live 10
## 6863 The Godfather (US & Others sales)
## 6864 Jikkyou Powerful Pro Yakyuu 15
## 6865 MX vs. ATV Reflex
## 6866 Bakugan: Battle Brawlers
## 6867 Front Line
## 6868 Paperboy
## 6869 South Park: Chef's Luv Shack
## 6870 Midway's Greatest Arcade Hits Volume 1
## 6871 Road Rash 64
## 6872 Ready 2 Rumble Boxing: Round 2
## 6873 Army Men: Air Combat
## 6874 Rock Band Track Pack Volume 2
## 6875 NCAA College Basketball 2K3
## 6876 Mobile Suit Gundam Battlefield Record U.C.0081
## 6877 Harry Potter and the Deathly Hallows - Part 2
## 6878 NCAA March Madness 2004
## 6879 Lucky Luke
## 6880 Fantastic 4
## 6881 Ashes Cricket 2009
## 6882 Ghost Rider
## 6883 Tony Hawk's American Sk8land
## 6884 Juiced 2: Hot Import Nights
## 6885 Are You Smarter than a 5th Grader? Game Time
## 6886 Amazing Adventures: The Forgotten Ruins
## 6887 Densetsu no Stafi 3
## 6888 Forsaken
## 6889 Ratchet & Clank: Going Commando (JP weekly sales)
## 6890 Pictionary: Ultimate Edition
## 6891 LEGO The Hobbit
## 6892 Samurai Warriors 4
## 6893 The Hobbit
## 6894 Dance Dance Revolution: Disney Channel Edition
## 6895 DiRT Showdown
## 6896 Divinity II: Ego Draconis
## 6897 Checkers
## 6898 Front Mission: Gun Hazard
## 6899 X-Men: Destiny
## 6900 Hello Kitty Seasons
## 6901 Chibi-Robo! Zip Lash
## 6902 4x4 EVO 2
## 6903 XS Airboat Racing
## 6904 Lunar: Silver Star Harmony
## 6905 Sherlock Holmes and the Mystery of Osborne House
## 6906 Grand Theft Auto
## 6907 Dora the Explorer: Super Star Adventures
## 6908 Viva Pinata: Party Animals
## 6909 Scrabble (Others sales)
## 6910 Asura's Wrath
## 6911 Lego Star Wars: The Force Awakens
## 6912 Dynasty Warriors 6 Empires
## 6913 My Street
## 6914 Wild 9
## 6915 Shadow Hearts: Covenant
## 6916 Tiger Woods PGA Tour 10
## 6917 Shrek's Carnival Craze Party Games
## 6918 Angry Birds
## 6919 Risen 2: Dark Waters
## 6920 Danganronpa: Trigger Happy Havoc
## 6921 Guitar Hero Live
## 6922 Game & Wario
## 6923 PGA Tour 96
## 6924 Onechanbara Z2: Chaos
## 6925 Fallout 3 Game Add-On Pack: Broken Steel and Point Lookout
## 6926 Covert Ops: Nuclear Dawn
## 6927 DanceDanceRevolution II
## 6928 Pictionary: Ultimate Edition
## 6929 LEGO Harry Potter: Years 5-7
## 6930 TrackMania: Build to Race
## 6931 Nintendo Presents: Crossword Collection
## 6932 Galaga: Destination Earth
## 6933 G.I. Joe: The Rise of Cobra
## 6934 Ar tonelico Qoga: Knell of Ar Ciel
## 6935 FIFA World Cup Germany 2006
## 6936 Polly Pocket: Super Splash Island
## 6937 God Eater 2
## 6938 Tony Hawk's Downhill Jam
## 6939 Sesame Street: Elmo's Number Journey
## 6940 Rampage
## 6941 Dark Cavern
## 6942 Jewels of the Tropical Lost Island
## 6943 Afro Samurai
## 6944 The Bureau: XCOM Declassified
## 6945 Sands of Destruction
## 6946 NASCAR 2011: The Game
## 6947 Silent Hill: Book of Memories
## 6948 Lunar Knights
## 6949 The Walking Dead: Season Two
## 6950 Epic Mickey 2: The Power of Two
## 6951 DC Universe Online
## 6952 NASCAR 08
## 6953 Madagascar: Escape 2 Africa
## 6954 New Carnival Games
## 6955 Need For Speed: Undercover
## 6956 LEGO Marvel's Avengers
## 6957 Naruto: Path of the Ninja 2
## 6958 Wallace & Gromit in Project Zoo
## 6959 Karaoke Revolution Volume 2
## 6960 Wizards of Waverly Place: Spellbound
## 6961 Love Plus +
## 6962 Etrian Mystery Dungeon
## 6963 Mobile Suit Gundam: Climax U.C.
## 6964 Street Fighter EX2 Plus
## 6965 The Smurfs 2
## 6966 Big Family Games
## 6967 Big Beach Sports 2
## 6968 Hot Wheels: Beat That!
## 6969 Jet X20
## 6970 Super Robot Taisen D
## 6971 NASCAR Thunder 2004
## 6972 Buffy the Vampire Slayer
## 6973 LEGO Marvel's Avengers
## 6974 Star Wars: The Force Unleashed II
## 6975 Harry Potter and the Goblet of Fire
## 6976 Zumba Fitness: World Party
## 6977 Saint Seiya: Sanctuary Battle
## 6978 Girls Mode 3: Kirakira Code
## 6979 Meteos
## 6980 Virtua Tennis 4
## 6981 Kung Fu Panda 2
## 6982 Cross Edge
## 6983 Hotel for Dogs
## 6984 Cabela's Big Game Hunter 2012
## 6985 Pro Yakyuu Team o Tsukurou!
## 6986 Me & My Katamari
## 6987 Asphalt: Injection
## 6988 Total War: Attila
## 6989 SSX On Tour
## 6990 Vancouver 2010 - The Official Video Game of the Olympic Winter Games
## 6991 World Series Baseball
## 6992 SingStar Pop Edition
## 6993 Test Drive: Eve of Destruction
## 6994 Starsky & Hutch
## 6995 Dynasty Warriors: Gundam Reborn
## 6996 Hatsune Miku: Project Diva f
## 6997 The Club
## 6998 Carnival Island
## 6999 Jeremy McGrath Supercross World
## 7000 M&M's Kart Racing
## 7001 Rock Band Track Pack: Classic Rock
## 7002 The Scorpion King: Rise of the Akkadian
## 7003 Let's Make a Soccer Team!
## 7004 Looney Tunes: Acme Arsenal
## 7005 Monster Hunter G
## 7006 All-Star Baseball 2001
## 7007 Pinball Hall of Fame: The Gottlieb Collection
## 7008 Sword Art Online: Lost Song
## 7009 Star Wars Jedi Knight II: Jedi Outcast
## 7010 Tom Clancy's Splinter Cell
## 7011 Pitfall: The Big Adventure
## 7012 Rock Band Country Track Pack
## 7013 Worms: Battle Islands
## 7014 ESPN NHL Hockey
## 7015 Harvest Moon GB
## 7016 Imagine: Detective
## 7017 The Incredible Hulk: Ultimate Destruction
## 7018 Hannah Montana: The Movie
## 7019 NCAA GameBreaker 2003
## 7020 Skylanders: SuperChargers
## 7021 Gundam Battle Assault
## 7022 Virtua Fighter Kids
## 7023 Lunar: Silver Star Story
## 7024 Rocket Power: Beach Bandits
## 7025 Shaun White Snowboarding
## 7026 LEGO The Hobbit
## 7027 Ultimate Band
## 7028 NBA 2K6
## 7029 Age of Empires: The Age of Kings
## 7030 What's Cooking? Jamie Oliver
## 7031 Tom Clancy's Rainbow Six: Rogue Spear
## 7032 NHL FaceOff 2001
## 7033 Ultimate Duck Hunting: Hunting & Retrieving Ducks
## 7034 Yu-Gi-Oh! GX: Duel Academy
## 7035 FIFA 14
## 7036 Tribes: Aerial Assault
## 7037 Colony Wars: Vengeance
## 7038 Last Window: The Secret of Cape West
## 7039 Yu-Gi-Oh! GX: Tag Force 3
## 7040 Dynasty Warriors: Strikeforce
## 7041 Naruto Shippuden: Ultimate Ninja Storm Revolution
## 7042 I Love Horses
## 7043 Madden NFL 06
## 7044 Karaoke Revolution Glee 2: Road to Regionals
## 7045 NASCAR 08
## 7046 The King of Fighters '95 (CD)
## 7047 Perfect Weapon
## 7048 Luminous Arc 2
## 7049 Project CARS
## 7050 Major League Baseball 2K10
## 7051 Call of Duty: Black Ops 3
## 7052 Mafia
## 7053 Spider-Man: Edge of Time
## 7054 Deadly Creatures
## 7055 Airblade
## 7056 Cabela's Outdoor Adventures (2009)
## 7057 Mega Man & Bass
## 7058 NBA Live 15
## 7059 Neopets Puzzle Adventure
## 7060 Risen 2: Dark Waters
## 7061 Dragon Quest Heroes II: Twin Kings and the Prophecy's End
## 7062 Puss in Boots
## 7063 Family Fest presents: Movie Games
## 7064 AKB1/149: Love Election
## 7065 Tony Hawk's Proving Ground
## 7066 Tetris 2 (weekly jp sales)
## 7067 Pro Yakyuu Team o Tsukurou! 2
## 7068 Musou Orochi Z
## 7069 World Series of Poker 2008: Battle for the Bracelets
## 7070 WWE All Stars
## 7071 Naruto Shippuden: Ninja Council 4
## 7072 Genji: Dawn of the Samurai
## 7073 Rocket League
## 7074 Wipeout 2
## 7075 The Idolm@ster SP: Wandering Star / Perfect Sun / Missing Moon
## 7076 Critical Depth
## 7077 Barbie as The Island Princess
## 7078 Petz Rescue: Wildlife Vet
## 7079 Tales of VS.
## 7080 Saka-Tsuku DS: Touch and Direct
## 7081 Super Swing Golf
## 7082 The Italian Job
## 7083 Mega Man Battle Network 5: Team Colonel / Protoman
## 7084 Barbie and the Three Musketeers
## 7085 Star Ocean
## 7086 Freedom Fighters
## 7087 Naruto: Ninja Council 2 European Version
## 7088 Soldier of Fortune II: Double Helix
## 7089 pro evolution soccer 2011
## 7090 Disney Princess: Enchanted Journey
## 7091 Final Fantasy XI: Treasures of Aht Urhgan
## 7092 Alundra
## 7093 World Soccer Winning Eleven 2010: Aoki Samurai no Chousen
## 7094 Bratz: Girlz Really Rock
## 7095 Super R-Type
## 7096 Rampage 2: Universal Tour
## 7097 Super Robot Taisen F Kanketsuhen
## 7098 Tiger Woods PGA Tour 2003
## 7099 BlowOut
## 7100 NFL Blitz Pro
## 7101 MySims Party
## 7102 TRON: Evolution - Battle Grids
## 7103 The Raiden Project
## 7104 Hooked! Real Motion Fishing
## 7105 Pocket Fighter
## 7106 Bicycle Casino 2005
## 7107 Valhalla Knights 2
## 7108 .hack//G.U. Vol.2//Reminisce
## 7109 Disgaea: Afternoon of Darkness
## 7110 Ratchet & Clank: Full Frontal Assault
## 7111 NCAA Football 09
## 7112 Family Party: 30 Great Games Winter Fun
## 7113 NCAA GameBreaker 2004
## 7114 101-in-1 Party Megamix Wii
## 7115 The Polar Express
## 7116 Dinosaur King
## 7117 Buzz! Junior: RoboJam
## 7118 Child of Eden
## 7119 All Star Karate
## 7120 AC/DC LIVE: Rock Band Track Pack
## 7121 Tetris Attack
## 7122 NBA ShootOut 2003
## 7123 The Magic School Bus: Oceans
## 7124 Shin Nippon Pro Wrestling: Toukon Retsuden 3
## 7125 Senran Kagura: Estival Versus
## 7126 Digimon World DS (JP sales)
## 7127 NHL FaceOff 2003
## 7128 Jersey Devil
## 7129 Rogue Ops
## 7130 NBA Street: Showdown
## 7131 3rd Super Robot Wars Z Jigoku Hen
## 7132 Cars 2
## 7133 Petz Monkeyz House
## 7134 Spec Ops: The Line
## 7135 Legion: The Legend of Excalibur
## 7136 FaceBreaker K.O. Party
## 7137 Justice League Heroes
## 7138 Gekijouban Macross F: Sayonara no Tsubasa - Hybrid Pack
## 7139 TNA iMPACT!
## 7140 Yu-Gi-Oh! GX: Spirit Caller (American Sales)
## 7141 Def Jam: Fight for NY
## 7142 Sword Art Online: Infinity Moment
## 7143 Spartan: Total Warrior
## 7144 Killer is Dead
## 7145 EX Monopoly
## 7146 Star Trek: The Game
## 7147 64 de Hakken! Tamagotchi Minna de Tamagotchi World
## 7148 Mary-Kate and Ashley: Sweet 16 - Licenced to Drive
## 7149 Deadly Duck
## 7150 Assault
## 7151 Reactor
## 7152 Ys Seven
## 7153 Marvel Super Hero Squad: The Infinity Gauntlet
## 7154 Gundam Battle Chronicle
## 7155 G-Force
## 7156 Danball Senki Boost
## 7157 Kidz Bop Dance Party! The Video Game
## 7158 Conflict: Vietnam
## 7159 Whirl Tour
## 7160 Time Crisis: Crisis Zone
## 7161 Momotarou Dentetsu 15
## 7162 Dark Souls II
## 7163 Discovery Kids: Dolphin Discovery
## 7164 Ben 10 Ultimate Alien: Cosmic Destruction
## 7165 Hatsune Miku: Project Mirai 2
## 7166 Skies of Arcadia Legends
## 7167 Cloudy With a Chance of Meatballs
## 7168 MotoGP 08
## 7169 Madden NFL 12
## 7170 Sengoku Basara 3 Utage
## 7171 Breath of Fire
## 7172 Ragnarok DS
## 7173 Ford vs. Chevy
## 7174 NCAA Football 2005
## 7175 Hamtaro: Ham-Ham Games
## 7176 Danny Phantom: The Ultimate Enemy
## 7177 Petz Rescue: Endangered Paradise
## 7178 MotoGP 09/10
## 7179 Rune Factory: Tides of Destiny
## 7180 A Boy and His Blob
## 7181 Battleborn
## 7182 Move Fitness
## 7183 Atelier Escha & Logy: Alchemists of the Dusk Sky
## 7184 Hidden Mysteries: Buckingham Palace
## 7185 Crazy Climber
## 7186 Super Adventure Island
## 7187 Bust-A-Move 4
## 7188 The Legend of Spyro: The Eternal Night
## 7189 NFL Quarterback Club 97
## 7190 Rampage: Total Destruction
## 7191 Galactic Wrestling: Featuring Ultimate Muscle
## 7192 Petz: Horse Club
## 7193 Dino Stalker
## 7194 Rapala's Fishing Frenzy
## 7195 Mobile Suit Gundam Seed
## 7196 Shinobi
## 7197 Puss in Boots
## 7198 Tony Hawk's Downhill Jam
## 7199 Mega Man Zero 3
## 7200 LEGO The Lord of the Rings
## 7201 Hitman: HD Trilogy
## 7202 Aliens vs Predator: Requiem
## 7203 Castlevania: Lords of Shadow 2
## 7204 Barbie: Groom and Glam Pups
## 7205 KORG DS-10 Synthesizer
## 7206 Tenchu: Shadow Assassins
## 7207 Barbie Super Sports
## 7208 CSI: Fatal Conspiracy
## 7209 Nicktoons Collection: Game Boy Advance Video Volume 2
## 7210 Jackass the Game
## 7211 The Legend of Heroes: Trails of Cold Steel
## 7212 Tom Clancy's Rainbow Six: Siege
## 7213 Dungeon Hunter Alliance
## 7214 LEGO Harry Potter: Years 5-7
## 7215 Duel Masters: Kaijudo Showdown
## 7216 Imagine: Boutique Owner
## 7217 The Walking Dead: Season Two
## 7218 The Lord of the Rings: The Third Age
## 7219 Cursed Mountain
## 7220 The Suffering
## 7221 Dragon Quest Builders: Revive Alefgard
## 7222 Tetris Worlds
## 7223 Teenage Mutant Ninja Turtles: Danger of the Ooze
## 7224 ECW Hardcore Revolution
## 7225 Mega Man 64
## 7226 Chou-Kuukan Night Pro Yakyuu King(higher JP sales)
## 7227 Rampage 2: Universal Tour
## 7228 Ms. Pac-Man: Maze Madness
## 7229 Tales of Graces
## 7230 Age of Empires: Mythologies
## 7231 Viewtiful Joe 2
## 7232 Where's Waldo? The Fantastic Journey
## 7233 ATV Quad Kings
## 7234 Mary-Kate and Ashley: Sweet 16 - Licenced to Drive
## 7235 Jewel Quest: Expeditions
## 7236 NBA Jam Extreme
## 7237 Dragon Ball: Origins (JP & incomplete US sales)
## 7238 Touch the Dead
## 7239 Tropico 3
## 7240 Nickelodeon Party Blast
## 7241 Ben 10 Alien Force: Vilgax Attacks
## 7242 NHL Championship 2000
## 7243 G.I. Joe: The Rise of Cobra
## 7244 Shellshock: Nam '67
## 7245 Hunted: The Demon's Forge
## 7246 Kartia: The Word of Fate
## 7247 Tales of Berseria
## 7248 All-Star Baseball 2002
## 7249 Magna Carta: Tears of Blood
## 7250 Lethal Skies Elite Pilot: Team SW
## 7251 Capcom vs. SNK
## 7252 NBA Live 09 All-Play
## 7253 Infinite Space
## 7254 Yoostar2
## 7255 Transformers: Devastation
## 7256 Tamagotchi no KiraKira Omisecchi
## 7257 From Russia With Love
## 7258 You Don't Know Jack
## 7259 Just Dance 2016
## 7260 Pinball Hall of Fame: The Williams Collection
## 7261 Guitar Hero: Smash Hits
## 7262 NFL Quarterback Club 2002
## 7263 Kirby's Star Stacker
## 7264 NCAA Basketball 09
## 7265 Full Auto
## 7266 Dead Island
## 7267 Growlanser: Heritage of War
## 7268 Hasbro Family Game Night
## 7269 Shin Megami Tensei x Fire Emblem
## 7270 Rugby 2004
## 7271 Disney's Magical Quest Starring Mickey and Minnie
## 7272 Spirit Camera: The Cursed Memoir
## 7273 NBA 06
## 7274 Naruto: Ninja Council
## 7275 Shin Megami Tensei: Persona
## 7276 DS Nishimura Kyotaro Suspense Shin Tantei Series: Kyoto Atami Zekkai no Kotou - Satsui no Wana
## 7277 Wreckless: ThE YaKuza MisSiOns
## 7278 Madden NFL 07
## 7279 Jikkyou Powerful Major League
## 7280 NFL 2K3
## 7281 Darksiders II
## 7282 Saltwater Sportfishing
## 7283 Yoshi Touch & Go (JP sales)
## 7284 Samurai Jack: The Amulet of Time
## 7285 Pass the Pigs
## 7286 J-League Winning Eleven 2008: Club Championship
## 7287 Jackie Chan: Stuntmaster
## 7288 Sports Car GT
## 7289 Lost Planet 3
## 7290 Order Up!
## 7291 Code Name: S.T.E.A.M.
## 7292 SBK X: Superbike World Championship
## 7293 NBA Live 14
## 7294 Scooby-Doo! Mystery Mayhem
## 7295 Kanzen Chuuki Pro Yakyuu Greatest Nine
## 7296 American Idol
## 7297 Summer Athletics: The Ultimate Challenge (Others sales)
## 7298 Britney's Dance Beat
## 7299 Shrek SuperSlam
## 7300 Sniper: Ghost Warrior 2
## 7301 Over G Fighters
## 7302 Sailor Moon
## 7303 Apache: Air Assault
## 7304 One Piece: Pirate Warriors 3
## 7305 Herdy Gerdy
## 7306 Armored Core V
## 7307 EVE Online
## 7308 Digimon World Re:Digitize
## 7309 Ninja Gaiden: Dragon Sword
## 7310 Ride
## 7311 Blue Dragon Plus
## 7312 Lords of the Fallen
## 7313 NBA in the Zone 2000
## 7314 Dark Summit
## 7315 Afrika
## 7316 Cabela's Big Game Hunter: Ultimate Challenge
## 7317 The Legend of Heroes: Trails in the Sky First Chapter
## 7318 Are You Smarter Than a 5th Grader? Back to School
## 7319 Steins
## 7320 The Dukes of Hazzard: Return of the General Lee
## 7321 Pandemonium!
## 7322 SingStar: Back to the 80s
## 7323 Namco Museum: 50th Anniversary
## 7324 Crash 'N' Burn
## 7325 NBA
## 7326 Teenage Mutant Ninja Turtles: Smash-Up
## 7327 Pro Yakyuu Greatest Nine '97
## 7328 Transformers: Dark of the Moon
## 7329 Final Fantasy Fables: Chocobo's Dungeon
## 7330 Lunar: Silver Star Story Complete
## 7331 Dorabase DS: Dramatic Stadium
## 7332 Disaster Report
## 7333 EVE: burst error
## 7334 We Sing Robbie Williams
## 7335 Backyard NFL Football '09
## 7336 Pro Evolution Soccer 2012
## 7337 Akiba's Trip: Undead & Undressed
## 7338 Speed Racer: The Videogame
## 7339 College Hoops 2K7
## 7340 The Amazing Spider-Man 2 (2014)
## 7341 Big League Sports
## 7342 Bratz: Forever Diamondz
## 7343 WCW Backstage Assault
## 7344 UFC Undisputed 2010
## 7345 Baja: Edge of Control
## 7346 Wild Wild Racing
## 7347 Magician's Quest: Town of Magic
## 7348 The Bard's Tale
## 7349 NCAA March Madness 08
## 7350 Momotarou Dentetsu 16
## 7351 Robotech: The Macross Saga
## 7352 Yu Yu Hakusho: Dark Tournament
## 7353 MTV Celebrity Deathmatch
## 7354 Gekijouban Macross F: Itsuwarino Utahime - Hybrid Pack
## 7355 Conflict Zone
## 7356 Tony Hawk's American Sk8land
## 7357 de Blob 2
## 7358 The BIGS 2
## 7359 BloodRayne
## 7360 Hannah Montana: The Movie
## 7361 50 Cent: Blood on the Sand
## 7362 Bratz: Girlz Really Rock
## 7363 NHL 2K6
## 7364 Tenchu: Return From Darkness
## 7365 World Poker Tour
## 7366 Prison Break: The Conspiracy
## 7367 Neo Contra
## 7368 MVP Baseball
## 7369 GRID Autosport
## 7370 Ghostbusters II
## 7371 Breakaway IV
## 7372 RealSports Baseball
## 7373 Now! That's What I Call Music: Dance & Sing
## 7374 Yu-Gi-Oh! 5D's World Championship 2011: Over the Nexus
## 7375 Metal Gear Solid V: The Phantom Pain
## 7376 Hasbro Family Game Night 3
## 7377 G.I. Joe: The Rise of Cobra
## 7378 Rayman Raving Rabbids
## 7379 Viewtiful Joe 2
## 7380 Quake III: Revolution
## 7381 Pac-Man World 3
## 7382 Naruto: Clash of Ninja (JP sales)
## 7383 Robotech: Battlecry
## 7384 NOëL: NOT DiGITAL
## 7385 Transformer: Rise of the Dark Spark
## 7386 Dragon Ball Z Hyper Dimension
## 7387 Hidden Mysteries: Titanic - Secrets of the Fateful Voyage
## 7388 Senran Kagura 2: Deep Crimson
## 7389 Marvel Super Hero Squad
## 7390 The Chronicles of Narnia: Prince Caspian
## 7391 Champion Jockey: G1 Jockey & Gallop Racer
## 7392 HBO Boxing
## 7393 Yoga Wii
## 7394 Darkwatch
## 7395 Cabela's Survival: Shadows of Katmai
## 7396 Prince of Persia: Revelations
## 7397 Bass Pro Shops: The Strike
## 7398 Front Mission 5: Scars of the War
## 7399 Maximo vs Army of Zin
## 7400 The Fairly OddParents: Breakin' Da Rules
## 7401 Namco Museum Megamix
## 7402 Wedding Dash
## 7403 Hot Shots Tennis: Get a Grip
## 7404 Summoner 2
## 7405 The Land Before Time: Big Water Adventure
## 7406 Shadow of Destiny
## 7407 Valkyria Chronicles III: Unrecorded Chronicles
## 7408 Cabela's Deer Hunt: 2004 Season
## 7409 Disney's Planes
## 7410 Brunswick Pro Bowling
## 7411 World Series of Poker
## 7412 ClayFighter 63 1/3
## 7413 Monopoly
## 7414 WCW Nitro
## 7415 Cruis'n Exotica
## 7416 Gex 3: Deep Cover Gecko
## 7417 WinBack: Covert Operations
## 7418 Heroes of Ruin
## 7419 WipeOut 3 The Game
## 7420 Bastard!! Utsuro Naru Kamigami no Utsuwa
## 7421 SBK Superbike World Championship
## 7422 The King of Fighters '96
## 7423 Bionicle
## 7424 WRC: FIA World Rally Championship
## 7425 Angel Blade: Neo Tokyo Guardians
## 7426 Threads of Fate
## 7427 PoPoLoCrois Monogatari II
## 7428 Famicom Mini: Ganbare Goemon! Karakuri Douchuu
## 7429 Vampire Rain
## 7430 Way of the Samurai 3
## 7431 Deus Ex: The Conspiracy
## 7432 Unreal II: The Awakening
## 7433 Rumble Racing
## 7434 Spider-Man: Web of Shadows
## 7435 Disgaea D2: A Brighter Darkness
## 7436 Batman Begins
## 7437 Just Dance: Greatest Hits
## 7438 J-League Winning Eleven 10 + Europa League 06-07
## 7439 Shrek: Reekin' Havoc
## 7440 Solatorobo: Red the Hunter
## 7441 Tales of Phantasia: Narikiri Dungeon X
## 7442 JSRF: Jet Set Radio Future
## 7443 NHL Hitz 20-02
## 7444 The Last Airbender
## 7445 NCAA Football 2003
## 7446 StokEd
## 7447 Rollcage
## 7448 ESPN Winter X Games: Snowboarding 2002
## 7449 Project: Snowblind
## 7450 Tony Hawk's Motion
## 7451 Super Robot Taisen K
## 7452 Mortal Kombat: Special Forces
## 7453 LEGO The Hobbit
## 7454 Rayman Legends
## 7455 Dragon Ball Z: Harukanaru Densetsu
## 7456 Wacky Races: Crash & Dash
## 7457 I Spy: Castle
## 7458 Shin Megami Tensei: Persona 3 (jp sales)
## 7459 Greg Hastings Paintball 2
## 7460 Evil Dead: Regeneration
## 7461 Dead to Rights: Retribution
## 7462 NCAA March Madness 07
## 7463 NHL 2003
## 7464 Marvel Super Hero Squad: Comic Combat
## 7465 X-Men: Children of the Atom
## 7466 Barbie Fashion Show: An Eye for Style
## 7467 Tiger Woods PGA Tour
## 7468 Yarudora Series Vol. 2: Kisetsu wo Dakishimete
## 7469 NHL 2K3
## 7470 Heisei Kyouiku linkai DS
## 7471 SpongeBob SquarePants: Game Boy Advance Video Volume 3
## 7472 Pro Yaky? Spirits 2010
## 7473 The Naked Brothers Band: The Video Game
## 7474 Final Fight One
## 7475 Rune Factory: Tides of Destiny
## 7476 The Amazing Spider-Man (Console Version)
## 7477 NCAA Football 10
## 7478 Gallop Racer 2003: A New Breed
## 7479 Dawn of Discovery
## 7480 BeyBlade VForce: Super Tournament Battle
## 7481 Outlaw Golf 2
## 7482 Little Battlers eXperience: Baku Boost
## 7483 Anarchy Reigns
## 7484 CSI: Deadly Intent
## 7485 Defiance
## 7486 J-League Pro Soccer Club o Tsukurou! 7 Euro Plus
## 7487 LEGO Ninjago: Shadow of Ronin
## 7488 Bugs Bunny & Taz: Time Busters
## 7489 Need for Speed Carbon: Own the City
## 7490 Dragon Ball Z: Sagas
## 7491 Kung Fu Rider
## 7492 Jikkyou Powerful Pro Yakyuu 2012
## 7493 X2: Wolverine's Revenge
## 7494 Power Rangers: Wild Force
## 7495 The Wolf Among Us
## 7496 Thrillville
## 7497 Battle of Giants: Dinosaurs Strike
## 7498 Attack on Titan (KOEI)
## 7499 The King of Fighters '95
## 7500 Discovery Kids: Pony Paradise
## 7501 Mary-Kate and Ashley: Girls Night Out
## 7502 Cabela's North American Adventures
## 7503 Enchanted Arms
## 7504 Beyblade G-Revolution
## 7505 WWE All Stars
## 7506 Trade & Battle: Card Hero
## 7507 World Championship Cards
## 7508 You Don't Know Jack
## 7509 Chronicles of Mystery: Curse of the Ancient Temple
## 7510 NBA Live 15
## 7511 Capcom Fighting Evolution
## 7512 Frogger 3D
## 7513 SD Gundam GNext
## 7514 Backyard NFL Football 2006
## 7515 NASCAR Heat 2002
## 7516 Planet 51
## 7517 Sloane to MacHale no Nazo no Monogatari
## 7518 DarkStar One: Broken Alliance
## 7519 My Fitness Coach 2: Exercise and Nutrition
## 7520 Sengoku Basara 2 Heroes
## 7521 Buzz! The Schools Quiz
## 7522 Two Worlds II
## 7523 Suikoden Tactics
## 7524 NCAA March Madness 06
## 7525 Major League Baseball 2K11
## 7526 Mobile Suit Gundam: Crossfire
## 7527 Phantasy Star Online
## 7528 Crazy Taxi 3: High Roller
## 7529 Dark Messiah of Might and Magic Elements
## 7530 Just Dance 2: Extra Songs
## 7531 Midnight Club 3: DUB Edition Remix
## 7532 International Superstar Soccer 2000
## 7533 Warhammer 40,000: Space Marine
## 7534 CandyLand / Chutes & Ladders / Memory
## 7535 The Bible Game
## 7536 Drift King Shutokou Battle '94
## 7537 Shining Blade
## 7538 Fairy Fencer F
## 7539 Atelier Shallie: Alchemists of the Dusk Sea
## 7540 The Ultimate Red Ball Challenge
## 7541 PBR: Out of the Chute
## 7542 The King of Fighters Collection: The Orochi Saga
## 7543 Jikkyou Powerful Pro Yakyuu 10 Chou Ketteiban: 2003 Memorial
## 7544 Arcana Heart 3
## 7545 Tekken 3D: Prime Edition
## 7546 Deal or No Deal: The Banker is Back!
## 7547 Jillian Michaels' Fitness Adventure
## 7548 MLB 10: The Show
## 7549 State of Decay
## 7550 Ashes Cricket 2009
## 7551 Saturday Night Speedway
## 7552 Bratz: Rock Angelz
## 7553 Langrisser III
## 7554 Samurai Spirits (CD)
## 7555 MLB SlugFest 20-03
## 7556 Dragon Ball: Revenge of King Piccolo
## 7557 Spectrobes: Origins
## 7558 Earth Defense Force: Insect Armageddon
## 7559 Pitfall: The Lost Expedition
## 7560 Marvel: Ultimate Alliance 2
## 7561 From TV Animation One Piece: Grand Battle! 3
## 7562 Assassin's Creed Syndicate
## 7563 Rocket Power: Zero Gravity Zone
## 7564 Le Mans 24 Hours
## 7565 XCOM 2
## 7566 International Cricket 2010
## 7567 ESPN MLB Baseball
## 7568 Neighborhood Games
## 7569 All Star Pro-Wrestling
## 7570 Way of the Samurai 4
## 7571 Clive Barker's Jericho
## 7572 Harvest Moon: More Friends of Mineral Town
## 7573 Captain America: Super Soldier
## 7574 MLB 12: The Show
## 7575 The Fairly Odd Parents: Shadow Showdown
## 7576 NHL 17
## 7577 Mobile Suit Gundam Side Story II: Aoi o Uketsugu Mono
## 7578 Camping Mama: Outdoor Adventures
## 7579 Kurohyou 2: Ryu ga Gotoku Ashura Hen
## 7580 NBA 2K2
## 7581 X2: Wolverine's Revenge
## 7582 7th Dragon 2020
## 7583 Cars
## 7584 Taiko no Tatsujin: Waku Waku Anime Matsuri
## 7585 Imagine: Babyz Fashion
## 7586 Spy Hunter
## 7587 Warriors Orochi
## 7588 Dead to Rights II
## 7589 Super Dodge Ball Advance
## 7590 Ogre Battle Saga Episode Five: The March of the Black Queen
## 7591 Ridge Racer 6
## 7592 Angry Birds Star Wars
## 7593 Ni Hao, Kai-lan: New Year's Celebration
## 7594 Press Your Luck 2010 Edition
## 7595 Treasure World
## 7596 Front Mission Evolved
## 7597 Body and Brain Connection
## 7598 MDK
## 7599 Monster Jam
## 7600 Afro Samurai
## 7601 Rock Band Track Pack: Classic Rock
## 7602 Zone of the Enders HD Collection
## 7603 Ty the Tasmanian Tiger 2: Bush Rescue
## 7604 Speed Punks
## 7605 The Legend of Heroes VII: The Trail of Blue
## 7606 No More Heroes: Heroes' Paradise
## 7607 Mahjongg Mysteries: Ancient Egypt
## 7608 Saints Row IV
## 7609 Injustice: Gods Among Us
## 7610 MVP Baseball 2003
## 7611 CSI: Unsolved!
## 7612 Star Wars: Battlefront
## 7613 NCAA Final Four 2004
## 7614 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 7615 Tigger's Honey Hunt
## 7616 Famista 64
## 7617 Roadsters 99
## 7618 Magical Tetris Challenge
## 7619 Twisted Edge Extreme Snowboarding
## 7620 Disney's Tarzan
## 7621 South Park Rally
## 7622 Body Harvest
## 7623 San Francisco Rush 2049
## 7624 Super Robot Taisen 64
## 7625 Snowboard Kids
## 7626 NBA 07
## 7627 IHRA Drag Racing 2004
## 7628 Shining Hearts
## 7629 Magical ZhuZhu Princess: Carriages & Castles
## 7630 Code of Princess
## 7631 Tomb Raider: Underworld
## 7632 The Con
## 7633 Tony Hawk's Pro Skater 5
## 7634 Jissen Pachi-Slot Hisshouhou! Aladdin A
## 7635 Namco Museum: 50th Anniversary
## 7636 Ford Racing Off Road
## 7637 The Witch and the Hundred Knight
## 7638 Nobunaga no Yabou: Reppuuden
## 7639 Hot Wheels: Track Attack
## 7640 Schlag den Raab
## 7641 UFC Personal Trainer: The Ultimate Fitness System
## 7642 Total War: Shogun 2 - Fall of the Samurai
## 7643 The BIGS 2
## 7644 Mat Hoffman's Pro BMX 2
## 7645 Treasure Hunter G
## 7646 Untold Legends: Dark Kingdom
## 7647 From Russia With Love
## 7648 Wing Arms
## 7649 Dead Space 3
## 7650 Pro Yaky? Spirits 2013
## 7651 We Wish You A Merry Christmas
## 7652 BioShock The Collection
## 7653 DanceDanceRevolution
## 7654 Cabela's Big Game Hunter (2008)
## 7655 Grandia II
## 7656 Namco Museum Vol.4
## 7657 The Cheetah Girls: Passport to Stardom
## 7658 UFC Personal Trainer: The Ultimate Fitness System
## 7659 How to Train Your Dragon 2
## 7660 Shark Tale
## 7661 NFL Street 2
## 7662 Pro Yaky? Spirits 2013
## 7663 Teenage Mutant Ninja Turtles 3: Mutant Nightmare
## 7664 My Secret World by Imagine
## 7665 Soldier of Fortune: Payback
## 7666 Ridge Racer
## 7667 Bleach: The 3rd Phantom
## 7668 Gladius
## 7669 Family Feud: 2012 Edition
## 7670 Dave Mirra Freestyle BMX 2
## 7671 Spore Hero Arena
## 7672 Pro Yaky? Spirits 2012
## 7673 Puzzle & Dragons X: God Chapter / Dragon Chapter
## 7674 SpongeBob SquarePants: Revenge of the Flying Dutchman
## 7675 Record of Agarest War
## 7676 Baja: Edge of Control
## 7677 Sid Meier's Pirates!
## 7678 Taiko no Tatsujin: Go! Go! Godaime
## 7679 Taiko Drum Master
## 7680 High School Musical 3: Senior Year DANCE!
## 7681 Harry Potter and the Goblet of Fire
## 7682 Bust-A-Move 2 Arcade Edition
## 7683 South Park: The Stick of Truth
## 7684 Tom Clancy's Splinter Cell: Essentials
## 7685 Tetris Worlds (Online Edition)
## 7686 Armored Core 4
## 7687 Sleeping Dogs
## 7688 Forgotten Realms: Demon Stone
## 7689 Super Baseball Simulator 1.000
## 7690 Barbie Horse Adventures: Riding Camp
## 7691 Resident Evil: Revelations
## 7692 Go Play: Lumberjacks
## 7693 Looney Tunes: Space Race
## 7694 Puzzle Challenge: Crosswords and More!
## 7695 NASCAR Unleashed
## 7696 Backyard Hockey
## 7697 Playboy: The Mansion
## 7698 Jikkyou Powerful Pro Yakyuu 2010
## 7699 Shiren the Wanderer
## 7700 Ore no Shikabane o Koete Yuke
## 7701 Shaman King: Spirit of Shamans
## 7702 Tiger Woods PGA Tour 06
## 7703 Conan
## 7704 Ratatouille
## 7705 The Fairly Odd Parents: Enter the Cleft
## 7706 Warriors Orochi
## 7707 MC Groovz Dance Craze
## 7708 The Thing
## 7709 Tom and Jerry in House Trap
## 7710 Power Rangers: Time Force
## 7711 101-in-1 Explosive Megamix
## 7712 X-Men Origins: Wolverine
## 7713 Jikkyou Powerful Pro Yakyuu 2011
## 7714 DS Kageyama Method: Dennou Hanpuku - Masu x Masu Hyaku Masu Keisan
## 7715 Baldur's Gate: Dark Alliance
## 7716 Family Guy
## 7717 Prince of Persia: Warrior Within
## 7718 UFC: Tapout
## 7719 Aikatsu! Cinderella Lesson
## 7720 Marvel Super Hero Squad: Comic Combat
## 7721 Test Drive Unlimited 2
## 7722 Mega Man Legacy Collection
## 7723 Predator: Concrete Jungle
## 7724 Beyblade: Metal Fusion - Battle Fortress
## 7725 WipeOut 3 The Game
## 7726 Big Mutha Truckers 2
## 7727 Shutter Island
## 7728 The Naked Brothers Band: The Video Game
## 7729 Demon Gaze
## 7730 Zombie Army Trilogy
## 7731 NHL FaceOff 2001
## 7732 Mana Khemia 2: Fall of Alchemy
## 7733 The Great Escape
## 7734 Dexter's Lab Chess Challenge
## 7735 Nostalgia
## 7736 DiRT Showdown
## 7737 Iron Chef America: Supreme Cuisine
## 7738 Arcade Shooting Gallery
## 7739 The Rise of the Argonauts
## 7740 Big Mutha Truckers
## 7741 ESA Foundation Compilation
## 7742 The Hobbit
## 7743 The King of Fighters XI
## 7744 Ninja Gaiden 3
## 7745 Metro: Last Light
## 7746 Dragon Ball Z: Idainaru Dragon Ball Densetsu
## 7747 Silent Hill HD Collection
## 7748 Bound By Flame
## 7749 Conflict: Denied Ops
## 7750 Saw II: Flesh & Blood
## 7751 Ice Age: Dawn of the Dinosaurs
## 7752 Sniper Elite
## 7753 Arc Rise Fantasia
## 7754 Ni Hao, Kai-lan: Super Game Day
## 7755 Kouchuu Ouja Mushi King: Greatest Champion e no Michi DS
## 7756 Dynasty Warriors: Gundam 2
## 7757 Petz Pony: Beauty Pageant
## 7758 Parlor! Mini 4
## 7759 Breath of Fire II
## 7760 The Spiderwick Chronicles
## 7761 Danganronpa 2: Goodbye Despair
## 7762 Aliens vs Predator
## 7763 Ice Age 2: The Meltdown
## 7764 Steins
## 7765 Enchanted Arms
## 7766 Dinotopia: The Timestone Pirates
## 7767 Power Pro Kun Pocket 12
## 7768 J-League Jikkyou Winning Eleven 3
## 7769 The Sims 4: Get Together
## 7770 Jissen Pachi-Slot Hisshouhou
## 7771 Pac-Man & Galaga Dimensions
## 7772 Quantum Theory
## 7773 Manhunt
## 7774 NCAA Final Four 2003
## 7775 Air Conflicts: Secret Wars
## 7776 Rio
## 7777 Dream Salon
## 7778 Scene It? Twilight
## 7779 Disgaea DS
## 7780 Peter Jackson's King Kong: The Official Game of the Movie
## 7781 Space Invaders Extreme 2
## 7782 X-Men Origins: Wolverine
## 7783 Great Phoenix Wright: Ace Attorney - Naruhodou Ryuunosuke no Bouken
## 7784 Mystery Tales of Time Travel
## 7785 J-League Excite Stage '96
## 7786 Risen
## 7787 Hidden Mysteries: Vampire Secrets
## 7788 New Love Plus
## 7789 Final Fantasy XI
## 7790 Breath of Fire: Dragon Quarter
## 7791 Jikkyou J-League Perfect Striker
## 7792 Dante's Inferno
## 7793 Shrek: Forever After
## 7794 Rock Band Country Track Pack
## 7795 Super Robot Taisen: Scramble Commander
## 7796 Re-Volt
## 7797 Conception II: Children of the Seven Stars
## 7798 Descent
## 7799 Supreme Commander 2
## 7800 DanceMasters
## 7801 50 Cent: Blood on the Sand
## 7802 Disney's Magical Mirror Starring Mickey Mouse
## 7803 Need for Speed: The Run
## 7804 Jeep Thrills
## 7805 Conflict: Denied Ops
## 7806 FaceBreaker
## 7807 Major League Baseball 2K12
## 7808 Might & Magic: Clash of Heroes
## 7809 Avatar: The Last Airbender - Into the Inferno
## 7810 IHRA Professional Drag Racing 2005
## 7811 Mace Griffin: Bounty Hunter
## 7812 Legacy of Kain: Defiance
## 7813 Story of Seasons: Good Friends of the Three Villages
## 7814 Chaotic: Shadow Warriors
## 7815 Majin and the Forsaken Kingdom
## 7816 Trivial Pursuit unhinged
## 7817 Tales of the World: Narikiri Dungeon 2
## 7818 Spider-Man: Shattered Dimensions
## 7819 Aliens versus Predator: Extinction
## 7820 Plants vs. Zombies
## 7821 NBA Live 14
## 7822 Silent Scope 2: Dark Silhouette
## 7823 Dave Mirra Freestyle BMX 2
## 7824 Jikkyou Powerful Pro Yakyuu '96 Kaimakuban
## 7825 Tokimeki Memorial Girl's Side 3rd Story
## 7826 NHL Hitz Pro
## 7827 Tom Clancy's Splinter Cell: Blacklist
## 7828 Allied General
## 7829 Fire ProWrestling G
## 7830 Kamen Rider: Battride War
## 7831 Binary Domain
## 7832 IL-2 Sturmovik: Birds of Prey
## 7833 Farming Simulator 2015
## 7834 Armored Core: For Answer
## 7835 Mahjong: Journey Quest for Tikal
## 7836 uDraw Studio: Instant Artist
## 7837 Naruto: Ninja Destiny
## 7838 GunGriffon
## 7839 SingStar Pop Vol.2
## 7840 SNK Arcade Classics Vol. 1
## 7841 Darkstalkers 3
## 7842 SpongeBob's Surf & Skate Roadtrip
## 7843 Frequency
## 7844 Death Jr.
## 7845 Cars: Race-O-Rama
## 7846 Inazuma Eleven Strikers 2012 Xtreme
## 7847 The Polar Express
## 7848 2002 FIFA World Cup
## 7849 Kan Colle Kai
## 7850 SpongeBob SquigglePants 3D
## 7851 Jampack: Summer 2003 (RP-T)
## 7852 Need for Speed: Shift 2 Unleashed
## 7853 Monster 4x4: Stunt Racer
## 7854 Frogger's Adventures 2: The Lost Wand
## 7855 Sudeki
## 7856 Rango: The Video Game
## 7857 The Amazing Spider-Man (Console Version)
## 7858 Boku no Natsuyasumi 4: Seitouchi Shounen Tanteidan, Boku to Himitsu no Chizu
## 7859 Hyperdevotion Noire: Goddess Black Heart
## 7860 Hexen
## 7861 Mace: The Dark Age
## 7862 AeroFighters Assault
## 7863 Puyo Puyo Sun 64
## 7864 Chou-Kuukan Night Pro Yakyuu King (weekly JP sales)
## 7865 Quake
## 7866 Sesame Street: Elmo's Number Journey
## 7867 Disney Magic World 2
## 7868 Squeeballs Party
## 7869 Tottadoo! Yoiko no Mujintou Seikatsu
## 7870 Where's Waldo? The Fantastic Journey
## 7871 Family Game Night 4: The Game Show
## 7872 Teenage Mutant Ninja Turtles 2: Battle Nexus
## 7873 Saints Row IV
## 7874 Fighter Within
## 7875 Barbie Horse Adventures: Riding Camp
## 7876 SSX Tricky
## 7877 Kenka Banchou 4: Ichinen Sensou
## 7878 Warhammer: Shadow of the Horned Rat
## 7879 Shadows of the Damned
## 7880 NBA 2K11
## 7881 Pro Yakyuu Team o Tsukurou!
## 7882 Warriors: Legends of Troy
## 7883 Jeopardy!
## 7884 ESPN International Track & Field
## 7885 Lunar Legend
## 7886 Conflict: Global Terror
## 7887 Valhalla Knights 3
## 7888 Tamagotchi Party On!
## 7889 Hisshou Pachinko*Pachi-Slot Kouryaku Series Vol. 5: CR Shinseiki Evangelion * Pachi-Slot Shinseiki Evangelion
## 7890 Brunswick Pro Bowling
## 7891 Shaun White Skateboarding
## 7892 Hulk
## 7893 The Heavy Rain and Beyond: Two Souls Collection
## 7894 Cabela's Survival: Shadows of Katmai
## 7895 Shaun White Skateboarding
## 7896 Boogie
## 7897 Gungrave
## 7898 Phantasy Star Universe
## 7899 Transworld Surf
## 7900 God Eater Resurrection
## 7901 Tenchu: Fatal Shadows
## 7902 Active Health with Carol Vorderman
## 7903 Escape The Museum
## 7904 The Legend of Spyro: A New Beginning
## 7905 International Soccer
## 7906 Sing4: The Hits Edition
## 7907 Jewel Master: Cradle of Athena
## 7908 Princess Maker: Yumemiru Yosei
## 7909 Pet Zombies
## 7910 Big Air
## 7911 Shining Force II
## 7912 Gallop Racer
## 7913 Harry Potter and the Prisoner of Azkaban
## 7914 NASCAR Unleashed
## 7915 3rd Super Robot Wars Z Jigoku Hen
## 7916 Sudoku Gridmaster (JP sales)
## 7917 Dynasty Warriors Gundam
## 7918 Taiko no Tatsujin: Wii U Version!
## 7919 Monsters vs. Aliens
## 7920 CSI: Fatal Conspiracy
## 7921 College Slam
## 7922 Arcania: Gothic 4
## 7923 Mushroom Men: The Spore Wars
## 7924 Zumba Fitness Rush
## 7925 Pro Yaky? Spirits 4
## 7926 Pictionary
## 7927 SoulCalibur Legends
## 7928 Daigasso! Band Brothers
## 7929 Rise of the Kasai
## 7930 Thoroughbred Breeder
## 7931 F1 2011
## 7932 Momotarou Dentetsu World
## 7933 Nobunaga no Yabou: Souzou
## 7934 Doctor Who: Return to Earth
## 7935 The Munchables
## 7936 We Dance
## 7937 Chibi-Robo! Park Patrol
## 7938 Bolt
## 7939 Singstar: Ultimate Party
## 7940 Mathews Bowhunting
## 7941 3rd Super Robot Wars Z: Tengoku-Hen
## 7942 One Piece: Unlimited Adventure
## 7943 Remington Super Slam Hunting: North America
## 7944 Crash & Spyro Superpack
## 7945 Earth Defense Force: Insect Armageddon
## 7946 Face Training
## 7947 Star Trek: Legacy
## 7948 ThunderStrike 2
## 7949 Disney's Meet the Robinsons
## 7950 Call of Duty: World at War
## 7951 Pro Yaky? Spirits 2012
## 7952 Kuma-Tomo
## 7953 Super Real Mahjong P V
## 7954 Thomas the Tank Engine & Friends
## 7955 Grand Slam Tennis 2
## 7956 Penguin no Mondai X: Tenkuu no 7 Senshi
## 7957 The Scorpion King: Sword of Osiris
## 7958 Bubsy 3D
## 7959 Reel Fishing Paradise 3D
## 7960 NCAA Final Four 2001
## 7961 Farmtopia
## 7962 Robin Hood: Defender of the Crown
## 7963 SD Gundam GX
## 7964 R-Type Final
## 7965 Jackie Chan Adventures: Legend of the Dark Hand
## 7966 MotoGP
## 7967 Sega GT 2002
## 7968 Ty the Tasmanian Tiger 3: Night of the Quinkan
## 7969 WWE SmackDown vs. Raw 2009
## 7970 Pro Evolution Soccer 2014
## 7971 Samurai Warriors 2: Empires
## 7972 Blood Omen 2
## 7973 Jurassic: The Hunted
## 7974 J-League Pro Soccer Club o Tsukurou! 5
## 7975 Harry Potter: Quidditch World Cup
## 7976 Dance Central: Spotlight
## 7977 Little Battlers eXperience W
## 7978 Magical Starsign (US sales)
## 7979 Tekken Tag Tournament 2
## 7980 Hot Wheels: Battle Force 5
## 7981 Dragon Blade: Wrath of Fire
## 7982 La Pucelle: Tactics
## 7983 Phantasy Star Nova
## 7984 SBK X: Superbike World Championship
## 7985 Samurai Warriors: State of War
## 7986 Tiger Woods PGA Tour 07
## 7987 Call of Juarez
## 7988 Star Wars: The Clone Wars & Tetris Worlds
## 7989 The Bee Game
## 7990 EverQuest Online Adventures: Frontiers
## 7991 Cabela's Survival: Shadows of Katmai
## 7992 NBA Ballers: Chosen One
## 7993 WWE All Stars
## 7994 Treasures of the Deep
## 7995 Phantasy Star Online Ver. 2
## 7996 EyePet & Friends
## 7997 The Lord of the Rings: War in the North
## 7998 Major League Baseball 2K10
## 7999 Fight Club
## 8000 Hello Kitty: Birthday Adventures
## 8001 Syndicate
## 8002 Dance Dance Revolution: Disney Grooves
## 8003 Pure Futbol
## 8004 Harvest Moon: A Wonderful Life Special Edition
## 8005 Sports Illustrated for Kids: Football
## 8006 The Last Airbender
## 8007 Happy Cooking
## 8008 .hack//Quarantine Part 4: The Final Chapter
## 8009 Close Combat: First to Fight
## 8010 MotoGP 14
## 8011 Indiana Jones and the Emperor's Tomb
## 8012 NBA Live 08
## 8013 Buffy the Vampire Slayer: Chaos Bleeds
## 8014 Half-Minute Hero
## 8015 Rock Band Track Pack Volume 2
## 8016 Reel Fishing II
## 8017 Ringling Bros. and Barnum & Bailey Circus
## 8018 The Walking Dead: Season One
## 8019 Ty the Tasmanian Tiger
## 8020 Dead or Alive
## 8021 Driving Emotion Type-S
## 8022 Siren
## 8023 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 8024 NARC
## 8025 Naruto Shippuden: Dragon Blade Chronicles
## 8026 Dynasty Warriors 8: Empires
## 8027 Super Robot Taisen J
## 8028 Evolve
## 8029 Nep League DS
## 8030 Ar tonelico 2: Melody of Metafalica
## 8031 de Blob 2
## 8032 Lips: Party Classics
## 8033 Casper: Friends Around the World
## 8034 Borderlands
## 8035 Jurassic Park III: Island Attack
## 8036 Chaotic: Shadow Warriors
## 8037 Ghostbusters: The Video Game
## 8038 GameBoy Wars
## 8039 Amplitude
## 8040 Alone in the Dark
## 8041 Company of Heroes: Anthology
## 8042 Shape Up
## 8043 Gauntlet: Seven Sorrows
## 8044 AirForce Delta Storm
## 8045 Trauma Team
## 8046 Monopoly Party
## 8047 Fear Effect 2: Retro Helix
## 8048 How to Train Your Dragon
## 8049 Remember Me
## 8050 International Superstar Soccer 2000 (JP weekly sales)
## 8051 Chocobo no Fushigi Dungeon for WonderSwan
## 8052 Klonoa: Door to Phantomile
## 8053 Vietcong: Purple Haze
## 8054 Hitman: HD Trilogy
## 8055 Atari Anniversary Advance
## 8056 Summer Athletics: The Ultimate Challenge
## 8057 Driver: San Francisco
## 8058 Metal Gear Ac!d 2
## 8059 Hatsune Miku and Future Stars: Project Mirai
## 8060 Let's TAP
## 8061 X-Men Origins: Wolverine
## 8062 TalkMan (Japan)
## 8063 Cabela's Adventure Camp
## 8064 LEGO Marvel's Avengers
## 8065 Bloody Roar: Primal Fury
## 8066 Shrek SuperSlam
## 8067 We Sing UK Hits
## 8068 Mega Man Soccer
## 8069 The Chronicles of Narnia: Prince Caspian
## 8070 ZhuZhu Puppies
## 8071 Rabbids Party Collection
## 8072 Trinity Universe
## 8073 Jewel Match
## 8074 FIFA Soccer 07
## 8075 Dungeon Travelers 2: The Royal Library & The Monster Seal
## 8076 Dying Light
## 8077 Vampire Savior: The Lord of Vampire
## 8078 Pokémon I Choose You / Squirtle Squad Game Boy Advance Video
## 8079 Super Robot Taisen UX
## 8080 Six Flags Fun Park
## 8081 Test Drive Off-Road Wide Open
## 8082 Guilty Gear Xrd: Sign
## 8083 Pro Yaky? Spirits 2011
## 8084 Ben 10 Ultimate Alien: Cosmic Destruction
## 8085 Dengeki Bunko Fighting Climax
## 8086 Battle Commander: Hachibushu Shura no Heihou
## 8087 Backbreaker
## 8088 Odin Sphere: Leifthrasir
## 8089 Bad Boys: Miami Takedown
## 8090 Jampack Vol. 1
## 8091 Spider-Man: Friend or Foe
## 8092 Mega Man X: Command Mission
## 8093 Tokyo Xtreme Racer DRIFT
## 8094 Moon
## 8095 FIFA Soccer 11
## 8096 LEGO Marvel Super Heroes
## 8097 Cabela's Big Game Hunter 2005 Adventures
## 8098 Disney Friends
## 8099 Sesame Street: Elmo's Letter Adventure
## 8100 Re-Volt
## 8101 Gokujou Parodius
## 8102 Hyperdimension Neptunia
## 8103 Gauntlet: Dark Legacy
## 8104 A.C.E.: Another Century's Episode 2
## 8105 Guitar Hero Live
## 8106 Shadow The Hedgehog
## 8107 Ridge Racer Unbounded
## 8108 Burnout Legends
## 8109 Horrid Henry: Missions of Mischief
## 8110 Batman: Vengeance
## 8111 Full Auto 2: Battlelines
## 8112 Soccer Tsuku Tokudai Gou: J-League Pro Soccer Club o Tsukurou
## 8113 The Adventures of Cookie & Cream
## 8114 Van Helsing
## 8115 Aliens: Colonial Marines
## 8116 Splatterhouse
## 8117 MindJack
## 8118 Dark Souls II
## 8119 Daigasso! Band Brothers P
## 8120 Gun
## 8121 World of Outlaws: Sprint Cars
## 8122 Marvel Super Hero Squad: Comic Combat
## 8123 SingStar Motown
## 8124 Cabela's Legendary Adventures
## 8125 F1 Challenge
## 8126 Transformers: Dark of the Moon
## 8127 Shadow Madness
## 8128 Tom Clancy's Ghost Recon: Future Soldier
## 8129 Tiger Woods PGA Tour 2004
## 8130 Aliens: Infestation
## 8131 Brink
## 8132 The Game of Life / Yahtzee / Payday
## 8133 American Chopper 2: Full Throttle
## 8134 Dynasty Warriors: Gundam 3
## 8135 FIFA 16
## 8136 Silent Hill 4: The Room
## 8137 Heavy Fire: Afghanistan
## 8138 Commandos 2: Men of Courage
## 8139 Doom (2016)
## 8140 Chuck E. Cheese's Party Games
## 8141 Pro Evolution Soccer 2013
## 8142 Pirates: Hunt For Blackbeard's Booty
## 8143 FIFA Soccer 2002
## 8144 Godzilla (2015)
## 8145 Race Pro
## 8146 Atari Anniversary Edition Redux
## 8147 Toukiden: The Age of Demons
## 8148 Fireblade
## 8149 Mercury Meltdown Revolution
## 8150 Disney's Tarzan Untamed
## 8151 WordJong Party
## 8152 Brunswick Circuit Pro Bowling
## 8153 Cabela's Dangerous Hunts 2009
## 8154 Velvet Assassin
## 8155 Ball Breakers
## 8156 Mobile Suit Gundam Seed Destiny: Generation of C.E.
## 8157 EyeToy: Groove
## 8158 Twisted Metal: Small Brawl
## 8159 Disgaea 4: A Promise Unforgotten
## 8160 Charlie and the Chocolate Factory
## 8161 Armored Core: Last Raven
## 8162 Tomb Raider: Underworld
## 8163 All Grown Up! Express Yourself
## 8164 College Hoops 2K7
## 8165 K-1 World Grand Prix
## 8166 Skate it
## 8167 Kidou Senshi Gundam: Senjou no Kizuna Portable
## 8168 Otomedius Excellent
## 8169 Super Robot Taisen A Portable
## 8170 Juiced
## 8171 Looney Tunes: Back in Action
## 8172 Virtua Tennis
## 8173 Tales of the Tempest
## 8174 SimCity Creator (JP sales)
## 8175 Biohazard: Revival Selection
## 8176 Sonic Riders: Zero Gravity
## 8177 Driver: San Francisco
## 8178 UFC: Sudden Impact
## 8179 Shawn Johnson Gymnastics
## 8180 NBA Hoopz
## 8181 Captain America: Super Soldier
## 8182 TRON: Evolution
## 8183 Pac-Man World 3
## 8184 ESPN X Games Skateboarding
## 8185 Nancy Drew: The Hidden Staircase
## 8186 Brunswick Cosmic Bowling
## 8187 Star Wars: Battlefront II
## 8188 Speedball 2100
## 8189 LEGO Island 2: The Brickster's Revenge
## 8190 College Hoops 2K8
## 8191 FIFA 17
## 8192 Fancy Nancy: Tea Party Time!
## 8193 Backyard Basketball
## 8194 Madden NFL 09
## 8195 Scooby-Doo! Unmasked
## 8196 Summon Night 4
## 8197 Pro Yaky? Spirits 5
## 8198 NHL 2004
## 8199 Namco Museum: 50th Anniversary
## 8200 You Don't Know Jack
## 8201 Marvel Super Hero Squad: The Infinity Gauntlet
## 8202 NFL 2K2
## 8203 My French Coach
## 8204 Camp Rock: The Final Jam
## 8205 NBA Starting Five
## 8206 Castlevania Judgment
## 8207 Dead or Alive Paradise
## 8208 The Suffering: Ties That Bind
## 8209 Disney Sing It: Family Hits
## 8210 Ashes Cricket 2009
## 8211 EyeToy: Kinetic
## 8212 Petz: Horseshoe Ranch
## 8213 Army Men: Sarge's Heroes 2
## 8214 Stormrise
## 8215 Yu-Gi-Oh! Zexal World Duel Carnival
## 8216 Winning Eleven: Pro Evolution Soccer 2007
## 8217 Green Lantern: Rise of the Manhunters
## 8218 Monkey Island: Special Edition Collection
## 8219 Broken Sword: Shadows of the Templars - The Director's Cut
## 8220 The Wild Thornberrys: Animal Adventures
## 8221 MotoGP 10/11
## 8222 Jikkyou Powerful Pro Baseball 2016
## 8223 SEGA Bass Fishing Duel
## 8224 Teen Titans
## 8225 Hyperdimension Neptunia U: Action Unleashed
## 8226 Sports Illustrated for Kids: Baseball
## 8227 Fairytale Fights
## 8228 Mark Davis Pro Bass Challenge
## 8229 Rugrats: Royal Ransom
## 8230 Warriors of Might and Magic
## 8231 Open Season
## 8232 The Chronicles of Narnia: Prince Caspian
## 8233 Back to the Future: The Game
## 8234 Project Spark
## 8235 Backyard Sports Football: Rookie Rush
## 8236 Street Fighter: The Movie
## 8237 Lost in Blue 3
## 8238 World Championship Poker
## 8239 Global Defence Force
## 8240 Rapala Fishing Frenzy 2009
## 8241 Major League Baseball 2K6
## 8242 Major League Baseball 2K9
## 8243 SaGa 2: Hihou Densetsu - Goddess of Destiny
## 8244 Smash Court Tennis Pro Tournament
## 8245 The Cursed Crusade
## 8246 Super Robot Taisen L
## 8247 The Grim Adventures of Billy & Mandy
## 8248 NBA Inside Drive 2004
## 8249 The King of Fighters '97
## 8250 Dungeon Siege III
## 8251 Cabela's Big Game Hunter: Hunting Party
## 8252 Time Commando
## 8253 Professional Fisherman's Tour: Northern Hemisphere
## 8254 Iron Chef America: Supreme Cuisine
## 8255 Kekkaishi: Karasumori Ayakashi Kidan
## 8256 Gretzky NHL 2005
## 8257 FaceBreaker
## 8258 Squeeballs Party
## 8259 NCAA Football 09 All-Play
## 8260 Yakuza Zero: The Place of Oath
## 8261 The Hobbit
## 8262 The Secret World
## 8263 NHL 2K9
## 8264 X-Men: The Official Game
## 8265 True Crime: New York City
## 8266 Metal Arms: Glitch in the System
## 8267 PlayStation Move Heroes
## 8268 The Idolm@ster: Shiny Festa - Honey Sound / Funky Note / Groovy Tune
## 8269 Ice Age: Dawn of the Dinosaurs
## 8270 ESPN Final Round Golf 2002
## 8271 MDK2 Armageddon
## 8272 Exhibition Volume 02
## 8273 Watchmen: The End is Nigh - The Complete Experience
## 8274 Fight Night Round 2
## 8275 Sudoku Gridmaster
## 8276 Disney's Atlantis: The Lost Empire
## 8277 Power Pro Kun Pocket
## 8278 The King of Fighters '97
## 8279 Tamagotchi no Narikiri Challenge
## 8280 Goosebumps HorrorLand
## 8281 One Piece: Unlimited World Red
## 8282 Space Battleship Yamato: Harukanaru Hoshi Iscandar
## 8283 Sound Novel Evolution 1: Otogirisou Sosei-Hen
## 8284 Dementium: The Ward
## 8285 Psi-Ops: The Mindgate Conspiracy
## 8286 SWAT: Global Strike Team
## 8287 Despicable Me: The Game
## 8288 MX World Tour Featuring Jamie Little
## 8289 Goblin Commander: Unleash the Horde
## 8290 Hello Kitty: Happy Party Pals
## 8291 Ringling Bros. and Barnum & Bailey: Circus Friends
## 8292 Backyard NFL Football '09
## 8293 World Destruction League: Thunder Tanks
## 8294 Shin Megami Tensei IV: Final
## 8295 Age of Empires III: Complete Collection
## 8296 Finding Nemo: Escape to the Big Blue
## 8297 Backyard Baseball '10
## 8298 Resident Evil Director's Cut: Dual Shock Edition
## 8299 The Lord of the Rings: Aragorn's Quest
## 8300 Top Spin 2
## 8301 N3 II: Ninety-Nine Nights
## 8302 The King of Fighters '95
## 8303 RoadKill
## 8304 Hanjuku Eiyuu Tai 3D
## 8305 .hack//G.U. Vol.3//Redemption
## 8306 Chuck E. Cheese's Party Games
## 8307 Super Robot Taisen Compact 2 Dai-1-Bu
## 8308 Looney Tunes: Back in Action
## 8309 Tak: The Great Juju Challenge
## 8310 Macross Ultimate Frontier
## 8311 Cabela's Legendary Adventures
## 8312 Jillian Michaels Fitness Ultimatum 2011
## 8313 Pursuit Force: Extreme Justice
## 8314 Backbreaker
## 8315 Hunter: The Reckoning Redeemer
## 8316 The Rise of the Argonauts
## 8317 NHL 07
## 8318 Pro Evolution Soccer 2014
## 8319 Tokyo Xtreme Racer
## 8320 Fighter Maker
## 8321 Bee Movie Game
## 8322 Backyard NFL Football '10
## 8323 Professor Heinz Wolff's Gravity
## 8324 Thief: Deadly Shadows
## 8325 Buzz! Brain of the UK
## 8326 NBA 09: The Inside
## 8327 Transformers: Prime
## 8328 Batman Begins
## 8329 Transformer: Rise of the Dark Spark
## 8330 Glover
## 8331 Dragon Ball GT: Game Boy Advance Video Volume 1
## 8332 Luxor 3
## 8333 Bratz Kidz
## 8334 Fairytale Fights
## 8335 James Cameron's Dark Angel
## 8336 MotoGP 09/10
## 8337 Mahjong Fight Club
## 8338 World Driver Championship
## 8339 Bomberman 64: The Second Attack!
## 8340 Turok 3: Shadow of Oblivion
## 8341 Spawn: Armageddon
## 8342 Codename: Kids Next Door: Game Boy Advance Video Volume 1
## 8343 Zoo Hospital
## 8344 Pokémon Beach Blank-out Blastoise / Go West Young Meowth Game Boy Advance Video
## 8345 Time and Eternity
## 8346 Major League Baseball 2K9
## 8347 Gundam Assault Survive
## 8348 Disney TH!NK Fast: The Ultimate Trivia Showdown
## 8349 Fate/Stay Night [Réalta Nua]
## 8350 Disney's Home on the Range
## 8351 Sid Meier's Civilization IV
## 8352 Jikkyou Powerful Pro Yakyuu 2013
## 8353 Space Griffon VF-9
## 8354 Family Feud Decades
## 8355 NBA Live 16
## 8356 CSI: Fatal Conspiracy
## 8357 Solitaire Overload Plus
## 8358 .hack//G.U. Vol.1//Rebirth
## 8359 Gyakuten Saiban 3
## 8360 Tak: Mojo Mistake
## 8361 Gallop Racer 2001
## 8362 Nightmare Creatures II
## 8363 Marble Saga: Kororinpa
## 8364 Fuzion Frenzy 2
## 8365 Catwoman
## 8366 Monsters vs. Aliens
## 8367 Country Dance: All Stars
## 8368 Garfield: Lasagna World Tour
## 8369 Teenage Mutant Ninja Turtles: Game Boy Advance Video Volume 1
## 8370 Disney's Planes
## 8371 Bomberman Land
## 8372 Bomberman B-Daman
## 8373 Terminator 3: The Redemption
## 8374 World Destruction League: Thunder Tanks
## 8375 Beat Down: Fists of Vengeance
## 8376 Reloaded
## 8377 Sword of the Samurai
## 8378 MotoGP 15
## 8379 SSX On Tour
## 8380 Hot Wheels: Beat That!
## 8381 G-Force
## 8382 James Bond 007: Everything or Nothing
## 8383 Naruto Shippuden: Ultimate Ninja 5
## 8384 Shrek Extra Large
## 8385 Final Fantasy V
## 8386 World Tour Soccer 2006
## 8387 Gunvalkyrie
## 8388 NickToons: Racing
## 8389 VR Golf '97
## 8390 Michael Jackson: The Experience 3D
## 8391 State of Emergency
## 8392 Digimon Story: Cyber Sleuth
## 8393 Off-World Interceptor Extreme
## 8394 Bakugan Battle Brawlers: Defenders of the Core
## 8395 Disney Golf
## 8396 The Naked Brothers Band: The Video Game
## 8397 Custom Robo Arena
## 8398 Clock Tower II: The Struggle Within
## 8399 Batman Beyond: Return of the Joker
## 8400 Surf's Up
## 8401 Jikkyou Powerful Pro Baseball 2016
## 8402 Mega Man Network Transmission
## 8403 I'm A Celebrity: Get Me Out of Here!
## 8404 Pursuit Force
## 8405 Densetsu no Stafi 4
## 8406 Shin Megami Tensei: Devil Summoner 2 - Raidou Kuzunoha vs. King Abaddon (JP sales)
## 8407 Naval Assault: The Killing Tide
## 8408 Tokimeki Memorial: Private Collection
## 8409 RC Revenge Pro
## 8410 Valkyria Chronicles
## 8411 Hellboy: The Science of Evil
## 8412 Backyard Wrestling: Don't Try This at Home
## 8413 Zoo Keeper
## 8414 Gauntlet: Dark Legacy
## 8415 Toukiden Kiwami
## 8416 Far East of Eden II: Manji Maru
## 8417 Lost Kingdoms
## 8418 WRC 2: FIA World Rally Championship
## 8419 Blood Bowl
## 8420 Matchbox Cross Town Heroes
## 8421 Wolfenstein 3D
## 8422 Nobunaga no Yabou: Tenshoki
## 8423 Learning to Spell
## 8424 Go, Diego, Go! Safari Rescue
## 8425 Super Power League
## 8426 Easy Piano
## 8427 Street Fighter Alpha 2
## 8428 Dragon Quest X
## 8429 Payday 2
## 8430 25 to Life
## 8431 Sumikko Gurashi: Koko ga Ochitsukundesu
## 8432 NASCAR '15
## 8433 TransFormers Animated: The Game
## 8434 Fracture
## 8435 Sega Superstars
## 8436 Midway Arcade Treasures
## 8437 Leisure Suit Larry: Magna Cum Laude
## 8438 Mousetrap / Operation / Simon
## 8439 Klonoa
## 8440 Splatterhouse
## 8441 NBA 09: The Inside
## 8442 Spyro: Shadow Legacy
## 8443 Resident Evil
## 8444 Wildstar
## 8445 Dragon Ball: Fusions
## 8446 Apache: Air Assault
## 8447 TOEIC Test Training DS
## 8448 Jikkyou Powerful Pro Yakyuu 2014
## 8449 Senran Kagura: Estival Versus
## 8450 Itoi Shigesato no Bass Tsuri No. 1
## 8451 Cubivore: Survival of the Fittest
## 8452 The Sims 3: Seasons
## 8453 Anarchy Reigns
## 8454 FlatOut
## 8455 Project X Zone 2: Brave New World
## 8456 NCAA Basketball 09
## 8457 Bakugan Battle Brawlers: Defenders of the Core
## 8458 Mr. Do!'s Castle
## 8459 Death Trap
## 8460 Armor Ambush
## 8461 Parodius
## 8462 Thrillville: Off the Rails
## 8463 Hyperdimension Neptunia Victory
## 8464 Taz Wanted
## 8465 Mobile Suit Gundam: Extreme VS Force
## 8466 Sid Meier's Pirates!
## 8467 MLB 16: The Show
## 8468 Phantasy Star Online 2
## 8469 Vehicular Combat League presents Motor Mayhem
## 8470 PoPoLoCrois: Hajimari no Bouken
## 8471 Star Wars: Super Bombad Racing
## 8472 Hamster Heroes
## 8473 Hot Wheels Velocity X
## 8474 Ar Nosurge: Ode to an Unborn Star
## 8475 Chaotic: Shadow Warriors
## 8476 Leisure Suit Larry: Box Office Bust
## 8477 Alien Resurrection
## 8478 World Tour Soccer 2005
## 8479 Dungeon Siege: Throne of Agony
## 8480 Spider-Man: Web of Shadows - Amazing Allies Edition
## 8481 F1 2011
## 8482 Rio
## 8483 Gunslingers
## 8484 Create
## 8485 Lufia: Curse of the Sinistrals
## 8486 El Shaddai: Ascension of the Metatron
## 8487 ESPN College Hoops
## 8488 Thor: God of Thunder
## 8489 F1 Championship Season 2000
## 8490 Guilty Gear Judgment
## 8491 Pen 1 Grand Prix: Penguin no Mondai Special
## 8492 Clash of the Titans
## 8493 Around the World in 80 Days
## 8494 Robotech: Battlecry
## 8495 True Swing Golf
## 8496 Zapper: One Wicked Cricket!
## 8497 Bomberman Land
## 8498 Paws & Claws: Pet Resort
## 8499 Kya: Dark Lineage
## 8500 Dynasty Warriors 8: Xtreme Legends
## 8501 Curious George
## 8502 Monster Jam
## 8503 Medieval Games
## 8504 Stronghold 3
## 8505 The Amazing Spider-Man (Console Version)
## 8506 Kid Adventures: Sky Captain
## 8507 Lethal Skies II
## 8508 Doctor Lautrec and the Forgotten Knights
## 8509 Disney's American Dragon Jake Long: Attack of the Dark Dragon
## 8510 Godzilla Unleashed
## 8511 Kamaitachi no Yoru × 3
## 8512 Tom and Jerry: Infurnal Escape
## 8513 The Legend of Heroes VII: The Trail of Zero
## 8514 Warriors Orochi 3
## 8515 King's Field
## 8516 Hannah Montana: Rock Out the Show
## 8517 Let's Ride: Sunshine Stables
## 8518 World Stadium 4
## 8519 Midway Arcade Treasures 2
## 8520 Hot Wheels World Race
## 8521 San Goku Shi Taisen DS
## 8522 Kawa no Nushi Tsuri
## 8523 N2O: Nitrous Oxide
## 8524 Magic: The Gathering - Battlegrounds
## 8525 Heroes over Europe
## 8526 Dancing With The Stars
## 8527 Major League Baseball 2K12
## 8528 Pro Evolution Soccer 2015
## 8529 Bladestorm: Nightmare
## 8530 Otogirisou
## 8531 SD Gundam G Generation 3D
## 8532 Crash Tag Team Racing
## 8533 Grease Dance
## 8534 Ready 2 Rumble Revolution
## 8535 My Baby 3 & Friends
## 8536 NASCAR '14
## 8537 TimeSplitters: Future Perfect
## 8538 Midway Arcade Treasures 3
## 8539 Dr. Muto
## 8540 Beowulf: The Game
## 8541 Puzzle Quest: Galactrix
## 8542 DS Rakubiki Jiten
## 8543 SeaWorld Adventure Parks: Shamu's Deep Sea Adventure
## 8544 Fatal Frame II: Crimson Butterfly
## 8545 Angry Birds Trilogy
## 8546 Dewy's Adventure
## 8547 Shadow Man: 2econd Coming
## 8548 Yu-Gi-Oh! 5D's Tag Force 6
## 8549 NPPL: Championship Paintball 2009
## 8550 Dynasty Warriors 4
## 8551 Wakeboarding Unleashed Featuring Shaun Murray
## 8552 The Incredibles: Rise of the Underminer
## 8553 Jikkyou Powerful Pro Yakyuu 3 '97 Haru
## 8554 Alone in the Dark: The New Nightmare
## 8555 The BIGS
## 8556 Flushed Away
## 8557 Eragon
## 8558 Scarface: Money. Power. Respect.
## 8559 Summon Night EX-Thesis: Yoake no Tsubasa
## 8560 Pro Yaky? Spirits 3
## 8561 Silent Scope 3
## 8562 World Series of Poker: Tournament of Champions 2007 Edition
## 8563 NASCAR Heat 2002
## 8564 Namco Classic Fighter Collection
## 8565 International Superstar Soccer Deluxe
## 8566 TNA iMPACT!
## 8567 Intellivision Lives!
## 8568 Field Commander
## 8569 Robots
## 8570 Little League World Series Baseball 2009
## 8571 The King of Fighters XII
## 8572 Doctor Who: Evacuation Earth
## 8573 Murdered: Soul Suspect
## 8574 Ener-G: Dance Squad
## 8575 Our House
## 8576 SimEarth: The Living Planet
## 8577 Major League Baseball 2K11
## 8578 Sengoku Basara: Chronicle Heroes
## 8579 NBA 2K12
## 8580 The Wild Thornberrys: Chimp Chase
## 8581 Power Stakes
## 8582 Fighters Destiny
## 8583 Asteroids Hyper 64
## 8584 The Powerpuff Girls: Chemical X-Traction
## 8585 Jikkyou Powerful Pro Yakyuu Basic-han 2001
## 8586 Tom and Jerry in Fists of Furry
## 8587 Hydro Thunder
## 8588 Space Invaders
## 8589 Starcraft 64
## 8590 Destruction Derby 64
## 8591 Buck Bumble
## 8592 California Speed
## 8593 Wonder Project J2: Koruro no Mori no Josette
## 8594 Culdcept SAGA
## 8595 Take A Break's: Puzzle Master
## 8596 Dragon Ball: Origins 2
## 8597 Minna no DS Seminar: Kanpeki Kanji Ryoku
## 8598 Innocent Life: A Futuristic Harvest Moon
## 8599 The Crew
## 8600 Macross Ace Frontier
## 8601 Black & Bruised
## 8602 Sherlock Holmes vs. Jack the Ripper
## 8603 .hack//G.U. Vol.2//Reminisce (jp sales)
## 8604 Rapala Pro Fishing
## 8605 TimeShift
## 8606 Blitz: The League
## 8607 Scripps Spelling Bee
## 8608 MotionSports: Adrenaline
## 8609 Ener-G Horse Riders
## 8610 Time Hollow
## 8611 Farming Simulator 2013
## 8612 Rudolph the Red-Nosed Reindeer
## 8613 Shinobido 2: Tales of the Ninja
## 8614 SpongeBob's Truth or Square
## 8615 Ghost in the Shell: Stand Alone Complex
## 8616 Rondo of Swords (US sales)
## 8617 Bulletstorm
## 8618 Battle Soccer: Field no Hasha
## 8619 Shaun White Skateboarding
## 8620 MLB 11: The Show
## 8621 Vegas Party
## 8622 Amped 3
## 8623 Family Party: 30 Great Games Outdoor Fun
## 8624 FlatOut 2
## 8625 Naruto: Ultimate Ninja Heroes 2 - The Phantom Fortress
## 8626 FIFA Soccer 96
## 8627 Burger Island
## 8628 Dynasty Warriors 8
## 8629 NCAA Final Four 2001
## 8630 Tak and the Guardians of Gross
## 8631 Just Dance: Disney Party
## 8632 LEGO The Lord of the Rings
## 8633 Dengeki Bunko Fighting Climax
## 8634 J-League Jikkyou Winning Eleven 2000
## 8635 Eve: The Lost One
## 8636 Chessmaster: The Art of Learning
## 8637 Yu-Gi-Oh! 5D's: Duel Transer
## 8638 LEGO Legends of Chima: Laval's Journey
## 8639 Konami Krazy Racers
## 8640 Saturday Night Slam Masters
## 8641 Blitz: The League II
## 8642 F-Zero: GP Legend
## 8643 Racing Lagoon
## 8644 Victorious: Hollywood Arts Debut
## 8645 Mr. Driller 2
## 8646 Just Sing!
## 8647 Darksiders II
## 8648 Dragon's Lair Trilogy
## 8649 Trivial Pursuit: Bet You Know It
## 8650 Imagine: Ice Champions
## 8651 J-League Pro Soccer Club o Tsukurou! 6: Pride of J
## 8652 Nicktoons: MLB
## 8653 Sniper: Ghost Warrior
## 8654 Left Brain Right Brain: Use Both Hands Train Both Sides
## 8655 Rio
## 8656 Power Rangers Double Pack
## 8657 Mugen Souls
## 8658 Yakuza Kiwami
## 8659 Pachi-Slot Kanzen Kouryaku 3: Universal Koushiki Gaido Volume 3
## 8660 BCFX: The Black College Football Xperience, The Doug Williams Edition
## 8661 FIFA Soccer 97
## 8662 Saw II: Flesh & Blood
## 8663 Psychic Force
## 8664 Trigger Man
## 8665 Bomberman Land Touch! 2
## 8666 Michael Jackson: The Experience
## 8667 The Godfather: Blackhand Edition
## 8668 StarBlade α
## 8669 Kidou Senshi Gundam: Giren no Yabou - Axis no Kyoui
## 8670 Tiger Woods PGA Tour 2004
## 8671 Monster House
## 8672 Angry Birds Star Wars
## 8673 Backyard Sports: Sandlot Sluggers
## 8674 Guilty Gear Xrd: Sign
## 8675 Arcade Zone
## 8676 SpongeBob's Boating Bash
## 8677 7th Dragon III Code: VFD
## 8678 DiRT 3
## 8679 Culdcept
## 8680 Birds of Steel
## 8681 Rudolph the Red-Nosed Reindeer
## 8682 WWE '13
## 8683 MX 2002 Featuring Ricky Carmichael
## 8684 Halo Triple Pack
## 8685 Street Racer
## 8686 Bomberman
## 8687 NBA 2K3
## 8688 Arcana Heart
## 8689 NHL 2005
## 8690 World Soccer Winning Eleven 2010: Aoki Samurai no Chousen
## 8691 Infected
## 8692 Battlestar Galactica
## 8693 The Walking Dead: Season One
## 8694 Kingdom Hearts: Birth by Sleep - Final Mix
## 8695 Bust-A-Move Bash!
## 8696 Block Party
## 8697 Toriko: Gourmet Monsters!
## 8698 The Incredible Hulk: The Pantheon Saga
## 8699 Darksiders II
## 8700 Megamind: Ultimate Showdown
## 8701 The Idolm@ster 2
## 8702 Space Camp
## 8703 Imagine: Music Fest
## 8704 AC/DC LIVE: Rock Band Track Pack
## 8705 Senran Kagura: Sh?jo-tachi no Shinei
## 8706 Ultimate Spider-Man
## 8707 Fist of the North Star: Ken's Rage
## 8708 Jurassic Park: The Game
## 8709 He-Man: Power of Grayskull
## 8710 WordJong
## 8711 Putty Squad
## 8712 Polaris SnoCross
## 8713 Wing Commander III: Heart of the Tiger
## 8714 Top Spin 4
## 8715 Prince of Persia: The Forgotten Sands
## 8716 Mat Hoffman's Pro BMX 2
## 8717 Muppet RaceMania
## 8718 Namco Museum Vol.5
## 8719 Courier Crisis
## 8720 Bleach: Dark Souls
## 8721 The Oregon Trail
## 8722 Digimon Battle Spirit 2
## 8723 Winning Post 3
## 8724 FIFA 06: Road to FIFA World Cup
## 8725 Driven
## 8726 F.E.A.R. 3
## 8727 de Blob 2
## 8728 Warhammer 40,000: Fire Warrior
## 8729 Hot Wheels: Battle Force 5
## 8730 James Noir's Hollywood Crimes
## 8731 Deadly Premonition
## 8732 Bomberman
## 8733 MTV Music Generator 2
## 8734 The Quest Trio
## 8735 Chaotic: Shadow Warriors
## 8736 Space Invaders Extreme
## 8737 Burnout 2: Point of Impact
## 8738 Paris-Dakar Rally
## 8739 All-Pro Football 2K8
## 8740 Dragon Ball Z: Harukanaru Densetsu (JP sales)
## 8741 Atelier Iris: Eternal Mana
## 8742 Blinx 2: Masters of Time & Space
## 8743 Stormrise
## 8744 NHL 2K10
## 8745 FIFA Street 2
## 8746 Tak: The Great Juju Challenge
## 8747 Deponia
## 8748 Harvest Moon: The Lost Valley
## 8749 Knockout Kings 2003
## 8750 NCAA Football 2004
## 8751 XGIII: Extreme G Racing
## 8752 NHL 17
## 8753 Jewel Quest Solitaire
## 8754 Metal Gear Solid V: Ground Zeroes
## 8755 Digimon World 4
## 8756 Cars: Race-O-Rama
## 8757 Disney's Story Studio: Disney's Mulan
## 8758 Klax
## 8759 Pressure Cooker
## 8760 Saturn Bomberman
## 8761 Home Run
## 8762 Jikkyou Powerful Pro Yakyuu Portable
## 8763 The Adventures of Tintin: The Game
## 8764 American Chopper
## 8765 Sonny with a Chance
## 8766 Murdered: Soul Suspect
## 8767 Farm Frenzy: Animal Country
## 8768 Kingdom Under Fire: Heroes
## 8769 Wolfenstein: The Old Blood
## 8770 The Terminator: Dawn of Fate
## 8771 Cartoon Network Collection: Game Boy Advance Video Special Edition
## 8772 Naruto Shippuden: Legends: Akatsuki Rising
## 8773 Scooby-Doo! Unmasked
## 8774 Streak: Hoverboard Racing
## 8775 Samurai Warriors: Katana
## 8776 Project Sylpheed: Arc of Deception
## 8777 Enthusia Professional Racing
## 8778 NCAA GameBreaker 2001
## 8779 Get On Da Mic
## 8780 Heroes of Mana
## 8781 Jurassic: The Hunted
## 8782 Army Men: Sarge's War
## 8783 Horse Life Adventures
## 8784 Amagami
## 8785 Ice Age 2: The Meltdown
## 8786 Jikkyou Powerful Pro Yakyuu 2009
## 8787 Blazing Angels 2: Secret Missions of WWII
## 8788 Bigfoot: Collision Course
## 8789 Marvel Super Hero Squad: The Infinity Gauntlet
## 8790 Kidou Senkan Nadesico
## 8791 Tears to Tiara II: Heir of the Overlord
## 8792 Frogger's Adventures: The Rescue
## 8793 The Incredibles: Rise of the Underminer
## 8794 Darksiders
## 8795 The Secret Saturdays: Beasts of the 5th Sun
## 8796 Countdown: The Game
## 8797 Active Life Explorer
## 8798 MLB Power Pros 2008
## 8799 The Fairly Odd Parents: Clash with the Anti-World
## 8800 Theatrhythm Dragon Quest
## 8801 Major League Baseball 2K10
## 8802 Naruto: Powerful Shippuden
## 8803 Disney's The Lion King: Simba's Mighty Adventure
## 8804 Family Party: Fitness Fun
## 8805 Thor: God of Thunder
## 8806 Fantastic Four: Rise of the Silver Surfer
## 8807 Metal Slug Anthology
## 8808 GoldenEye 007 (2010)
## 8809 Jikkyou Powerful Pro Yakyuu 2012
## 8810 All Japan Pro Wrestling featuring Virtua
## 8811 Rudra no Hihou
## 8812 Gundam Breaker 2
## 8813 Prince of Persia: The Sands of Time
## 8814 Cake Mania: In The Mix!
## 8815 Zoids: Battle Legends
## 8816 World Series Baseball 2K3
## 8817 Serious Sam
## 8818 Kowloon's Gate
## 8819 Killer7
## 8820 Kingdom of Paradise
## 8821 Hidden Mysteries: Salem Secrets - Witch Trials of 1692
## 8822 NBA Street Homecourt
## 8823 The Sims Medieval: Pirates and Nobles
## 8824 The Cursed Crusade
## 8825 Super Monkey Ball Adventure
## 8826 Kids Learn Math: A+ Edition
## 8827 FIFA Soccer 2002
## 8828 Build-A-Bear Workshop: Welcome to Hugsville
## 8829 Street Fighter Anniversary Collection
## 8830 Final Fantasy XI: Vana'diel Collection 2008
## 8831 Suzumiya Haruhi no Yakusoku
## 8832 Shadow Ops: Red Mercury
## 8833 Indigo Prophecy
## 8834 Mind Zero
## 8835 World League Soccer
## 8836 NBA ShootOut 2001
## 8837 Earth Defense Force 2025
## 8838 Spider-Man: Friend or Foe
## 8839 Ultimate Board Game Collection
## 8840 Syndicate
## 8841 Samurai Shodown Anthology
## 8842 NBA 09: The Inside
## 8843 Musashi: Samurai Legend
## 8844 Saint Seiya: Soldiers' Soul
## 8845 Terraria
## 8846 Castlevania: Lords of Shadow - Mirror of Fate
## 8847 3rd Super Robot Wars Z: Tengoku-Hen
## 8848 Fantasia: Music Evolved
## 8849 Pokémon: Johto Photo Finish: Game Boy Advance Video
## 8850 F1 2001
## 8851 The Legend of Heroes: Trails of Cold Steel II
## 8852 Top Gun: Combat Zones
## 8853 J-League Victory Goal
## 8854 Bakugan Battle Brawlers: Defenders of the Core
## 8855 Oreshika: Tainted Bloodlines
## 8856 White Knight Chronicles: Origins
## 8857 Return to PopoloCrois: A Story of Seasons Fairytale
## 8858 Spongebob Squarepants / Fairly Odd Parents Double Pack
## 8859 History Civil War: Secret Missions
## 8860 NHL 09
## 8861 Mirror's Edge Catalyst
## 8862 Derby Stallion 64
## 8863 Doraemon 3: Nobi Dai no Machi SOS!
## 8864 Space Station Silicon Valley
## 8865 Dark Rift
## 8866 Tokyo Xanadu
## 8867 All-Star Baseball 2003
## 8868 Burger Island
## 8869 Petz: Dogz Talent Show
## 8870 T'ai Fu: Wrath of the Tiger
## 8871 Rocky
## 8872 Ford Racing 2
## 8873 Odin Sphere: Leifthrasir
## 8874 Sam & Max: Season One
## 8875 Virtua Tennis 4
## 8876 Tetris Attack
## 8877 Candace Kane's Candy Factory
## 8878 BloodRayne 2
## 8879 Hot Wheels: Beat That!
## 8880 Soldier of Fortune: Payback
## 8881 Jaws Unleashed
## 8882 Pro Yaky? Spirits 6
## 8883 Star Trek: Voyager Elite Force
## 8884 X-Men: The Official Game
## 8885 Brain Boost: Gamma Wave
## 8886 Scarface: The World is Yours
## 8887 Rock Band: Metal Track Pack
## 8888 Chessmaster II
## 8889 All-Star Baseball 2003
## 8890 Scooby-Doo! Mystery Mayhem
## 8891 Winning Post 4
## 8892 Major League Baseball 2K13
## 8893 DreamWorks Super Star Kartz
## 8894 Pro Baseball Spirits 2015
## 8895 187: Ride or Die
## 8896 Curious George
## 8897 Strawberry Shortcake: Game Boy Advance Video Volume 1
## 8898 Armored Core: For Answer
## 8899 Geist
## 8900 eJay Clubworld
## 8901 Cardinal Syn
## 8902 Charm Girls Club: Pajama Party
## 8903 Street Fighter Alpha 3
## 8904 The Wizard of Oz: Beyond The Yellow Brick Road
## 8905 Mobile Suit Gundam Side Story III: Sabakareshi Mono
## 8906 Ridge Racer DS
## 8907 Warriors Orochi 3
## 8908 Nancy Drew: The White Wolf of Icicle Creek
## 8909 Super Street Fighter II
## 8910 Metal Gear Solid: Peace Walker HD Edition
## 8911 Battle Stadium D.O.N
## 8912 No.1 Muscle Ranking - Kinniku Banzuke Vol. 2: Aratanarugenkai Enochousen!
## 8913 Brain Boost: Beta Wave
## 8914 Power Pro Kun Pocket 9
## 8915 Rubik's World
## 8916 Gallop & Ride!
## 8917 Shenmue II
## 8918 Major League Baseball 2K8
## 8919 Capcom Classics Collection
## 8920 Fugitive Hunter: War on Terror
## 8921 The Incredible Hulk: Ultimate Destruction
## 8922 Prince of Persia: The Two Thrones
## 8923 Ore no Imouto ga Konna ni Kawaii wake ga Nai Portable
## 8924 Baseball Blast!
## 8925 Pac-Man World 3
## 8926 The Walking Dead: Season Two
## 8927 Harvest Moon: Hero of Leaf Valley
## 8928 Phantasy Star Online Episode I & II
## 8929 F1 2012
## 8930 All-Star Baseball 2005
## 8931 Rayman Raving Rabbids
## 8932 Kung-Fu: High Impact
## 8933 SNK Arcade Classics Vol. 1
## 8934 Darkstalkers Chronicle: The Chaos Tower
## 8935 NHL 2K10
## 8936 Batman Begins
## 8937 Toy Story Racer
## 8938 Yakuza: Ishin
## 8939 F1 2011
## 8940 Disney's Donald Duck: Goin' Quackers
## 8941 Mobile Suit Gundam: Perfect One Year War
## 8942 Galerians
## 8943 Crash: Twinsanity
## 8944 DrumMania
## 8945 Yu-Gi-Oh! Nightmare Troubadour (US sales)
## 8946 Code:Realize - Sousei no Himegimi
## 8947 Hoppechan: Tsukutte! Asonde! Punipuni Town!!
## 8948 Deus Ex: Mankind Divided
## 8949 Arena Football
## 8950 Tamagotchi no Narikiri Channel
## 8951 Power Pro Kun Pocket 1+2
## 8952 Rayman Origins
## 8953 Thor: God of Thunder
## 8954 Medal of Honor: Infiltrator
## 8955 Risen 2: Dark Waters
## 8956 Blazing Dragons
## 8957 Geometry Wars: Galaxies
## 8958 Super Monkey Ball Deluxe
## 8959 Shin Megami Tensei: Devil Summoner - Soul Hackers
## 8960 Shin Chan: ¡Aventuras de Cine!
## 8961 Alien: Isolation
## 8962 High Velocity Bowling
## 8963 Tamagotchi Collection
## 8964 Pac-Man Party 3D
## 8965 NewU Fitness First Mind Body, Yoga & Pilates Workout
## 8966 Backyard Sports: Sandlot Sluggers
## 8967 Turbo Prop Racing
## 8968 Barbie Superpack: Secret Agent / Groovy Games
## 8969 Tom Clancy's Ghost Recon
## 8970 Dance Dance Revolution (North America)
## 8971 Bakugan Battle Brawlers: Defenders of the Core
## 8972 Mad Dash Racing
## 8973 Dreamworks 2-in-1 Party Pack
## 8974 Summon Night 5
## 8975 MotoGP 2: Ultimate Racing Technology
## 8976 Black * Rock Shooter: The Game
## 8977 Travel Games For Dummies
## 8978 BMX XXX
## 8979 SafeCracker: The Ultimate Puzzle Adventure
## 8980 Tiger Woods PGA Tour
## 8981 Dragon Ball Z: Idainaru Dragon Ball Densetsu
## 8982 Sonic Advance & Sonic Pinball Party Combo Pack
## 8983 Boktai: The Sun is in Your Hand
## 8984 Cars: Mater-National Championship
## 8985 Making History: The Great War
## 8986 Drawn to Life Collection
## 8987 Guilty Gear X2 #Reload
## 8988 Wizardry VII: Gadeia no Houshu
## 8989 Dynasty Warriors 8: Xtreme Legends
## 8990 Moshi Monsters: Katsuma Unleashed
## 8991 Elf: The Movie
## 8992 Metal Slug 7
## 8993 MLB SlugFest 20-03
## 8994 Tamagotchi no Appare! Niji Venture
## 8995 Grabbed by the Ghoulies
## 8996 Ys: The Oath in Felghana
## 8997 Shadow Hearts: From The New World
## 8998 Mega Man Powered Up
## 8999 CSI: 3 Dimensions of Murder
## 9000 Barbarian
## 9001 QuickSpot
## 9002 Deception IV: Blood Ties
## 9003 Tennis no Oji-Sama: Aim at The Victory!
## 9004 L.A. Rush
## 9005 Lunar 2: Eternal Blue(sales, but wrong system)
## 9006 Where the Wild Things Are
## 9007 Pipe Dreams 3D
## 9008 Derby Stallion Gold
## 9009 Adventure Time: Explore the Dungeon Because I Don't Know!
## 9010 Lost Dimension
## 9011 Fox Sports Golf '99
## 9012 Jurassic: The Hunted
## 9013 Power Rangers: Super Legends
## 9014 Sakura Wars GB
## 9015 Shining Force CD
## 9016 Rayman 3
## 9017 Fatal Frame
## 9018 The Fifth Element
## 9019 Kung Fu Panda 2
## 9020 Fast Food Panic
## 9021 Diner Dash: Flo on the Go
## 9022 Adrenalin Misfits
## 9023 Okaeri! Chibi-Robo! Happy Richie Oosouji
## 9024 Wild ARMs 4
## 9025 Haunted House
## 9026 Ratatouille
## 9027 G.I. Joe: The Rise of Cobra
## 9028 Casper: Spirit Dimensions
## 9029 Super Robot Taisen OG Saga: Endless Frontier (JP sales)
## 9030 Sengoku Musou 3 Empires
## 9031 Dream Pinball 3D
## 9032 Thunder Truck Rally
## 9033 Dishonored
## 9034 Klonoa: Empire of Dreams
## 9035 G.I. Joe: The Rise of Cobra
## 9036 Dragon Age: Origins - Ultimate Edition
## 9037 Balloon Pop
## 9038 Disney Infinity 2.0: Marvel Super Heroes
## 9039 Iron & Blood
## 9040 Asphalt: Urban GT 2
## 9041 Pinball Hall of Fame: The Gottlieb Collection
## 9042 Second Sight
## 9043 Spider-Man: Edge of Time
## 9044 Monster House
## 9045 Phantom Brave
## 9046 Just Cause
## 9047 ArmA II
## 9048 Championship Motocross 2001 featuring Ricky Carmichael
## 9049 Kenka Banchou 5: Otoko no Housoku
## 9050 Legend of the Guardians: The Owls of Ga'Hoole
## 9051 Doshin the Giant
## 9052 Shrek 2 and Shark Tale 2-in-1 Pack
## 9053 Star Ocean: Blue Sphere
## 9054 Mojo!
## 9055 Destroy All Humans! Big Willy Unleashed
## 9056 Age of Empires: Collector's Edition
## 9057 Ford Racing Off Road
## 9058 Kamen Rider Ryuki
## 9059 Front Mission Alternative
## 9060 World Championship Poker: Howard Lederer - All In
## 9061 FIFA Soccer 2005
## 9062 Cave Story 3D
## 9063 The Orange Box
## 9064 Super Dodgeball Brawlers
## 9065 Victorious Boxers: Revolution
## 9066 Record of Agarest War 2
## 9067 SBK 2011: FIM Superbike World Championship
## 9068 Power Stone
## 9069 Jonny Moseley Mad Trix
## 9070 Monster Lab
## 9071 Uta no * Prince-Sama: Repeat
## 9072 Senran Kagura Burst: Guren no Sh?jo-tachi
## 9073 MTV Music Generator 3: This Is the Remix
## 9074 Cake Mania 3
## 9075 .hack//Link
## 9076 Terminator 3: Rise of the Machines
## 9077 Star Wars: Knights of the Old Republic
## 9078 SSX On Tour
## 9079 NCAA College Basketball 2K3
## 9080 Class of Heroes
## 9081 Yogi Bear: The Video Game
## 9082 Our House Party!
## 9083 The Legend of Heroes II: Prophecy of the Moonlight Witch
## 9084 Cranium Kabookii
## 9085 Hero's Saga Laevatein Tactics
## 9086 Doom
## 9087 Gundam Breaker 2
## 9088 TRINITY: Souls of Zill O'll
## 9089 Mary-Kate and Ashley: Winners Circle
## 9090 PaRappa The Rapper 2
## Platform Year Genre Publisher NA_Sales
## 1 Wii 2006 Sports Nintendo 41.49
## 2 NES 1985 Platform Nintendo 29.08
## 3 Wii 2008 Racing Nintendo 15.85
## 4 Wii 2009 Sports Nintendo 15.75
## 5 GB 1996 Role-Playing Nintendo 11.27
## 6 GB 1989 Puzzle Nintendo 23.20
## 7 DS 2006 Platform Nintendo 11.38
## 8 Wii 2006 Misc Nintendo 14.03
## 9 Wii 2009 Platform Nintendo 14.59
## 10 NES 1984 Shooter Nintendo 26.93
## 11 DS 2005 Simulation Nintendo 9.07
## 12 DS 2005 Racing Nintendo 9.81
## 13 GB 1999 Role-Playing Nintendo 9.00
## 14 Wii 2007 Sports Nintendo 8.94
## 15 Wii 2009 Sports Nintendo 9.09
## 16 X360 2010 Misc Microsoft Game Studios 14.97
## 17 PS3 2013 Action Take-Two Interactive 7.01
## 18 PS2 2004 Action Take-Two Interactive 9.43
## 19 SNES 1990 Platform Nintendo 12.78
## 20 DS 2005 Misc Nintendo 4.75
## 21 DS 2006 Role-Playing Nintendo 6.42
## 22 GB 1989 Platform Nintendo 10.83
## 23 NES 1988 Platform Nintendo 9.54
## 24 X360 2013 Action Take-Two Interactive 9.63
## 25 PS2 2002 Action Take-Two Interactive 8.41
## 26 GBA 2002 Role-Playing Nintendo 6.06
## 27 DS 2010 Role-Playing Nintendo 5.57
## 28 DS 2005 Puzzle Nintendo 3.44
## 29 PS2 2001 Racing Sony Computer Entertainment 6.85
## 30 X360 2011 Shooter Activision 9.03
## 31 GB 1998 Role-Playing Nintendo 5.89
## 32 X360 2010 Shooter Activision 9.67
## 33 3DS 2013 Role-Playing Nintendo 5.17
## 34 PS4 2015 Shooter Activision 5.77
## 35 PS3 2012 Shooter Activision 4.99
## 36 X360 2012 Shooter Activision 8.25
## 37 X360 2009 Shooter Activision 8.52
## 38 PS3 2011 Shooter Activision 5.54
## 39 PS2 2001 Action Take-Two Interactive 6.99
## 40 Wii 2008 Fighting Nintendo 6.75
## 41 PS3 2010 Shooter Activision 5.98
## 42 DS 2005 Simulation Nintendo 2.55
## 43 3DS 2011 Racing Nintendo 4.74
## 44 X360 2007 Shooter Microsoft Game Studios 7.97
## 45 PS4 2014 Action Take-Two Interactive 3.80
## 46 DS 2009 Action Nintendo 4.40
## 47 N64 1996 Platform Nintendo 6.91
## 48 PS2 2004 Racing Sony Computer Entertainment 3.01
## 49 Wii 2007 Platform Nintendo 6.16
## 50 3DS 2014 Role-Playing Nintendo 4.23
## 51 GB 1992 Adventure Nintendo 6.16
## 52 X360 2008 Action Take-Two Interactive 6.76
## 53 PS 1997 Racing Sony Computer Entertainment 4.02
## 54 3DS 2011 Platform Nintendo 4.89
## 55 PS3 2010 Racing Sony Computer Entertainment 2.96
## 56 PS3 2009 Shooter Activision 4.99
## 57 PS3 2008 Action Take-Two Interactive 4.76
## 58 SNES 1993 Platform Nintendo 5.99
## 59 GBA 2004 Role-Playing Nintendo 4.34
## 60 DS 2004 Platform Nintendo 5.08
## 61 Wii 2011 Misc Ubisoft 6.05
## 62 X360 2013 Shooter Activision 6.72
## 63 X360 2010 Shooter Microsoft Game Studios 7.03
## 64 N64 1996 Racing Nintendo 5.55
## 65 3DS 2012 Platform Nintendo 3.66
## 66 X360 2012 Shooter Microsoft Game Studios 6.63
## 67 PS 1997 Role-Playing Sony Computer Entertainment 3.01
## 68 PS3 2013 Shooter Activision 4.09
## 69 Wii 2010 Misc Ubisoft 5.84
## 70 PS 1999 Racing Sony Computer Entertainment 3.88
## 71 X360 2007 Shooter Activision 5.91
## 72 SNES 1994 Platform Nintendo 4.36
## 73 X360 2013 Misc Microsoft Game Studios 5.58
## 74 3DS 2012 Simulation Nintendo 2.01
## 75 DS 2007 Misc Nintendo 4.46
## 76 X360 2011 Role-Playing Bethesda Softworks 5.03
## 77 SNES 1992 Racing Nintendo 3.54
## 78 PS4 2015 Sports Electronic Arts 1.11
## 79 Wii 2010 Misc Nintendo 1.79
## 80 XB 2004 Shooter Microsoft Game Studios 6.82
## 81 Wii 2007 Misc Nintendo 3.81
## 82 DS 2012 Role-Playing Nintendo 2.91
## 83 PS3 2012 Action Electronic Arts 1.06
## 84 PC 2009 Simulation Electronic Arts 0.98
## 85 N64 1997 Shooter Nintendo 5.80
## 86 Wii 2007 Sports Sega 2.58
## 87 PS2 2001 Role-Playing Sony Computer Entertainment 2.91
## 88 PS 1999 Role-Playing SquareSoft 2.28
## 89 DS 2008 Role-Playing Nintendo 2.82
## 90 2600 1982 Puzzle Atari 7.28
## 91 PSP 2005 Action Take-Two Interactive 2.90
## 92 Wii 2010 Platform Nintendo 3.66
## 93 PS4 2015 Shooter Electronic Arts 2.93
## 94 PS4 2014 Shooter Activision 2.80
## 95 N64 1998 Action Nintendo 4.10
## 96 PS 1997 Platform Sony Computer Entertainment 3.78
## 97 NES 1988 Platform Nintendo 5.39
## 98 3DS 2014 Fighting Nintendo 3.24
## 99 X360 2008 Shooter Activision 4.79
## 100 X360 2011 Shooter Electronic Arts 4.46
## 101 Wii 2006 Action Nintendo 3.83
## 102 XOne 2015 Shooter Activision 4.52
## 103 Wii 2009 Misc Ubisoft 3.51
## 104 PS3 2011 Shooter Electronic Arts 2.85
## 105 PS2 2003 Racing Electronic Arts 3.27
## 106 PS 1998 Fighting Sony Computer Entertainment 3.27
## 107 PS 1998 Platform Sony Computer Entertainment 3.68
## 108 GC 2001 Fighting Nintendo 4.41
## 109 WiiU 2014 Racing Nintendo 3.13
## 110 PS4 2015 Role-Playing Bethesda Softworks 2.47
## 111 GC 2003 Racing Nintendo 4.12
## 112 Wii 2012 Misc Ubisoft 4.14
## 113 PS3 2013 Sports Electronic Arts 0.78
## 114 PS2 2004 Racing Electronic Arts 2.71
## 115 PS2 2002 Shooter Electronic Arts 2.93
## 116 PS3 2011 Action Sony Computer Entertainment 2.77
## 117 PS 1996 Platform Sony Computer Entertainment 3.23
## 118 Wii 2010 Sports 505 Games 3.50
## 119 X360 2008 Shooter Microsoft Game Studios 4.15
## 120 PS3 2009 Action Sony Computer Entertainment 3.27
## 121 PS3 2007 Shooter Activision 3.10
## 122 PS3 2011 Sports Electronic Arts 0.84
## 123 DS 2005 Misc Nintendo 1.67
## 124 PS3 2010 Action Take-Two Interactive 2.79
## 125 PS4 2014 Sports Electronic Arts 0.79
## 126 Wii 2010 Platform Nintendo 3.25
## 127 PS3 2011 Role-Playing Bethesda Softworks 2.55
## 128 NES 1986 Action Nintendo 3.74
## 129 PS3 2012 Action Ubisoft 2.64
## 130 XB 2001 Shooter Microsoft Game Studios 4.98
## 131 GBA 2004 Role-Playing Nintendo 2.57
## 132 PS2 2002 Role-Playing Sony Computer Entertainment 3.64
## 133 GB 2000 Role-Playing Nintendo 2.55
## 134 X360 2009 Shooter Microsoft Game Studios 4.34
## 135 X360 2010 Action Take-Two Interactive 3.70
## 136 GC 2002 Platform Nintendo 4.01
## 137 SNES 1992 Fighting Capcom 2.47
## 138 PC 2004 Role-Playing Activision 0.07
## 139 PS 1999 Action GT Interactive 3.11
## 140 X360 2010 Sports Microsoft Game Studios 3.92
## 141 X360 2011 Shooter Microsoft Game Studios 4.05
## 142 X360 2006 Shooter Microsoft Game Studios 3.54
## 143 PS2 2001 Action Konami Digital Entertainment 2.45
## 144 GEN 1992 Platform Sega 4.47
## 145 PS3 2008 Action Konami Digital Entertainment 2.63
## 146 PS 1998 Action Konami Digital Entertainment 3.18
## 147 PS3 2013 Action Sony Computer Entertainment Europe 2.41
## 148 PS2 2006 Role-Playing Square Enix 1.88
## 149 PS3 2008 Platform Sony Computer Entertainment 2.80
## 150 DS 2009 Role-Playing Nintendo 0.66
## 151 Wii 2007 Action LucasArts 3.66
## 152 PS 1998 Action Virgin Interactive 1.88
## 153 PS 1996 Fighting Sony Computer Entertainment 2.26
## 154 DS 2006 Simulation 505 Games 3.13
## 155 PS4 2014 Shooter Activision 2.49
## 156 NES 1988 Puzzle Nintendo 2.97
## 157 PS3 2009 Action Ubisoft 2.54
## 158 N64 1999 Fighting Nintendo 2.95
## 159 X360 2007 Adventure Ubisoft 3.28
## 160 PS3 2011 Action Warner Bros. Interactive Entertainment 2.70
## 161 X360 2009 Racing Microsoft Game Studios 2.99
## 162 PSP 2008 Role-Playing Capcom 0.47
## 163 GBA 2001 Platform Nintendo 3.14
## 164 GBA 2001 Racing Nintendo 2.62
## 165 GBA 2001 Platform Nintendo 3.21
## 166 N64 1999 Strategy Nintendo 3.18
## 167 PS3 2008 Shooter Activision 2.72
## 168 PS2 2001 Platform Universal Interactive 2.07
## 169 PS3 2014 Misc Sony Computer Entertainment 1.97
## 170 PS3 2009 Role-Playing Square Enix 1.74
## 171 GB 1989 Puzzle Nintendo 2.18
## 172 GB 1999 Misc Nintendo 3.02
## 173 X360 2012 Action Ubisoft 3.13
## 174 PS 2000 Role-Playing SquareSoft 1.62
## 175 PS2 2003 Role-Playing Electronic Arts 1.92
## 176 N64 1999 Platform Nintendo 3.33
## 177 X360 2009 Action Ubisoft 3.10
## 178 DS 2007 Puzzle Nintendo 1.22
## 179 PS 1997 Action Eidos Interactive 2.30
## 180 PS2 NA Sports Electronic Arts 4.26
## 181 PS2 2004 Role-Playing Square Enix 0.65
## 182 PC 2012 Role-Playing Activision 2.43
## 183 GBA 2003 Platform Nintendo 2.93
## 184 WiiU 2012 Platform Nintendo 2.32
## 185 GB 1994 Platform Nintendo 2.49
## 186 X360 2012 Action Electronic Arts 1.08
## 187 DS 2007 Action Nintendo 1.90
## 188 SNES 1995 Platform Nintendo 2.10
## 189 3DS 2013 Simulation Nintendo 0.96
## 190 DS 2008 Sports Sega 1.64
## 191 PS2 2003 Shooter Electronic Arts 1.98
## 192 GB 1992 Platform Nintendo 2.71
## 193 X360 2010 Role-Playing Microsoft Game Studios 3.59
## 194 XOne 2014 Shooter Activision 3.21
## 195 PC 1996 Simulation Microsoft Game Studios 3.22
## 196 PS2 2006 Misc RedOctane 3.81
## 197 PS3 2009 Action Capcom 1.96
## 198 XOne 2014 Action Take-Two Interactive 2.66
## 199 PSP 2006 Action Take-Two Interactive 1.70
## 200 PS3 2010 Sports Electronic Arts 0.60
## 201 GB 1999 Platform Nintendo 3.40
## 202 PS 1996 Action Virgin Interactive 2.05
## 203 PS 1999 Sports Activision 3.42
## 204 WiiU 2014 Fighting Nintendo 2.59
## 205 PS 1999 Strategy Eidos Interactive 2.79
## 206 PS 1998 Platform Sony Computer Entertainment 3.36
## 207 Wii 2007 Shooter Nintendo 3.06
## 208 PS2 2007 Misc Activision 3.49
## 209 X360 2008 Role-Playing Bethesda Softworks 3.39
## 210 DS 2007 Role-Playing Nintendo 1.85
## 211 PS3 2007 Action Sony Computer Entertainment 2.31
## 212 PS2 2005 Sports Electronic Arts 3.98
## 213 DS 2007 Action LucasArts 2.89
## 214 N64 1997 Racing Nintendo 2.91
## 215 PSP 2010 Role-Playing Capcom 0.00
## 216 NES 1990 Puzzle Nintendo 2.62
## 217 PS3 2010 Action Sony Computer Entertainment 2.74
## 218 PC 2010 Strategy Activision 2.56
## 219 PS3 2007 Adventure Ubisoft 1.91
## 220 PS3 2014 Sports Electronic Arts 0.57
## 221 PS 1999 Racing Sony Computer Entertainment 2.57
## 222 PS4 2016 Sports Electronic Arts 0.28
## 223 X360 2011 Action Warner Bros. Interactive Entertainment 2.99
## 224 PS 2000 Action Atari 2.36
## 225 PS2 2003 Racing Vivendi Games 1.73
## 226 PS 2000 Sports Activision 3.05
## 227 Wii 2008 Simulation Nintendo 1.87
## 228 PS2 2002 Action Electronic Arts 1.94
## 229 X360 2011 Racing Microsoft Game Studios 2.08
## 230 PS 1996 Action Eidos Interactive 2.29
## 231 Wii 2007 Misc Activision 3.06
## 232 SNES 1991 Action Nintendo 2.42
## 233 GC 2002 Action Nintendo 2.60
## 234 Wii 2009 Sports Sega 1.89
## 235 3DS 2013 Action Nintendo 1.78
## 236 WiiU 2015 Shooter Nintendo 1.55
## 237 PS4 2014 Action Sony Computer Entertainment 1.78
## 238 X360 2007 Misc Activision 3.19
## 239 PS2 2004 Sports Electronic Arts 4.18
## 240 2600 1981 Platform Activision 4.21
## 241 PS2 2006 Sports Electronic Arts 3.63
## 242 PS2 2002 Action Activision 2.71
## 243 PS 2000 Role-Playing Enix Corporation 0.20
## 244 PS4 2015 Action Sony Computer Entertainment 1.96
## 245 PS3 2014 Shooter Activision 1.54
## 246 PS2 2005 Action Sony Computer Entertainment 2.71
## 247 WiiU 2012 Misc Nintendo 2.55
## 248 Wii 2010 Misc Ubisoft 2.67
## 249 PS2 2001 Sports Activision 2.66
## 250 PS2 2006 Sports Konami Digital Entertainment 0.10
## 251 X360 2006 Role-Playing Take-Two Interactive 2.82
## 252 NES 1987 Adventure Nintendo 2.19
## 253 PS2 2005 Racing Electronic Arts 2.03
## 254 PS3 2006 Shooter Sony Computer Entertainment 1.73
## 255 GEN 1991 Platform Sega 3.03
## 256 PS2 2005 Role-Playing Square Enix 2.20
## 257 X360 2013 Sports Electronic Arts 0.92
## 258 X360 2014 Shooter Activision 2.75
## 259 2600 1980 Shooter Atari 4.00
## 260 X360 2008 Role-Playing Microsoft Game Studios 2.51
## 261 XOne 2015 Shooter Microsoft Game Studios 2.64
## 262 WiiU 2013 Platform Nintendo 2.11
## 263 PS3 2009 Action Eidos Interactive 2.23
## 264 PS3 2011 Action Ubisoft 1.41
## 265 GBA 2001 Misc Namco Bandai Games 3.00
## 266 PS2 2004 Action Konami Digital Entertainment 1.46
## 267 PSP 2006 Platform Sony Computer Entertainment 2.45
## 268 PC 1995 Strategy Activision 1.70
## 269 3DS 2011 Action Nintendo 2.03
## 270 PS2 2005 Sports Electronic Arts 0.78
## 271 PS2 2003 Misc Sony Computer Entertainment 0.88
## 272 PS4 2016 Shooter Sony Computer Entertainment 1.30
## 273 PS3 2007 Racing Sony Computer Entertainment 1.28
## 274 X360 2011 Action Ubisoft 2.25
## 275 PS3 2009 Fighting Capcom 2.02
## 276 X360 2011 Sports Electronic Arts 0.84
## 277 NES 1989 Action Palcom 3.38
## 278 NES 1984 Racing Nintendo 2.04
## 279 PS 1997 Action Hasbro Interactive 3.79
## 280 PS2 2002 Sports Electronic Arts 3.36
## 281 PS4 2014 Action Ubisoft 1.40
## 282 PC 1997 Shooter Vivendi Games 4.03
## 283 SNES 1995 Platform Nintendo 1.65
## 284 PS2 2006 Sports Electronic Arts 0.71
## 285 Wii 2011 Action Nintendo 2.14
## 286 SNES 1992 Fighting Capcom 1.42
## 287 Wii 2007 Misc Take-Two Interactive 2.13
## 288 XOne 2015 Role-Playing Bethesda Softworks 2.45
## 289 PC 2007 Role-Playing Activision 2.57
## 290 X360 2010 Role-Playing Bethesda Softworks 2.65
## 291 PS2 2007 Action Sony Computer Entertainment 2.32
## 292 X360 2007 Racing Microsoft Game Studios 2.35
## 293 PS2 2005 Sports Konami Digital Entertainment 0.12
## 294 PS 1996 Misc Sony Computer Entertainment 2.28
## 295 PS2 2000 Fighting Namco Bandai Games 1.68
## 296 PS4 2014 Shooter Ubisoft 1.12
## 297 N64 1997 Shooter Nintendo 2.78
## 298 PS4 2014 Misc Sony Computer Entertainment Europe 1.38
## 299 NES 1984 Sports Nintendo 1.22
## 300 PS3 2008 Role-Playing Bethesda Softworks 2.15
## 301 DS 2007 Puzzle Nintendo 0.92
## 302 X360 2009 Shooter Electronic Arts 2.67
## 303 PS2 2005 Misc Namco Bandai Games 2.08
## 304 Wii 2009 Sports Electronic Arts 2.10
## 305 PS4 2014 Action Ubisoft 1.18
## 306 GB 1994 Platform Nintendo 1.97
## 307 PS2 2003 Sports Activision 2.29
## 308 PS3 2013 Action Ubisoft 1.33
## 309 3DS 2014 Role-Playing Nintendo 0.67
## 310 PS3 2006 Racing Sony Computer Entertainment 1.53
## 311 PC 2011 Role-Playing Bethesda Softworks 1.15
## 312 PS2 2005 Fighting Namco Bandai Games 0.93
## 313 NES 1988 Role-Playing Enix Corporation 0.10
## 314 PS3 2010 Sports Sony Computer Entertainment 2.12
## 315 PS4 2015 Sports Take-Two Interactive 2.48
## 316 PS2 2004 Sports Konami Digital Entertainment 0.16
## 317 DS 2007 Misc Nintendo 0.87
## 318 PS 1995 Misc Sony Computer Entertainment 2.12
## 319 GB 1992 Action Nintendo 2.21
## 320 DS 2009 Role-Playing Nintendo 2.26
## 321 Wii 2007 Misc Nintendo 1.06
## 322 3DS 2011 Simulation Nintendo 1.44
## 323 PS4 2015 Action Warner Bros. Interactive Entertainment 1.49
## 324 Wii 2011 Sports Sega 1.14
## 325 X360 2008 Action Activision 2.40
## 326 PS 1996 Action Virgin Interactive 1.82
## 327 PSP 2007 Platform Sony Computer Entertainment 1.40
## 328 Wii 2013 Misc Ubisoft 1.98
## 329 PC 2002 Simulation Electronic Arts 2.03
## 330 Wii 2007 Platform Nintendo 1.98
## 331 PS 2001 Action Electronic Arts 1.37
## 332 PS4 2015 Role-Playing Namco Bandai Games 0.96
## 333 PS 1999 Action Eidos Interactive 1.30
## 334 PS 2000 Platform Sony Computer Entertainment 1.93
## 335 PS2 2004 Sports Electronic Arts 0.58
## 336 GB 1998 Strategy Nintendo 1.49
## 337 PS3 2013 Shooter Electronic Arts 1.30
## 338 DS 2007 Simulation Electronic Arts 1.59
## 339 DS 2009 Misc Nintendo 0.00
## 340 PS2 2002 Sports Activision 2.13
## 341 PSP 2005 Racing Take-Two Interactive 1.65
## 342 N64 1998 Platform Nintendo 1.87
## 343 PS2 2002 Shooter Sony Computer Entertainment 2.53
## 344 Wii 2008 Misc Activision 2.33
## 345 PS3 2013 Racing Sony Computer Entertainment 0.71
## 346 PS2 2001 Platform Sony Computer Entertainment 2.08
## 347 N64 1999 Simulation Nintendo 2.23
## 348 PS3 2009 Sports Electronic Arts 0.60
## 349 PS2 2007 Sports Konami Digital Entertainment 0.05
## 350 PS4 2013 Shooter Activision 1.78
## 351 PS2 2005 Action Capcom 2.08
## 352 PS4 2016 Shooter Ubisoft 1.28
## 353 PS2 2004 Shooter LucasArts 1.93
## 354 PC 1994 Shooter Virgin Interactive 2.05
## 355 PS2 2001 Racing Electronic Arts 2.02
## 356 DS 2007 Simulation 505 Games 1.61
## 357 GC 2001 Action Nintendo 2.38
## 358 PS2 2005 Shooter LucasArts 2.18
## 359 PS 2000 Fighting THQ 2.01
## 360 PS 1997 Platform Fox Interactive 1.57
## 361 PS2 2006 Action Take-Two Interactive 1.56
## 362 PS2 2002 Action Sony Computer Entertainment 1.23
## 363 PS 1997 Action Eidos Interactive 1.66
## 364 PS2 2001 Shooter Electronic Arts 1.90
## 365 PS2 2005 Action Eidos Interactive 1.98
## 366 X360 2013 Shooter Electronic Arts 2.14
## 367 X360 2010 Sports Electronic Arts 0.71
## 368 PS 2000 Action THQ 1.96
## 369 PS 1999 Platform Sony Computer Entertainment 2.14
## 370 X360 2008 Shooter Electronic Arts 2.66
## 371 DS 2009 Sports Sega 1.22
## 372 X360 2009 Action Capcom 2.11
## 373 SNES 1996 Platform Nintendo 1.17
## 374 X360 2010 Action Ubisoft 2.84
## 375 NES 1985 Action Nintendo 1.64
## 376 X360 2009 Action Eidos Interactive 2.20
## 377 DS 2006 Misc Nintendo 0.59
## 378 PS2 NA Sports Electronic Arts 0.59
## 379 XOne 2015 Shooter Electronic Arts 1.94
## 380 X360 2010 Shooter Electronic Arts 2.09
## 381 DS 2008 Misc Activision 2.11
## 382 XOne 2014 Action Ubisoft 2.26
## 383 PS3 2012 Shooter Ubisoft 0.88
## 384 3DS 2013 Role-Playing Capcom 0.00
## 385 X360 2009 Shooter Take-Two Interactive 2.39
## 386 PS2 2002 Fighting Namco Bandai Games 1.55
## 387 PS4 2013 Shooter Electronic Arts 1.34
## 388 PS3 2011 Platform Sony Computer Entertainment 1.82
## 389 PS 1998 Action Take-Two Interactive 1.13
## 390 SNES 1994 Role-Playing SquareSoft 0.86
## 391 PS2 2004 Action Activision 1.75
## 392 GB 1990 Racing Nintendo 1.73
## 393 PS2 2002 Sports Electronic Arts 0.46
## 394 PS 2000 Misc Sony Computer Entertainment 1.56
## 395 X360 2008 Action Warner Bros. Interactive Entertainment 2.03
## 396 PS4 2015 Action Konami Digital Entertainment 1.08
## 397 DS 2009 Action Nintendo 1.43
## 398 PS 1998 Fighting Acclaim Entertainment 2.47
## 399 N64 2000 Action Nintendo 1.90
## 400 DS 2008 Puzzle Nintendo 0.65
## 401 PS 1998 Adventure THQ 1.63
## 402 X360 2013 Action Ubisoft 1.90
## 403 DS 2006 Misc Nintendo 0.00
## 404 PS2 2002 Shooter Electronic Arts 1.45
## 405 PS2 2002 Platform Sony Computer Entertainment 1.44
## 406 Wii 2012 Misc Nintendo 1.15
## 407 PS2 2005 Action LucasArts 1.47
## 408 PS2 2001 Shooter Take-Two Interactive 1.99
## 409 PS2 2003 Action Electronic Arts 1.50
## 410 PS4 2015 Action Ubisoft 0.80
## 411 XOne 2014 Shooter Activision 2.13
## 412 PS2 2003 Action Activision 1.89
## 413 Wii 2008 Misc Nintendo 1.36
## 414 PSP 2009 Racing Sony Computer Entertainment 0.50
## 415 3DS 2015 Action Capcom 0.25
## 416 PS 1995 Fighting Sony Computer Entertainment 0.95
## 417 XOne 2015 Sports Electronic Arts 0.88
## 418 PS3 2011 Adventure Take-Two Interactive 1.27
## 419 PS4 2015 Sports Electronic Arts 2.33
## 420 3DS 2014 Role-Playing Nintendo 0.03
## 421 PS 1999 Shooter Electronic Arts 1.72
## 422 NES 1983 Sports Nintendo 0.73
## 423 SNES 1995 Fighting Nintendo 2.26
## 424 PS 2000 Fighting THQ 1.76
## 425 PSP 2007 Role-Playing Square Enix 1.35
## 426 PSP 2008 Action Sony Computer Entertainment 1.48
## 427 SNES 1995 Role-Playing Enix Corporation 0.00
## 428 X360 2010 Misc MTV Games 2.15
## 429 PS2 2003 Action Atari 1.78
## 430 WiiU 2015 Platform Nintendo 1.18
## 431 PS3 2010 Role-Playing Bethesda Softworks 1.52
## 432 Wii NA Action Warner Bros. Interactive Entertainment 1.86
## 433 DS 2008 Misc Nintendo 0.58
## 434 PS2 2001 Simulation Sony Computer Entertainment Europe 2.06
## 435 DS 2008 Adventure Disney Interactive Studios 1.88
## 436 GC 2001 Simulation Nintendo 1.92
## 437 DS 2008 Action Warner Bros. Interactive Entertainment 1.79
## 438 DS 2005 Platform Sega 1.22
## 439 PS3 2012 Shooter Capcom 0.88
## 440 XOne 2014 Shooter Microsoft Game Studios 1.89
## 441 PS2 2007 Sports Electronic Arts 0.68
## 442 PS 2000 Action Activision 1.70
## 443 PS 1998 Racing Electronic Arts 2.14
## 444 N64 1999 Racing Nintendo 2.31
## 445 DS 2006 Misc Nintendo 0.91
## 446 PS3 2007 Role-Playing Ubisoft 1.69
## 447 NES 1990 Role-Playing Enix Corporation 0.08
## 448 PS3 2010 Adventure Sony Computer Entertainment 1.29
## 449 X360 2010 Role-Playing Electronic Arts 1.99
## 450 X360 2014 Sports Electronic Arts 0.78
## 451 PS2 2002 Fighting Atari 2.17
## 452 PS2 2001 Sports Electronic Arts 2.50
## 453 NES 1986 Sports Namco Bandai Games 1.92
## 454 X360 2012 Shooter Take-Two Interactive 1.89
## 455 3DS 2013 Action Nintendo 1.40
## 456 GB 1994 Platform Nintendo 1.57
## 457 PC 2002 Simulation Electronic Arts 1.72
## 458 X360 2012 Role-Playing Electronic Arts 1.94
## 459 X360 2008 Action Activision 1.91
## 460 X360 2012 Shooter Ubisoft 1.38
## 461 Wii 2010 Platform Disney Interactive Studios 2.06
## 462 X360 2008 Action THQ 1.94
## 463 PS 1995 Platform Ubisoft 1.54
## 464 PS3 2009 Shooter Sony Computer Entertainment 1.40
## 465 XB 2002 Action Ubisoft 1.85
## 466 NES 1987 Fighting Nintendo 2.03
## 467 PS2 2002 Sports THQ 1.45
## 468 XOne 2015 Shooter Microsoft Game Studios 2.38
## 469 X360 2012 Sports Take-Two Interactive 2.60
## 470 PS2 2007 Fighting Atari 1.15
## 471 PS2 NA Fighting N/A 1.57
## 472 PS4 2014 Action Warner Bros. Interactive Entertainment 1.01
## 473 SNES 1993 Shooter Nintendo 1.61
## 474 PC 2000 Misc Electronic Arts 1.67
## 475 PS2 2002 Sports Konami Digital Entertainment 0.12
## 476 PS2 2001 Action Capcom 1.36
## 477 3DS 2015 Simulation Nintendo 0.47
## 478 PS3 2010 Shooter Electronic Arts 1.33
## 479 PC 2014 Simulation Electronic Arts 0.96
## 480 PC 2011 Role-Playing Electronic Arts 1.58
## 481 PS2 2003 Platform Sega 1.04
## 482 DS 2008 Platform Nintendo 1.57
## 483 PS2 2002 Action Eidos Interactive 1.36
## 484 X360 2009 Fighting Capcom 1.82
## 485 N64 1996 Racing Nintendo 1.98
## 486 PS2 2003 Shooter Sony Computer Entertainment 2.22
## 487 PS2 2005 Fighting THQ 1.45
## 488 PS3 2009 Action Sony Computer Entertainment 1.76
## 489 GBA 2001 Puzzle Atari 2.07
## 490 X360 2007 Role-Playing Microsoft Game Studios 1.83
## 491 Wii 2006 Puzzle Nintendo 0.87
## 492 Wii 2007 Simulation 505 Games 1.43
## 493 GBA 2002 Platform Nintendo 1.75
## 494 PS4 2013 Sports Electronic Arts 0.61
## 495 XOne 2014 Shooter Electronic Arts 1.84
## 496 PS2 2004 Misc Sega 1.54
## 497 X360 2008 Sports Sega 1.75
## 498 PS2 2003 Sports Konami Digital Entertainment 0.08
## 499 PS3 2012 Racing Electronic Arts 0.71
## 500 PS2 2001 Sports Sony Computer Entertainment 0.99
## 501 PS2 2004 Shooter Activision 1.51
## 502 Wii 2011 Sports Majesco Entertainment 1.54
## 503 PS 1999 Shooter Sony Computer Entertainment 2.03
## 504 DS 2007 Simulation Ubisoft 1.30
## 505 PS 1998 Racing Codemasters 0.09
## 506 XOne 2013 Shooter Activision 1.87
## 507 X360 2012 Sports Electronic Arts 2.53
## 508 XB 2002 Role-Playing Ubisoft 2.09
## 509 PS3 2011 Fighting Warner Bros. Interactive Entertainment 1.98
## 510 SNES 1990 Racing Nintendo 1.37
## 511 N64 1997 Platform Nintendo 1.29
## 512 PC 1996 Strategy Virgin Interactive 1.37
## 513 Wii 2011 Action Activision 1.40
## 514 PS3 2015 Sports Electronic Arts 0.40
## 515 PS3 2010 Action Ubisoft 1.87
## 516 X360 2007 Shooter Take-Two Interactive 1.65
## 517 X360 2009 Sports Electronic Arts 2.52
## 518 PS3 2010 Shooter Electronic Arts 1.28
## 519 PS2 2002 Fighting THQ 1.32
## 520 GC 2002 Shooter Nintendo 1.96
## 521 GBA 2003 Action THQ 1.59
## 522 PC 1994 Adventure Red Orb 0.02
## 523 PS3 2010 Racing Electronic Arts 1.05
## 524 DS 2007 Simulation Ubisoft 1.32
## 525 PS2 2003 Fighting THQ 1.32
## 526 X360 2008 Action LucasArts 1.74
## 527 DS 2006 Platform Nintendo 1.47
## 528 PS 1997 Sports Sony Computer Entertainment 0.29
## 529 PS3 2011 Shooter Sony Computer Entertainment 1.45
## 530 PS 1998 Platform Sony Computer Entertainment 1.96
## 531 PS2 2001 Fighting THQ 1.19
## 532 SNES 1992 Role-Playing Enix Corporation 0.00
## 533 PS 1996 Fighting GT Interactive 1.98
## 534 PC 2011 Shooter Electronic Arts 0.89
## 535 PS2 2001 Sports Electronic Arts 2.19
## 536 DS 2009 Puzzle Nintendo 0.30
## 537 3DS 2011 Role-Playing Nintendo 0.46
## 538 PS2 2003 Platform Sony Computer Entertainment 1.68
## 539 PS4 2014 Action Sony Computer Entertainment 1.27
## 540 PS2 2003 Platform Sony Computer Entertainment 1.44
## 541 PS3 2009 Fighting Namco Bandai Games 1.20
## 542 PS2 2003 Simulation Electronic Arts 1.41
## 543 Wii 2007 Platform Sega 1.24
## 544 X360 2011 Action THQ 1.25
## 545 2600 1980 Shooter Atari 2.56
## 546 SNES 1992 Misc Nintendo 1.43
## 547 PS4 2013 Action Ubisoft 1.07
## 548 N64 2000 Strategy Nintendo 1.02
## 549 NES 1986 Action Nintendo 1.33
## 550 X360 2011 Adventure Take-Two Interactive 1.52
## 551 X360 2006 Shooter Activision 1.49
## 552 GBA 2002 Action Nintendo 1.75
## 553 PS2 2001 Action Virgin Interactive 0.99
## 554 PS4 2015 Fighting Warner Bros. Interactive Entertainment 1.47
## 555 N64 1998 Misc Nintendo 1.25
## 556 X360 2011 Sports Electronic Arts 2.42
## 557 PS2 2006 Action LucasArts 1.85
## 558 X360 2010 Sports Electronic Arts 2.38
## 559 DS 2010 Puzzle Nintendo 1.63
## 560 X360 2010 Sports Electronic Arts 1.46
## 561 PS2 2004 Racing Electronic Arts 1.23
## 562 3DS 2014 Role-Playing Level 5 0.00
## 563 PS3 2009 Racing Electronic Arts 0.69
## 564 PS3 2011 Role-Playing Square Enix 0.78
## 565 GEN 1992 Fighting Arena Entertainment 1.95
## 566 PS2 2005 Shooter Activision 1.48
## 567 X360 2008 Misc Activision 1.78
## 568 PS 1998 Shooter Electronic Arts 1.44
## 569 XB 2004 Role-Playing Microsoft Game Studios 1.99
## 570 DS 2006 Action Disney Interactive Studios 1.59
## 571 PS2 2003 Action Ubisoft 1.15
## 572 Wii 2012 Action Activision 1.56
## 573 PSP 2006 Shooter Electronic Arts 0.86
## 574 NES 1986 Platform Nintendo 0.00
## 575 N64 1996 Action Nintendo 2.00
## 576 X360 2007 Action LucasArts 1.53
## 577 PS2 2000 Racing Take-Two Interactive 2.00
## 578 PSP 2006 Fighting Sony Computer Entertainment 0.76
## 579 X360 2009 Strategy Microsoft Game Studios 1.53
## 580 PS3 2009 Action Sony Computer Entertainment 1.70
## 581 PS2 2004 Sports Sega 2.15
## 582 Wii 2007 Sports Nintendo 1.07
## 583 X360 2010 Shooter Electronic Arts 1.55
## 584 X360 2009 Sports Electronic Arts 0.59
## 585 X360 2011 Sports Take-Two Interactive 2.31
## 586 DS 2008 Simulation Nintendo 0.63
## 587 PS2 2002 Action Electronic Arts 0.90
## 588 Wii 2010 Platform Nintendo 1.02
## 589 GEN 1990 Action Sega 1.86
## 590 PS3 2008 Sports Electronic Arts 0.48
## 591 PS3 2007 Platform Sony Computer Entertainment 0.93
## 592 PS2 2004 Sports Electronic Arts 2.03
## 593 PSP 2009 Platform Sony Computer Entertainment 0.64
## 594 PS4 2013 Shooter Sony Computer Entertainment 0.89
## 595 X360 2009 Action Take-Two Interactive 1.04
## 596 PSP 2007 Role-Playing Capcom 0.37
## 597 PS2 2006 Fighting THQ 1.40
## 598 PS2 2004 Platform Sony Computer Entertainment 1.31
## 599 DS 2010 Misc Nintendo 0.28
## 600 X360 2009 Role-Playing Electronic Arts 1.76
## 601 PS2 2007 Sports Electronic Arts 2.14
## 602 GC 2001 Platform Sega 1.70
## 603 NES 1987 Role-Playing Enix Corporation 0.15
## 604 PS3 2012 Sports Electronic Arts 2.11
## 605 GC 2003 Role-Playing Nintendo 1.21
## 606 Wii 2008 Sports Konami Digital Entertainment 1.13
## 607 X360 2008 Sports Electronic Arts 2.21
## 608 2600 NA Shooter Atari 2.36
## 609 PS2 2001 Racing Acclaim Entertainment 1.13
## 610 N64 2000 Action Nintendo 1.55
## 611 Wii 2007 Misc Midway Games 1.50
## 612 NES 1986 Role-Playing Capcom 0.49
## 613 PS3 2013 Action Square Enix 0.60
## 614 X360 2006 Role-Playing Activision 2.29
## 615 PS2 2008 Sports Konami Digital Entertainment 0.13
## 616 N64 1999 Misc Nintendo 1.28
## 617 PS3 2011 Action THQ 0.86
## 618 XB 2003 Action Take-Two Interactive 1.84
## 619 Wii 2010 Action Warner Bros. Interactive Entertainment 1.29
## 620 PS2 2002 Fighting Midway Games 1.81
## 621 PS3 2008 Shooter Sony Computer Entertainment 1.15
## 622 X360 2008 Racing Disney Interactive Studios 1.38
## 623 PS 1998 Action Eidos Interactive 1.15
## 624 PS3 2012 Sports Take-Two Interactive 1.72
## 625 X360 NA Misc Electronic Arts 1.93
## 626 X360 2013 Sports Take-Two Interactive 2.10
## 627 GC 2002 Misc Nintendo 1.13
## 628 Wii 2010 Misc THQ 1.67
## 629 PS3 2008 Racing Take-Two Interactive 1.55
## 630 SNES 1992 Role-Playing SquareSoft 0.00
## 631 PS 1997 Role-Playing SquareSoft 0.93
## 632 PS 1996 Racing Sony Computer Entertainment 2.12
## 633 X360 2011 Shooter Microsoft Game Studios 1.44
## 634 PSP 2006 Racing Electronic Arts 0.87
## 635 PS2 2003 Simulation Electronic Arts 1.07
## 636 PC 1997 Adventure Red Orb 1.52
## 637 X360 2008 Shooter Ubisoft 1.56
## 638 DC 1998 Platform Sega 1.26
## 639 NES 1988 Sports Nintendo 1.27
## 640 PS3 2010 Sports Konami Digital Entertainment 0.29
## 641 PS2 2003 Fighting Atari 1.63
## 642 PS2 2001 Racing Sony Computer Entertainment 2.07
## 643 PS 1998 Action Capcom 0.81
## 644 XOne 2014 Misc Microsoft Game Studios 1.43
## 645 PS2 2007 Racing Electronic Arts 0.69
## 646 XOne 2015 Sports Electronic Arts 2.07
## 647 PS 1996 Puzzle JVC 2.10
## 648 NES 1987 Fighting Nintendo 0.77
## 649 PC 1997 Strategy Electronic Arts 2.30
## 650 GBA NA Adventure Konami Digital Entertainment 2.15
## 651 PS4 2015 Racing Electronic Arts 0.49
## 652 X360 2010 Sports 505 Games 1.74
## 653 Wii NA Action LucasArts 1.54
## 654 PC 1994 Misc Hasbro Interactive 1.49
## 655 PS3 2013 Action Warner Bros. Interactive Entertainment 1.07
## 656 X360 2011 Action Deep Silver 1.48
## 657 PS2 2005 Misc RedOctane 1.67
## 658 PS3 2007 Action LucasArts 1.02
## 659 X360 2011 Misc Microsoft Game Studios 1.73
## 660 N64 1998 Fighting THQ 1.94
## 661 PS4 2015 Action Sony Computer Entertainment 1.00
## 662 PS4 2014 Sports Take-Two Interactive 1.46
## 663 PS3 2010 Sports Electronic Arts 2.04
## 664 PS2 2001 Misc Konami Digital Entertainment 1.16
## 665 X360 2007 Sports Electronic Arts 2.18
## 666 PC 2004 Shooter Vivendi Games 2.28
## 667 PS2 2004 Action THQ 0.96
## 668 PS2 2004 Sports Activision 1.25
## 669 PS3 2009 Sports Electronic Arts 2.03
## 670 X360 2011 Sports Microsoft Game Studios 1.38
## 671 GB 1995 Platform Nintendo 0.69
## 672 DS 2010 Action Warner Bros. Interactive Entertainment 1.07
## 673 GB 1996 Platform Nintendo 1.39
## 674 GB 1998 Role-Playing Eidos Interactive 0.00
## 675 X360 2008 Racing Take-Two Interactive 1.68
## 676 Wii 2013 Platform Activision 1.32
## 677 PS2 2007 Fighting THQ 0.92
## 678 Wii 2008 Sports Ubisoft 1.20
## 679 PS2 2001 Action Capcom 1.08
## 680 X360 2010 Simulation Electronic Arts 1.27
## 681 3DS 2015 Action Nintendo 1.14
## 682 XOne 2015 Sports Take-Two Interactive 1.93
## 683 Wii 2010 Misc Ubisoft 1.57
## 684 N64 2000 Sports Nintendo 0.78
## 685 PS 1997 Action Take-Two Interactive 0.79
## 686 PS2 2004 Shooter Electronic Arts 0.85
## 687 DS 2004 Puzzle Nintendo 0.52
## 688 PS 1999 Racing Electronic Arts 1.58
## 689 SNES 1995 Role-Playing SquareSoft 0.28
## 690 PS 1998 Sports 989 Studios 1.65
## 691 X360 2013 Action Warner Bros. Interactive Entertainment 1.24
## 692 PC 2012 Action NCSoft 0.95
## 693 DS 2008 Role-Playing Nintendo 0.95
## 694 PS3 2011 Action Deep Silver 1.08
## 695 PC 1997 Action Eidos Interactive 0.91
## 696 PS3 2013 Action Sony Computer Entertainment 1.23
## 697 XB 2004 Racing Electronic Arts 1.38
## 698 PS3 2009 Sports Konami Digital Entertainment 0.30
## 699 Wii 2014 Misc Ubisoft 1.11
## 700 3DS 2015 Action Level 5 0.00
## 701 NES 1983 Platform Nintendo 0.51
## 702 PS2 2008 Sports Electronic Arts 0.38
## 703 PS3 2008 Action LucasArts 1.01
## 704 PS3 2012 Shooter Take-Two Interactive 1.05
## 705 PS 1997 Racing Codemasters 0.07
## 706 3DS 2012 Role-Playing Nintendo 1.12
## 707 PS3 2009 Misc Sega 1.34
## 708 Wii 2006 Misc Sega 1.07
## 709 GBA 2002 Platform Nintendo 1.22
## 710 GBA 2001 Platform Nintendo 0.90
## 711 PS3 2007 Misc Activision 1.40
## 712 Wii NA Shooter Activision 1.19
## 713 Wii 2007 Action Capcom 1.34
## 714 PSV 2014 Misc Sony Computer Entertainment Europe 0.28
## 715 PS2 2002 Adventure Capcom 0.62
## 716 PS 1997 Sports UEP Systems 1.52
## 717 GC 2004 Role-Playing Nintendo 1.48
## 718 PS3 2011 Sports Electronic Arts 1.93
## 719 Wii 2009 Role-Playing Nintendo 0.67
## 720 PSP 2008 Fighting Square Enix 0.51
## 721 GBA 2001 Platform Sega 1.19
## 722 GBA 2001 Platform Vivendi Games 1.29
## 723 NES 1990 Action Konami Digital Entertainment 1.74
## 724 DS 2008 Action Activision 1.42
## 725 PS2 2009 Simulation Konami Digital Entertainment 1.09
## 726 WiiU 2013 Platform Nintendo 1.27
## 727 PS2 2003 Action Ubisoft 0.88
## 728 DS 2009 Puzzle Warner Bros. Interactive Entertainment 1.71
## 729 GB 1998 Adventure Nintendo 1.00
## 730 X360 2010 Racing Electronic Arts 1.03
## 731 X360 2010 Shooter Take-Two Interactive 1.45
## 732 XOne 2013 Action Ubisoft 1.47
## 733 PS2 2006 Action Capcom 1.06
## 734 X360 2008 Misc Electronic Arts 1.78
## 735 2600 1981 Action Parker Bros. 2.06
## 736 X360 2007 Misc Activision 2.01
## 737 GB 2000 Platform Nintendo 1.11
## 738 NES 1986 Sports Namco Bandai Games 0.15
## 739 Wii 2008 Platform Sega 1.28
## 740 DS 2007 Puzzle Disney Interactive Studios 1.06
## 741 PS3 2011 Action Konami Digital Entertainment 0.34
## 742 X360 2006 Action THQ 1.17
## 743 XB 2003 Role-Playing Activision 1.68
## 744 GB 1992 Misc Nintendo 0.87
## 745 GB 2000 Platform Nintendo 1.04
## 746 PS3 2012 Action Square Enix 0.59
## 747 GB 2000 Role-Playing Konami Digital Entertainment 0.00
## 748 PS2 2002 Racing THQ 1.92
## 749 XOne 2013 Racing Microsoft Game Studios 1.21
## 750 X360 2013 Sports Electronic Arts 1.97
## 751 DS 2006 Role-Playing Nintendo 1.29
## 752 GBA 2003 Role-Playing Nintendo 1.48
## 753 X360 2010 Role-Playing Square Enix 1.27
## 754 N64 1998 Simulation Nintendo 1.60
## 755 NES 1984 Sports Nintendo 0.48
## 756 PC 2001 Simulation Electronic Arts 1.23
## 757 Wii 2009 Sports Ubisoft 1.51
## 758 PS 2000 Shooter Sony Computer Entertainment 1.50
## 759 PS4 2015 Shooter Ubisoft 0.54
## 760 NES 1987 Sports Nintendo 0.14
## 761 XOne 2014 Sports Electronic Arts 0.60
## 762 PSP 2007 Shooter Activision 0.52
## 763 SNES 1996 Role-Playing Nintendo 0.66
## 764 NES 1983 Misc Nintendo 0.01
## 765 NES 1988 Racing Nintendo 1.47
## 766 PC 1992 Simulation Maxis 1.20
## 767 2600 1981 Shooter Imagic 1.99
## 768 PS2 2004 Simulation Konami Digital Entertainment 1.04
## 769 DS 2006 Puzzle Nintendo 0.64
## 770 GBA 2003 Role-Playing SquareSoft 0.82
## 771 PS4 2016 Action Ubisoft 0.59
## 772 DS 2010 Action Disney Interactive Studios 0.93
## 773 DS 2006 Role-Playing Square Enix 0.91
## 774 Wii 2010 Platform Nintendo 1.47
## 775 XB 2001 Racing Microsoft Game Studios 1.37
## 776 GB 1989 Sports Nintendo 0.83
## 777 PS3 2011 Sports Take-Two Interactive 1.61
## 778 PS3 2009 Shooter Take-Two Interactive 1.20
## 779 N64 2000 Sports Activision 1.68
## 780 PS3 2008 Sports Konami Digital Entertainment 0.11
## 781 PS2 2002 Racing Electronic Arts 1.68
## 782 Wii 2010 Sports Nintendo 0.90
## 783 Wii NA Misc MTV Games 1.35
## 784 PS2 2003 Action Tecmo Koei 0.63
## 785 X360 2011 Fighting Warner Bros. Interactive Entertainment 1.63
## 786 PS 1998 Role-Playing SquareSoft 0.94
## 787 PS2 2002 Platform THQ 1.17
## 788 XB 2002 Action Microsoft Game Studios 1.54
## 789 PSP 2005 Racing Electronic Arts 1.77
## 790 X360 2011 Shooter Valve Software 1.41
## 791 PS2 2005 Action Capcom 0.99
## 792 PS 1997 Sports ASCII Entertainment 0.00
## 793 X360 2006 Action Capcom 1.16
## 794 PS2 2003 Action THQ 1.26
## 795 X360 2010 Action Take-Two Interactive 1.84
## 796 Wii 2009 Misc Mindscape 1.97
## 797 DS 2006 Simulation Electronic Arts 0.92
## 798 PS4 2015 Shooter Electronic Arts 0.70
## 799 PSP 2010 Action Konami Digital Entertainment 0.46
## 800 PC 2010 Role-Playing Activision 1.77
## 801 PS2 2002 Puzzle THQ 1.11
## 802 PS3 2008 Racing Electronic Arts 0.63
## 803 Wii 2007 Simulation Konami Digital Entertainment 1.36
## 804 GC 2003 Misc Nintendo 0.97
## 805 PS3 2010 Action Take-Two Interactive 0.59
## 806 PC 1998 Strategy Electronic Arts 2.04
## 807 PC 1994 Strategy Activision 0.89
## 808 PS3 2010 Sports Electronic Arts 0.79
## 809 PS 2002 Shooter Take-Two Interactive 1.54
## 810 PSP 2010 Role-Playing Square Enix 0.63
## 811 X360 2009 Fighting THQ 1.48
## 812 PS3 2011 Role-Playing Namco Bandai Games 0.75
## 813 GBA 2001 Strategy Konami Digital Entertainment 1.64
## 814 X360 2007 Racing Electronic Arts 1.04
## 815 PS3 2010 Simulation Electronic Arts 0.73
## 816 X360 2010 Action Ubisoft 1.20
## 817 GBA 2005 Role-Playing Nintendo 0.71
## 818 GBA 2004 Action THQ 1.15
## 819 PS 1998 Racing Namco Bandai Games 0.68
## 820 PS2 2003 Fighting Namco Bandai Games 1.06
## 821 3DS 2013 Role-Playing Nintendo 0.89
## 822 PS3 2007 Racing Electronic Arts 0.73
## 823 DS 2008 Misc Take-Two Interactive 1.23
## 824 PS3 2013 Sports Take-Two Interactive 1.43
## 825 DS 2005 Role-Playing Nintendo 1.16
## 826 GC 2002 Misc Infogrames 1.47
## 827 PS3 2013 Role-Playing Activision 0.71
## 828 GEN 1992 Sports Arena Entertainment 1.75
## 829 X360 2007 Racing Microsoft Game Studios 0.48
## 830 DS 2009 Role-Playing Square Enix 1.11
## 831 X360 2011 Misc Microsoft Game Studios 1.45
## 832 Wii 2008 Misc Ubisoft 0.73
## 833 PS2 2006 Shooter Sony Computer Entertainment 1.74
## 834 PS2 2005 Action Ubisoft 0.71
## 835 GBA 2003 Platform Nintendo 1.20
## 836 PS3 2011 Action Electronic Arts 0.58
## 837 PS4 2014 Sports Electronic Arts 1.53
## 838 N64 1998 Sports Nintendo 1.25
## 839 X360 2011 Misc Ubisoft 1.47
## 840 PS2 2003 Sports Electronic Arts 1.57
## 841 PS3 2008 Action Electronic Arts 1.05
## 842 X360 2005 Shooter Activision 1.81
## 843 X360 2014 Sports Electronic Arts 1.76
## 844 X360 2012 Racing Microsoft Game Studios 0.82
## 845 DS 2007 Puzzle Midway Games 0.49
## 846 XOne 2016 Shooter Ubisoft 1.20
## 847 PS3 2013 Action Warner Bros. Interactive Entertainment 0.77
## 848 3DS 2012 Role-Playing Nintendo 0.89
## 849 PS4 2014 Racing Sony Computer Entertainment 0.35
## 850 SNES 1993 Fighting Nintendo 0.52
## 851 PS3 2008 Fighting Midway Games 1.48
## 852 PS 1997 Action Activision 0.95
## 853 GB 1989 Sports Nintendo 0.75
## 854 GBA 2002 Action Electronic Arts 1.21
## 855 PS 2002 Action Electronic Arts 0.75
## 856 SNES 1991 Simulation Nintendo 0.93
## 857 XOne 2013 Shooter Electronic Arts 1.25
## 858 X360 2012 Shooter Capcom 1.11
## 859 PS4 2014 Role-Playing Electronic Arts 0.72
## 860 DS 2010 Platform Sega 0.99
## 861 PS2 2002 Platform Universal Interactive 0.74
## 862 Wii 2008 Shooter Activision 1.20
## 863 PS2 2003 Action Capcom 0.71
## 864 PS3 2008 Racing Electronic Arts 1.01
## 865 2600 1981 Action Atari 1.84
## 866 X360 2013 Shooter Take-Two Interactive 1.22
## 867 PSP 2004 Sports Sony Computer Entertainment 0.50
## 868 NES 1986 Racing Nintendo 1.13
## 869 NES 1985 Sports Nintendo 0.18
## 870 DS 2006 Platform Nintendo 0.79
## 871 X360 2006 Shooter Ubisoft 1.09
## 872 X360 2014 Shooter Activision 1.30
## 873 PS2 2003 Racing Vivendi Games 0.74
## 874 XB 2005 Action Take-Two Interactive 1.26
## 875 PC 1994 Shooter LucasArts 1.09
## 876 PS2 2003 Sports Electronic Arts 1.69
## 877 PS2 2003 Fighting Electronic Arts 0.95
## 878 X360 2008 Sports Electronic Arts 0.49
## 879 PC 1999 Misc Disney Interactive Studios 1.94
## 880 PS 2001 Adventure THQ 0.59
## 881 GB 1989 Puzzle Nintendo 0.96
## 882 PS2 2004 Fighting Atari 1.09
## 883 PS 1997 Racing Sony Computer Entertainment 1.41
## 884 PS2 2002 Shooter Ubisoft 1.42
## 885 PS2 2004 Role-Playing Activision 1.00
## 886 X360 2013 Action Warner Bros. Interactive Entertainment 1.15
## 887 PS3 2008 Misc Activision 1.10
## 888 SNES 1993 Fighting Acclaim Entertainment 1.48
## 889 SAT 1995 Fighting Sega 0.34
## 890 GB 1998 Puzzle Nintendo 1.06
## 891 X360 2008 Fighting Midway Games 1.53
## 892 PS3 2014 Action Ubisoft 0.56
## 893 Wii 2008 Sports Nintendo 1.51
## 894 X360 2013 Action Square Enix 0.86
## 895 GB 2001 Action Nintendo 0.92
## 896 X360 2009 Racing Electronic Arts 0.73
## 897 Wii 2008 Misc Electronic Arts 0.87
## 898 PS2 2001 Shooter THQ 0.76
## 899 PC 2003 Simulation Electronic Arts 1.03
## 900 PS2 2004 Racing THQ 0.94
## 901 PS 1996 Misc Sony Computer Entertainment 0.26
## 902 Wii 2009 Misc Disney Interactive Studios 1.06
## 903 N64 2000 Misc Nintendo 0.72
## 904 Wii 2008 Action LucasArts 1.14
## 905 Wii 2008 Misc Midway Games 1.30
## 906 PS4 2015 Shooter Activision 0.77
## 907 Wii 2011 Action LucasArts 1.08
## 908 GC 2001 Simulation LucasArts 1.03
## 909 PS3 2012 Shooter Take-Two Interactive 0.59
## 910 PS4 2013 Racing Electronic Arts 0.73
## 911 PS3 2008 Sports Electronic Arts 1.56
## 912 3DS 2013 Role-Playing Nintendo 0.21
## 913 PS3 2009 Platform Sony Computer Entertainment 1.05
## 914 PS 1999 Role-Playing Konami Digital Entertainment 1.37
## 915 PS2 2004 Fighting Midway Games 0.92
## 916 PS 1999 Sports Sony Computer Entertainment 0.25
## 917 PS2 2005 Shooter Electronic Arts 0.89
## 918 PS 1998 Fighting THQ 1.42
## 919 PS2 2007 Misc Disney Interactive Studios 0.47
## 920 GC 2002 Adventure Nintendo 0.96
## 921 PS 1998 Sports Electronic Arts 0.22
## 922 PS2 2001 Action THQ 0.53
## 923 3DS 2013 Platform Nintendo 0.73
## 924 GB 2001 Adventure Nintendo 0.87
## 925 XB 2005 Sports Electronic Arts 1.75
## 926 PS2 2004 Platform Activision 1.12
## 927 PS 1999 Role-Playing Sony Computer Entertainment 0.94
## 928 N64 1997 Platform Acclaim Entertainment 1.37
## 929 PS2 2004 Misc Sony Computer Entertainment 0.00
## 930 PS4 2014 Platform Sony Computer Entertainment 0.64
## 931 PS2 2001 Sports Electronic Arts 0.91
## 932 DS 2009 Action Disney Interactive Studios 1.34
## 933 PS 1999 Role-Playing SquareSoft 0.62
## 934 Wii 2010 Action Activision 0.85
## 935 3DS 2013 Misc Nintendo 0.61
## 936 PS2 2004 Platform Sony Computer Entertainment 1.33
## 937 Wii 2007 Misc Ubisoft 0.83
## 938 GBA 2004 Role-Playing Square Enix 1.26
## 939 NES 1984 Action Nintendo 0.80
## 940 PS3 2011 Action Sony Computer Entertainment 1.05
## 941 PS2 2001 Racing Unknown 0.00
## 942 PS3 2009 Role-Playing Namco Bandai Games 0.97
## 943 PS2 2005 Sports Electronic Arts 1.53
## 944 N64 1998 Simulation Nintendo 0.83
## 945 GBA 2005 Misc THQ 1.31
## 946 PC 2012 Role-Playing Activision 0.84
## 947 PS 1996 Racing Sony Computer Entertainment 1.33
## 948 PS4 2015 Action Square Enix 0.46
## 949 SNES 1993 Role-Playing SquareSoft 0.25
## 950 X360 2007 Shooter Electronic Arts 1.09
## 951 PS 1995 Simulation Sony Computer Entertainment 0.92
## 952 3DS 2014 Platform Nintendo 0.61
## 953 GEN 1994 Platform Sega 1.24
## 954 PS2 2001 Misc Namco Bandai Games 1.73
## 955 PC 2001 Simulation Electronic Arts 1.81
## 956 Wii 2007 Shooter Nintendo 0.91
## 957 DS 2010 Role-Playing Nintendo 0.22
## 958 PS4 2014 Action Bethesda Softworks 0.55
## 959 PS2 2003 Simulation Konami Digital Entertainment 1.05
## 960 DC 2000 Racing Sega 1.10
## 961 PS2 2002 Fighting Sega 0.78
## 962 PS2 2004 Platform Sony Computer Entertainment 0.88
## 963 PS2 2008 Misc Activision 1.00
## 964 GBA 2002 Platform Sega 0.93
## 965 X360 2006 Sports Electronic Arts 1.66
## 966 PS3 2010 Action Take-Two Interactive 1.41
## 967 PS 1999 Sports 989 Studios 1.00
## 968 PS3 2015 Shooter Activision 0.49
## 969 SNES 1994 Platform Virgin Interactive 1.26
## 970 PS3 2013 Adventure Sony Computer Entertainment 0.52
## 971 X360 2012 Action Microsoft Game Studios 1.05
## 972 PS2 2003 Racing Take-Two Interactive 1.25
## 973 DS 2006 Role-Playing Square Enix 0.23
## 974 PS 2001 Action THQ 1.12
## 975 PS2 2004 Action Sony Computer Entertainment 0.39
## 976 3DS 2011 Puzzle Nintendo 0.32
## 977 PS3 2010 Action Square Enix 0.45
## 978 PS3 2012 Role-Playing Capcom 0.41
## 979 WiiU 2013 Action Nintendo 0.93
## 980 PS2 2005 Action Vivendi Games 0.85
## 981 Wii 2007 Misc Disney Interactive Studios 1.16
## 982 WiiU 2013 Misc Nintendo 0.31
## 983 PS3 2013 Sports Electronic Arts 1.59
## 984 SNES 1991 Role-Playing Square 0.24
## 985 N64 2000 Platform Nintendo 0.63
## 986 XB 2001 Fighting Microsoft Game Studios 1.19
## 987 PS3 2009 Fighting THQ 1.07
## 988 GB 1991 Adventure Nintendo 0.85
## 989 PS 1998 Fighting Acclaim Entertainment 1.27
## 990 PS2 2004 Platform THQ 1.06
## 991 GBA 2001 Role-Playing Nintendo 0.93
## 992 GEN 1994 Platform Sega 1.02
## 993 NES 1986 Platform Nintendo 0.53
## 994 PS2 2004 Fighting Electronic Arts 0.86
## 995 XB 2002 Shooter Ubisoft 1.23
## 996 PS2 2002 Action Take-Two Interactive 0.86
## 997 PS3 2013 Shooter Take-Two Interactive 0.72
## 998 X360 2012 Action Square Enix 0.68
## 999 GBA 2007 Action THQ 1.26
## 1000 X360 2015 Shooter Activision 1.11
## 1001 PS2 2004 Simulation Electronic Arts 0.52
## 1002 PS3 2007 Sports Electronic Arts 0.35
## 1003 PS2 2001 Simulation Activision 0.61
## 1004 PS 1998 Sports Electronic Arts 1.68
## 1005 PS3 2013 Role-Playing Square Enix 0.90
## 1006 XB 2004 Shooter Activision 1.24
## 1007 PS2 2001 Sports Konami Digital Entertainment 0.06
## 1008 X360 2007 Shooter Microsoft Game Studios 1.00
## 1009 NES 1991 Puzzle Nintendo 0.70
## 1010 SNES 1993 Platform Capcom 0.94
## 1011 NES 1993 Platform Nintendo 0.79
## 1012 DS 2009 Simulation 505 Games 0.83
## 1013 PS2 2008 Simulation Konami Digital Entertainment 0.85
## 1014 GBA 2004 Misc THQ 1.25
## 1015 PS 1999 Adventure LucasArts 0.72
## 1016 PS2 2002 Role-Playing Namco Bandai Games 0.63
## 1017 PS3 2011 Shooter Valve 0.83
## 1018 Wii 2009 Misc MTV Games 1.19
## 1019 XOne 2015 Racing Microsoft Game Studios 0.69
## 1020 Wii 2010 Platform Sega 0.96
## 1021 N64 1996 Racing Nintendo 1.69
## 1022 PS 1998 Sports Electronic Arts 1.66
## 1023 PS4 2014 Role-Playing Activision 0.49
## 1024 PSV 2011 Shooter Sony Computer Entertainment 0.59
## 1025 PS3 2014 Shooter Activision 0.67
## 1026 PS2 2001 Sports Electronic Arts 0.85
## 1027 PS4 2016 Shooter Activision 0.64
## 1028 PS 1998 Action 989 Studios 1.48
## 1029 GB 2001 Action Electronic Arts 0.94
## 1030 Wii 2013 Action Disney Interactive Studios 1.15
## 1031 GBA 2002 Platform Universal Interactive 0.95
## 1032 X360 2012 Action Bethesda Softworks 1.06
## 1033 PS2 2003 Action Take-Two Interactive 0.85
## 1034 PS4 2015 Shooter Sony Computer Entertainment 0.61
## 1035 PS4 2015 Role-Playing Bethesda Softworks 0.66
## 1036 PS2 2008 Shooter Activision 0.61
## 1037 DS 2008 Simulation Ubisoft 0.70
## 1038 PC 2011 Shooter Activision 0.41
## 1039 XB 2004 Sports Electronic Arts 1.61
## 1040 PS2 2003 Role-Playing Ubisoft 0.80
## 1041 PC 2010 Simulation Electronic Arts 0.59
## 1042 Wii 2009 Puzzle Warner Bros. Interactive Entertainment 1.43
## 1043 PS 1998 Platform Activision 0.99
## 1044 DS 2007 Misc Mindscape 1.15
## 1045 PS2 2004 Simulation Sony Computer Entertainment Europe 0.88
## 1046 XB 2003 Racing Electronic Arts 1.09
## 1047 DS 2006 Misc Nintendo 0.00
## 1048 GBA 2001 Puzzle THQ 1.25
## 1049 Wii 2009 Sports Activision Value 1.58
## 1050 PS4 2014 Racing Ubisoft 0.34
## 1051 PS2 2009 Sports Electronic Arts 0.23
## 1052 Wii 2008 Sports Namco Bandai Games 0.99
## 1053 DS 2007 Puzzle Nintendo 0.49
## 1054 Wii 2011 Platform Nintendo 0.62
## 1055 SNES 1993 Puzzle Banpresto 0.00
## 1056 DS 2007 Action D3Publisher 0.69
## 1057 PS2 2006 Sports Electronic Arts 1.41
## 1058 PS2 2005 Shooter Sony Computer Entertainment 1.22
## 1059 XOne 2014 Sports Take-Two Interactive 1.36
## 1060 PS3 2008 Action THQ 0.88
## 1061 X360 2013 Action Deep Silver 1.01
## 1062 PS 1999 Misc Sony Computer Entertainment 0.94
## 1063 PS3 2009 Role-Playing Electronic Arts 0.96
## 1064 X360 2015 Sports Electronic Arts 0.55
## 1065 N64 1997 Fighting THQ 1.37
## 1066 PS 1998 Fighting THQ 1.10
## 1067 GBA 2001 Action Electronic Arts 0.87
## 1068 X360 2008 Racing Electronic Arts 0.79
## 1069 GBA 2002 Role-Playing Infogrames 1.52
## 1070 PC 2010 Strategy Take-Two Interactive 0.98
## 1071 GC 2005 Action Capcom 0.98
## 1072 PSV 2012 Action Activision 0.80
## 1073 PSP 2007 Shooter LucasArts 0.90
## 1074 PS2 2006 Misc Oxygen Interactive 0.82
## 1075 PS 1997 Sports Sony Computer Entertainment 1.58
## 1076 X360 2012 Action Warner Bros. Interactive Entertainment 0.90
## 1077 GB 1992 Puzzle Nintendo 0.59
## 1078 PS 1997 Shooter Namco Bandai Games 0.38
## 1079 PC 2003 Simulation Electronic Arts 1.67
## 1080 Wii 2008 Action LucasArts 1.23
## 1081 Wii 2007 Simulation Electronic Arts 0.91
## 1082 GBA 2002 Action Nintendo 1.18
## 1083 Wii 2008 Sports Ubisoft 0.94
## 1084 PS2 2003 Sports Electronic Arts 0.93
## 1085 Wii 2008 Sports THQ 0.45
## 1086 PS 2000 Sports Electronic Arts 1.58
## 1087 PS3 2006 Fighting Electronic Arts 0.81
## 1088 PS4 2013 Platform Sony Computer Entertainment Europe 0.43
## 1089 XB 2005 Shooter Activision 1.22
## 1090 NES 1989 Platform Capcom 0.91
## 1091 PS 2001 Sports Activision 1.09
## 1092 GBA 2001 Adventure THQ 0.59
## 1093 PC 2013 Strategy Activision 0.82
## 1094 XB 2003 Racing Microsoft Game Studios 0.97
## 1095 PS2 2001 Racing Midway Games 1.13
## 1096 PS2 2003 Sports Electronic Arts 1.35
## 1097 PS2 2003 Platform THQ 1.08
## 1098 PS4 2015 Action Warner Bros. Interactive Entertainment 0.63
## 1099 PS3 2007 Action Sony Computer Entertainment 0.57
## 1100 GEN 1992 Fighting Sega 1.00
## 1101 PS2 2000 Sports Electronic Arts 0.78
## 1102 X360 2012 Shooter Take-Two Interactive 0.86
## 1103 PS2 2004 Sports Midway Games 0.81
## 1104 X360 2006 Racing Electronic Arts 0.76
## 1105 PS2 2002 Sports Electronic Arts 1.25
## 1106 PS2 2005 Fighting Atari 0.96
## 1107 2600 1981 Puzzle Atari 1.54
## 1108 GC 2004 Misc Nintendo 0.90
## 1109 SNES 1991 Shooter Nintendo 1.06
## 1110 Wii 2011 Misc Namco Bandai Games 0.48
## 1111 PS2 2004 Role-Playing Enix Corporation 0.00
## 1112 X360 2008 Shooter Electronic Arts 1.09
## 1113 DS 2007 Role-Playing Square Enix 0.32
## 1114 GBA 2004 Platform Nintendo 0.80
## 1115 Wii 2011 Action Disney Interactive Studios 0.76
## 1116 2600 1982 Puzzle Atari 1.52
## 1117 PS 1999 Shooter Red Storm Entertainment 0.93
## 1118 NES 1986 Action Capcom 0.74
## 1119 PS2 2002 Sports Electronic Arts 0.80
## 1120 PS2 2005 Sports Electronic Arts 1.44
## 1121 PS2 2004 Action Ubisoft 0.54
## 1122 X360 2010 Simulation Microsoft Game Studios 1.02
## 1123 PS4 2015 Adventure Sony Computer Entertainment Europe 0.44
## 1124 XB 2004 Sports Sega 1.54
## 1125 X360 2006 Simulation Microsoft Game Studios 0.45
## 1126 GC 2001 Strategy Nintendo 0.78
## 1127 PC NA Shooter Activision 0.58
## 1128 PS3 2011 Platform Sega 0.60
## 1129 PS2 2003 Sports Electronic Arts 1.18
## 1130 PS 1999 Platform Sony Computer Entertainment 0.71
## 1131 X360 2014 Sports Take-Two Interactive 1.33
## 1132 PS2 2004 Sports Electronic Arts 1.32
## 1133 X360 2010 Action Square Enix 0.59
## 1134 PS3 NA Misc Electronic Arts 0.99
## 1135 PS2 2005 Sports Activision 0.80
## 1136 X360 2011 Shooter Bethesda Softworks 0.82
## 1137 DS 2006 Sports Nintendo 0.99
## 1138 GC 2003 Racing Nintendo 1.01
## 1139 PS 1998 Racing Electronic Arts 0.90
## 1140 Wii 2006 Role-Playing Nintendo 0.80
## 1141 PS2 2004 Sports Electronic Arts 0.79
## 1142 X360 2013 Shooter Microsoft Game Studios 0.92
## 1143 GB 1989 Sports Nintendo 0.66
## 1144 GB 1998 Strategy Konami Digital Entertainment 0.00
## 1145 GC 2005 Sports Nintendo 0.98
## 1146 PS2 2005 Misc Sony Computer Entertainment 0.00
## 1147 DS 2007 Action THQ 1.50
## 1148 XOne 2014 Shooter Ubisoft 0.79
## 1149 Wii 2008 Simulation Konami Digital Entertainment 0.95
## 1150 DS 2011 Misc Activision 0.40
## 1151 PS2 2005 Action Take-Two Interactive 1.30
## 1152 X360 2008 Action Ubisoft 0.71
## 1153 N64 1998 Racing Video System 0.46
## 1154 2600 1981 Shooter Activision 1.49
## 1155 PS 1999 Action Konami Digital Entertainment 0.71
## 1156 DS 2008 Role-Playing Square Enix 0.19
## 1157 PS4 2016 Action Hello Games 0.58
## 1158 GC 2003 Platform Sega 1.05
## 1159 PS2 2004 Sports Global Star 1.26
## 1160 PC 1996 Role-Playing Activision 0.01
## 1161 GC 2006 Action Nintendo 1.15
## 1162 PS 1996 Fighting Sony Computer Entertainment 0.61
## 1163 PS3 2008 Action Capcom 0.58
## 1164 2600 1982 Platform Atari 1.48
## 1165 PS3 2007 Sports Konami Digital Entertainment 0.04
## 1166 X360 2008 Fighting Ubisoft 0.92
## 1167 X360 2010 Action Warner Bros. Interactive Entertainment 0.95
## 1168 PS 1999 Racing Electronic Arts 0.88
## 1169 PS4 2014 Shooter Bethesda Softworks 0.47
## 1170 Wii 2008 Sports Take-Two Interactive 0.87
## 1171 DS 2008 Misc Activision 0.85
## 1172 DS 2008 Simulation Electronic Arts 0.81
## 1173 PS 2000 Misc Sony Computer Entertainment 0.88
## 1174 X360 2012 Racing Electronic Arts 0.62
## 1175 Wii 2009 Misc Activision 0.94
## 1176 DS 2008 Misc Disney Interactive Studios 0.64
## 1177 3DS 2012 Action Square Enix 0.88
## 1178 DS 2007 Action Disney Interactive Studios 1.06
## 1179 DS 2009 Role-Playing Nintendo 0.58
## 1180 GBA 2002 Platform Vivendi Games 0.85
## 1181 PS2 2009 Sports Konami Digital Entertainment 0.10
## 1182 PS2 2001 Sports Electronic Arts 0.77
## 1183 PS2 2002 Shooter Gotham Games 0.98
## 1184 GC 2005 Misc Nintendo 0.95
## 1185 PS3 2012 Sports Konami Digital Entertainment 0.18
## 1186 PS2 2000 Racing Take-Two Interactive 0.77
## 1187 PS2 2006 Fighting Electronic Arts 1.07
## 1188 NES 1988 Platform Nintendo 0.59
## 1189 PS 1995 Action Sony Computer Entertainment 1.32
## 1190 PS4 2016 Role-Playing Namco Bandai Games 0.58
## 1191 SNES 1990 Action Capcom 0.67
## 1192 GB 2001 Role-Playing Enix Corporation 0.00
## 1193 GBA 2003 Misc Nintendo 0.68
## 1194 PS4 2013 Action Warner Bros. Interactive Entertainment 0.59
## 1195 X360 2010 Action Take-Two Interactive 0.84
## 1196 PS3 2012 Action Bethesda Softworks 0.72
## 1197 PS2 2002 Racing Atari 0.76
## 1198 XB 2003 Shooter Ubisoft 0.91
## 1199 Wii 2008 Sports Atari 0.79
## 1200 PS3 2010 Shooter Take-Two Interactive 0.85
## 1201 N64 2000 Action Electronic Arts 1.13
## 1202 PS 2001 Action Activision 0.57
## 1203 XOne 2014 Action Ubisoft 0.90
## 1204 PS3 2010 Action LucasArts 0.80
## 1205 PS3 2011 Role-Playing Namco Bandai Games 0.60
## 1206 PC 1999 Strategy Westwood Studios 1.55
## 1207 DS 2011 Strategy Warner Bros. Interactive Entertainment 1.07
## 1208 WiiU 2015 Misc Nintendo 0.69
## 1209 XOne 2013 Action Microsoft Game Studios 1.06
## 1210 Wii 2007 Action Capcom 0.68
## 1211 3DS 2015 Role-Playing Nintendo 0.71
## 1212 PS2 2000 Role-Playing Sony Computer Entertainment 0.83
## 1213 PC 2003 Strategy Activision 0.58
## 1214 X360 2006 Shooter Ubisoft 1.40
## 1215 DS 2008 Adventure Disney Interactive Studios 0.86
## 1216 PS2 2005 Sports Electronic Arts 1.26
## 1217 PS 1996 Shooter Fox Interactive 0.85
## 1218 PC 2012 Shooter Activision 0.63
## 1219 PS3 2009 Fighting Electronic Arts 0.92
## 1220 Wii 2008 Simulation Electronic Arts 0.71
## 1221 DS 2007 Action Electronic Arts 0.57
## 1222 SNES 1994 Fighting Acclaim Entertainment 1.19
## 1223 PS 1998 Sports 989 Studios 1.44
## 1224 Wii 2009 Shooter Activision 0.95
## 1225 XOne 2016 Sports Electronic Arts 0.17
## 1226 GC 2003 Sports Nintendo 1.09
## 1227 PS 1997 Sports Electronic Arts 0.85
## 1228 WiiU 2014 Platform Nintendo 0.73
## 1229 X360 2011 Shooter Electronic Arts 0.94
## 1230 PSP 2007 Racing Sega 0.44
## 1231 PS 1997 Fighting Electronic Arts 1.07
## 1232 PS2 2002 Sports Electronic Arts 0.36
## 1233 PS 1996 Racing Electronic Arts 1.43
## 1234 NES 1984 Racing Nintendo 0.00
## 1235 NES 1984 Shooter Namco Bandai Games 0.18
## 1236 PS 1998 Racing Electronic Arts 1.45
## 1237 PS 1998 Sports Electronic Arts 1.43
## 1238 PS3 2010 Action Take-Two Interactive 0.50
## 1239 PS3 2006 Shooter Activision 0.60
## 1240 GC 2002 Puzzle Atari 1.11
## 1241 PS2 2002 Action Namco Bandai Games 1.26
## 1242 XOne 2014 Sports Electronic Arts 1.30
## 1243 Wii 2010 Racing Sega 0.65
## 1244 X360 2011 Action LucasArts 0.84
## 1245 PC 2011 Sports Sega 0.02
## 1246 3DS 2013 Role-Playing GungHo 0.00
## 1247 NES 1988 Action Capcom 0.93
## 1248 PS 2001 Fighting Electronic Arts 0.23
## 1249 PS 1997 Sports Electronic Arts 1.41
## 1250 PS2 2007 Action Electronic Arts 0.35
## 1251 PS 1997 Misc Hasbro Interactive 1.18
## 1252 GC 2003 Fighting Namco Bandai Games 0.99
## 1253 PS3 2011 Shooter Sony Computer Entertainment 0.64
## 1254 PS2 2000 Racing Crave Entertainment 0.66
## 1255 PC 2010 Role-Playing Square Enix 0.86
## 1256 PS 1998 Sports Midway Games 1.41
## 1257 PS2 2002 Shooter THQ 0.49
## 1258 DS 2010 Puzzle Warner Bros. Interactive Entertainment 1.08
## 1259 PS2 2000 Sports Electronic Arts 1.19
## 1260 N64 2000 Fighting THQ 1.20
## 1261 NES 1985 Platform Nintendo 0.46
## 1262 SCD 1993 Platform Sega 1.00
## 1263 NES 1986 Platform Hudson Soft 0.00
## 1264 X360 2010 Action Capcom 0.75
## 1265 PS3 2008 Misc MTV Games 1.13
## 1266 PS 1998 Action Namco Bandai Games 1.21
## 1267 Wii 2009 Misc Disney Interactive Studios 1.08
## 1268 GC 2003 Role-Playing Nintendo 0.72
## 1269 XB 2002 Shooter Electronic Arts 1.00
## 1270 PS2 2008 Sports Electronic Arts 1.22
## 1271 DS 2008 Adventure THQ 1.00
## 1272 N64 2000 Platform Nintendo 0.82
## 1273 PS2 2006 Misc Sony Computer Entertainment 0.00
## 1274 X360 2008 Action Activision 0.82
## 1275 Wii 2010 Simulation Electronic Arts 0.61
## 1276 Wii 2009 Sports Nintendo 0.37
## 1277 DS 2006 Adventure THQ 0.43
## 1278 PS2 2006 Shooter Square Enix 0.47
## 1279 NES 1990 Sports Nintendo 0.28
## 1280 N64 1999 Fighting THQ 1.20
## 1281 GB 1997 Platform Nintendo 0.70
## 1282 PS3 2011 Role-Playing Electronic Arts 0.78
## 1283 PS2 2005 Sports Take-Two Interactive 0.72
## 1284 PS2 2004 Fighting Electronic Arts 1.08
## 1285 XB 2004 Action Ubisoft 0.82
## 1286 DS 2007 Simulation Ubisoft 0.39
## 1287 PSV 2012 Action Ubisoft 0.58
## 1288 PS3 2008 Fighting Ubisoft 0.72
## 1289 N64 1999 Action Nintendo 0.62
## 1290 GBA 2003 Platform THQ 1.04
## 1291 X360 2006 Fighting Electronic Arts 1.33
## 1292 PS3 2013 Action Konami Digital Entertainment 0.45
## 1293 DS 2008 Role-Playing Square Enix 0.69
## 1294 X360 2010 Action LucasArts 0.95
## 1295 Wii 2008 Shooter Sega 0.78
## 1296 DS 2007 Adventure Disney Interactive Studios 1.15
## 1297 PSV 2012 Platform Sony Computer Entertainment 0.40
## 1298 PS 1998 Role-Playing SquareSoft 0.29
## 1299 GBA 2004 Platform THQ 1.02
## 1300 X360 2012 Shooter Ubisoft 0.93
## 1301 X360 2008 Shooter Electronic Arts 0.81
## 1302 PS2 2003 Misc Midway Games 0.72
## 1303 DS 2008 Platform THQ 0.46
## 1304 PS NA Sports N/A 0.81
## 1305 X360 2011 Shooter THQ 0.83
## 1306 GC 2001 Puzzle Atari 0.95
## 1307 2600 1981 Platform Coleco 1.36
## 1308 PS 1998 Fighting GT Interactive 0.81
## 1309 GC 2005 Sports Nintendo 0.93
## 1310 PS3 2012 Role-Playing Electronic Arts 0.63
## 1311 Wii 2012 Action Warner Bros. Interactive Entertainment 0.94
## 1312 PS3 2012 Action Electronic Arts 0.47
## 1313 PS 1998 Fighting THQ 1.17
## 1314 PSP 2006 Fighting Sega 0.53
## 1315 3DS 2013 Platform Nintendo 0.51
## 1316 PS2 2004 Action Capcom 0.37
## 1317 X360 2013 Role-Playing Activision 0.89
## 1318 XOne 2015 Action Warner Bros. Interactive Entertainment 0.86
## 1319 PS3 2008 Shooter Take-Two Interactive 0.75
## 1320 PS2 2004 Shooter Take-Two Interactive 0.71
## 1321 PC 2011 Strategy Ubisoft 0.00
## 1322 PS2 2003 Action Capcom 0.54
## 1323 Wii 2007 Misc Electronic Arts 0.53
## 1324 GB 1996 Simulation Namco Bandai Games 0.00
## 1325 NES 1984 Misc Nintendo 0.00
## 1326 SNES 1993 Fighting Namco Bandai Games 0.00
## 1327 GB 1997 Simulation Namco Bandai Games 0.00
## 1328 N64 1999 Misc Namco Bandai Games 1.24
## 1329 Wii 2008 Puzzle Electronic Arts 0.97
## 1330 DS 2010 Role-Playing Square Enix 0.11
## 1331 PS2 2005 Sports Activision 1.38
## 1332 DS 2007 Misc Ubisoft 0.37
## 1333 DS 2007 Misc Rising Star Games 0.79
## 1334 PS2 2007 Misc Sony Computer Entertainment 0.04
## 1335 PSP 2006 Racing Sega 0.73
## 1336 PC 2013 Simulation Electronic Arts 0.48
## 1337 SNES 1996 Platform Nintendo 0.26
## 1338 PS3 2014 Shooter Ubisoft 0.33
## 1339 X360 2007 Fighting THQ 0.92
## 1340 X360 2010 Racing Microsoft Game Studios 0.92
## 1341 Wii 2006 Misc Ubisoft 1.23
## 1342 PS3 2013 Racing Electronic Arts 0.33
## 1343 PS2 2004 Sports Electronic Arts 1.03
## 1344 PS3 2011 Shooter Electronic Arts 0.73
## 1345 PS2 2002 Sports Electronic Arts 1.16
## 1346 PS 1999 Action Hasbro Interactive 0.80
## 1347 X360 2013 Action Disney Interactive Studios 0.96
## 1348 Wii 2009 Action Activision 0.91
## 1349 X360 2009 Misc Sega 0.85
## 1350 Wii 2008 Sports Electronic Arts 0.81
## 1351 GB 1988 Platform Capcom 0.82
## 1352 GBA 2004 Platform Nintendo 0.00
## 1353 PS 1999 Sports Electronic Arts 0.79
## 1354 3DS 2013 Role-Playing Square Enix 0.07
## 1355 PS2 2002 Sports Activision 0.70
## 1356 PS3 2010 Fighting THQ 0.80
## 1357 PS2 2005 Sports Electronic Arts 1.35
## 1358 GBA 2004 Action Nintendo 0.89
## 1359 PS2 2004 Sports Electronic Arts 1.15
## 1360 X360 2011 Platform Sega 0.71
## 1361 SNES 1994 Action Nintendo 0.57
## 1362 NES 1987 Sports Namco Bandai Games 0.12
## 1363 X360 2008 Action Electronic Arts 0.89
## 1364 GC 2002 Action Capcom 0.63
## 1365 DS 2009 Role-Playing Nintendo 0.00
## 1366 PS4 2014 Action Square Enix 0.47
## 1367 PSP 2006 Action LucasArts 0.58
## 1368 Wii 2010 Action Disney Interactive Studios 0.64
## 1369 X360 2009 Fighting Electronic Arts 0.95
## 1370 GC 2005 Action Eidos Interactive 1.09
## 1371 X360 2013 Fighting Warner Bros. Interactive Entertainment 0.97
## 1372 PS3 2014 Sports Electronic Arts 1.07
## 1373 GEN 1994 Platform Virgin Interactive 0.97
## 1374 PSP 2004 Racing Sony Computer Entertainment 0.36
## 1375 Wii 2010 Action Nintendo 0.87
## 1376 PS 1999 Fighting Electronic Arts 1.02
## 1377 PS2 2003 Racing Sony Computer Entertainment 0.00
## 1378 PS2 2001 Racing Sony Computer Entertainment 1.19
## 1379 PS2 2004 Racing Electronic Arts 0.69
## 1380 Wii 2010 Shooter Activision 0.82
## 1381 XB 2002 Action Activision 1.07
## 1382 PS2 2008 Racing Electronic Arts 0.38
## 1383 PS 1996 Sports Sony Computer Entertainment 1.15
## 1384 PS3 2008 Action Ubisoft 0.43
## 1385 GBA 2004 Platform THQ 0.74
## 1386 NES 1990 Role-Playing SquareSoft 0.00
## 1387 PC 2013 Shooter Electronic Arts 0.38
## 1388 PS2 2002 Racing Codemasters 0.03
## 1389 PS 2001 Sports Electronic Arts 0.78
## 1390 PS4 2016 Shooter Bethesda Softworks 0.49
## 1391 DS 2007 Role-Playing Square Enix 0.34
## 1392 DS 2009 Action Activision 1.27
## 1393 PS3 2011 Shooter Square Enix 0.50
## 1394 SNES 1994 Sports Acclaim Entertainment 1.19
## 1395 NES 1991 Action Konami Digital Entertainment 1.05
## 1396 PS2 2005 Action Tecmo Koei 0.24
## 1397 Wii 2007 Action Disney Interactive Studios 0.87
## 1398 PS3 2012 Action THQ 0.51
## 1399 X360 2011 Shooter Square Enix 0.76
## 1400 XB 2003 Action Activision 0.96
## 1401 PSP 2005 Simulation Electronic Arts 0.49
## 1402 N64 2000 Role-Playing Nintendo 0.58
## 1403 3DS 2012 Role-Playing Nintendo 0.50
## 1404 X360 2014 Shooter Electronic Arts 0.87
## 1405 PS 1998 Shooter Take-Two Interactive 0.77
## 1406 PSV 2012 Role-Playing Atlus 0.46
## 1407 PS3 2010 Action Capcom 0.43
## 1408 Wii 2009 Misc Electronic Arts 0.71
## 1409 Wii 2007 Adventure Disney Interactive Studios 1.24
## 1410 DS 2009 Puzzle 505 Games 0.80
## 1411 PS2 2001 Sports Acclaim Entertainment 0.67
## 1412 X360 2011 Action Electronic Arts 0.63
## 1413 PS2 2008 Action LucasArts 0.60
## 1414 PS3 2014 Action Ubisoft 0.46
## 1415 PS3 2006 Racing Namco Bandai Games 0.24
## 1416 PS 1998 Misc Activision 0.76
## 1417 XOne 2014 Racing Microsoft Game Studios 0.50
## 1418 PS3 2008 Racing Sony Computer Entertainment 0.43
## 1419 DS 2010 Platform Sega 0.74
## 1420 XB 2004 Role-Playing Activision 0.99
## 1421 PS3 2010 Action Warner Bros. Interactive Entertainment 0.55
## 1422 N64 1998 Strategy Nintendo 0.00
## 1423 PS3 2014 Sports Take-Two Interactive 0.86
## 1424 XB 2004 Shooter Ubisoft 0.86
## 1425 GBA 2003 Platform Vivendi Games 0.63
## 1426 X360 2008 Racing Electronic Arts 0.63
## 1427 PS2 2008 Misc Sony Computer Entertainment 0.23
## 1428 NES 1986 Shooter Konami Digital Entertainment 0.27
## 1429 SNES 1996 Role-Playing Enix Corporation 0.00
## 1430 2600 1981 Shooter Atari 1.26
## 1431 3DS 2014 Platform Nintendo 0.47
## 1432 XOne 2013 Action Microsoft Game Studios 0.82
## 1433 PS2 2002 Shooter Electronic Arts 0.67
## 1434 Wii NA Action Warner Bros. Interactive Entertainment 0.76
## 1435 PS3 2011 Fighting Capcom 0.81
## 1436 PS 1999 Simulation Konami Digital Entertainment 0.00
## 1437 PS3 2010 Racing Codemasters 0.25
## 1438 PS 1997 Sports Electronic Arts 1.29
## 1439 PSP 2008 Sports Electronic Arts 0.23
## 1440 DS 2007 Misc Atari 1.18
## 1441 PSP 2007 Sports Electronic Arts 0.20
## 1442 DS 2009 Action Take-Two Interactive 0.59
## 1443 X360 2010 Action Microsoft Game Studios 0.66
## 1444 PS3 2008 Shooter Electronic Arts 0.76
## 1445 XOne 2015 Fighting Warner Bros. Interactive Entertainment 1.00
## 1446 PS2 2004 Action Electronic Arts 0.22
## 1447 XB 2003 Racing Vivendi Games 0.70
## 1448 X360 2008 Action Capcom 0.79
## 1449 PS3 2008 Shooter Ubisoft 0.66
## 1450 PSP 2005 Role-Playing Capcom 0.24
## 1451 X360 2011 Action Electronic Arts 0.70
## 1452 PS 1997 Role-Playing SquareSoft 0.15
## 1453 PS2 2004 Misc Sony Computer Entertainment 0.00
## 1454 X360 2007 Sports Electronic Arts 0.31
## 1455 PS3 2011 Adventure Sony Computer Entertainment 0.67
## 1456 PS2 2002 Racing Atari 0.95
## 1457 DS 2005 Role-Playing Nintendo 0.77
## 1458 X360 2006 Shooter Capcom 1.09
## 1459 GEN 1994 Fighting Acclaim Entertainment 1.03
## 1460 XB 2005 Shooter Activision 0.85
## 1461 GC 2004 Platform Nintendo 0.84
## 1462 PS2 2006 Racing Electronic Arts 1.22
## 1463 PS2 2003 Shooter Take-Two Interactive 0.65
## 1464 PC 2000 Strategy Electronic Arts 1.32
## 1465 PS2 2004 Sports Electronic Arts 1.10
## 1466 PS3 2007 Fighting THQ 0.62
## 1467 PS2 2004 Platform Sony Computer Entertainment 1.27
## 1468 X360 2010 Sports Ubisoft 0.79
## 1469 PS3 2011 Shooter Bethesda Softworks 0.47
## 1470 X360 2013 Platform Activision 0.86
## 1471 PS4 2013 Sports Take-Two Interactive 0.89
## 1472 GBA 2002 Action Activision 0.92
## 1473 N64 1998 Fighting Acclaim Entertainment 1.08
## 1474 GB 2000 Sports Activision 0.90
## 1475 GBA 2003 Simulation Electronic Arts 0.93
## 1476 PS 2000 Sports Electronic Arts 0.74
## 1477 GC 2004 Shooter Nintendo 0.87
## 1478 X360 2010 Fighting THQ 0.90
## 1479 PS3 2013 Role-Playing Square Enix 0.43
## 1480 PS2 2004 Racing TDK Mediactive 0.65
## 1481 DS 2007 Simulation Ubisoft 0.71
## 1482 DS 2010 Role-Playing Nintendo 0.51
## 1483 XOne 2014 Action Warner Bros. Interactive Entertainment 0.72
## 1484 PSP 2005 Racing Electronic Arts 0.69
## 1485 PS3 2008 Action Warner Bros. Interactive Entertainment 0.72
## 1486 PS3 2014 Role-Playing Namco Bandai Games 0.40
## 1487 PC 2008 Role-Playing Activision 0.01
## 1488 PS3 2014 Role-Playing Square Enix 0.52
## 1489 X360 2014 Action Warner Bros. Interactive Entertainment 0.69
## 1490 PS 1998 Racing Codemasters 0.03
## 1491 NES 1985 Puzzle Nintendo 0.73
## 1492 PS2 2002 Sports Atari 1.06
## 1493 PS 1997 Fighting Eidos Interactive 0.73
## 1494 GBA 2003 Role-Playing Capcom 0.31
## 1495 PS3 2010 Shooter Sony Computer Entertainment 0.77
## 1496 PS 1996 Sports Electronic Arts 0.73
## 1497 DS 2011 Racing Disney Interactive Studios 0.72
## 1498 X360 2012 Action Activision 0.75
## 1499 PSP NA Action Warner Bros. Interactive Entertainment 0.57
## 1500 PS 1996 Racing ASC Games 0.73
## 1501 PS2 2002 Racing Bethesda Softworks 0.64
## 1502 X360 2009 Misc MTV Games 0.97
## 1503 X360 2009 Fighting Namco Bandai Games 0.71
## 1504 X360 2009 Action Activision 0.84
## 1505 Wii 2009 Misc Zoo Games 1.22
## 1506 PS2 2005 Platform Activision 0.78
## 1507 PS 1999 Adventure THQ 0.57
## 1508 DS 2009 Strategy Warner Bros. Interactive Entertainment 0.81
## 1509 2600 1983 Platform Activision 1.22
## 1510 PS2 2002 Shooter Acclaim Entertainment 0.64
## 1511 Wii 2008 Misc Disney Interactive Studios 0.68
## 1512 Wii 2008 Sports Ubisoft 1.11
## 1513 XB 2004 Racing Electronic Arts 0.84
## 1514 2600 NA Adventure Atari 1.21
## 1515 GBA 2002 Role-Playing Konami Digital Entertainment 0.94
## 1516 PS3 2011 Action Electronic Arts 0.45
## 1517 PS2 2006 Sports Electronic Arts 1.07
## 1518 PS3 2013 Action Deep Silver 0.56
## 1519 PS2 2005 Misc Sony Computer Entertainment 0.27
## 1520 Wii 2007 Sports Electronic Arts 0.69
## 1521 PS 1997 Racing Accolade 1.05
## 1522 SNES 1995 Role-Playing SquareSoft 0.00
## 1523 Wii 2010 Sports Electronic Arts 0.78
## 1524 PS 1999 Role-Playing Namco Bandai Games 0.56
## 1525 XOne 2015 Adventure Square Enix 0.53
## 1526 Wii 2006 Racing Electronic Arts 0.46
## 1527 WiiU 2015 Platform Nintendo 0.61
## 1528 GBA 2002 Role-Playing Capcom 0.39
## 1529 PS3 2012 Sports Electronic Arts 0.11
## 1530 GC 2002 Action Capcom 0.54
## 1531 X360 2005 Racing Electronic Arts 1.00
## 1532 XOne 2015 Shooter Ubisoft 0.73
## 1533 GBA 2003 Platform TDK Mediactive 0.93
## 1534 PS2 2004 Shooter Atari 0.63
## 1535 Wii 2008 Misc Activision 1.04
## 1536 DS 2008 Adventure Nintendo 0.76
## 1537 PS3 2008 Role-Playing Sega 0.71
## 1538 PS2 2005 Racing Take-Two Interactive 1.22
## 1539 PS2 2004 Role-Playing Sony Online Entertainment 0.63
## 1540 X360 2014 Action Ubisoft 0.72
## 1541 DS 2008 Simulation Ubisoft 0.55
## 1542 PS4 2014 Action Konami Digital Entertainment 0.45
## 1543 GB 1989 Misc Nintendo 0.00
## 1544 XOne 2015 Action Ubisoft 0.61
## 1545 PS 1999 Action 3DO 1.10
## 1546 X360 2012 Action THQ 0.72
## 1547 PS 1999 Racing 989 Studios 1.07
## 1548 PS2 2003 Action Take-Two Interactive 0.63
## 1549 3DS 2012 Action Nintendo 0.48
## 1550 PS2 2001 Action Konami Digital Entertainment 0.62
## 1551 PS3 2008 Action Eidos Interactive 0.45
## 1552 PS 1997 Platform Konami Digital Entertainment 0.58
## 1553 PC 2005 Simulation Electronic Arts 1.22
## 1554 PS2 2008 Action Warner Bros. Interactive Entertainment 0.72
## 1555 PS 1995 Racing Electronic Arts 0.71
## 1556 3DS 2012 Role-Playing Nintendo 0.44
## 1557 2600 1981 Shooter Imagic 1.18
## 1558 X360 2008 Sports Take-Two Interactive 1.00
## 1559 X360 2011 Fighting THQ 0.74
## 1560 XB 2003 Sports Activision 0.85
## 1561 NES 1984 Shooter Nintendo 0.68
## 1562 XOne 2015 Role-Playing Bethesda Softworks 0.77
## 1563 Wii 2008 Sports Deep Silver 0.96
## 1564 PS2 2002 Role-Playing Atari 0.49
## 1565 Wii 2007 Sports Take-Two Interactive 0.39
## 1566 GC 2003 Platform Sega 0.87
## 1567 PS2 2004 Action Sony Computer Entertainment 0.62
## 1568 PS 1994 Fighting Sony Computer Entertainment 0.39
## 1569 3DS 2016 Action Level 5 0.00
## 1570 DS 2008 Action Activision 0.56
## 1571 DS 2005 Simulation Atari 0.10
## 1572 PC 2010 Sports Sega 0.00
## 1573 PS 1998 Puzzle THQ 0.05
## 1574 DS 2007 Simulation Square Enix 0.54
## 1575 WiiU 2014 Action Nintendo 0.61
## 1576 PS3 2006 Racing Electronic Arts 0.49
## 1577 PC 2003 Sports Eidos Interactive 0.00
## 1578 PS 1998 Sports Codemasters 0.02
## 1579 DS 2007 Action THQ 0.50
## 1580 PS 1998 Misc Hasbro Interactive 0.99
## 1581 X360 2012 Action Warner Bros. Interactive Entertainment 0.63
## 1582 Wii 2007 Sports RTL 0.45
## 1583 PS3 2008 Shooter Sony Computer Entertainment 0.94
## 1584 PS 2000 Sports Electronic Arts 0.70
## 1585 PS2 2008 Action LucasArts 0.49
## 1586 2600 NA Action Atari 1.17
## 1587 PS3 2007 Shooter Ubisoft 0.47
## 1588 NES 1988 Role-Playing Namco Bandai Games 0.00
## 1589 NES 1987 Role-Playing Namco Bandai Games 0.00
## 1590 PS 1996 Sports Natsume 0.99
## 1591 PS3 2013 Fighting Warner Bros. Interactive Entertainment 0.48
## 1592 GC 2005 Role-Playing Nintendo 0.71
## 1593 PS2 2006 Shooter Electronic Arts 1.01
## 1594 PC 2002 Strategy Atari 1.19
## 1595 PS2 2003 Action Eidos Interactive 0.61
## 1596 PS2 2004 Action Ubisoft 0.52
## 1597 PS 1998 Racing Electronic Arts 1.05
## 1598 PS2 2005 Shooter Sony Computer Entertainment 0.85
## 1599 PS2 2001 Role-Playing Virgin Interactive 0.61
## 1600 DS 2007 Action Activision 1.12
## 1601 PS3 2011 Role-Playing Namco Bandai Games 0.29
## 1602 DS 2007 Racing Nintendo 1.10
## 1603 PS3 2009 Action Activision 0.65
## 1604 PSP 2009 Action Ubisoft 0.43
## 1605 PS 1997 Platform GT Interactive 0.75
## 1606 XOne 2015 Role-Playing Namco Bandai Games 0.66
## 1607 PS2 2000 Action Namco Bandai Games 0.24
## 1608 PS2 2008 Fighting THQ 0.69
## 1609 GB 1992 Puzzle Nintendo 0.56
## 1610 XB 2005 Action Activision 0.82
## 1611 Wii 2007 Action D3Publisher 0.55
## 1612 PS2 2001 Platform Konami Digital Entertainment 0.60
## 1613 PS3 2010 Sports Electronic Arts 0.30
## 1614 XB 2004 Action Microsoft Game Studios 0.92
## 1615 XB 2002 Platform Universal Interactive 0.59
## 1616 PS2 2004 Racing Atari 0.60
## 1617 PS 2003 Misc Sony Computer Entertainment 0.69
## 1618 PC 2014 Simulation Focus Home Interactive 0.08
## 1619 X360 2008 Misc Activision 1.00
## 1620 PS3 2007 Shooter Electronic Arts 0.25
## 1621 GB 2000 Puzzle Nintendo 0.29
## 1622 GBA 2003 Platform THQ 0.88
## 1623 PS 1998 Racing Activision 0.68
## 1624 NES 1986 Platform Konami Digital Entertainment 0.54
## 1625 GBA 2004 Platform Nintendo 0.79
## 1626 PS3 2009 Action Sega 0.44
## 1627 GBA 2003 Puzzle Nintendo 0.40
## 1628 PSP 2005 Shooter LucasArts 1.05
## 1629 PS4 2016 Sports Electronic Arts 0.92
## 1630 Wii 2008 Puzzle Electronic Arts 0.72
## 1631 PC 2015 Role-Playing Bethesda Softworks 0.50
## 1632 Wii 2007 Simulation Electronic Arts 0.45
## 1633 PS3 2012 Action Warner Bros. Interactive Entertainment 0.50
## 1634 PS3 2010 Fighting Namco Bandai Games 0.42
## 1635 GC 2004 Sports Nintendo 0.58
## 1636 PS 1997 Puzzle Sony Computer Entertainment 0.13
## 1637 GB 1997 Misc Nintendo 0.76
## 1638 GB 1999 Misc Nintendo 0.79
## 1639 NES 1984 Puzzle Namco Bandai Games 0.27
## 1640 PS2 2006 Adventure Alchemist 0.59
## 1641 PS3 2011 Racing Codemasters 0.12
## 1642 PSP 2006 Racing THQ 0.72
## 1643 PS 1997 Sports Electronic Arts 1.13
## 1644 PS 1997 Role-Playing SquareSoft 0.00
## 1645 GBA 2002 Role-Playing Nintendo 0.61
## 1646 PS 1996 Simulation Maxis 0.68
## 1647 XB 2001 Shooter Take-Two Interactive 0.98
## 1648 PS 1998 Fighting Electronic Arts 0.68
## 1649 PS2 2002 Sports Sega 0.59
## 1650 PS2 NA Racing Unknown 0.60
## 1651 3DS 2011 Fighting Capcom 0.55
## 1652 PS2 2006 Racing THQ 1.01
## 1653 XB 2001 Misc Microsoft Game Studios 0.93
## 1654 XB 2004 Shooter Activision 0.78
## 1655 PSP 2010 Sports Electronic Arts 0.13
## 1656 PS2 2002 Platform Sony Computer Entertainment 1.03
## 1657 DS 2009 Action Activision 0.66
## 1658 SNES 1992 Platform Capcom 0.66
## 1659 PS 2001 Role-Playing Enix Corporation 0.00
## 1660 PS 1999 Action LucasArts 0.66
## 1661 PS 2000 Action Virgin Interactive 0.34
## 1662 GC 2003 Racing Electronic Arts 0.69
## 1663 GBA 2007 Misc N/A 0.87
## 1664 PS 1997 Racing Electronic Arts 0.67
## 1665 PSP 2006 Sports Electronic Arts 0.24
## 1666 PSP 2005 Sports Konami Digital Entertainment 0.01
## 1667 PS2 2002 Action Black Label Games 0.59
## 1668 PS3 2011 Action LucasArts 0.52
## 1669 PS2 2004 Racing SouthPeak Games 1.00
## 1670 GC 2004 Strategy Nintendo 0.48
## 1671 Wii 2015 Misc Ubisoft 0.52
## 1672 Wii 2008 Misc Disney Interactive Studios 0.77
## 1673 XOne 2015 Shooter Electronic Arts 0.72
## 1674 PS4 2015 Sports Take-Two Interactive 0.41
## 1675 SNES 1993 Fighting Namco Bandai Games 0.00
## 1676 NES 1986 Shooter Konami Digital Entertainment 0.00
## 1677 NES 1986 Platform Konami Digital Entertainment 0.00
## 1678 DC 1999 Sports Sega 1.12
## 1679 GB 1989 Shooter Nintendo 0.40
## 1680 XB 2003 Action Atari 0.72
## 1681 PS2 2001 Sports Electronic Arts 0.59
## 1682 DS 2006 Puzzle Nintendo 0.74
## 1683 Wii 2009 Adventure Nintendo 0.55
## 1684 PS3 2012 Action Namco Bandai Games 0.01
## 1685 PS3 2013 Sports Take-Two Interactive 0.49
## 1686 PSP 2006 Action Konami Digital Entertainment 0.38
## 1687 PS 1997 Simulation Electronic Arts 0.66
## 1688 WiiU 2014 Puzzle Nintendo 0.56
## 1689 PSP 2007 Fighting THQ 0.45
## 1690 GBA 2003 Racing THQ 0.86
## 1691 Wii 2008 Sports Konami Digital Entertainment 0.09
## 1692 GBA 2002 Platform THQ 0.92
## 1693 3DS 2012 Sports Sega 0.18
## 1694 PS2 2006 Action Vivendi Games 0.99
## 1695 N64 1998 Sports Nintendo 1.02
## 1696 NES 1990 Platform Capcom 0.68
## 1697 PS 1999 Racing Ubisoft 0.99
## 1698 XB NA Action Eidos Interactive 0.76
## 1699 XOne 2013 Sports Electronic Arts 0.41
## 1700 GC 2002 Action Activision 0.86
## 1701 GBA 2004 Role-Playing Nintendo 0.64
## 1702 PS4 2016 Sports Take-Two Interactive 0.83
## 1703 3DS 2015 Role-Playing Nintendo 0.46
## 1704 X360 2012 Misc Ubisoft 0.90
## 1705 PS 1999 Adventure Konami Digital Entertainment 0.66
## 1706 2600 1982 Racing Atari 1.10
## 1707 PS3 2012 Action Capcom 0.48
## 1708 PSP 2008 Action LucasArts 0.40
## 1709 NES 1988 Sports Namco Bandai Games 0.10
## 1710 DC 1999 Adventure Sega 0.52
## 1711 GB 2000 Sports Nintendo 0.50
## 1712 GBA 2001 Sports Activision 0.85
## 1713 PS3 2011 Fighting THQ 0.53
## 1714 PS3 2009 Fighting THQ 0.48
## 1715 DS 2011 Strategy Mastertronic 0.95
## 1716 PS3 2006 Platform Sega 0.41
## 1717 SNES 1991 Platform Capcom 0.50
## 1718 PC 2008 Strategy Electronic Arts 0.03
## 1719 PS 1996 Simulation Electronic Arts 0.65
## 1720 X360 2011 Sports Ubisoft 0.70
## 1721 PS3 2008 Shooter Electronic Arts 0.74
## 1722 PS2 2005 Shooter Activision 0.98
## 1723 PS2 2002 Platform Electronic Arts 0.57
## 1724 Wii 2008 Platform Nintendo 0.60
## 1725 DS 2007 Platform Sega 0.54
## 1726 X360 2012 Action Electronic Arts 0.58
## 1727 NES 1990 Platform Capcom 0.68
## 1728 PS4 2016 Platform Sony Computer Entertainment 0.32
## 1729 N64 1997 Action Ocean 0.74
## 1730 SNES 1993 Role-Playing SquareSoft 0.00
## 1731 PS2 2003 Sports Zoo Digital Publishing 0.57
## 1732 PS 1998 Sports 989 Studios 0.65
## 1733 PS 1996 Racing Sony Computer Entertainment 0.16
## 1734 XB 2003 Shooter Electronic Arts 0.76
## 1735 PC 2012 Sports Sega 0.00
## 1736 PS 1996 Racing Psygnosis 0.65
## 1737 X360 2008 Platform Electronic Arts 0.51
## 1738 XOne 2015 Shooter Activision 0.82
## 1739 GBA 2004 Puzzle Nintendo 0.68
## 1740 PS3 2008 Action Activision 0.43
## 1741 Wii 2009 Sports Electronic Arts 0.78
## 1742 PC 2010 Role-Playing Bethesda Softworks 0.58
## 1743 PSV 2012 Racing Electronic Arts 0.38
## 1744 PSP 2007 Role-Playing Square Enix 0.45
## 1745 PS2 2006 Racing Take-Two Interactive 0.97
## 1746 PS2 2004 Shooter Ubisoft 0.57
## 1747 PS3 2007 Misc Sony Computer Entertainment 0.45
## 1748 PS 1997 Fighting Sony Computer Entertainment 0.39
## 1749 DS 2011 Action LucasArts 0.66
## 1750 PS2 2001 Racing Electronic Arts 0.57
## 1751 N64 1999 Shooter Nintendo 0.78
## 1752 SNES 1993 Platform Capcom 0.57
## 1753 GBA 2002 Role-Playing Konami Digital Entertainment 0.84
## 1754 SAT 1995 Racing Sega 0.21
## 1755 PS 1997 Racing Eidos Interactive 0.65
## 1756 PSP 2007 Shooter Electronic Arts 0.50
## 1757 X360 2010 Shooter City Interactive 0.54
## 1758 PS3 2011 Misc Ubisoft 0.52
## 1759 XB 2005 Action Eidos Interactive 0.83
## 1760 PSP 2009 Sports Electronic Arts 0.15
## 1761 X360 2014 Shooter Electronic Arts 0.51
## 1762 PC 2008 Simulation Sega 0.00
## 1763 PS3 2011 Simulation Konami Digital Entertainment 0.52
## 1764 PS2 2001 Action Midway Games 0.56
## 1765 PS3 2007 Action Eidos Interactive 0.57
## 1766 PS2 2004 Shooter Empire Interactive 0.56
## 1767 2600 1980 Misc Activision 1.07
## 1768 PS3 2010 Action Take-Two Interactive 0.44
## 1769 Wii 2009 Platform Sega 0.69
## 1770 PC 2007 Shooter Activision 0.00
## 1771 GB 1990 Puzzle Nintendo 0.51
## 1772 SNES 1995 Sports ASCII Entertainment 0.00
## 1773 NES 1986 Action Hudson Soft 0.00
## 1774 DS 2008 Misc Disney Interactive Studios 0.50
## 1775 PS3 2011 Platform Sony Computer Entertainment 0.75
## 1776 GC 2003 Misc Nintendo 0.50
## 1777 PS3 2011 Fighting Electronic Arts 0.45
## 1778 SNES 1993 Role-Playing Enix Corporation 0.00
## 1779 PS2 2003 Platform THQ 0.56
## 1780 PS 1998 Shooter Success 0.64
## 1781 PS 1997 Puzzle Compile 0.00
## 1782 3DS 2011 Action Nintendo 0.47
## 1783 PS 2000 Action Take-Two Interactive 0.64
## 1784 PS2 2003 Action Activision 0.44
## 1785 PS2 2005 Action Sony Computer Entertainment 0.78
## 1786 PS 1998 Role-Playing SquareSoft 0.25
## 1787 PS3 2007 Sports Sony Computer Entertainment 0.31
## 1788 PS2 2005 Simulation Konami Digital Entertainment 0.95
## 1789 PS3 2008 Platform Electronic Arts 0.31
## 1790 Wii 2009 Platform Ubisoft 0.26
## 1791 N64 1998 Shooter Acclaim Entertainment 0.90
## 1792 NES 1986 Action Capcom 0.71
## 1793 SNES 1990 Simulation Nintendo 0.46
## 1794 DC 2000 Action Eidos Interactive 0.41
## 1795 GB 1991 Racing Nintendo 0.58
## 1796 XB 2003 Action Electronic Arts 0.71
## 1797 GBA 2005 Action Eidos Interactive 0.82
## 1798 PS2 2005 Role-Playing Take-Two Interactive 0.00
## 1799 X360 2009 Misc Activision 0.65
## 1800 PS2 2001 Simulation Atari 0.12
## 1801 GC 2004 Racing Electronic Arts 0.70
## 1802 XB 2002 Simulation Microsoft Game Studios 1.01
## 1803 PS3 2010 Racing Sony Computer Entertainment 0.50
## 1804 3DS 2011 Action LucasArts 0.61
## 1805 PS 1999 Sports ASCII Entertainment 0.00
## 1806 GBA 2006 Racing THQ 0.81
## 1807 3DS 2012 Role-Playing Nintendo 0.33
## 1808 XB 2004 Shooter Ubisoft 0.99
## 1809 PS4 2014 Sports Take-Two Interactive 0.38
## 1810 NES 1983 Platform Nintendo 0.23
## 1811 PS 1998 Misc Sony Computer Entertainment 0.63
## 1812 X360 2013 Sports Take-Two Interactive 0.64
## 1813 PS4 2014 Shooter Sega 0.34
## 1814 PS3 2009 Action Sega 0.21
## 1815 GBA 2005 Role-Playing Nintendo 0.81
## 1816 PS3 2009 Misc MTV Games 0.67
## 1817 X360 2011 Action Electronic Arts 0.72
## 1818 2600 1982 Shooter Atari 1.05
## 1819 PS2 2001 Racing Activision 0.55
## 1820 N64 1996 Simulation Nintendo 0.56
## 1821 X360 2010 Shooter Microsoft Game Studios 0.63
## 1822 PS3 2013 Role-Playing Square Enix 0.36
## 1823 PS3 2010 Action Konami Digital Entertainment 0.50
## 1824 X360 2011 Misc Ubisoft 0.84
## 1825 X360 2014 Action Disney Interactive Studios 0.62
## 1826 PSP 2005 Shooter Sony Computer Entertainment 1.03
## 1827 XB 2005 Shooter Activision 0.66
## 1828 NES 1992 Puzzle Nintendo 0.41
## 1829 PS2 2009 Misc Activision 0.28
## 1830 PC 2007 Sports Russel 0.00
## 1831 XB 2004 Action Activision 0.82
## 1832 XB 2003 Shooter Microsoft Game Studios 0.85
## 1833 PS4 2015 Action Warner Bros. Interactive Entertainment 0.32
## 1834 PS2 2007 Action Activision 0.63
## 1835 PS3 2008 Racing Codemasters 0.31
## 1836 PS2 2007 Misc RedOctane 0.92
## 1837 XOne 2014 Shooter Microsoft Game Studios 0.62
## 1838 PS2 NA Misc Electronic Arts 0.71
## 1839 XB 2005 Action Ubisoft 0.68
## 1840 NES 1983 Platform Nintendo 0.33
## 1841 PS 1995 Role-Playing Sony Computer Entertainment 0.00
## 1842 GEN 1994 Sports Acclaim Entertainment 0.95
## 1843 Wii 2007 Racing Electronic Arts 0.54
## 1844 WiiU 2013 Strategy Nintendo 0.45
## 1845 PS 1999 Role-Playing SquareSoft 0.18
## 1846 PSP 2004 Puzzle Ubisoft 0.52
## 1847 PS3 2010 Action Disney Interactive Studios 0.51
## 1848 PS3 2009 Misc Activision 0.53
## 1849 2600 1981 Shooter Activision 1.03
## 1850 X360 2007 Shooter Electronic Arts 0.45
## 1851 3DS 2015 Action Nintendo 0.52
## 1852 2600 1982 Platform Atari 1.03
## 1853 PS 1997 Sports Electronic Arts 0.61
## 1854 PS3 2012 Action Warner Bros. Interactive Entertainment 0.36
## 1855 DS 2007 Simulation Ubisoft 0.47
## 1856 PS3 2010 Fighting THQ 0.44
## 1857 GB 1999 Strategy Konami Digital Entertainment 0.00
## 1858 NES 1984 Puzzle Hudson Soft 0.00
## 1859 GB 1989 Role-Playing SquareSoft 0.00
## 1860 NES 1989 Role-Playing Namco Bandai Games 0.00
## 1861 N64 1998 Racing Nintendo 0.45
## 1862 NES 1983 Platform Nintendo 0.51
## 1863 Wii 2008 Shooter Electronic Arts 0.92
## 1864 PS2 2001 Sports Electronic Arts 0.52
## 1865 PS2 2006 Misc Sony Computer Entertainment 0.12
## 1866 PS2 2006 Misc Sony Computer Entertainment 0.00
## 1867 GC 2003 Role-Playing Nintendo 0.54
## 1868 PSP 2005 Role-Playing Activision 0.54
## 1869 PS 1998 Role-Playing Sony Computer Entertainment 0.26
## 1870 PS3 2013 Role-Playing Square Enix 0.31
## 1871 PSP 2008 Action LucasArts 0.43
## 1872 DS 2008 Simulation Ubisoft 0.63
## 1873 PSP 2007 Action Electronic Arts 0.24
## 1874 PS2 2006 Adventure Sega 0.05
## 1875 X360 2009 Sports Electronic Arts 0.82
## 1876 GBA 2003 Role-Playing Atari 0.78
## 1877 PS3 2007 Fighting Sega 0.29
## 1878 DC 2000 Sports Sega 1.02
## 1879 PS 1998 Simulation Konami Digital Entertainment 0.00
## 1880 PSP 2005 Misc Sony Computer Entertainment 0.75
## 1881 DS 2006 Action LucasArts 0.96
## 1882 XB 2003 Sports Electronic Arts 1.02
## 1883 PC 2009 Strategy Sega 0.01
## 1884 PS2 2006 Action Electronic Arts 0.89
## 1885 Wii 2009 Sports Electronic Arts 0.61
## 1886 PS2 2002 Shooter LucasArts 0.53
## 1887 PS 1997 Simulation Taito 0.00
## 1888 PS3 2010 Action Electronic Arts 0.64
## 1889 DS 2010 Racing Sega 0.44
## 1890 PS3 2012 Action Activision 0.35
## 1891 Wii 2007 Adventure Nintendo 0.44
## 1892 PS 1998 Sports Midway Games 0.60
## 1893 X360 2010 Racing Sega 0.74
## 1894 PS2 2003 Racing Electronic Arts 0.53
## 1895 PS3 2008 Action Ubisoft 0.47
## 1896 PS2 2002 Platform THQ 0.53
## 1897 PC 2015 Action Take-Two Interactive 0.36
## 1898 Wii 2009 Sports THQ 0.87
## 1899 PS2 2002 Sports Agetec 0.53
## 1900 DS 2009 Adventure Electronic Arts 0.55
## 1901 Wii 2009 Action Capcom 0.48
## 1902 X360 2012 Action Electronic Arts 1.02
## 1903 PSP 2009 Action Take-Two Interactive 0.28
## 1904 Wii 2010 Sports Electronic Arts 0.26
## 1905 PS3 2007 Shooter Electronic Arts 0.28
## 1906 2600 1982 Platform Atari 1.01
## 1907 X360 2008 Action Eidos Interactive 0.53
## 1908 PS2 2004 Shooter Ubisoft 0.64
## 1909 PS3 2011 Racing Codemasters 0.27
## 1910 WiiU 2013 Platform Nintendo 0.47
## 1911 DS 2008 Simulation Electronic Arts 0.67
## 1912 PS 1998 Sports Midway Games 0.60
## 1913 GBA 2003 Fighting Atari 0.77
## 1914 GBA 2002 Platform Ubisoft 0.77
## 1915 GC 2005 Shooter Nintendo 0.68
## 1916 PS3 2008 Fighting Namco Bandai Games 0.49
## 1917 X360 2011 Fighting Capcom 0.79
## 1918 X360 2013 Sports Electronic Arts 1.01
## 1919 PS 1999 Misc Sony Computer Entertainment 0.00
## 1920 PS2 2006 Shooter Activision 0.89
## 1921 DS 2008 Simulation Ubisoft 0.65
## 1922 X360 2010 Action Take-Two Interactive 0.57
## 1923 X360 2008 Action Take-Two Interactive 0.53
## 1924 SAT 1994 Fighting Sega 0.17
## 1925 PC 1999 Sports Eidos Interactive 0.00
## 1926 PS2 2009 Fighting THQ 0.53
## 1927 X360 2007 Sports Konami Digital Entertainment 0.08
## 1928 DS 2005 Platform Nintendo 0.72
## 1929 PS 1997 Sports Electronic Arts 0.59
## 1930 PS2 2005 Fighting Namco Bandai Games 0.74
## 1931 PS3 2013 Platform Activision 0.43
## 1932 PS3 2012 Racing Codemasters 0.12
## 1933 PSP 2005 Sports Sony Computer Entertainment 0.10
## 1934 Wii 2011 Action Disney Interactive Studios 0.67
## 1935 PS 1995 Racing Sony Computer Entertainment 0.17
## 1936 X360 2011 Action Disney Interactive Studios 0.54
## 1937 PS 1999 Racing Electronic Arts 0.59
## 1938 PS 1998 Sports Electronic Arts 0.59
## 1939 PS2 2006 Fighting Midway Games 0.88
## 1940 X360 2010 Shooter Sega 0.55
## 1941 PS2 2002 Racing Electronic Arts 0.52
## 1942 DS 2008 Misc GSP 0.23
## 1943 X360 2010 Action THQ 0.67
## 1944 PS3 2007 Racing Codemasters 0.16
## 1945 DS 2007 Shooter Activision 0.96
## 1946 PS 1998 Misc D3Publisher 0.00
## 1947 Wii 2008 Sports Sega 0.28
## 1948 PS2 2005 Sports Electronic Arts 0.52
## 1949 PS3 2012 Action Square Enix 0.31
## 1950 X360 2008 Shooter Electronic Arts 0.65
## 1951 PS 1999 Strategy Microprose 0.18
## 1952 PS2 2003 Action Universal Interactive 0.52
## 1953 PS3 2008 Action Activision 0.44
## 1954 N64 1998 Sports Midway Games 1.02
## 1955 N64 1997 Sports Acclaim Entertainment 1.01
## 1956 X360 2009 Misc Activision 0.56
## 1957 DS 2007 Platform Take-Two Interactive 0.97
## 1958 PC 2001 Role-Playing Vivendi Games 1.03
## 1959 PS4 2016 Fighting Namco Bandai Games 0.39
## 1960 GBA 2004 Action Activision 0.76
## 1961 PS3 2007 Sports Sega 0.23
## 1962 PS2 2002 Racing Play It 0.52
## 1963 PS3 2007 Simulation Sony Computer Entertainment 0.49
## 1964 DS 2007 Adventure Capcom 0.32
## 1965 X360 2014 Action Ubisoft 0.58
## 1966 2600 1981 Shooter Imagic 0.99
## 1967 PSP 2006 Shooter Sony Computer Entertainment 0.81
## 1968 Wii 2014 Action Activision 0.42
## 1969 PS3 2010 Shooter Sega 0.41
## 1970 2600 1980 Misc Atari 0.99
## 1971 Wii 2010 Misc Ubisoft 0.27
## 1972 NES 1986 Platform Hudson Soft 0.00
## 1973 PS 1996 Role-Playing Sony Computer Entertainment 0.00
## 1974 NES 1985 Fighting Namco Bandai Games 0.00
## 1975 SNES 1996 Sports ASCII Entertainment 0.00
## 1976 PS3 2012 Action THQ 0.55
## 1977 PS2 2002 Sports Sega 0.51
## 1978 PS4 2015 Fighting Namco Bandai Games 0.30
## 1979 XB 2001 Racing Electronic Arts 0.78
## 1980 PS 2000 Sports Acclaim Entertainment 0.91
## 1981 DS 2007 Simulation Ubisoft 0.45
## 1982 X360 2009 Fighting THQ 0.56
## 1983 XB 2005 Racing Microsoft Game Studios 0.52
## 1984 X360 2006 Platform Sega 0.44
## 1985 Wii 2009 Adventure Electronic Arts 0.62
## 1986 PS 1998 Simulation Sony Computer Entertainment 0.19
## 1987 DS 2012 Role-Playing Nintendo 0.58
## 1988 X360 2007 Action Electronic Arts 0.54
## 1989 Wii 2008 Action Warner Bros. Interactive Entertainment 0.46
## 1990 PS2 2003 Sports Electronic Arts 0.51
## 1991 PS NA Action Eidos Interactive 0.58
## 1992 Wii 2007 Fighting Atari 0.33
## 1993 DS 2010 Action Disney Interactive Studios 0.58
## 1994 PS 1997 Role-Playing Namco Bandai Games 0.09
## 1995 PS 2000 Racing Acclaim Entertainment 0.58
## 1996 DS 2009 Adventure Disney Interactive Studios 0.57
## 1997 PS 1996 Action Virgin Interactive 0.45
## 1998 GC 2003 Fighting Nintendo 0.44
## 1999 PS2 2006 Simulation Konami Digital Entertainment 0.87
## 2000 X360 2011 Shooter Bethesda Softworks 0.59
## 2001 GBA 2001 Racing Nintendo 0.39
## 2002 N64 1997 Puzzle Hudson Soft 0.50
## 2003 PS 1998 Racing Acclaim Entertainment 0.91
## 2004 X360 2009 Action Activision 0.62
## 2005 PS4 2015 Racing Slightly Mad Studios 0.17
## 2006 XB 2005 Racing Electronic Arts 0.53
## 2007 DS 2011 Platform Nintendo 0.52
## 2008 XOne 2013 Action Warner Bros. Interactive Entertainment 0.61
## 2009 DS 2010 Simulation Activision 0.68
## 2010 PS3 2007 Shooter Ubisoft 0.34
## 2011 PSP 2009 Racing Sony Computer Entertainment 0.16
## 2012 PSP 2005 Racing Sony Computer Entertainment 0.47
## 2013 PS4 2014 Sports Electronic Arts 0.46
## 2014 PS2 2005 Racing THQ 0.86
## 2015 PS3 2008 Platform Sega 0.56
## 2016 Wii 2007 Sports Electronic Arts 0.94
## 2017 PS3 2011 Platform Ubisoft 0.33
## 2018 Wii 2012 Action Disney Interactive Studios 0.72
## 2019 PS2 2003 Sports Electronic Arts 0.50
## 2020 GB NA Platform Nintendo 0.68
## 2021 NES 1985 Puzzle Hudson Soft 0.18
## 2022 Wii 2007 Action Electronic Arts 0.45
## 2023 PC 1996 Action Eidos Interactive 0.96
## 2024 Wii 2008 Misc MTV Games 0.94
## 2025 PS 1998 Fighting Virgin Interactive 0.38
## 2026 X360 2011 Shooter Electronic Arts 0.61
## 2027 Wii 2007 Sports Electronic Arts 0.32
## 2028 Wii 2007 Fighting Tomy Corporation 0.45
## 2029 X360 2007 Shooter Ubisoft 0.87
## 2030 WiiU 2012 Action Ubisoft 0.53
## 2031 GC 2004 Platform Activision 0.73
## 2032 DS 2007 Simulation Ubisoft 0.51
## 2033 PS3 2010 Role-Playing Namco Bandai Games 0.28
## 2034 SNES 1993 Action Capcom 0.39
## 2035 Wii 2008 Platform THQ 0.51
## 2036 PS 1997 Action Electronic Arts 0.57
## 2037 X360 2007 Simulation Atari 0.69
## 2038 XB 2006 Sports Electronic Arts 0.97
## 2039 PS3 2014 Action Disney Interactive Studios 0.44
## 2040 PS2 2004 Action Electronic Arts 0.50
## 2041 PS 1998 Puzzle Hasbro Interactive 0.56
## 2042 WiiU 2014 Action Nintendo 0.34
## 2043 X360 2008 Action Ubisoft 0.54
## 2044 PSP 2010 Action Sony Computer Entertainment 0.41
## 2045 3DS 2011 Platform Sega 0.44
## 2046 X360 2008 Action Tecmo Koei 0.65
## 2047 SNES 1995 Sports Acclaim Entertainment 0.87
## 2048 PC 2003 Sports Eidos Interactive 0.00
## 2049 Wii 2010 Misc Activision 0.48
## 2050 DS 2006 Misc Sega 0.00
## 2051 PS 1997 Simulation Tecmo Koei 0.12
## 2052 PS3 2014 Action Warner Bros. Interactive Entertainment 0.33
## 2053 PS3 2009 Racing Codemasters 0.27
## 2054 PS4 2014 Platform Ubisoft 0.21
## 2055 Wii 2009 Shooter Electronic Arts 0.93
## 2056 PS2 2003 Racing Empire Interactive 0.49
## 2057 PS 1997 Role-Playing Capcom 0.29
## 2058 X360 2008 Sports Konami Digital Entertainment 0.13
## 2059 PS2 2000 Fighting Tecmo Koei 0.30
## 2060 NES 1985 Shooter Capcom 0.65
## 2061 N64 2000 Racing Nintendo 0.65
## 2062 NES 1991 Sports Nintendo 0.41
## 2063 GB 1997 Misc Nintendo 0.63
## 2064 PS2 2004 Misc Sammy Corporation 0.00
## 2065 XB 2003 Fighting Namco Bandai Games 0.78
## 2066 PS3 2008 Shooter Ubisoft 0.49
## 2067 X360 2012 Action THQ 0.72
## 2068 X360 2006 Sports Konami Digital Entertainment 0.08
## 2069 PS 1995 Racing Electronic Arts 0.56
## 2070 PS 2000 Sports Sony Computer Entertainment 0.56
## 2071 PSV 2013 Shooter Sony Computer Entertainment Europe 0.25
## 2072 PS 1996 Sports Electronic Arts 0.55
## 2073 PS2 2002 Action Tecmo Koei 0.13
## 2074 DS 2005 Strategy THQ 0.86
## 2075 PS3 2013 Misc Ubisoft 0.51
## 2076 PS3 2013 Action Electronic Arts 0.44
## 2077 Wii 2010 Misc THQ 0.89
## 2078 PS3 2013 Action Disney Interactive Studios 0.48
## 2079 X360 2011 Role-Playing Namco Bandai Games 0.64
## 2080 DS 2008 Puzzle Ubisoft 0.17
## 2081 PS 2000 Misc Sony Computer Entertainment 0.55
## 2082 X360 2013 Action Electronic Arts 0.64
## 2083 DS 2005 Adventure Capcom 0.49
## 2084 XB 2000 Sports Microsoft Game Studios 0.74
## 2085 GC 2003 Racing Vivendi Games 0.77
## 2086 DS 2008 Simulation Electronic Arts 0.59
## 2087 X360 NA Action Warner Bros. Interactive Entertainment 0.51
## 2088 X360 2013 Action Ubisoft 0.57
## 2089 PSP 2006 Simulation Namco Bandai Games 0.37
## 2090 X360 2011 Sports Electronic Arts 0.94
## 2091 PS3 2011 Action Disney Interactive Studios 0.36
## 2092 Wii 2009 Misc Activision 0.60
## 2093 Wii 2009 Racing THQ 0.61
## 2094 PS 1998 Platform GT Interactive 0.55
## 2095 PS3 2009 Simulation Sony Computer Entertainment 0.35
## 2096 Wii 2009 Action Warner Bros. Interactive Entertainment 0.88
## 2097 PSP 2008 Racing Take-Two Interactive 0.52
## 2098 PS2 2000 Action Sony Computer Entertainment 0.30
## 2099 PS3 2008 Misc Activision 0.73
## 2100 Wii 2007 Fighting THQ 0.38
## 2101 Wii 2009 Sports Electronic Arts 0.23
## 2102 GC 2005 Platform Sega 0.76
## 2103 PC 2012 Simulation Focus Home Interactive 0.00
## 2104 PC 2008 Role-Playing Bethesda Softworks 0.02
## 2105 DS 2006 Racing THQ 0.85
## 2106 PSP 2008 Sports Konami Digital Entertainment 0.02
## 2107 PC 2012 Shooter Ubisoft 0.21
## 2108 Wii 2010 Role-Playing Nintendo 0.49
## 2109 X360 2013 Misc Ubisoft 0.72
## 2110 GBA 2005 Misc Nintendo 0.50
## 2111 PS3 2010 Racing Sega 0.36
## 2112 NES 1993 Puzzle Nintendo 0.62
## 2113 N64 1998 Racing Electronic Arts 0.94
## 2114 2600 NA Shooter Atari 0.91
## 2115 PS2 NA Role-Playing Unknown 0.29
## 2116 DS 2010 Role-Playing Square Enix 0.56
## 2117 PS3 2014 Role-Playing Ubisoft 0.42
## 2118 PS3 2011 Racing Ubisoft 0.24
## 2119 PS3 2012 Shooter 505 Games 0.38
## 2120 X360 2014 Shooter Ubisoft 0.45
## 2121 PC 2005 Action Take-Two Interactive 0.00
## 2122 PS3 2013 Action Ubisoft 0.34
## 2123 PS3 2013 Action Konami Digital Entertainment 0.03
## 2124 X360 2015 Sports Electronic Arts 0.82
## 2125 PS2 2009 Sports Electronic Arts 0.88
## 2126 X360 2009 Action Electronic Arts 0.62
## 2127 DS 2006 Simulation Namco Bandai Games 0.09
## 2128 PS4 2015 Role-Playing Square Enix 0.37
## 2129 PS3 2007 Sports Electronic Arts 0.89
## 2130 Wii 2008 Platform THQ 0.50
## 2131 XB 2005 Sports Electronic Arts 0.73
## 2132 PC 2012 Role-Playing Electronic Arts 0.40
## 2133 X360 2009 Sports Take-Two Interactive 0.88
## 2134 GBA 2003 Strategy Nintendo 0.49
## 2135 PS3 NA Action Sega 0.15
## 2136 X360 2011 Action Activision 0.53
## 2137 Wii 2010 Sports Disney Interactive Studios 0.56
## 2138 PS2 2003 Sports Electronic Arts 0.47
## 2139 PS2 2007 Action Take-Two Interactive 0.78
## 2140 X360 2015 Sports Take-Two Interactive 0.77
## 2141 XB 2004 Sports Electronic Arts 0.33
## 2142 Wii 2012 Action Warner Bros. Interactive Entertainment 0.52
## 2143 SNES 1992 Role-Playing SquareSoft 0.00
## 2144 2600 1981 Platform Atari 0.90
## 2145 GC 2006 Action LucasArts 0.75
## 2146 PS3 NA Action Warner Bros. Interactive Entertainment 0.36
## 2147 PSV 2013 Role-Playing Square Enix 0.21
## 2148 PS 2000 Shooter Electronic Arts 0.54
## 2149 DS 2005 Simulation Electronic Arts 0.82
## 2150 PS2 2002 Role-Playing Sony Computer Entertainment 0.38
## 2151 PS 1999 Misc Sony Computer Entertainment 0.54
## 2152 PS3 2012 Action Sony Computer Entertainment 0.50
## 2153 PS 1999 Simulation Konami Digital Entertainment 0.00
## 2154 DS 2011 Misc THQ 0.72
## 2155 Wii 2012 Role-Playing Square Enix 0.00
## 2156 DS 2011 Action Disney Interactive Studios 0.37
## 2157 PSP 2006 Adventure Sony Computer Entertainment 0.30
## 2158 N64 1996 Fighting GT Interactive 0.72
## 2159 NES 1986 Shooter Hudson Soft 0.32
## 2160 X360 2008 Platform Sega 0.54
## 2161 PS3 2010 Shooter Capcom 0.29
## 2162 PS2 2000 Sports Electronic Arts 0.47
## 2163 3DS 2012 Role-Playing Square Enix 0.00
## 2164 DS 2008 Sports Ubisoft 0.30
## 2165 PS3 2012 Shooter Ubisoft 0.41
## 2166 DS 2006 Action Capcom 0.39
## 2167 PS2 2002 Platform Sony Computer Entertainment 0.36
## 2168 XB 2002 Fighting Midway Games 0.77
## 2169 PC 2011 Action Namco Bandai Games 0.25
## 2170 3DS 2011 Simulation Nintendo 0.40
## 2171 PS3 2013 Fighting Namco Bandai Games 0.32
## 2172 X360 2015 Action Warner Bros. Interactive Entertainment 0.47
## 2173 XB 2004 Sports Global Star 0.88
## 2174 PS2 NA Misc Unknown 0.47
## 2175 PS2 2004 Misc Play It 0.80
## 2176 PS2 2005 Action Ubisoft 0.36
## 2177 GC 2003 Platform THQ 0.74
## 2178 X360 2014 Role-Playing Ubisoft 0.57
## 2179 DS 2008 Action Koch Media 0.65
## 2180 PS3 2008 Misc Sony Computer Entertainment 0.27
## 2181 Wii 2011 Racing Disney Interactive Studios 0.46
## 2182 PS 1996 Role-Playing Sony Computer Entertainment 0.26
## 2183 PS2 2000 Strategy Electronic Arts 0.27
## 2184 GBA 2003 Misc Konami Digital Entertainment 0.68
## 2185 PS 1999 Sports Electronic Arts 0.53
## 2186 PS3 2009 Action Electronic Arts 0.54
## 2187 PS3 2011 Action Activision 0.39
## 2188 Wii 2009 Misc Activision 0.41
## 2189 PS4 2015 Shooter Take-Two Interactive 0.35
## 2190 PS3 2008 Fighting THQ 0.51
## 2191 X360 2010 Shooter Electronic Arts 0.62
## 2192 Wii 2009 Sports Activision 0.70
## 2193 X360 2014 Action Warner Bros. Interactive Entertainment 0.48
## 2194 Wii 2011 Misc Nintendo 0.24
## 2195 PS2 2004 Shooter Sony Computer Entertainment 0.79
## 2196 PS3 2011 Action Square Enix 0.27
## 2197 PS2 2003 Racing Codemasters 0.01
## 2198 3DS 2011 Shooter Nintendo 0.48
## 2199 GC 2004 Platform THQ 0.73
## 2200 X360 2013 Misc Ubisoft 0.69
## 2201 PS 1996 Misc GT Interactive 0.52
## 2202 Wii 2006 Racing THQ 0.83
## 2203 PC 2012 Action Ubisoft 0.28
## 2204 PS2 2003 Action Konami Digital Entertainment 0.46
## 2205 3DS 2012 Sports Nintendo 0.26
## 2206 X360 2012 Action Namco Bandai Games 0.48
## 2207 X360 2009 Action Sega 0.51
## 2208 PS2 2005 Shooter THQ 0.78
## 2209 XB 2005 Sports Electronic Arts 0.70
## 2210 PS 1999 Role-Playing SquareSoft 0.10
## 2211 X360 2009 Sports Electronic Arts 0.87
## 2212 PS 1999 Sports Sony Computer Entertainment 0.52
## 2213 WiiU 2016 Action Nintendo 0.48
## 2214 PS2 2006 Action Take-Two Interactive 0.75
## 2215 XB 2003 Action Ubisoft 0.57
## 2216 PSP 2008 Role-Playing Sega 0.19
## 2217 PS2 2003 Sports Sony Computer Entertainment 0.46
## 2218 PS2 2006 Sports Sony Computer Entertainment 0.78
## 2219 PS2 2002 Sports Electronic Arts 0.46
## 2220 X360 2009 Shooter Codemasters 0.36
## 2221 Wii 2010 Sports Take-Two Interactive 0.78
## 2222 PS3 2009 Misc Sony Computer Entertainment 0.16
## 2223 GBA 2005 Misc N/A 0.67
## 2224 XB 2002 Sports Activision 0.59
## 2225 PC 2012 Shooter Take-Two Interactive 0.42
## 2226 Wii 2009 Sports Electronic Arts 0.29
## 2227 PS3 2008 Role-Playing Sony Computer Entertainment 0.33
## 2228 PS3 2012 Sports Electronic Arts 0.35
## 2229 Wii 2008 Racing Sega 0.50
## 2230 PS3 2015 Action Warner Bros. Interactive Entertainment 0.34
## 2231 DS 2007 Simulation Game Factory 0.85
## 2232 GBA 2004 Racing THQ 0.67
## 2233 2600 1981 Action Parker Bros. 0.87
## 2234 NES 1991 Platform Capcom 0.51
## 2235 NES 1987 Platform Konami Digital Entertainment 0.45
## 2236 N64 1999 Platform Activision 0.71
## 2237 GBA 2003 Action Unknown 0.67
## 2238 PS2 2007 Sports Sony Computer Entertainment 0.77
## 2239 X360 2014 Action Activision 0.54
## 2240 GC 2006 Racing THQ 0.72
## 2241 PS3 2008 Shooter Ubisoft 0.44
## 2242 DS 2010 Role-Playing Level 5 0.00
## 2243 WiiU 2016 Fighting Namco Bandai Games 0.47
## 2244 PS 1999 Racing Ubisoft 0.52
## 2245 PS2 2003 Action Konami Digital Entertainment 0.45
## 2246 PS2 2001 Simulation Titus 0.45
## 2247 X360 2006 Role-Playing Microsoft Game Studios 0.30
## 2248 PS 2000 Action Electronic Arts 0.51
## 2249 X360 2010 Sports Electronic Arts 0.86
## 2250 PS 1997 Sports Electronic Arts 0.51
## 2251 X360 2012 Sports Electronic Arts 0.17
## 2252 PS3 2010 Sports Electronic Arts 0.52
## 2253 PSP 2006 Action THQ 0.55
## 2254 X360 2008 Fighting THQ 0.58
## 2255 X360 2010 Action Electronic Arts 0.63
## 2256 X360 2011 Misc Activision 0.87
## 2257 PS 1996 Sports Acclaim Entertainment 0.51
## 2258 Wii 2008 Action Activision 0.50
## 2259 N64 1999 Fighting Electronic Arts 0.63
## 2260 NES 1985 Platform Nintendo 0.39
## 2261 PC 2008 Adventure Ubisoft 0.01
## 2262 3DS 2013 Adventure Nintendo 0.16
## 2263 X360 2013 Shooter Electronic Arts 0.51
## 2264 PS4 2014 Action Warner Bros. Interactive Entertainment 0.37
## 2265 PS3 2011 Action Tecmo Koei 0.25
## 2266 PS3 2014 Action Bethesda Softworks 0.26
## 2267 PS3 2012 Sports Sony Computer Entertainment 0.86
## 2268 GC 2006 Racing Sega 0.71
## 2269 PS2 2003 Racing Empire Interactive 0.45
## 2270 PS 1996 Fighting Sony Computer Entertainment 0.12
## 2271 X360 2007 Role-Playing Microsoft Game Studios 0.45
## 2272 PS4 2015 Sports Sony Computer Entertainment 0.67
## 2273 PS3 2009 Shooter Codemasters 0.23
## 2274 PS3 2011 Shooter THQ 0.32
## 2275 Wii 2007 Sports Bethesda Softworks 0.85
## 2276 PS2 2002 Sports Activision 0.45
## 2277 PS3 2009 Action Ubisoft 0.32
## 2278 3DS 2012 Action Marvelous Entertainment 0.41
## 2279 X360 2008 Strategy Ubisoft 0.58
## 2280 PS2 2002 Sports Electronic Arts 0.45
## 2281 PS2 2003 Racing Genki 0.35
## 2282 PS3 2009 Action Activision 0.47
## 2283 PS 2000 Racing Codemasters 0.02
## 2284 N64 1998 Platform Hasbro Interactive 0.72
## 2285 PS3 2009 Racing THQ 0.52
## 2286 X360 2015 Adventure Mojang 0.46
## 2287 XB NA Misc Unknown 0.77
## 2288 X360 2009 Role-Playing Activision 0.68
## 2289 DS 2008 Shooter Activision 0.57
## 2290 SNES 1994 Simulation Hudson Soft 0.00
## 2291 XB 2004 Misc Sega 0.61
## 2292 PS3 2009 Misc Activision 0.42
## 2293 XOne 2014 Role-Playing Electronic Arts 0.55
## 2294 PS3 2007 Action Electronic Arts 0.38
## 2295 PS2 2002 Sports Electronic Arts 0.44
## 2296 Wii NA Misc Unknown 0.13
## 2297 SNES 1996 Racing ASCII Entertainment 0.00
## 2298 PS2 2004 Sports Sony Computer Entertainment 0.44
## 2299 PS3 2011 Shooter Sony Computer Entertainment 0.66
## 2300 PS2 2005 Racing Electronic Arts 0.75
## 2301 PS3 2008 Misc Sony Computer Entertainment 0.28
## 2302 Wii 2008 Sports Atari 0.38
## 2303 PS 1995 Racing Psygnosis 0.50
## 2304 DS 2008 Puzzle Midway Games 0.30
## 2305 PS3 2013 Shooter Electronic Arts 0.26
## 2306 PS 1999 Action 989 Studios 0.50
## 2307 PS2 2006 Sports Sony Computer Entertainment 0.17
## 2308 XB 2003 Platform Sega 0.41
## 2309 PSP 2009 Shooter Sony Computer Entertainment 0.27
## 2310 PS3 2011 Sports Electronic Arts 0.52
## 2311 DS 2008 Action LucasArts 0.51
## 2312 N64 1998 Sports Electronic Arts 0.84
## 2313 PS2 2007 Platform Activision 0.74
## 2314 XB 2002 Shooter Electronic Arts 0.65
## 2315 Wii 2008 Misc Sega 0.42
## 2316 PC 2014 Role-Playing Bethesda Softworks 0.32
## 2317 PS3 2008 Racing Disney Interactive Studios 0.42
## 2318 Wii 2008 Sports Electronic Arts 0.29
## 2319 DS 2008 Role-Playing Nintendo 0.84
## 2320 PS3 2012 Action Sony Computer Entertainment 0.42
## 2321 XB 2004 Role-Playing Activision 0.62
## 2322 XB 2004 Sports Electronic Arts 0.81
## 2323 PS2 2003 Sports Electronic Arts 0.44
## 2324 X360 2010 Sports THQ 0.73
## 2325 GBA 2005 Platform Activision 0.62
## 2326 PS3 2009 Shooter Ubisoft 0.35
## 2327 PSP 2006 Shooter Sony Computer Entertainment 0.44
## 2328 Wii 2007 Sports Electronic Arts 0.82
## 2329 PS2 2005 Sports Unknown 0.74
## 2330 PS4 2015 Action Warner Bros. Interactive Entertainment 0.32
## 2331 GBA 2001 Platform Konami Digital Entertainment 0.60
## 2332 DS 2008 Role-Playing Sega 0.51
## 2333 PS2 2005 Sports Electronic Arts 0.74
## 2334 GBA 2004 Adventure Nintendo 0.46
## 2335 PS3 2012 Platform Sony Computer Entertainment 0.60
## 2336 GBA 2004 Strategy Nintendo 0.42
## 2337 GB 2001 Strategy Nintendo 0.00
## 2338 GC 2003 Action THQ 0.69
## 2339 Wii 2008 Adventure Ubisoft 0.36
## 2340 PS 1997 Simulation Sony Computer Entertainment 0.16
## 2341 Wii 2009 Racing Codemasters 0.15
## 2342 PS2 2001 Sports Sega 0.44
## 2343 PS4 2016 Sports Electronic Arts 0.28
## 2344 PSP 2011 Fighting Square Enix 0.21
## 2345 3DS 2013 Action Warner Bros. Interactive Entertainment 0.42
## 2346 X360 2010 Racing Codemasters 0.18
## 2347 Wii 2006 Racing Ubisoft 0.81
## 2348 PC 2009 Shooter Activision 0.01
## 2349 WiiU 2013 Sports Nintendo 0.39
## 2350 X360 2012 Role-Playing Electronic Arts 0.55
## 2351 Wii 2011 Shooter Activision 0.60
## 2352 PS 2000 Sports Sony Computer Entertainment 0.49
## 2353 PS2 2006 Misc Sony Computer Entertainment 0.00
## 2354 SNES 1995 Role-Playing SquareSoft 0.00
## 2355 PS 1996 Platform Capcom 0.44
## 2356 X360 2010 Fighting THQ 0.44
## 2357 X360 2012 Action Square Enix 0.38
## 2358 PC 2008 Action Take-Two Interactive 0.01
## 2359 DS 2008 Misc Pinnacle 0.00
## 2360 X360 2011 Misc Ubisoft 0.62
## 2361 Wii 2009 Action Atari 0.60
## 2362 X360 2010 Misc MTV Games 0.73
## 2363 3DS 2012 Action Capcom 0.30
## 2364 PS2 2005 Action Take-Two Interactive 0.43
## 2365 PS2 2007 Misc Sony Computer Entertainment 0.32
## 2366 Wii 2009 Simulation Nintendo 0.47
## 2367 PS 1996 Shooter CTO SpA 0.49
## 2368 XOne 2015 Action Square Enix 0.42
## 2369 PSP 2004 Strategy Konami Digital Entertainment 0.32
## 2370 Wii 2008 Simulation 505 Games 0.51
## 2371 PS3 2012 Fighting Namco Bandai Games 0.28
## 2372 PS2 2004 Sports Global Star 0.43
## 2373 X360 2008 Racing Codemasters 0.33
## 2374 PSP 2009 Role-Playing Sega 0.08
## 2375 XB 2003 Simulation Microsoft Game Studios 0.65
## 2376 PS 2001 Shooter TalonSoft 0.49
## 2377 PS 1995 Platform Crystal Dynamics 0.49
## 2378 XOne 2013 Sports Take-Two Interactive 0.70
## 2379 X360 2007 Racing Codemasters 0.38
## 2380 SNES 1994 Sports ASCII Entertainment 0.00
## 2381 Wii 2010 Sports Ubisoft 0.71
## 2382 X360 2009 Shooter THQ 0.48
## 2383 XB 2003 Shooter Ubisoft 0.61
## 2384 PS3 2008 Shooter Electronic Arts 0.29
## 2385 PS 1997 Racing Infogrames 0.43
## 2386 PS2 2008 Role-Playing Square Enix 0.73
## 2387 Wii 2010 Puzzle THQ 0.61
## 2388 PS3 2012 Action Electronic Arts 0.82
## 2389 PS3 2012 Role-Playing Electronic Arts 0.37
## 2390 PS 1996 Sports Sony Computer Entertainment 0.48
## 2391 PS3 2008 Sports Sega 0.14
## 2392 Wii 2009 Shooter Sega 0.46
## 2393 PS2 2006 Sports Activision 0.72
## 2394 PS4 2013 Fighting Warner Bros. Interactive Entertainment 0.46
## 2395 PS 1998 Sports Electronic Arts 0.48
## 2396 PSP 2008 Misc Sony Computer Entertainment 0.20
## 2397 X360 2008 Shooter Ubisoft 0.47
## 2398 PS2 2005 Fighting Electronic Arts 0.72
## 2399 DS 2009 Misc Disney Interactive Studios 0.59
## 2400 DS 2009 Action Warner Bros. Interactive Entertainment 0.63
## 2401 XB 2002 Shooter SCi 0.48
## 2402 PS2 2002 Sports Electronic Arts 0.43
## 2403 PS 2000 Role-Playing Crave Entertainment 0.30
## 2404 PSP 2006 Puzzle Sony Computer Entertainment 0.12
## 2405 PS2 2007 Action Tecmo Koei 0.11
## 2406 X360 2010 Misc Activision 0.47
## 2407 2600 1982 Misc Quelle 0.81
## 2408 PS3 2012 Role-Playing Namco Bandai Games 0.20
## 2409 PS2 2007 Misc Sony Computer Entertainment 0.10
## 2410 3DS 2015 Action mixi, Inc 0.00
## 2411 Wii 2007 Action Eidos Interactive 0.12
## 2412 PSP 2006 Sports Konami Digital Entertainment 0.01
## 2413 PS3 2012 Action THQ 0.35
## 2414 PS3 2009 Action Sony Computer Entertainment 0.34
## 2415 DS 2007 Role-Playing Square Enix 0.54
## 2416 PS3 NA Action Warner Bros. Interactive Entertainment 0.25
## 2417 PS2 2002 Fighting Rage Software 0.42
## 2418 3DS 2015 Role-Playing Square Enix 0.00
## 2419 PS 2001 Racing Empire Interactive 0.48
## 2420 N64 1997 Sports Electronic Arts 0.81
## 2421 PS 1998 Sports Sony Computer Entertainment 0.48
## 2422 PS3 2008 Fighting Atari 0.22
## 2423 X360 NA Action Warner Bros. Interactive Entertainment 0.52
## 2424 DS 2008 Platform Nintendo 0.61
## 2425 X360 2010 Sports Electronic Arts 0.32
## 2426 PS2 2003 Action Tecmo Koei 0.17
## 2427 PS3 2009 Action Ubisoft Annecy 0.52
## 2428 X360 2014 Racing Microsoft Game Studios 0.35
## 2429 PS3 2009 Sports Electronic Arts 0.46
## 2430 DS 2007 Sports Electronic Arts 0.10
## 2431 PS 1999 Action 3DO 0.47
## 2432 Wii 2009 Racing Electronic Arts 0.46
## 2433 Wii 2008 Sports Electronic Arts 0.78
## 2434 X360 2007 Sports Take-Two Interactive 0.79
## 2435 XOne 2016 Action Ubisoft 0.46
## 2436 PS 1996 Fighting Virgin Interactive 0.14
## 2437 XB 2004 Sports Electronic Arts 0.64
## 2438 PS3 2010 Shooter Electronic Arts 0.44
## 2439 Wii 2007 Simulation Ubisoft 0.74
## 2440 NES 1989 Platform Konami Digital Entertainment 0.40
## 2441 DS 2007 Action Electronic Arts 0.28
## 2442 PS 1997 Action GT Interactive 0.47
## 2443 PSP 2005 Racing Electronic Arts 0.70
## 2444 PS3 2014 Sports Take-Two Interactive 0.36
## 2445 XOne 2016 Shooter Activision 0.52
## 2446 PS2 2007 Action THQ 0.31
## 2447 PS 1995 Sports Sony Computer Entertainment 0.47
## 2448 PS2 2002 Racing Acclaim Entertainment 0.42
## 2449 3DS 2016 Action Nintendo 0.26
## 2450 PS2 2000 Fighting Virgin Interactive 0.32
## 2451 Wii 2010 Misc Konami Digital Entertainment 0.52
## 2452 X360 2012 Shooter 505 Games 0.46
## 2453 PS4 2014 Action Square Enix 0.28
## 2454 GC 2004 Action Activision 0.65
## 2455 DS 2010 Role-Playing Nintendo 0.56
## 2456 PS3 2010 Sports Electronic Arts 0.37
## 2457 PS3 2012 Action Capcom 0.42
## 2458 PS4 2016 Action Sony Computer Entertainment 0.68
## 2459 PS3 2009 Sports Take-Two Interactive 0.75
## 2460 WiiU 2015 Role-Playing Nintendo 0.36
## 2461 DS 2008 Simulation Ubisoft 0.46
## 2462 GC 2004 Action THQ 0.65
## 2463 PS3 2010 Sports Electronic Arts 0.79
## 2464 PS3 2011 Action Electronic Arts 0.40
## 2465 PS2 2003 Racing Acclaim Entertainment 0.41
## 2466 Wii 2007 Simulation Rising Star Games 0.69
## 2467 NES 1987 Role-Playing SquareSoft 0.32
## 2468 PS3 2012 Fighting Capcom 0.42
## 2469 PS 2001 Sports THQ 0.47
## 2470 X360 2011 Shooter Take-Two Interactive 0.52
## 2471 PS2 2002 Racing Empire Interactive 0.41
## 2472 PS4 2015 Shooter Take-Two Interactive 0.36
## 2473 PS2 2005 Role-Playing Sony Computer Entertainment 0.24
## 2474 PS2 2004 Sports Sega 0.41
## 2475 GBA 2004 Adventure Nintendo 0.60
## 2476 PSV 2014 Sports Electronic Arts 0.13
## 2477 PS3 2007 Shooter Namco Bandai Games 0.32
## 2478 PS2 2007 Action D3Publisher 0.09
## 2479 X360 2013 Racing Electronic Arts 0.37
## 2480 PS 1999 Puzzle Atari 0.46
## 2481 Wii 2008 Fighting THQ 0.44
## 2482 PS 1999 Simulation Sony Computer Entertainment 0.22
## 2483 PS2 2000 Action THQ 0.24
## 2484 DS 2008 Strategy Ubisoft 0.38
## 2485 PSP NA Sports Unknown 0.77
## 2486 GBA 2004 Action Disney Interactive Studios 0.60
## 2487 PSV 2014 Shooter Take-Two Interactive 0.43
## 2488 PS2 2000 Sports Electronic Arts 0.27
## 2489 XB 2003 Shooter Microsoft Game Studios 0.62
## 2490 X360 2012 Misc Microsoft Game Studios 0.57
## 2491 GB 2000 Misc Konami Digital Entertainment 0.00
## 2492 PS 1998 Misc Unknown 0.46
## 2493 PS 1997 Adventure Capcom 0.39
## 2494 PS3 2011 Sports Electronic Arts 0.78
## 2495 PS2 2005 Platform Sony Computer Entertainment 0.69
## 2496 Wii 2008 Misc Ubisoft 0.77
## 2497 X360 2008 Strategy Take-Two Interactive 0.58
## 2498 PS2 NA Sports Unknown 0.41
## 2499 DS 2007 Puzzle Scholastic Inc. 0.77
## 2500 PS3 2012 Action Activision 0.31
## 2501 PS3 2010 Fighting Namco Bandai Games 0.42
## 2502 PS 1998 Platform Sony Computer Entertainment 0.46
## 2503 PS 1996 Adventure Interplay 0.46
## 2504 Wii 2009 Sports Hudson Soft 0.33
## 2505 XB 2002 Shooter Electronic Arts 0.58
## 2506 XOne 2016 Sports Electronic Arts 0.72
## 2507 PSP 2005 Sports Activision 0.46
## 2508 GC 2001 Sports Activision 0.64
## 2509 PS2 2006 Role-Playing Activision 0.69
## 2510 Wii 2009 Action LucasArts 0.44
## 2511 X360 2010 Misc Activision 0.64
## 2512 PS4 2016 Fighting Capcom 0.35
## 2513 XB 2002 Racing Electronic Arts 0.68
## 2514 NES 1984 Puzzle Nintendo 0.42
## 2515 N64 1996 Fighting Nintendo 0.61
## 2516 XB 2001 Sports Microsoft Game Studios 0.69
## 2517 2600 1981 Action Mystique 0.76
## 2518 PSP 2005 Adventure Sony Computer Entertainment 0.19
## 2519 PS3 2013 Action Capcom 0.24
## 2520 3DS 2011 Role-Playing Namco Bandai Games 0.42
## 2521 PS2 2002 Platform THQ 0.40
## 2522 PS3 2010 Misc Activision 0.33
## 2523 Wii 2010 Misc Electronic Arts 0.47
## 2524 PS3 2015 Sports Electronic Arts 0.56
## 2525 X360 2007 Shooter Midway Games 0.40
## 2526 DS 2008 Simulation Ubisoft 0.40
## 2527 PS2 2008 Role-Playing Atlus 0.34
## 2528 PS3 2008 Misc Sony Computer Entertainment 0.29
## 2529 X360 NA Sports Ubisoft 0.48
## 2530 PS4 2013 Sports Electronic Arts 0.62
## 2531 PS3 2012 Action Sony Computer Entertainment 0.67
## 2532 GB 2000 Role-Playing Enix Corporation 0.00
## 2533 DS 2006 Action Disney Interactive Studios 0.73
## 2534 PS2 2000 Fighting Midway Games 0.40
## 2535 SNES 1994 Adventure ChunSoft 0.00
## 2536 PSP 2007 Misc Sony Computer Entertainment 0.33
## 2537 PS 2000 Role-Playing Namco Bandai Games 0.06
## 2538 SNES 1994 Puzzle Hudson Soft 0.00
## 2539 PS 2000 Racing Electronic Arts 0.45
## 2540 Wii 2010 Sports Electronic Arts 0.77
## 2541 GC 2004 Action Nintendo 0.63
## 2542 PS 1999 Sports Konami Digital Entertainment 0.00
## 2543 PS4 2015 Misc Activision 0.32
## 2544 PS 1999 Role-Playing Enix Corporation 0.07
## 2545 PSP 2011 Role-Playing Unknown 0.00
## 2546 X360 2009 Sports Konami Digital Entertainment 0.12
## 2547 N64 1999 Action 3DO 0.68
## 2548 NES 1987 Platform Capcom 0.45
## 2549 PS2 2004 Shooter Ubisoft 0.40
## 2550 PS3 2014 Action Warner Bros. Interactive Entertainment 0.33
## 2551 SNES 1994 Role-Playing Nintendo 0.00
## 2552 X360 2009 Racing Codemasters 0.32
## 2553 3DS 2012 Puzzle Level 5 0.20
## 2554 PS 1998 Puzzle Atari 0.45
## 2555 XOne 2015 Action Warner Bros. Interactive Entertainment 0.43
## 2556 PS3 2009 Sports Electronic Arts 0.75
## 2557 Wii 2008 Action Koch Media 0.52
## 2558 PS 1998 Sports Konami Digital Entertainment 0.00
## 2559 PS2 2007 Role-Playing Square Enix 0.35
## 2560 PS2 2005 Simulation Electronic Arts 0.67
## 2561 X360 2009 Misc Activision 0.52
## 2562 PS3 2013 Sports Electronic Arts 0.75
## 2563 Wii 2009 Action Sega 0.46
## 2564 X360 2011 Fighting Electronic Arts 0.40
## 2565 PS 2000 Misc Eidos Interactive 0.45
## 2566 PS2 2005 Action Sega 0.03
## 2567 GC 2003 Simulation LucasArts 0.62
## 2568 Wii 2011 Misc Ubisoft 0.19
## 2569 PS 1997 Racing Electronic Arts 0.45
## 2570 PS2 2004 Shooter Eidos Interactive 0.39
## 2571 PSP 2006 Simulation Electronic Arts 0.19
## 2572 PS 1999 Role-Playing Square EA 0.45
## 2573 X360 2013 Shooter Sega 0.36
## 2574 PSP 2009 Sports Konami Digital Entertainment 0.09
## 2575 X360 2012 Action Activision 0.48
## 2576 X360 2010 Racing Sega 0.37
## 2577 PS3 2011 Shooter Activision 0.33
## 2578 PS3 2015 Sports Take-Two Interactive 0.44
## 2579 Wii 2008 Sports THQ 0.43
## 2580 PSP 2007 Simulation Electronic Arts 0.08
## 2581 XB 2004 Action Ubisoft 0.48
## 2582 X360 2012 Role-Playing Capcom 0.42
## 2583 X360 2012 Action THQ 0.45
## 2584 PS3 2013 Action Capcom 0.14
## 2585 DS 2007 Misc Ubisoft 0.73
## 2586 PS 2000 Strategy Banpresto 0.00
## 2587 PSP NA Sports Konami Digital Entertainment 0.04
## 2588 GC 2002 Racing Electronic Arts 0.68
## 2589 Wii 2010 Action LucasArts 0.54
## 2590 X360 2009 Misc Activision 0.51
## 2591 WiiU 2013 Sports Nintendo 0.39
## 2592 PS2 2002 Role-Playing Namco Bandai Games 0.00
## 2593 SNES 1993 Sports Nintendo 0.00
## 2594 PS3 2011 Shooter City Interactive 0.26
## 2595 X360 2009 Action Electronic Arts 0.47
## 2596 PSP 2010 Sports Konami Digital Entertainment 0.05
## 2597 2600 1981 Action 20th Century Fox Video Games 0.74
## 2598 PS2 2006 Fighting Atari 0.66
## 2599 PS3 2012 Adventure Avanquest Software 0.40
## 2600 X360 2011 Platform Ubisoft 0.38
## 2601 PS2 2008 Misc Activision 0.61
## 2602 PS 1994 Racing Sony Computer Entertainment 0.00
## 2603 DS 2007 Role-Playing Square Enix 0.42
## 2604 GC 2003 Role-Playing Ubisoft 0.61
## 2605 PS 1997 Simulation Hudson Entertainment 0.00
## 2606 PSP 2009 Strategy Sony Computer Entertainment 0.17
## 2607 PS 2001 Racing Take-Two Interactive 0.44
## 2608 PS3 2009 Sports Electronic Arts 0.42
## 2609 DS 2008 Action LucasArts 0.62
## 2610 N64 1999 Fighting Electronic Arts 0.63
## 2611 NES 1992 Platform Capcom 0.39
## 2612 X360 2009 Role-Playing Square Enix 0.32
## 2613 PS2 2007 Simulation Konami Digital Entertainment 0.64
## 2614 PS2 2000 Simulation Ubisoft 0.28
## 2615 3DS 2014 Role-Playing Square Enix 0.00
## 2616 Wii 2007 Shooter Sega 0.42
## 2617 X360 2013 Action Deep Silver 0.44
## 2618 DS 2007 Action THQ 0.71
## 2619 N64 1998 Sports Nintendo 0.75
## 2620 Wii 2011 Sports Electronic Arts 0.16
## 2621 X360 2008 Role-Playing Microsoft Game Studios 0.38
## 2622 PS3 2008 Strategy Take-Two Interactive 0.49
## 2623 PS2 2007 Sports Electronic Arts 0.65
## 2624 XB 2003 Sports Electronic Arts 0.24
## 2625 DS 2008 Sports Nintendo 0.22
## 2626 X360 2010 Fighting Namco Bandai Games 0.43
## 2627 Wii 2011 Action Nintendo 0.27
## 2628 3DS 2013 Puzzle Nintendo 0.00
## 2629 X360 2006 Action Ubisoft 0.67
## 2630 2600 1982 Shooter Atari 0.73
## 2631 X360 2008 Misc Microsoft Game Studios 0.12
## 2632 GBA 2002 Platform Vivendi Games 0.56
## 2633 DS 2006 Shooter Nintendo 0.58
## 2634 PC 1992 Adventure Virgin Interactive 0.01
## 2635 PS 1994 Shooter Infogrames 0.43
## 2636 PS2 2007 Misc Sony Computer Entertainment 0.17
## 2637 DS 2009 Puzzle Ubisoft 0.41
## 2638 DS 2008 Adventure THQ 0.72
## 2639 Wii 2009 Misc Nordic Games 0.00
## 2640 PS 1999 Fighting Capcom 0.43
## 2641 PS3 2012 Action Sony Computer Entertainment 0.72
## 2642 PS 1997 Strategy Electronic Arts 0.43
## 2643 DS 2010 Puzzle Nintendo 0.29
## 2644 PS4 2015 Sports Konami Digital Entertainment 0.13
## 2645 PSP 2006 Strategy THQ 0.11
## 2646 PSP 2009 Shooter LucasArts 0.38
## 2647 X360 2011 Sports THQ 0.53
## 2648 X360 2012 Action Capcom 0.55
## 2649 PS2 2006 Sports Take-Two Interactive 0.65
## 2650 PSP 2008 Racing Electronic Arts 0.24
## 2651 X360 2010 Action Disney Interactive Studios 0.41
## 2652 SNES 1993 Role-Playing ChunSoft 0.00
## 2653 2600 1983 Puzzle Atari 0.72
## 2654 GC 2002 Shooter Electronic Arts 0.60
## 2655 X360 2008 Platform Microsoft Game Studios 0.32
## 2656 PS 1998 Sports Sony Computer Entertainment 0.43
## 2657 X360 2009 Action Ubisoft 0.34
## 2658 Wii 2009 Action Electronic Arts 0.28
## 2659 Wii 2009 Misc Activision 0.47
## 2660 X360 2005 Shooter Microsoft Game Studios 0.66
## 2661 2600 1982 Shooter Atari 0.72
## 2662 PS 1996 Racing Electronic Arts 0.43
## 2663 PS 2000 Misc Interplay 0.43
## 2664 XOne 2013 Sports Electronic Arts 0.67
## 2665 2600 1981 Action Men-A-Vision 0.72
## 2666 PSP 2008 Racing Electronic Arts 0.23
## 2667 PS3 2011 Shooter Take-Two Interactive 0.33
## 2668 PSV 2014 Role-Playing Sony Computer Entertainment 0.22
## 2669 PS2 2005 Fighting Electronic Arts 0.64
## 2670 2600 1980 Fighting Activision 0.72
## 2671 PS 1999 Racing Electronic Arts 0.43
## 2672 PS3 2009 Fighting Namco Bandai Games 0.37
## 2673 2600 1983 Action Atari 0.72
## 2674 N64 2001 Platform THQ 0.53
## 2675 GB 1999 Role-Playing Enix Corporation 0.00
## 2676 GBA 2002 Action THQ 0.55
## 2677 DS 2008 Simulation Nobilis 0.61
## 2678 DS 2012 Action Warner Bros. Interactive Entertainment 0.43
## 2679 PSP 2005 Action Sony Computer Entertainment 0.71
## 2680 PS2 2003 Shooter SCi 0.38
## 2681 PS2 2001 Platform Capcom 0.38
## 2682 DS 2004 Racing Nintendo 0.21
## 2683 GBA 2005 Platform Nintendo 0.45
## 2684 PS2 2002 Sports Acclaim Entertainment 0.38
## 2685 PS2 2002 Role-Playing Atari 0.10
## 2686 PS2 2003 Sports Activision Value 0.37
## 2687 PS2 2008 Platform Sega 0.37
## 2688 PS 1996 Racing Psygnosis 0.18
## 2689 PS3 2014 Shooter Electronic Arts 0.22
## 2690 Wii 2010 Adventure Ubisoft 0.22
## 2691 3DS 2011 Simulation Electronic Arts 0.30
## 2692 XB 2004 Racing Atari 0.36
## 2693 PS2 2005 Action LucasArts 0.64
## 2694 PS2 2003 Fighting Gotham Games 0.37
## 2695 PS 1995 Fighting Virgin Interactive 0.17
## 2696 PSV 2012 Fighting Warner Bros. Interactive Entertainment 0.47
## 2697 PS 1998 Sports Konami Digital Entertainment 0.00
## 2698 X360 2010 Shooter Capcom 0.38
## 2699 PS3 2012 Fighting Namco Bandai Games 0.35
## 2700 PC 2011 Shooter Valve Software 0.33
## 2701 DS 2005 Misc Sega 0.70
## 2702 PS4 2014 Sports Konami Digital Entertainment 0.09
## 2703 Wii 2009 Puzzle THQ 0.29
## 2704 PS3 2009 Action Electronic Arts 0.38
## 2705 NES 1988 Role-Playing SquareSoft 0.00
## 2706 N64 2001 Sports Activision 0.59
## 2707 PS2 2002 Misc Namco Bandai Games 0.00
## 2708 GBA 2005 Role-Playing Capcom 0.09
## 2709 PS2 2004 Shooter Sony Computer Entertainment 0.37
## 2710 PS2 2010 Sports Electronic Arts 0.11
## 2711 Wii 2009 Sports Big Ben Interactive 0.67
## 2712 X360 2007 Shooter Eidos Interactive 0.36
## 2713 PC 2011 Action Ubisoft 0.14
## 2714 XB 2004 Fighting Midway Games 0.61
## 2715 DS 2009 Adventure Capcom 0.27
## 2716 GBA 2004 Adventure Disney Interactive Studios 0.54
## 2717 Wii 2014 Sports Electronic Arts 0.24
## 2718 PS2 2002 Fighting Capcom 0.31
## 2719 PSP 2009 Racing Electronic Arts 0.16
## 2720 PS3 2007 Shooter Eidos Interactive 0.29
## 2721 X360 2014 Role-Playing Namco Bandai Games 0.48
## 2722 PS2 2005 Action Activision 0.57
## 2723 PS2 2001 Fighting Acclaim Entertainment 0.37
## 2724 X360 2006 Sports Take-Two Interactive 0.28
## 2725 Wii 2010 Misc Electronic Arts 0.24
## 2726 PS3 2006 Action Sony Computer Entertainment 0.18
## 2727 Wii 2008 Simulation Rising Star Games 0.60
## 2728 GB 1991 Role-Playing SquareSoft 0.00
## 2729 PC 2013 Strategy Sega 0.12
## 2730 XOne 2015 Misc Microsoft Game Studios 0.47
## 2731 DS 2007 Role-Playing Disney Interactive Studios 0.67
## 2732 PS2 2008 Platform THQ 0.21
## 2733 PSP 2008 Fighting THQ 0.41
## 2734 PS3 2009 Misc Activision 0.41
## 2735 PS 2000 Platform Capcom 0.30
## 2736 PSV 2013 Adventure Sony Computer Entertainment Europe 0.17
## 2737 PS3 2010 Misc Activision 0.47
## 2738 PS3 2009 Action Electronic Arts 0.41
## 2739 Wii 2009 Fighting THQ 0.51
## 2740 X360 2008 Action Touchstone 0.46
## 2741 PS3 2012 Action Activision 0.36
## 2742 PS2 2004 Action Activision 0.37
## 2743 N64 1997 Racing GT Interactive 0.63
## 2744 X360 2012 Action Activision 0.43
## 2745 PS2 2001 Shooter Konami Digital Entertainment 0.30
## 2746 PS3 2009 Shooter THQ 0.33
## 2747 PS 1997 Fighting Virgin Interactive 0.28
## 2748 PSP 2005 Sports Electronic Arts 0.69
## 2749 PSP 2005 Shooter Konami Digital Entertainment 0.28
## 2750 XB 2004 Sports Activision 0.48
## 2751 X360 2008 Role-Playing Atari 0.32
## 2752 PS3 2009 Action Activision 0.31
## 2753 DS 2008 Action Activision 0.42
## 2754 PS3 2010 Racing Disney Interactive Studios 0.31
## 2755 PS2 2001 Fighting Capcom 0.22
## 2756 PS2 2006 Sports Electronic Arts 0.62
## 2757 WiiU 2014 Misc Ubisoft 0.40
## 2758 X360 2014 Shooter Take-Two Interactive 0.46
## 2759 PS3 2014 Platform Sony Computer Entertainment 0.20
## 2760 PS3 2009 Role-Playing Activision 0.49
## 2761 DS 2008 Sports Sega 0.29
## 2762 X360 2012 Adventure Avanquest Software 0.55
## 2763 PS3 2011 Action Namco Bandai Games 0.30
## 2764 DS 2006 Fighting Nintendo 0.00
## 2765 PS2 2001 Misc Sony Computer Entertainment 0.36
## 2766 PS3 2010 Role-Playing Sega 0.20
## 2767 PS2 2001 Racing Acclaim Entertainment 0.36
## 2768 PSP 2007 Shooter Ubisoft 0.42
## 2769 X360 2011 Role-Playing Square Enix 0.36
## 2770 3DS 2012 Action Warner Bros. Interactive Entertainment 0.41
## 2771 PSP 2006 Fighting Midway Games 0.67
## 2772 3DS 2015 Role-Playing Nintendo 0.16
## 2773 GBA 2001 Misc Konami Digital Entertainment 0.42
## 2774 PS3 2011 Shooter Bethesda Softworks 0.29
## 2775 WiiU 2013 Action Warner Bros. Interactive Entertainment 0.31
## 2776 PS3 2010 Racing Activision 0.22
## 2777 Wii NA Sports Unknown 0.70
## 2778 Wii 2007 Misc Atari 0.68
## 2779 XB 2005 Racing Take-Two Interactive 0.61
## 2780 PC 2011 Action Electronic Arts 0.16
## 2781 GBA 2002 Action Electronic Arts 0.53
## 2782 PS2 2001 Sports Electronic Arts 0.36
## 2783 Wii 2009 Action Activision 0.36
## 2784 PS 1999 Racing Sony Computer Entertainment 0.41
## 2785 PS3 2012 Fighting Namco Bandai Games 0.27
## 2786 XB 2002 Shooter Atari 0.59
## 2787 GBA NA Puzzle Unknown 0.16
## 2788 PS3 2007 Action Disney Interactive Studios 0.17
## 2789 PS3 2007 Sports Electronic Arts 0.22
## 2790 PS3 2012 Fighting Atlus 0.30
## 2791 GBA 2003 Role-Playing Nintendo 0.31
## 2792 DS 2007 Simulation Rising Star Games 0.44
## 2793 PS3 2010 Role-Playing Square Enix 0.28
## 2794 DS 2007 Simulation Electronic Arts 0.63
## 2795 PS 1997 Sports Electronic Arts 0.14
## 2796 SNES 1993 Fighting Namco Bandai Games 0.00
## 2797 GBA 2004 Platform Nintendo 0.40
## 2798 PC 2013 Shooter Activision 0.23
## 2799 GB 1991 Puzzle Nintendo 0.00
## 2800 N64 1998 Fighting GT Interactive 0.55
## 2801 X360 2011 Racing Codemasters 0.11
## 2802 Wii 2009 Sports Electronic Arts 0.63
## 2803 DS 2005 Platform Nintendo 0.37
## 2804 PS 1999 Platform Fox Interactive 0.41
## 2805 DS 2007 Misc Nintendo 0.00
## 2806 XB 2001 Platform Atari 0.54
## 2807 2600 1981 Shooter Atari 0.68
## 2808 X360 2010 Sports Electronic Arts 0.61
## 2809 PC 2014 Role-Playing Electronic Arts 0.32
## 2810 DS 2009 Adventure Activision 0.67
## 2811 X360 2011 Racing Codemasters 0.23
## 2812 X360 2006 Sports Electronic Arts 0.67
## 2813 Wii 2011 Misc Nintendo 0.00
## 2814 XB 2004 Strategy THQ 0.54
## 2815 PS2 2004 Puzzle Namco Bandai Games 0.47
## 2816 GBA 2003 Action Atari 0.52
## 2817 PS3 2012 Action Sony Computer Entertainment 0.47
## 2818 Wii 2009 Action Ubisoft 0.33
## 2819 PS2 2001 Sports Codemasters 0.36
## 2820 X360 2009 Racing THQ 0.52
## 2821 DS 2008 Simulation Ubisoft 0.34
## 2822 X360 2012 Sports Electronic Arts 0.38
## 2823 3DS 2012 Simulation Nintendo 0.16
## 2824 GC 2002 Shooter Electronic Arts 0.56
## 2825 PC 2012 Strategy Take-Two Interactive 0.26
## 2826 DS 2009 Platform Ubisoft 0.35
## 2827 GBA 2005 Action Ubisoft 0.52
## 2828 PS2 2005 Action Activision 0.60
## 2829 Wii 2012 Action Electronic Arts 0.19
## 2830 PSP 2010 Action Unknown 0.00
## 2831 PS4 2014 Role-Playing Square Enix 0.32
## 2832 PS 1998 Strategy Namco Bandai Games 0.00
## 2833 PS 1996 Shooter GT Interactive 0.40
## 2834 PS2 2007 Sports Electronic Arts 0.59
## 2835 XB 2002 Shooter Electronic Arts 0.53
## 2836 PS2 2006 Sports Electronic Arts 0.60
## 2837 PS 1999 Racing Atari 0.40
## 2838 GBA 2005 Action Sega 0.00
## 2839 DS NA Action Warner Bros. Interactive Entertainment 0.35
## 2840 X360 2007 Sports Spike 0.67
## 2841 PS 2001 Fighting Activision 0.40
## 2842 X360 2013 Action 505 Games 0.35
## 2843 PS2 2001 Misc Sony Computer Entertainment 0.35
## 2844 2600 1982 Platform Atari 0.67
## 2845 PS3 2010 Shooter Activision 0.18
## 2846 PSP 2007 Action D3Publisher 0.23
## 2847 X360 2007 Sports Electronic Arts 0.62
## 2848 GBA 2002 Puzzle Atari 0.51
## 2849 X360 2011 Racing Ubisoft 0.25
## 2850 PS3 2009 Sports Sony Computer Entertainment 0.66
## 2851 WiiU 2012 Role-Playing Nintendo 0.26
## 2852 PS2 2003 Simulation Namco Bandai Games 0.05
## 2853 PS3 2011 Adventure Deep Silver 0.30
## 2854 PS 1998 Action Eidos Interactive 0.40
## 2855 DS 2010 Sports Electronic Arts 0.13
## 2856 PC 2007 Shooter Electronic Arts 0.00
## 2857 PC 2010 Shooter Electronic Arts 0.19
## 2858 XB 2002 Action Electronic Arts 0.45
## 2859 XB 2002 Sports Electronic Arts 0.67
## 2860 Wii 2007 Role-Playing Square Enix 0.18
## 2861 PS3 2013 Sports Sony Computer Entertainment 0.66
## 2862 X360 2011 Simulation Konami Digital Entertainment 0.42
## 2863 PS4 2015 Action Square Enix 0.16
## 2864 PS2 2003 Fighting Sega 0.35
## 2865 PS3 2011 Sports Take-Two Interactive 0.17
## 2866 PS 2000 Action Eidos Interactive 0.23
## 2867 PS3 2007 Action Tecmo Koei 0.18
## 2868 PS2 2002 Racing Jester Interactive 0.35
## 2869 3DS 2014 Role-Playing Nippon Ichi Software 0.33
## 2870 PSP 2007 Sports Electronic Arts 0.60
## 2871 GC 2002 Fighting Atari 0.55
## 2872 PS 2000 Racing Acclaim Entertainment 0.40
## 2873 XB 2005 Adventure Microsoft Game Studios 0.49
## 2874 PS2 2003 Action Konami Digital Entertainment 0.35
## 2875 PSP 2008 Sports Electronic Arts 0.65
## 2876 PS4 2015 Role-Playing Square Enix 0.29
## 2877 GC 2002 Strategy Konami Digital Entertainment 0.49
## 2878 Wii 2009 Misc Warner Bros. Interactive Entertainment 0.42
## 2879 PS3 2010 Sports Sony Computer Entertainment 0.66
## 2880 GC 2002 Platform Universal Interactive 0.55
## 2881 GBA 2004 Action THQ 0.51
## 2882 PS2 2004 Action THQ 0.35
## 2883 3DS 2015 Misc Nintendo 0.00
## 2884 N64 1999 Racing LEGO Media 0.51
## 2885 N64 1999 Fighting Acclaim Entertainment 0.57
## 2886 N64 1997 Action Nintendo 0.39
## 2887 PSP 2010 Action Warner Bros. Interactive Entertainment 0.14
## 2888 SNES 1995 Role-Playing Quest 0.00
## 2889 GC 2003 Puzzle Nintendo 0.20
## 2890 PC 2013 Sports Sega 0.00
## 2891 PS 1995 Fighting Sony Computer Entertainment 0.15
## 2892 PSP 2010 Fighting THQ 0.22
## 2893 PS 1997 Misc Hasbro Interactive 0.39
## 2894 PS 1998 Shooter Acclaim Entertainment 0.39
## 2895 XOne 2015 Action Konami Digital Entertainment 0.37
## 2896 X360 2007 Role-Playing SouthPeak Games 0.41
## 2897 XB 2005 Shooter Activision 0.53
## 2898 X360 2008 Sports Electronic Arts 0.65
## 2899 X360 2008 Sports Electronic Arts 0.50
## 2900 PS3 2013 Shooter Sony Computer Entertainment 0.30
## 2901 PSP 2005 Action Activision 0.35
## 2902 PS3 2014 Sports Electronic Arts 0.15
## 2903 PS3 2012 Sports Sega 0.06
## 2904 X360 2011 Sports Electronic Arts 0.55
## 2905 GC 2003 Sports Activision 0.54
## 2906 X360 2008 Role-Playing Square Enix 0.34
## 2907 SNES 1994 Puzzle Hudson Soft 0.00
## 2908 PS 1998 Strategy Virgin Interactive 0.39
## 2909 DS 2008 Simulation Electronic Arts 0.32
## 2910 XB 2001 Action Activision 0.52
## 2911 X360 2007 Sports Electronic Arts 0.65
## 2912 PS2 2003 Shooter Sony Computer Entertainment 0.34
## 2913 DS 2011 Simulation Activision 0.54
## 2914 GC 2004 Sports Electronic Arts 0.54
## 2915 GBA 2001 Action Majesco Entertainment 0.50
## 2916 PS2 2001 Racing Atari 0.34
## 2917 PS 1997 Sports Electronic Arts 0.39
## 2918 XB 2005 Role-Playing Microsoft Game Studios 0.48
## 2919 PS3 2009 Shooter Activision 0.28
## 2920 DS 2010 Simulation Electronic Arts 0.39
## 2921 WiiU 2014 Action Activision 0.39
## 2922 PS3 2010 Action Ubisoft 0.19
## 2923 PS 1998 Role-Playing SquareSoft 0.04
## 2924 GBA 2001 Strategy Nintendo 0.50
## 2925 DS 2009 Adventure Disney Interactive Studios 0.38
## 2926 DS 2009 Simulation THQ 0.43
## 2927 PSP 2005 Platform Sony Computer Entertainment 0.52
## 2928 PS2 2000 Racing Electronic Arts 0.34
## 2929 PS3 2009 Simulation 505 Games 0.34
## 2930 PS3 2012 Action Sony Computer Entertainment 0.13
## 2931 PS 2000 Sports Electronic Arts 0.39
## 2932 PS2 2004 Action Illusion Softworks 0.34
## 2933 PS2 2000 Simulation Namco Bandai Games 0.16
## 2934 PS3 2015 Action Konami Digital Entertainment 0.21
## 2935 PS2 2002 Shooter Eidos Interactive 0.34
## 2936 X360 2010 Sports Ubisoft 0.38
## 2937 PS3 2008 Sports Sony Computer Entertainment 0.64
## 2938 GBA 2004 Adventure Nintendo 0.37
## 2939 SNES 1994 Role-Playing Nintendo 0.00
## 2940 GBA 2005 Platform Disney Interactive Studios 0.50
## 2941 2600 1981 Action Tigervision 0.65
## 2942 X360 2014 Sports Take-Two Interactive 0.38
## 2943 3DS 2014 Action Warner Bros. Interactive Entertainment 0.28
## 2944 X360 2009 Action Activision 0.42
## 2945 PSP 2007 Action Konami Digital Entertainment 0.26
## 2946 Wii 2010 Action Disney Interactive Studios 0.47
## 2947 X360 2007 Action Activision 0.54
## 2948 X360 NA Racing Atari 0.30
## 2949 PS 1997 Racing Electronic Arts 0.39
## 2950 XB 2005 Shooter Microsoft Game Studios 0.54
## 2951 PS3 2015 Adventure Mojang 0.25
## 2952 PS2 2005 Action Midway Games 0.58
## 2953 PSP 2006 Racing THQ 0.64
## 2954 PS3 2014 Action Activision 0.24
## 2955 GBA 2004 Misc Nintendo 0.50
## 2956 NES 1984 Platform Namco Bandai Games 0.00
## 2957 SNES 1993 Sports Namco Bandai Games 0.00
## 2958 GC 2003 Fighting Atari 0.53
## 2959 PS 1998 Sports Sony Computer Entertainment 0.38
## 2960 PS3 2010 Platform Sony Computer Entertainment 0.52
## 2961 PS3 2013 Action Namco Bandai Games 0.00
## 2962 PC 2013 Action Ubisoft 0.22
## 2963 GC 2002 Action Electronic Arts 0.53
## 2964 PS3 2011 Racing Electronic Arts 0.20
## 2965 GC 2003 Action Electronic Arts 0.53
## 2966 3DS 2015 Misc Nintendo 0.01
## 2967 X360 2007 Racing THQ 0.55
## 2968 X360 2008 Role-Playing Square Enix 0.25
## 2969 DS 2013 Platform Disney Interactive Studios 0.28
## 2970 PC 2011 Simulation Electronic Arts 0.27
## 2971 PS2 2004 Role-Playing Interplay 0.34
## 2972 GBA 2004 Action Activision 0.49
## 2973 XOne 2014 Shooter Electronic Arts 0.39
## 2974 Wii 2012 Action Nintendo 0.34
## 2975 Wii 2009 Action Activision 0.60
## 2976 PS 1997 Action LucasArts 0.38
## 2977 Wii 2011 Role-Playing Nintendo 0.32
## 2978 XB 2003 Sports Electronic Arts 0.62
## 2979 PS3 2008 Action Sega 0.32
## 2980 PS4 2015 Action Disney Interactive Studios 0.21
## 2981 PS3 2007 Platform Activision 0.26
## 2982 XB 2004 Sports Electronic Arts 0.63
## 2983 PS 1997 Fighting GT Interactive 0.38
## 2984 WiiU 2013 Platform Ubisoft 0.26
## 2985 GC 2003 Fighting Tomy Corporation 0.53
## 2986 PS2 2005 Action Ubisoft 0.57
## 2987 PSP 2007 Sports Sony Computer Entertainment 0.21
## 2988 PS4 2014 Action Deep Silver 0.22
## 2989 DS 2010 Role-Playing Nintendo 0.32
## 2990 XB 2005 Action LucasArts 0.54
## 2991 PS4 2014 Shooter 505 Games 0.22
## 2992 XOne 2016 Shooter Bethesda Softworks 0.39
## 2993 PS 1998 Fighting SquareSoft 0.25
## 2994 PS 1998 Role-Playing Konami Digital Entertainment 0.15
## 2995 XOne 2015 Racing Electronic Arts 0.30
## 2996 DS 2007 Racing THQ 0.63
## 2997 XB 2005 Sports Electronic Arts 0.29
## 2998 DS 2009 Adventure GSP 0.19
## 2999 Wii 2006 Shooter Ubisoft 0.55
## 3000 XB 2004 Fighting Electronic Arts 0.51
## 3001 PS2 2006 Racing Sony Computer Entertainment 0.28
## 3002 PC 2008 Role-Playing Electronic Arts 0.00
## 3003 PS2 2002 Role-Playing Atari 0.23
## 3004 Wii 2011 Misc Funbox Media 0.59
## 3005 PS3 2008 Action Touchstone 0.35
## 3006 PS2 2004 Misc Midway Games 0.33
## 3007 DS 2008 Misc Nintendo 0.13
## 3008 PS3 2007 Shooter Midway Games 0.33
## 3009 DS 2007 Role-Playing Square Enix 0.22
## 3010 XB 2003 Shooter Activision 0.49
## 3011 XOne 2013 Racing Electronic Arts 0.45
## 3012 PS3 2012 Action Warner Bros. Interactive Entertainment 0.26
## 3013 PS3 2007 Shooter Take-Two Interactive 0.20
## 3014 PS 1998 Sports Electronic Arts 0.37
## 3015 DS 2010 Adventure Disney Interactive Studios 0.40
## 3016 PS 1996 Shooter Konami Digital Entertainment 0.37
## 3017 PS3 2006 Simulation Ubisoft 0.35
## 3018 XB 2004 Fighting Electronic Arts 0.46
## 3019 XOne 2014 Shooter Bethesda Softworks 0.33
## 3020 Wii 2010 Sports THQ 0.49
## 3021 DS 2006 Misc Rocket Company 0.00
## 3022 PS 1998 Action Sony Computer Entertainment 0.37
## 3023 XB 2005 Shooter Activision 0.48
## 3024 PS2 2002 Simulation Metro 3D 0.22
## 3025 Wii 2008 Racing Electronic Arts 0.27
## 3026 Wii 2008 Misc Namco Bandai Games 0.00
## 3027 PC 2015 Role-Playing Namco Bandai Games 0.20
## 3028 PSP 2005 Sports Sega 0.16
## 3029 PS4 2014 Action Warner Bros. Interactive Entertainment 0.24
## 3030 PSP 2007 Action THQ 0.22
## 3031 PC 2011 Role-Playing Unknown 0.44
## 3032 PS 1999 Role-Playing Sony Computer Entertainment 0.19
## 3033 Wii 2008 Sports Ubisoft 0.00
## 3034 X360 2010 Action Konami Digital Entertainment 0.42
## 3035 PC 2013 Shooter Take-Two Interactive 0.28
## 3036 PS4 2015 Adventure Mojang 0.23
## 3037 Wii 2008 Puzzle Ubisoft 0.18
## 3038 DS 2010 Simulation 505 Games 0.40
## 3039 Wii 2008 Action Activision 0.30
## 3040 Wii 2010 Misc MTV Games 0.56
## 3041 PC 2008 Strategy Electronic Arts 0.01
## 3042 PS2 2003 Platform THQ 0.33
## 3043 PSP 2006 Fighting THQ 0.33
## 3044 DS 2010 Misc Ubisoft 0.00
## 3045 2600 1981 Action Mattel Interactive 0.63
## 3046 DS 2007 Adventure Capcom 0.33
## 3047 X360 2012 Sports Electronic Arts 0.51
## 3048 PS3 2014 Shooter Take-Two Interactive 0.25
## 3049 PC 2010 Simulation Electronic Arts 0.01
## 3050 GBA NA Action Disney Interactive Studios 0.48
## 3051 DS 2006 Misc IE Institute 0.00
## 3052 PS 1999 Simulation Take-Two Interactive 0.37
## 3053 XB 2004 Sports Electronic Arts 0.49
## 3054 PS3 2008 Sports Ubisoft 0.31
## 3055 WiiU 2014 Action Warner Bros. Interactive Entertainment 0.35
## 3056 PS2 2007 Sports Activision 0.55
## 3057 PS2 2003 Sports Sony Computer Entertainment 0.32
## 3058 PS2 2007 Fighting Atari 0.26
## 3059 PS 1998 Sports Electronic Arts 0.37
## 3060 PS 2001 Role-Playing Electronic Arts 0.37
## 3061 PS2 2002 Sports Electronic Arts 0.32
## 3062 XB 2003 Action THQ 0.48
## 3063 PS2 2006 Strategy Atari 0.55
## 3064 X360 2009 Sports Electronic Arts 0.51
## 3065 PS2 2000 Sports Konami Digital Entertainment 0.00
## 3066 GC 2005 Platform Activision 0.52
## 3067 Wii 2012 Puzzle Namco Bandai Games 0.00
## 3068 GBA 2003 Role-Playing Enix Corporation 0.00
## 3069 GBA 2004 Adventure Majesco Entertainment 0.47
## 3070 PS3 2013 Platform Ubisoft 0.14
## 3071 PC 2013 Misc Ubisoft 0.35
## 3072 PS2 2004 Fighting Capcom 0.32
## 3073 PS 1998 Role-Playing Sony Computer Entertainment 0.37
## 3074 PC 2010 Strategy Sega 0.02
## 3075 PS3 2010 Action Ubisoft Annecy 0.06
## 3076 DS 2007 Platform Nintendo 0.28
## 3077 PSP 2010 Action Disney Interactive Studios 0.27
## 3078 GC 2003 Simulation Electronic Arts 0.43
## 3079 PS3 2008 Sports Electronic Arts 0.34
## 3080 2600 1982 Action Activision 0.62
## 3081 PSV 2013 Action Warner Bros. Interactive Entertainment 0.15
## 3082 Wii 2008 Strategy Nintendo 0.29
## 3083 GBA 2002 Action TDK Mediactive 0.47
## 3084 PS2 2004 Role-Playing Konami Digital Entertainment 0.17
## 3085 PSP 2010 Action Namco Bandai Games 0.03
## 3086 GBA 2004 Platform Disney Interactive Studios 0.47
## 3087 PS 1998 Misc Sony Computer Entertainment 0.12
## 3088 XB 2005 Shooter Ubisoft 0.49
## 3089 PSP 2009 Sports Electronic Arts 0.50
## 3090 PSP 2007 Action Activision 0.23
## 3091 DS 2007 Misc Namco Bandai Games 0.00
## 3092 PS4 2015 Racing Codemasters 0.09
## 3093 X360 2008 Misc Microsoft Game Studios 0.33
## 3094 PS 1998 Sports ASC Games 0.36
## 3095 WiiU 2014 Action Disney Interactive Studios 0.38
## 3096 PS3 2012 Sports Electronic Arts 0.33
## 3097 PS2 2008 Action Activision 0.24
## 3098 PS3 2008 Strategy Ubisoft 0.32
## 3099 XOne 2014 Action Bethesda Softworks 0.35
## 3100 X360 2008 Sports Electronic Arts 0.35
## 3101 PS2 2005 Role-Playing Square Enix 0.18
## 3102 GC 2003 Racing Nintendo 0.41
## 3103 PS2 2005 Platform Disney Interactive Studios 0.32
## 3104 PSP 2008 Platform THQ 0.29
## 3105 GBA 2004 Platform Nintendo 0.25
## 3106 DS 2009 Action THQ 0.31
## 3107 PS2 2002 Racing Ubisoft 0.32
## 3108 Wii 2009 Action Rondomedia 0.56
## 3109 GBA 2005 Misc THQ 0.47
## 3110 PS 1999 Role-Playing Enix Corporation 0.02
## 3111 DS 2009 Puzzle THQ 0.45
## 3112 PS4 2014 Sports Sony Computer Entertainment America 0.58
## 3113 X360 2009 Sports Electronic Arts 0.39
## 3114 GBA 2003 Strategy Nintendo 0.47
## 3115 DS 2008 Role-Playing Nintendo 0.31
## 3116 PS 1998 Shooter Atari 0.36
## 3117 PS2 2003 Role-Playing Square Enix 0.19
## 3118 PS2 2007 Misc Sony Computer Entertainment 0.00
## 3119 2600 1987 Action Activision 0.60
## 3120 PS2 2005 Role-Playing Sony Online Entertainment 0.32
## 3121 PS2 2005 Action Electronic Arts 0.54
## 3122 PS2 2007 Misc Sony Computer Entertainment 0.00
## 3123 PS 2000 Adventure Acclaim Entertainment 0.36
## 3124 PSP 2007 Racing THQ 0.35
## 3125 Wii 2010 Misc Disney Interactive Studios 0.50
## 3126 PS3 2012 Fighting Tecmo Koei 0.23
## 3127 PSP 2007 Role-Playing Square Enix 0.20
## 3128 PS2 2002 Strategy Banpresto 0.00
## 3129 PS3 2014 Role-Playing Electronic Arts 0.26
## 3130 Wii 2011 Misc Ubisoft 0.39
## 3131 DS 2008 Misc Namco Bandai Games 0.00
## 3132 PS3 2010 Action Capcom 0.17
## 3133 PC 2013 Shooter Electronic Arts 0.17
## 3134 DS 2007 Simulation THQ 0.60
## 3135 PS2 2009 Action Electronic Arts 0.13
## 3136 GBA 2004 Platform Vivendi Games 0.46
## 3137 XOne 2014 Role-Playing Activision 0.35
## 3138 PS2 2004 Platform Vivendi Games 0.32
## 3139 PSP 2007 Action Vivendi Games 0.25
## 3140 PS3 2013 Shooter Sega 0.20
## 3141 PS2 2004 Platform Vivendi Games 0.32
## 3142 PS3 NA Racing Atari 0.16
## 3143 XB 2003 Shooter Take-Two Interactive 0.47
## 3144 X360 2010 Fighting Namco Bandai Games 0.49
## 3145 PS2 2004 Shooter Electronic Arts 0.54
## 3146 XOne 2016 Sports Take-Two Interactive 0.54
## 3147 PS3 2008 Shooter Capcom 0.31
## 3148 X360 2012 Strategy Take-Two Interactive 0.36
## 3149 3DS 2011 Platform Ubisoft 0.23
## 3150 PS4 2016 Action Warner Bros. Interactive Entertainment 0.25
## 3151 XB 2004 Shooter Electronic Arts 0.43
## 3152 PS2 2003 Platform Activision 0.31
## 3153 X360 2007 Racing THQ 0.25
## 3154 XB 2005 Sports Electronic Arts 0.57
## 3155 PC 2011 Action Electronic Arts 0.23
## 3156 X360 2006 Action LucasArts 0.55
## 3157 N64 1999 Shooter Red Storm Entertainment 0.48
## 3158 N64 1999 Platform Konami Digital Entertainment 0.44
## 3159 N64 1999 Platform Ubisoft 0.40
## 3160 GBA 2004 Misc N/A 0.46
## 3161 X360 2009 Action Electronic Arts 0.37
## 3162 XB 2002 Shooter Eidos Interactive 0.29
## 3163 PS2 2006 Action Capcom 0.15
## 3164 PS3 2010 Role-Playing Square Enix 0.17
## 3165 DS 2009 Platform Disney Interactive Studios 0.41
## 3166 PS3 2007 Racing Sega 0.07
## 3167 GBA 2004 Misc N/A 0.46
## 3168 PSV 2012 Action Sony Computer Entertainment 0.26
## 3169 GBA 2002 Misc Konami Digital Entertainment 0.46
## 3170 PS3 2010 Role-Playing Sony Computer Entertainment 0.23
## 3171 PS3 2009 Shooter Activision 0.25
## 3172 PS2 2005 Misc Sony Computer Entertainment 0.31
## 3173 PS4 2015 Action Warner Bros. Interactive Entertainment 0.22
## 3174 PS3 2010 Misc Sony Computer Entertainment 0.07
## 3175 N64 1998 Racing Nintendo 0.59
## 3176 N64 2000 Sports Electronic Arts 0.60
## 3177 PS3 2007 Sports Electronic Arts 0.56
## 3178 X360 2013 Shooter Activision 0.46
## 3179 Wii 2007 Racing Nintendo 0.20
## 3180 Wii 2008 Action Capcom 0.45
## 3181 PS2 2004 Platform Activision 0.31
## 3182 PS3 2014 Action Warner Bros. Interactive Entertainment 0.20
## 3183 Wii 2009 Misc Ubisoft 0.59
## 3184 Wii 2010 Shooter Ubisoft 0.36
## 3185 PS2 2005 Role-Playing Activision 0.53
## 3186 PS 1997 Action Sony Computer Entertainment 0.35
## 3187 PS2 2009 Misc Sony Computer Entertainment 0.08
## 3188 X360 2014 Misc Ubisoft 0.41
## 3189 PS3 2013 Racing Codemasters 0.01
## 3190 X360 2007 Racing THQ 0.22
## 3191 XB 2001 Sports Activision 0.41
## 3192 PS 1999 Strategy Electronic Arts 0.35
## 3193 XB 2002 Sports Electronic Arts 0.20
## 3194 X360 2009 Action Atari 0.43
## 3195 PS2 NA Role-Playing Capcom 0.00
## 3196 PS2 2005 Racing Electronic Arts 0.53
## 3197 PS3 2006 Sports Activision 0.30
## 3198 GBA 2004 Simulation Ubisoft 0.45
## 3199 PS3 2011 Action Disney Interactive Studios 0.30
## 3200 PS3 2009 Misc Activision 0.28
## 3201 PSP 2008 Action Sega 0.46
## 3202 3DS 2012 Misc Namco Bandai Games 0.00
## 3203 DS 2009 Action Electronic Arts 0.21
## 3204 N64 1998 Platform Activision 0.49
## 3205 SNES 1991 Platform Konami Digital Entertainment 0.32
## 3206 Wii 2010 Misc Activision 0.49
## 3207 3DS 2012 Action Activision 0.38
## 3208 X360 2008 Action Sega 0.38
## 3209 Wii 2007 Sports Activision 0.58
## 3210 PS2 2003 Fighting Namco Bandai Games 0.00
## 3211 PS3 2011 Misc Ubisoft 0.33
## 3212 DS 2010 Shooter Activision 0.54
## 3213 PS4 2015 Action Sony Computer Entertainment 0.23
## 3214 PS2 2002 Platform Sony Computer Entertainment 0.12
## 3215 Wii 2009 Shooter Nintendo 0.43
## 3216 2600 1982 Action Universal Gamex 0.58
## 3217 X360 2009 Shooter Activision 0.34
## 3218 DS NA Strategy Nintendo 0.44
## 3219 PC 2011 Simulation Electronic Arts 0.40
## 3220 XOne 2014 Racing Ubisoft 0.24
## 3221 DS 2009 Strategy Ubisoft 0.31
## 3222 3DS 2016 Role-Playing Square Enix 0.00
## 3223 X360 2012 Racing Sega 0.20
## 3224 PS2 2007 Role-Playing Tecmo Koei 0.22
## 3225 PS2 2001 Sports Electronic Arts 0.31
## 3226 PSP 2009 Role-Playing Ghostlight 0.18
## 3227 PS 1997 Role-Playing Square 0.00
## 3228 X360 2011 Sports Electronic Arts 0.40
## 3229 PS2 2006 Action Capcom 0.11
## 3230 PS 2000 Sports Electronic Arts 0.35
## 3231 Wii 2009 Simulation THQ 0.41
## 3232 XOne 2015 Action Warner Bros. Interactive Entertainment 0.35
## 3233 PS3 2009 Shooter Bethesda Softworks 0.22
## 3234 DS 2009 Racing Electronic Arts 0.26
## 3235 PS 2000 Platform Activision 0.35
## 3236 GC 2002 Misc Namco Bandai Games 0.48
## 3237 SNES 1993 Strategy Tecmo Koei 0.30
## 3238 SAT 1995 Shooter Sega 0.00
## 3239 XB NA Action Konami Digital Entertainment 0.38
## 3240 XB 2005 Sports Activision 0.40
## 3241 PS 1996 Fighting Acclaim Entertainment 0.35
## 3242 X360 2010 Action Ubisoft 0.30
## 3243 PS3 2010 Shooter Sega 0.21
## 3244 PS2 2002 Role-Playing Ubisoft 0.16
## 3245 PS 1997 Sports Sony Computer Entertainment 0.35
## 3246 PS3 2009 Role-Playing Deep Silver 0.22
## 3247 GC 2006 Sports Electronic Arts 0.48
## 3248 PC 2014 Shooter Ubisoft 0.15
## 3249 2600 1982 Shooter Atari 0.58
## 3250 XB 2003 Sports Electronic Arts 0.47
## 3251 3DS 2011 Action Disney Interactive Studios 0.29
## 3252 PS3 2014 Sports Konami Digital Entertainment 0.10
## 3253 XOne 2015 Shooter Take-Two Interactive 0.36
## 3254 PS2 2004 Platform THQ 0.30
## 3255 PS3 2013 Action Deep Silver 0.26
## 3256 PS3 2011 Action Ubisoft Annecy 0.00
## 3257 DS 2008 Adventure Disney Interactive Studios 0.35
## 3258 GC 2003 Action Capcom 0.38
## 3259 GBA 2004 Simulation Electronic Arts 0.37
## 3260 N64 1999 Racing Electronic Arts 0.40
## 3261 PSV 2012 Sports Electronic Arts 0.17
## 3262 PS 2000 Platform Eidos Interactive 0.34
## 3263 DS 2010 Misc Activision 0.58
## 3264 PS2 2004 Sports Play It 0.30
## 3265 Wii 2007 Action THQ 0.57
## 3266 PS3 2014 Action Konami Digital Entertainment 0.14
## 3267 2600 1982 Action Wizard Video Games 0.58
## 3268 PS3 2011 Fighting Namco Bandai Games 0.27
## 3269 PSP 2009 Fighting THQ 0.25
## 3270 PS 1999 Sports ASCII Entertainment 0.21
## 3271 PS2 2004 Racing Eidos Interactive 0.30
## 3272 GB 1995 Puzzle Nintendo 0.00
## 3273 GC 2003 Misc Namco Bandai Games 0.48
## 3274 PS4 2014 Misc Ubisoft 0.34
## 3275 SAT 1996 Fighting Sega 0.00
## 3276 SNES 1996 Role-Playing SquareSoft 0.00
## 3277 X360 2008 Platform THQ 0.29
## 3278 PC 1998 Action Eidos Interactive 0.59
## 3279 3DS 2012 Adventure Namco Bandai Games 0.00
## 3280 DS 2011 Role-Playing Square Enix 0.00
## 3281 N64 1998 Sports Acclaim Entertainment 0.59
## 3282 PS 2001 Strategy Banpresto 0.00
## 3283 PS3 2006 Racing Sony Computer Entertainment 0.00
## 3284 Wii 2009 Role-Playing Rising Star Games 0.33
## 3285 PS3 2008 Sports Take-Two Interactive 0.56
## 3286 PS2 2008 Misc Sony Computer Entertainment 0.00
## 3287 PS4 2015 Sports Electronic Arts 0.35
## 3288 PS4 2014 Shooter Electronic Arts 0.21
## 3289 XB 2002 Sports Microsoft Game Studios 0.46
## 3290 PS2 2006 Action Tecmo Koei 0.02
## 3291 PS3 2013 Action Tecmo Koei 0.12
## 3292 Wii 2010 Misc Disney Interactive Studios 0.39
## 3293 GBA 2005 Misc THQ 0.44
## 3294 PS2 2002 Shooter TDK Mediactive 0.30
## 3295 GBA 2004 Platform Gotham Games 0.44
## 3296 Wii 2010 Misc Take-Two Interactive 0.35
## 3297 X360 2009 Sports Activision 0.46
## 3298 WiiU 2013 Misc Ubisoft 0.33
## 3299 3DS 2011 Simulation 505 Games 0.50
## 3300 GBA 2004 Misc Majesco Entertainment 0.44
## 3301 PS2 2003 Shooter Namco Bandai Games 0.30
## 3302 Wii 2010 Sports Activision 0.58
## 3303 DS 2007 Misc Nintendo 0.00
## 3304 X360 2010 Sports Konami Digital Entertainment 0.09
## 3305 Wii 2008 Platform Nintendo 0.24
## 3306 PS 1998 Platform Electronic Arts 0.34
## 3307 PS3 2011 Shooter Sega 0.09
## 3308 DS 2008 Simulation Electronic Arts 0.31
## 3309 XB 2005 Shooter Electronic Arts 0.37
## 3310 PS 1997 Shooter GT Interactive 0.34
## 3311 Wii 2010 Misc Namco Bandai Games 0.47
## 3312 PSP 2009 Platform Sony Computer Entertainment 0.18
## 3313 X360 2008 Sports Bethesda Softworks 0.56
## 3314 DS 2007 Simulation Electronic Arts 0.33
## 3315 X360 2009 Sports Spike 0.56
## 3316 DS 2008 Simulation Ubisoft 0.56
## 3317 X360 2010 Racing Disney Interactive Studios 0.32
## 3318 GBA 2005 Role-Playing Nintendo 0.27
## 3319 GBA 2002 Sports Electronic Arts 0.44
## 3320 PS 1999 Action Eidos Interactive 0.34
## 3321 GBA 2005 Action Electronic Arts 0.44
## 3322 GBA 2004 Action Atari 0.44
## 3323 GC 2001 Sports Electronic Arts 0.47
## 3324 Wii 2009 Misc Activision 0.33
## 3325 Wii 2008 Misc Disney Interactive Studios 0.37
## 3326 GBA 2001 Action Activision 0.43
## 3327 N64 1999 Sports Electronic Arts 0.58
## 3328 X360 2007 Action Activision 0.51
## 3329 GBA 2002 Misc Nintendo 0.43
## 3330 DS 2008 Simulation Electronic Arts 0.34
## 3331 PS2 2003 Fighting Atari 0.50
## 3332 X360 2010 Fighting Ubisoft 0.31
## 3333 X360 2009 Shooter Ubisoft 0.30
## 3334 Wii 2009 Strategy Nintendo 0.11
## 3335 GBA 2003 Sports Activision 0.43
## 3336 PSV 2011 Sports Sony Computer Entertainment 0.19
## 3337 GBA 2004 Racing Majesco Entertainment 0.43
## 3338 PS2 2005 Platform Sega 0.50
## 3339 GC 2001 Racing Nintendo 0.40
## 3340 PS2 2003 Fighting Eidos Interactive 0.30
## 3341 XB 2005 Fighting Electronic Arts 0.42
## 3342 PSP 2010 Role-Playing Capcom 0.00
## 3343 DS 2007 Action Sega 0.28
## 3344 PS2 2007 Sports Take-Two Interactive 0.50
## 3345 Wii 2011 Action Disney Interactive Studios 0.36
## 3346 WiiU 2013 Action Disney Interactive Studios 0.33
## 3347 Wii NA Action Sega 0.26
## 3348 DS 2009 Misc Nintendo 0.18
## 3349 PS3 2009 Sports Activision 0.38
## 3350 3DS 2015 Action Warner Bros. Interactive Entertainment 0.31
## 3351 PS3 2011 Adventure Electronic Arts 0.22
## 3352 PS4 2014 Action Warner Bros. Interactive Entertainment 0.12
## 3353 PS 1995 Role-Playing Konami Digital Entertainment 0.21
## 3354 PS2 2009 Platform Sony Computer Entertainment 0.13
## 3355 PS2 2001 Racing Ubisoft 0.29
## 3356 PSP 2009 Action Ubisoft 0.22
## 3357 PS2 2006 Action THQ 0.50
## 3358 SAT 1997 Puzzle Compile 0.00
## 3359 PS2 2001 Shooter Vivendi Games 0.29
## 3360 XOne 2014 Action Square Enix 0.34
## 3361 N64 2000 Racing Nintendo 0.37
## 3362 N64 1997 Sports Konami Digital Entertainment 0.09
## 3363 WiiU 2013 Platform Activision 0.40
## 3364 PS2 2001 Racing Infogrames 0.29
## 3365 Wii 2008 Misc Disney Interactive Studios 0.32
## 3366 PS 2002 Fighting Namco Bandai Games 0.00
## 3367 PS 1998 Simulation Konami Digital Entertainment 0.00
## 3368 X360 2005 Racing Microsoft Game Studios 0.49
## 3369 PS3 2012 Strategy Take-Two Interactive 0.24
## 3370 X360 2010 Racing Activision 0.25
## 3371 PS 1998 Adventure Electronic Arts 0.33
## 3372 3DS 2012 Action Warner Bros. Interactive Entertainment 0.55
## 3373 SNES 1995 Strategy SquareSoft 0.00
## 3374 PS3 2010 Sports Electronic Arts 0.40
## 3375 X360 2012 Adventure Microsoft Game Studios 0.38
## 3376 X360 2008 Misc Electronic Arts 0.34
## 3377 PS4 2014 Action Disney Interactive Studios 0.26
## 3378 PS2 2007 Sports Spike 0.29
## 3379 DS 2004 Racing Ubisoft 0.31
## 3380 PS3 2010 Fighting Sony Computer Entertainment 0.29
## 3381 PS2 2003 Strategy Banpresto 0.00
## 3382 DS 2005 Puzzle Nintendo 0.26
## 3383 PC 2008 Action Electronic Arts 0.00
## 3384 PS2 2004 Racing THQ 0.29
## 3385 PSV 2012 Platform Ubisoft 0.13
## 3386 X360 2012 Sports Sega 0.07
## 3387 X360 2008 Sports Sega 0.15
## 3388 PS2 2005 Strategy Banpresto 0.00
## 3389 Wii 2010 Misc THQ 0.56
## 3390 PS 1997 Sports Konami Digital Entertainment 0.00
## 3391 PC 2011 Action Ubisoft 0.15
## 3392 PS 1998 Sports Electronic Arts 0.33
## 3393 PS 2001 Misc Sony Computer Entertainment 0.33
## 3394 GC 2002 Shooter Electronic Arts 0.46
## 3395 DS 2009 Role-Playing Square Enix 0.23
## 3396 Wii 2008 Action Sega 0.31
## 3397 PS3 2010 Shooter Square Enix 0.17
## 3398 PS 2000 Sports Midway Games 0.33
## 3399 PC 2011 Strategy Sega 0.19
## 3400 PS 1998 Sports Konami Digital Entertainment 0.00
## 3401 PS2 2008 Misc MTV Games 0.29
## 3402 PS3 2012 Action Sega 0.00
## 3403 PSP 2009 Action Activision 0.21
## 3404 2600 1981 Puzzle Mattel Interactive 0.55
## 3405 X360 2008 Action Ubisoft 0.24
## 3406 PS2 2002 Sports Electronic Arts 0.21
## 3407 XB 2004 Sports Electronic Arts 0.44
## 3408 GC 2002 Platform Universal Interactive 0.46
## 3409 2600 1981 Action Coleco 0.55
## 3410 DS 2007 Misc 505 Games 0.54
## 3411 Wii 2008 Action Take-Two Interactive 0.53
## 3412 Wii 2007 Action Activision 0.52
## 3413 N64 1997 Racing Acclaim Entertainment 0.47
## 3414 N64 1999 Sports Midway Games 0.47
## 3415 X360 2013 Shooter 505 Games 0.33
## 3416 XB 2003 Sports Microsoft Game Studios 0.36
## 3417 PS2 2004 Role-Playing Namco Bandai Games 0.00
## 3418 X360 2012 Fighting Namco Bandai Games 0.39
## 3419 PS3 2011 Sports Electronic Arts 0.36
## 3420 PS3 2015 Role-Playing Namco Bandai Games 0.05
## 3421 PS2 2010 Action Konami Digital Entertainment 0.13
## 3422 X360 NA Sports Electronic Arts 0.54
## 3423 Wii 2008 Sports Electronic Arts 0.51
## 3424 X360 2010 Misc Warner Bros. Interactive Entertainment 0.36
## 3425 PS 1999 Action Sony Computer Entertainment 0.33
## 3426 X360 2008 Action Ubisoft 0.18
## 3427 PS2 2004 Platform Capcom 0.29
## 3428 PSP 2007 Role-Playing Square Enix 0.39
## 3429 PS4 2015 Role-Playing Namco Bandai Games 0.20
## 3430 PSP 2008 Action Koch Media 0.35
## 3431 PC 2011 Shooter Square Enix 0.25
## 3432 PS3 2010 Sports 505 Games 0.28
## 3433 GBA 2003 Simulation Ubisoft 0.34
## 3434 PS2 2003 Sports Atari 0.29
## 3435 DS 2009 Sports Electronic Arts 0.14
## 3436 SNES 1994 Sports Nintendo 0.00
## 3437 PS3 2012 Shooter Bethesda Softworks 0.26
## 3438 PS2 2003 Action Capcom 0.22
## 3439 Wii 2008 Action Take-Two Interactive 0.15
## 3440 Wii 2007 Simulation Ubisoft 0.53
## 3441 PS2 2008 Action THQ 0.29
## 3442 Wii 2009 Shooter Sega 0.29
## 3443 WiiU 2015 Misc Ubisoft 0.28
## 3444 PS 1995 Simulation Konami Digital Entertainment 0.00
## 3445 PS 1997 Role-Playing Electronic Arts 0.29
## 3446 Wii 2010 Sports Activision 0.53
## 3447 PS4 2014 Sports Electronic Arts 0.30
## 3448 2600 1982 Puzzle Parker Bros. 0.55
## 3449 PS2 2005 Role-Playing Square Enix 0.06
## 3450 PS2 2004 Role-Playing Electronic Arts 0.49
## 3451 DS 2008 Simulation Rising Star Games 0.35
## 3452 Wii 2009 Misc Electronic Arts 0.21
## 3453 Wii 2008 Platform Vivendi Games 0.35
## 3454 PC 2009 Simulation Electronic Arts 0.02
## 3455 XOne 2014 Sports Microsoft Game Studios 0.30
## 3456 Wii 2011 Platform Ubisoft 0.23
## 3457 XOne 2015 Sports Take-Two Interactive 0.31
## 3458 PC 2014 Shooter Electronic Arts 0.21
## 3459 PS3 2008 Sports Electronic Arts 0.54
## 3460 X360 2009 Action Ubisoft 0.31
## 3461 PS 2000 Sports 3DO 0.32
## 3462 3DS 2013 Platform Disney Interactive Studios 0.27
## 3463 PS2 2003 Action Atari 0.28
## 3464 X360 2010 Shooter Activision 0.37
## 3465 DS 2010 Simulation Natsume 0.27
## 3466 N64 1997 Sports Electronic Arts 0.15
## 3467 N64 1998 Sports Electronic Arts 0.14
## 3468 N64 1998 Sports Konami Digital Entertainment 0.06
## 3469 PS2 NA Racing Unknown 0.28
## 3470 PS2 2000 Shooter Infogrames 0.28
## 3471 PS 2000 Role-Playing Namco Bandai Games 0.23
## 3472 PS 1998 Role-Playing Namco Bandai Games 0.00
## 3473 XB 2005 Action Ubisoft 0.33
## 3474 PS2 2004 Role-Playing Sony Computer Entertainment 0.28
## 3475 PS 1998 Platform BMG Interactive Entertainment 0.32
## 3476 GBA 2004 Adventure Activision 0.42
## 3477 DS 2007 Action Capcom 0.25
## 3478 PS3 2013 Fighting Namco Bandai Games 0.05
## 3479 DS 2009 Simulation Ubisoft 0.53
## 3480 PS2 2002 Shooter Konami Digital Entertainment 0.28
## 3481 PS 1998 Racing THQ 0.32
## 3482 SNES 1992 Role-Playing Namco Bandai Games 0.00
## 3483 X360 2006 Sports Take-Two Interactive 0.53
## 3484 PS3 2015 Sports Take-Two Interactive 0.21
## 3485 DS 2006 Adventure Capcom 0.24
## 3486 SNES 1996 Strategy Nintendo 0.00
## 3487 PS3 2010 Misc MTV Games 0.43
## 3488 PS3 2011 Role-Playing Nippon Ichi Software 0.27
## 3489 PS3 2009 Fighting PQube 0.36
## 3490 PS 2000 Action Activision 0.32
## 3491 GC 2002 Sports Activision 0.45
## 3492 PS3 2011 Sports Sony Computer Entertainment 0.54
## 3493 PS2 2006 Action Namco Bandai Games 0.28
## 3494 PS2 2005 Sports Electronic Arts 0.48
## 3495 PS3 2009 Sports Electronic Arts 0.38
## 3496 DS 2010 Adventure Nintendo 0.10
## 3497 Wii 2009 Sports Activision 0.52
## 3498 PS 1999 Role-Playing SquareSoft 0.32
## 3499 Wii 2010 Puzzle Nintendo 0.34
## 3500 N64 1999 Sports Midway Games 0.55
## 3501 PS3 2008 Platform Sony Computer Entertainment 0.00
## 3502 XB NA Sports Unknown 0.53
## 3503 PS2 2009 Sports Electronic Arts 0.28
## 3504 PS3 2008 Action Take-Two Interactive 0.08
## 3505 3DS 2013 Role-Playing Atlus 0.28
## 3506 PS 1994 Simulation Electronic Arts 0.24
## 3507 X360 2007 Shooter Midway Games 0.29
## 3508 X360 2007 Platform Activision 0.49
## 3509 PSP 2005 Racing SouthPeak Games 0.53
## 3510 XB 2005 Shooter Ubisoft 0.32
## 3511 PS2 2008 Puzzle Electronic Arts 0.28
## 3512 GBA 2002 Sports Activision 0.41
## 3513 Wii 2009 Action THQ 0.23
## 3514 PS2 2005 Role-Playing Namco Bandai Games 0.00
## 3515 X360 2011 Action Disney Interactive Studios 0.37
## 3516 X360 2008 Action Sega 0.27
## 3517 PS 2000 Strategy Namco Bandai Games 0.00
## 3518 GBA 2004 Action Vivendi Games 0.41
## 3519 PS3 2010 Action Namco Bandai Games 0.24
## 3520 DS 2008 Action THQ 0.53
## 3521 PS 1995 Role-Playing Sony Computer Entertainment 0.11
## 3522 PS2 2008 Action Koch Media 0.22
## 3523 PSP 2007 Action Eidos Interactive 0.21
## 3524 X360 2011 Shooter THQ 0.25
## 3525 GC 2005 Sports Electronic Arts 0.44
## 3526 Wii 2007 Action Rising Star Games 0.30
## 3527 PC 2010 Action Ubisoft 0.01
## 3528 DS 2008 Simulation Ubisoft 0.52
## 3529 PS2 2004 Fighting Namco Bandai Games 0.47
## 3530 X360 2013 Shooter Trion Worlds 0.38
## 3531 DS 2006 Simulation Ubisoft 0.51
## 3532 PS3 2009 Role-Playing SouthPeak Games 0.36
## 3533 NES 1986 Action Nintendo 0.00
## 3534 N64 1997 Sports GT Interactive 0.48
## 3535 Wii 2009 Sports Majesco Entertainment 0.52
## 3536 PSP 2011 Action Konami Digital Entertainment 0.10
## 3537 Wii 2010 Misc 505 Games 0.27
## 3538 XB 2001 Shooter Microsoft Game Studios 0.43
## 3539 PS2 2005 Action Tecmo Koei 0.11
## 3540 3DS 2011 Action Activision 0.32
## 3541 Wii 2008 Platform Take-Two Interactive 0.50
## 3542 PS2 2002 Misc Sony Computer Entertainment 0.28
## 3543 PS2 2006 Sports Electronic Arts 0.47
## 3544 XB 2002 Racing Activision 0.42
## 3545 SNES 1992 Puzzle Hudson Soft 0.00
## 3546 XB 2003 Platform THQ 0.45
## 3547 PS3 2012 Shooter Take-Two Interactive 0.19
## 3548 PS2 2002 Strategy Namco Bandai Games 0.00
## 3549 DS 2007 Adventure THQ 0.29
## 3550 XB 2002 Racing Microsoft Game Studios 0.39
## 3551 PS2 2004 Action Capcom 0.19
## 3552 PS 2000 Action THQ 0.31
## 3553 PS2 2003 Shooter Ubisoft 0.28
## 3554 PS3 2013 Sports Electronic Arts 0.28
## 3555 X360 2009 Misc Warner Bros. Interactive Entertainment 0.40
## 3556 Wii 2008 Adventure Disney Interactive Studios 0.19
## 3557 X360 2008 Action Take-Two Interactive 0.09
## 3558 PS3 2009 Action Ubisoft 0.21
## 3559 X360 2015 Action Warner Bros. Interactive Entertainment 0.24
## 3560 PS 2000 Role-Playing Capcom 0.11
## 3561 GC 2003 Action Activision 0.44
## 3562 PS2 2007 Role-Playing Square Enix 0.23
## 3563 DS 2007 Platform Nintendo 0.26
## 3564 GBA 2003 Action Universal Interactive 0.40
## 3565 GBA 2004 Puzzle Zoo Digital Publishing 0.40
## 3566 PS2 2006 Sports Electronic Arts 0.28
## 3567 GBA 2003 Action Electronic Arts 0.40
## 3568 PS2 2001 Sports Midway Games 0.28
## 3569 GBA 2004 Puzzle Nintendo 0.31
## 3570 XB 2003 Simulation Electronic Arts 0.40
## 3571 PS2 2007 Sports Electronic Arts 0.28
## 3572 PS 2001 Platform Sony Computer Entertainment 0.31
## 3573 PS2 2006 Misc Electronic Arts 0.28
## 3574 PSP 2006 Sports Activision 0.41
## 3575 GBA 2004 Misc Konami Digital Entertainment 0.40
## 3576 PS2 2004 Sports Activision 0.28
## 3577 DS 2007 Adventure Nintendo 0.27
## 3578 PS2 2001 Fighting Electronic Arts 0.28
## 3579 PS 1999 Action 3DO 0.31
## 3580 DS 2011 Action Disney Interactive Studios 0.32
## 3581 PS2 2007 Simulation Ubisoft 0.28
## 3582 XB 2005 Shooter Electronic Arts 0.39
## 3583 X360 2009 Shooter Activision 0.28
## 3584 PS2 2001 Sports Acclaim Entertainment 0.27
## 3585 GBA 2002 Sports Infogrames 0.40
## 3586 GC 2005 Racing Electronic Arts 0.43
## 3587 PS 2000 Racing Electronic Arts 0.31
## 3588 Wii 2010 Sports Activision 0.41
## 3589 X360 2007 Sports Activision 0.49
## 3590 XB 2003 Fighting THQ 0.43
## 3591 N64 1999 Action Virgin Interactive 0.39
## 3592 SNES 1993 Platform Laguna 0.09
## 3593 PS2 2007 Action Take-Two Interactive 0.27
## 3594 3DS 2015 Role-Playing Nintendo 0.26
## 3595 PS2 2003 Role-Playing Square Enix 0.15
## 3596 Wii 2011 Misc THQ 0.44
## 3597 PSP 2011 Role-Playing Square Enix 0.13
## 3598 X360 2008 Shooter THQ 0.34
## 3599 X360 2009 Misc Microsoft Game Studios 0.15
## 3600 GB 2001 Role-Playing Nintendo 0.00
## 3601 PS2 2005 Action Electronic Arts 0.27
## 3602 DS 2008 Simulation THQ 0.27
## 3603 PS2 2003 Misc Vivendi Games 0.27
## 3604 GBA 2002 Misc Universal Interactive 0.40
## 3605 GBA 2003 Strategy Konami Digital Entertainment 0.40
## 3606 XB 2002 Platform Microsoft Game Studios 0.39
## 3607 Wii 2008 Action Activision 0.32
## 3608 PSP 2005 Puzzle Ignition Entertainment 0.17
## 3609 PS2 2003 Sports Sega 0.27
## 3610 SNES 1994 Fighting Takara 0.00
## 3611 DS 2006 Simulation Ubisoft 0.49
## 3612 XB 2005 Sports Take-Two Interactive 0.52
## 3613 DS 2008 Misc Nintendo 0.00
## 3614 XOne 2014 Sports Take-Two Interactive 0.28
## 3615 DS 2008 Simulation Ubisoft 0.48
## 3616 PSV 2013 Role-Playing Sony Computer Entertainment 0.18
## 3617 DS 2009 Action Disney Interactive Studios 0.27
## 3618 Wii 2010 Sports Electronic Arts 0.24
## 3619 PS2 2001 Shooter Codemasters 0.27
## 3620 DS 2006 Role-Playing Rising Star Games 0.37
## 3621 Wii 2010 Racing Activision 0.50
## 3622 Wii 2006 Sports Activision 0.51
## 3623 PS2 2001 Racing THQ 0.27
## 3624 DS 2007 Simulation THQ 0.18
## 3625 XB 2006 Sports Electronic Arts 0.42
## 3626 PS3 2011 Action Sony Computer Entertainment 0.39
## 3627 X360 2011 Racing THQ 0.37
## 3628 PS 1998 Role-Playing Kadokawa Shoten 0.27
## 3629 PS3 2015 Fighting Namco Bandai Games 0.15
## 3630 PS 1999 Sports Midway Games 0.31
## 3631 DS 2010 Simulation Activision 0.41
## 3632 X360 2014 Role-Playing Electronic Arts 0.35
## 3633 PS2 2001 Action Eidos Interactive 0.27
## 3634 PS2 2005 Action Konami Digital Entertainment 0.34
## 3635 PS3 2013 Platform Sony Computer Entertainment Europe 0.35
## 3636 XB 2006 Action Electronic Arts 0.42
## 3637 SAT 1994 Racing Sega 0.00
## 3638 Wii 2010 Action Electronic Arts 0.22
## 3639 PS3 2012 Sports Electronic Arts 0.24
## 3640 XB 2002 Fighting THQ 0.40
## 3641 PS 1996 Role-Playing Banpresto 0.00
## 3642 DS 2005 Fighting Nintendo 0.00
## 3643 PS3 2009 Fighting THQ 0.30
## 3644 2600 1982 Sports Activision 0.52
## 3645 PS 2001 Shooter D3Publisher 0.31
## 3646 DS 2009 Misc Destineer 0.52
## 3647 PS 1999 Action Eidos Interactive 0.31
## 3648 SAT 1996 Adventure Sega 0.00
## 3649 3DS 2016 Action Level 5 0.00
## 3650 PS2 2001 Action Sony Computer Entertainment 0.21
## 3651 PS2 2001 Adventure Ubisoft 0.27
## 3652 PSV 2012 Shooter Sony Computer Entertainment 0.29
## 3653 Wii 2010 Fighting Capcom 0.32
## 3654 X360 2007 Action Ubisoft 0.47
## 3655 PS3 2007 Shooter Vivendi Games 0.18
## 3656 PSP 2008 Platform Sony Computer Entertainment 0.33
## 3657 PC 2014 Action Ubisoft 0.17
## 3658 PS2 2004 Sports Enterbrain 0.00
## 3659 PS3 2007 Sports Take-Two Interactive 0.50
## 3660 DS 2008 Sports Activision 0.51
## 3661 DS 2008 Puzzle Deep Silver 0.51
## 3662 XB 2002 Sports Activision 0.34
## 3663 GBA 2002 Platform Capcom 0.22
## 3664 PS 2000 Fighting 3DO 0.31
## 3665 PS4 2014 Action Activision 0.20
## 3666 PS 1996 Shooter LucasArts 0.31
## 3667 PS 1999 Strategy Namco Bandai Games 0.00
## 3668 SAT 1997 Strategy Banpresto 0.00
## 3669 XB 2004 Platform Activision 0.40
## 3670 PS2 2002 Sports Sega 0.00
## 3671 PS3 2010 Shooter Namco Bandai Games 0.18
## 3672 GBA 2001 Action THQ 0.39
## 3673 SAT 1998 Strategy Banpresto 0.00
## 3674 X360 2010 Action Namco Bandai Games 0.30
## 3675 3DS 2012 Role-Playing Xseed Games 0.31
## 3676 Wii 2008 Sports Ubisoft 0.49
## 3677 GBA 2003 Platform THQ 0.39
## 3678 PS3 2010 Action Tecmo Koei 0.11
## 3679 PS 1995 Fighting Sony Computer Entertainment 0.29
## 3680 XB 2002 Shooter Acclaim Entertainment 0.39
## 3681 PS2 2005 Racing Sony Computer Entertainment 0.45
## 3682 X360 2010 Shooter THQ 0.22
## 3683 Wii 2008 Misc THQ 0.51
## 3684 PS2 2003 Misc Codemasters 0.27
## 3685 PS 1996 Misc Microprose 0.30
## 3686 XB 2004 Shooter Take-Two Interactive 0.40
## 3687 PSP 2006 Fighting Atari 0.26
## 3688 PS3 2014 Action Warner Bros. Interactive Entertainment 0.12
## 3689 PS2 2008 Action Sega 0.36
## 3690 PS2 2008 Misc Sony Computer Entertainment 0.00
## 3691 X360 2007 Sports Electronic Arts 0.49
## 3692 PS3 2009 Sports Electronic Arts 0.46
## 3693 XB 2004 Platform THQ 0.40
## 3694 XB 2006 Sports Electronic Arts 0.16
## 3695 PS2 2000 Sports SquareSoft 0.00
## 3696 GB 1999 Role-Playing Imagineer 0.00
## 3697 Wii 2006 Racing Nintendo 0.40
## 3698 X360 2009 Role-Playing Deep Silver 0.29
## 3699 Wii 2008 Racing System 3 Arcade Software 0.07
## 3700 XB 2003 Simulation Konami Digital Entertainment 0.42
## 3701 PSP 2010 Racing Sony Computer Entertainment 0.11
## 3702 PS2 2005 Racing Vivendi Games 0.27
## 3703 X360 2011 Role-Playing Unknown 0.40
## 3704 PS3 2012 Racing Sega 0.08
## 3705 PS3 2011 Misc Ubisoft 0.25
## 3706 PS2 2003 Strategy Square Enix 0.14
## 3707 GBA 2003 Platform THQ 0.39
## 3708 PS3 2015 Action Warner Bros. Interactive Entertainment 0.15
## 3709 DS 2008 Role-Playing Nintendo 0.00
## 3710 DS 2010 Role-Playing Level 5 0.00
## 3711 XOne 2015 Adventure Mojang 0.29
## 3712 PS4 2015 Action Capcom 0.13
## 3713 Wii 2007 Action Take-Two Interactive 0.25
## 3714 PS2 2004 Racing Namco Bandai Games 0.26
## 3715 DS 2010 Puzzle D3Publisher 0.42
## 3716 XB NA Fighting Electronic Arts 0.43
## 3717 2600 1982 Action CPG Products 0.50
## 3718 N64 1999 Action Midway Games 0.43
## 3719 N64 1998 Sports Electronic Arts 0.11
## 3720 PS3 2011 Fighting Namco Bandai Games 0.00
## 3721 X360 2011 Fighting Namco Bandai Games 0.39
## 3722 PS3 2013 Role-Playing Namco Bandai Games 0.21
## 3723 PS 1998 Misc Sony Computer Entertainment 0.09
## 3724 GC 2005 Action Nintendo 0.29
## 3725 PS2 2002 Role-Playing Enix Corporation 0.00
## 3726 DS 2008 Misc Ubisoft 0.24
## 3727 PS 1999 Misc Aruze Corp 0.00
## 3728 X360 2013 Sports Electronic Arts 0.40
## 3729 PSP 2010 Role-Playing Sega 0.12
## 3730 X360 2014 Action Warner Bros. Interactive Entertainment 0.28
## 3731 Wii 2012 Sports Electronic Arts 0.51
## 3732 DS 2008 Role-Playing Rising Star Games 0.33
## 3733 PS3 2009 Shooter Warner Bros. Interactive Entertainment 0.13
## 3734 PS3 2011 Racing Disney Interactive Studios 0.22
## 3735 GBA 2004 Misc THQ 0.39
## 3736 DS 2010 Action Activision 0.32
## 3737 GC 2001 Sports Electronic Arts 0.42
## 3738 DS 2009 Fighting THQ 0.35
## 3739 XB 2004 Shooter Activision 0.46
## 3740 DS 2008 Puzzle Empire Interactive 0.42
## 3741 DS 2006 Shooter Nintendo 0.39
## 3742 PS2 2004 Sports Konami Digital Entertainment 0.00
## 3743 PS2 2003 Sports Sega 0.26
## 3744 3DS 2011 Role-Playing Nintendo 0.00
## 3745 PS2 2006 Platform Activision 0.45
## 3746 PS 2001 Sports Activision 0.30
## 3747 PS4 2016 Action Warner Bros. Interactive Entertainment 0.14
## 3748 X360 2012 Action Disney Interactive Studios 0.32
## 3749 2600 1982 Platform Parker Bros. 0.50
## 3750 DS 2008 Role-Playing Konami Digital Entertainment 0.04
## 3751 PS2 2003 Platform Vivendi Games 0.26
## 3752 PS2 2003 Fighting Sony Computer Entertainment 0.26
## 3753 Wii 2008 Role-Playing Namco Bandai Games 0.22
## 3754 GC NA Sports Electronic Arts 0.41
## 3755 PS2 2005 Action Vivendi Games 0.26
## 3756 PC 2015 Shooter Electronic Arts 0.13
## 3757 SAT 1998 Adventure Sega 0.00
## 3758 DS 2009 Puzzle Rondomedia 0.21
## 3759 PS2 2001 Shooter Namco Bandai Games 0.26
## 3760 PS 1996 Adventure ASCII Entertainment 0.07
## 3761 PS2 2005 Sports Electronic Arts 0.45
## 3762 Wii 2008 Action THQ 0.49
## 3763 PS2 2004 Misc Sony Computer Entertainment 0.26
## 3764 PS3 2013 Role-Playing Nippon Ichi Software 0.25
## 3765 PSP 2010 Role-Playing Square Enix 0.15
## 3766 PS2 2003 Action Eidos Interactive 0.26
## 3767 GBA 2004 Misc N/A 0.38
## 3768 PS2 2004 Sports Electronic Arts 0.44
## 3769 PS 2000 Racing Electronic Arts 0.30
## 3770 PS2 2004 Shooter SCi 0.26
## 3771 XB 2004 Misc Sega 0.40
## 3772 DS 2006 Role-Playing Sega 0.18
## 3773 DS 2009 Simulation Electronic Arts 0.26
## 3774 PS2 2003 Sports Midway Games 0.26
## 3775 PS 1999 Platform Eidos Interactive 0.30
## 3776 PS2 2008 Racing Electronic Arts 0.26
## 3777 XB 2004 Sports Midway Games 0.40
## 3778 PS 1996 Misc Sony Computer Entertainment 0.30
## 3779 WiiU 2015 Action Warner Bros. Interactive Entertainment 0.28
## 3780 X360 2011 Misc Warner Bros. Interactive Entertainment 0.39
## 3781 SNES 1993 Sports Hudson Soft 0.00
## 3782 SNES 1994 Strategy Tecmo Koei 0.00
## 3783 SNES 1993 Sports Tecmo Koei 0.00
## 3784 XB 2005 Action Ubisoft 0.34
## 3785 PS3 2010 Misc Sony Computer Entertainment 0.09
## 3786 WiiU 2015 Platform Nintendo 0.23
## 3787 XB 2005 Racing Electronic Arts 0.32
## 3788 PSP 2011 Sports Electronic Arts 0.12
## 3789 XB 2005 Shooter Electronic Arts 0.32
## 3790 PC 2011 Action Warner Bros. Interactive Entertainment 0.16
## 3791 PS2 2004 Platform Electronic Arts 0.26
## 3792 XB 2002 Action Universal Interactive 0.31
## 3793 PS2 2005 Sports Sony Computer Entertainment 0.26
## 3794 WiiU 2012 Racing Sega 0.20
## 3795 N64 2000 Action Activision 0.43
## 3796 Wii 2008 Simulation 505 Games 0.48
## 3797 PSP 2007 Shooter Ubisoft 0.35
## 3798 GC 2004 Role-Playing Activision 0.41
## 3799 Wii 2010 Adventure Disney Interactive Studios 0.27
## 3800 DS 2010 Simulation Electronic Arts 0.50
## 3801 PS 1997 Strategy SquareSoft 0.00
## 3802 PS3 2011 Shooter Electronic Arts 0.23
## 3803 X360 2009 Shooter Warner Bros. Interactive Entertainment 0.32
## 3804 X360 2010 Sports Electronic Arts 0.28
## 3805 PS3 2007 Racing THQ 0.17
## 3806 DS 2007 Misc Mindscape 0.48
## 3807 PSP 2009 Racing Codemasters 0.08
## 3808 PS2 2001 Action Take-Two Interactive 0.26
## 3809 GC 2002 Action Electronic Arts 0.41
## 3810 PS2 2005 Racing THQ 0.26
## 3811 PS2 2005 Action Take-Two Interactive 0.44
## 3812 PSV 2013 Action Warner Bros. Interactive Entertainment 0.20
## 3813 SNES 1994 Sports Namco Bandai Games 0.00
## 3814 Wii 2008 Action Take-Two Interactive 0.48
## 3815 PS3 2013 Shooter Activision 0.28
## 3816 DS 2009 Puzzle Nintendo 0.30
## 3817 XOne 2014 Misc Ubisoft 0.35
## 3818 PSP 2007 Action Konami Digital Entertainment 0.22
## 3819 N64 1999 Racing Electronic Arts 0.49
## 3820 N64 1996 Sports Nintendo 0.49
## 3821 PS 2000 Misc Aruze Corp 0.00
## 3822 PS2 2003 Shooter Activision 0.26
## 3823 GBA 2005 Sports Nintendo 0.24
## 3824 DC 1999 Simulation Sega 0.00
## 3825 DS 2008 Action Warner Bros. Interactive Entertainment 0.47
## 3826 PS 1999 Adventure Konami Digital Entertainment 0.29
## 3827 Wii 2006 Racing Ubisoft 0.46
## 3828 PS2 2006 Role-Playing Namco Bandai Games 0.00
## 3829 DS 2008 Role-Playing Disney Interactive Studios 0.37
## 3830 DS 2009 Misc Ubisoft 0.09
## 3831 Wii 2009 Fighting Nintendo 0.45
## 3832 PSP 2006 Fighting Electronic Arts 0.46
## 3833 PS2 2007 Action Sega 0.13
## 3834 PS 2001 Role-Playing Square 0.29
## 3835 X360 2007 Sports Electronic Arts 0.47
## 3836 PS 2001 Shooter Sony Computer Entertainment 0.29
## 3837 DS 2009 Shooter LucasArts 0.44
## 3838 PS2 2002 Action Konami Digital Entertainment 0.18
## 3839 PS2 2005 Puzzle Electronic Arts 0.26
## 3840 XB 2002 Sports Electronic Arts 0.39
## 3841 PS3 2008 Action Gamebridge 0.18
## 3842 PS3 2008 Sports Electronic Arts 0.46
## 3843 PS3 2011 Role-Playing Sony Online Entertainment 0.35
## 3844 PS 2000 Fighting Midway Games 0.29
## 3845 NES 1993 Platform Capcom 0.28
## 3846 PS 1999 Action Infogrames 0.29
## 3847 3DS 2014 Role-Playing Square Enix 0.15
## 3848 PS 1998 Fighting Capcom 0.12
## 3849 Wii 2008 Action Take-Two Interactive 0.17
## 3850 X360 2009 Simulation 505 Games 0.23
## 3851 PSV 2012 Action Sony Computer Entertainment 0.26
## 3852 PS3 2007 Action THQ 0.09
## 3853 Wii 2010 Misc Disney Interactive Studios 0.46
## 3854 PS3 2008 Action Activision 0.21
## 3855 PS2 2000 Sports Electronic Arts 0.17
## 3856 PS2 2003 Sports Sega 0.00
## 3857 PS2 2006 Action Eidos Interactive 0.25
## 3858 Wii 2007 Action THQ 0.44
## 3859 PS2 2003 Shooter Electronic Arts 0.25
## 3860 XB 2005 Shooter Activision 0.38
## 3861 GBA 2005 Adventure Disney Interactive Studios 0.37
## 3862 PS3 2007 Action Sony Computer Entertainment 0.36
## 3863 PS3 2006 Sports Electronic Arts 0.47
## 3864 PS2 2005 Action THQ 0.25
## 3865 PS 1999 Strategy SquareSoft 0.10
## 3866 DS 2006 Misc Nintendo 0.00
## 3867 PS2 2005 Sports Electronic Arts 0.25
## 3868 GBA 2002 Sports Activision 0.37
## 3869 GBA 2004 Action Electronic Arts 0.37
## 3870 DS 2007 Misc Ubisoft 0.48
## 3871 PS 1999 Shooter Sony Computer Entertainment 0.17
## 3872 PC 2006 Simulation Electronic Arts 0.46
## 3873 DS 2008 Action Sega 0.35
## 3874 XB 2002 Sports Sega 0.38
## 3875 PS 2001 Sports Electronic Arts 0.29
## 3876 PS2 2002 Misc Sony Computer Entertainment 0.25
## 3877 Wii 2007 Misc Ubisoft 0.46
## 3878 PS2 2002 Action Eidos Interactive 0.13
## 3879 PC 2009 Role-Playing Electronic Arts 0.00
## 3880 X360 2013 Fighting Namco Bandai Games 0.29
## 3881 2600 NA Sports Activision 0.48
## 3882 PS2 2001 Misc Sony Computer Entertainment 0.25
## 3883 XOne 2014 Action Warner Bros. Interactive Entertainment 0.34
## 3884 PSP 2010 Role-Playing Square Enix 0.13
## 3885 PS3 2010 Action Ubisoft 0.17
## 3886 PS 1996 Sports Konami Digital Entertainment 0.08
## 3887 DS 2009 Puzzle Ubisoft 0.35
## 3888 PS2 2002 Racing Midas Interactive Entertainment 0.25
## 3889 PC 2015 Strategy Activision 0.18
## 3890 X360 2012 Sports Electronic Arts 0.29
## 3891 PSP 2009 Fighting Namco Bandai Games 0.12
## 3892 X360 2009 Action Electronic Arts 0.26
## 3893 PS4 2014 Role-Playing Square Enix 0.17
## 3894 Wii 2009 Sports Konami Digital Entertainment 0.12
## 3895 X360 2011 Shooter Activision 0.25
## 3896 DS 2008 Misc Nintendo 0.00
## 3897 GC 2003 Sports Electronic Arts 0.40
## 3898 PS2 2003 Sports Konami Digital Entertainment 0.00
## 3899 PS2 2000 Role-Playing THQ 0.25
## 3900 PS 1997 Sports Interplay 0.28
## 3901 PSP 2006 Sports Electronic Arts 0.47
## 3902 Wii 2008 Sports Sega 0.46
## 3903 Wii 2007 Strategy Nintendo 0.28
## 3904 PSP 2004 Action Tecmo Koei 0.18
## 3905 GBA 2005 Misc THQ 0.37
## 3906 X360 2009 Fighting Namco Bandai Games 0.36
## 3907 N64 1999 Misc THQ 0.41
## 3908 NES 1985 Platform Nintendo 0.00
## 3909 N64 1999 Sports Konami Digital Entertainment 0.01
## 3910 X360 2010 Sports Take-Two Interactive 0.47
## 3911 DS 2009 Action Activision 0.33
## 3912 PS3 2010 Shooter Activision 0.24
## 3913 Wii 2006 Platform THQ 0.45
## 3914 PS3 2008 Action Ubisoft 0.19
## 3915 XB 2003 Sports Electronic Arts 0.44
## 3916 PS 1996 Strategy Banpresto 0.00
## 3917 GBA 2002 Platform THQ 0.37
## 3918 X360 2006 Fighting THQ 0.44
## 3919 PS2 2006 Simulation Namco Bandai Games 0.15
## 3920 PS3 2010 Strategy Ubisoft 0.18
## 3921 PS3 2008 Role-Playing Square Enix 0.32
## 3922 PSP 2007 Racing Atari 0.08
## 3923 WiiU 2015 Action Warner Bros. Interactive Entertainment 0.30
## 3924 DS 2007 Puzzle Nintendo 0.17
## 3925 PSP 2007 Role-Playing Square Enix 0.36
## 3926 PS2 2006 Sports Electronic Arts 0.42
## 3927 PSP 2009 Action Electronic Arts 0.18
## 3928 XOne 2016 Action Microsoft Game Studios 0.27
## 3929 Wii 2010 Action Take-Two Interactive 0.47
## 3930 XB 2004 Misc Crave Entertainment 0.37
## 3931 PS2 2007 Sports Take-Two Interactive 0.25
## 3932 WS 2000 Role-Playing SquareSoft 0.00
## 3933 X360 2006 Racing Electronic Arts 0.42
## 3934 PS4 2015 Action Electronic Arts 0.18
## 3935 PC 2008 Simulation Rondomedia 0.00
## 3936 GBA 2004 Fighting Atari 0.36
## 3937 PC 2012 Action Bethesda Softworks 0.26
## 3938 DS 2007 Simulation THQ 0.46
## 3939 XB 2004 Sports Midway Games 0.37
## 3940 PS2 2004 Action Konami Digital Entertainment 0.25
## 3941 2600 1988 Shooter Activision 0.47
## 3942 PS2 2005 Misc Capcom 0.22
## 3943 XOne 2015 Misc Activision 0.29
## 3944 PS3 2014 Shooter Bethesda Softworks 0.14
## 3945 PS2 2002 Misc Infogrames 0.25
## 3946 DS 2009 Adventure GSP 0.12
## 3947 PS 1997 Sports Sony Computer Entertainment 0.28
## 3948 GBA 2004 Action THQ 0.36
## 3949 X360 2012 Racing Codemasters 0.10
## 3950 X360 2008 Sports Electronic Arts 0.45
## 3951 PS2 2006 Racing Sega 0.42
## 3952 PS2 2003 Platform Warner Bros. Interactive Entertainment 0.25
## 3953 X360 NA Shooter Bethesda Softworks 0.23
## 3954 2600 1983 Action Atari 0.47
## 3955 X360 2011 Adventure Electronic Arts 0.27
## 3956 X360 2011 Action Konami Digital Entertainment 0.10
## 3957 PS3 2006 Sports Electronic Arts 0.31
## 3958 XB 2003 Racing Take-Two Interactive 0.42
## 3959 PS3 2009 Role-Playing Nippon Ichi Software 0.22
## 3960 PS3 2011 Role-Playing Capcom 0.00
## 3961 DS 2005 Fighting Atari 0.14
## 3962 GC 2006 Adventure THQ 0.39
## 3963 PS 2001 Misc THQ 0.28
## 3964 PS2 2001 Action Universal Interactive 0.25
## 3965 PS2 2006 Action Eidos Interactive 0.25
## 3966 PS2 2008 Misc Disney Interactive Studios 0.25
## 3967 2600 1982 Shooter Activision 0.47
## 3968 PS2 2002 Misc Activision 0.25
## 3969 PS2 2008 Platform Vivendi Games 0.25
## 3970 X360 2015 Sports Take-Two Interactive 0.27
## 3971 X360 2014 Action Warner Bros. Interactive Entertainment 0.20
## 3972 Wii 2010 Simulation 505 Games 0.34
## 3973 Wii 2007 Misc Electronic Arts 0.43
## 3974 3DS 2012 Misc Square Enix 0.22
## 3975 PS3 2011 Fighting Nippon Ichi Software 0.27
## 3976 Wii 2006 Sports Electronic Arts 0.46
## 3977 N64 2000 Action THQ 0.40
## 3978 X360 2007 Simulation Konami Digital Entertainment 0.46
## 3979 PS2 2002 Simulation Activision 0.24
## 3980 GBA 2001 Role-Playing Nintendo 0.13
## 3981 Wii 2011 Misc Nintendo 0.27
## 3982 PS2 2004 Strategy Banpresto 0.00
## 3983 DS 2010 Adventure Disney Interactive Studios 0.27
## 3984 X360 2007 Sports Electronic Arts 0.45
## 3985 DS 2004 Action Activision 0.41
## 3986 PS 1995 Sports Jaleco 0.28
## 3987 XB 2004 Fighting Tecmo Koei 0.30
## 3988 PS 1997 Role-Playing ASCII Entertainment 0.11
## 3989 PSV 2013 Sports Electronic Arts 0.11
## 3990 PS2 2002 Shooter LucasArts 0.24
## 3991 PS3 2009 Action Electronic Arts 0.20
## 3992 PS2 2004 Action THQ 0.24
## 3993 X360 2013 Action Konami Digital Entertainment 0.29
## 3994 PS2 2010 Sports Electronic Arts 0.41
## 3995 X360 2012 Sports Take-Two Interactive 0.47
## 3996 XOne 2014 Shooter Sega 0.22
## 3997 DS 2008 Misc Ubisoft 0.46
## 3998 PS2 2004 Role-Playing Capcom 0.11
## 3999 X360 2011 Racing Disney Interactive Studios 0.28
## 4000 Wii 2009 Racing Activision 0.29
## 4001 GC 2004 Sports Activision 0.38
## 4002 PS2 2003 Racing THQ 0.24
## 4003 SNES 1996 Sports Namco Bandai Games 0.00
## 4004 PS3 2008 Action Namco Bandai Games 0.09
## 4005 PS2 2005 Action Activision 0.24
## 4006 GBA 2001 Platform Ubisoft 0.36
## 4007 PS2 2008 Strategy Namco Bandai Games 0.00
## 4008 PS 1996 Role-Playing Sony Computer Entertainment 0.00
## 4009 PS2 2007 Action Eidos Interactive 0.41
## 4010 PS2 2005 Action Activision 0.41
## 4011 PS3 2012 Action Disney Interactive Studios 0.21
## 4012 PS2 2002 Shooter Infogrames 0.24
## 4013 X360 2014 Action Bethesda Softworks 0.25
## 4014 2600 1982 Sports Atari 0.46
## 4015 PS2 2007 Platform THQ 0.24
## 4016 2600 1981 Action Atari 0.46
## 4017 2600 1982 Action Answer Software 0.46
## 4018 3DS 2011 Racing Namco Bandai Games 0.19
## 4019 Wii 2007 Racing THQ 0.46
## 4020 X360 2011 Action Namco Bandai Games 0.30
## 4021 3DS 2011 Action Capcom 0.16
## 4022 3DS 2011 Action Sega 0.26
## 4023 X360 2006 Sports Activision 0.44
## 4024 GBA 2004 Sports Activision 0.35
## 4025 PS3 2011 Racing Sony Computer Entertainment 0.21
## 4026 2600 1980 Sports Activision 0.46
## 4027 PS3 2015 Action Square Enix 0.00
## 4028 PSV 2014 Action Warner Bros. Interactive Entertainment 0.09
## 4029 PS2 2005 Action Atari 0.41
## 4030 X360 2010 Shooter Square Enix 0.20
## 4031 X360 2012 Action Warner Bros. Interactive Entertainment 0.31
## 4032 GC 2002 Fighting THQ 0.38
## 4033 3DS 2013 Platform Sega 0.24
## 4034 GBA 2003 Action THQ 0.35
## 4035 XB 2004 Shooter Electronic Arts 0.34
## 4036 Wii 2008 Adventure Scholastic Inc. 0.45
## 4037 DS 2006 Platform THQ 0.45
## 4038 GC 2003 Simulation Electronic Arts 0.35
## 4039 PS2 2005 Role-Playing Square Enix 0.12
## 4040 DS 2008 Sports Electronic Arts 0.12
## 4041 PS2 2006 Shooter Namco Bandai Games 0.00
## 4042 SNES 1993 Puzzle Nintendo 0.00
## 4043 XB 2006 Action Vivendi Games 0.37
## 4044 Wii 2009 Shooter Activision 0.24
## 4045 3DS 2014 Misc Nintendo 0.18
## 4046 N64 1997 Sports Electronic Arts 0.16
## 4047 X360 2008 Fighting Atari 0.24
## 4048 DS 2010 Action Activision 0.42
## 4049 PC 2010 Shooter Electronic Arts 0.20
## 4050 X360 2012 Shooter Bethesda Softworks 0.28
## 4051 SAT 1997 Sports Sega 0.00
## 4052 PS3 2013 Action 505 Games 0.07
## 4053 PS2 2004 Sports Atari 0.24
## 4054 PS2 2009 Racing Sony Computer Entertainment 0.00
## 4055 PS2 2003 Sports Universal Interactive 0.24
## 4056 3DS 2012 Action Disney Interactive Studios 0.36
## 4057 DS 2013 Action Warner Bros. Interactive Entertainment 0.28
## 4058 PS2 2003 Misc Namco Bandai Games 0.00
## 4059 X360 2008 Adventure Atari 0.14
## 4060 PS 2001 Fighting Atari 0.00
## 4061 PS2 2009 Shooter Activision 0.25
## 4062 PSP 2008 Sports Sega 0.00
## 4063 PC 2008 Shooter City Interactive 0.00
## 4064 GC 2001 Racing Acclaim Entertainment 0.36
## 4065 PS2 2003 Racing Midway Games 0.24
## 4066 PS3 2014 Racing Codemasters 0.07
## 4067 XB 2002 Action Namco Bandai Games 0.36
## 4068 Wii 2009 Sports XS Games 0.45
## 4069 PS 1999 Action Fox Interactive 0.27
## 4070 DS 2008 Adventure Ubisoft 0.08
## 4071 3DS 2011 Racing Ubisoft 0.27
## 4072 PS2 2001 Misc Hudson Soft 0.00
## 4073 3DS 2011 Action Nintendo 0.31
## 4074 PS2 2005 Role-Playing Namco Bandai Games 0.07
## 4075 SNES 1995 Simulation THQ 0.00
## 4076 DS 2007 Action Vivendi Games 0.42
## 4077 PC 2008 Action Ubisoft 0.01
## 4078 PS3 2015 Shooter Electronic Arts 0.12
## 4079 Wii 2007 Action Electronic Arts 0.38
## 4080 DS 2008 Misc Ubisoft 0.44
## 4081 PS3 2009 Shooter Warner Bros. Interactive Entertainment 0.19
## 4082 PSV 2012 Racing Sega 0.12
## 4083 X360 2007 Misc Microsoft Game Studios 0.43
## 4084 Wii 2009 Shooter Electronic Arts 0.33
## 4085 DS 2007 Puzzle Ubisoft 0.00
## 4086 PS2 2007 Action Activision 0.40
## 4087 PSV 2012 Action Konami Digital Entertainment 0.16
## 4088 DS 2006 Role-Playing Nintendo 0.16
## 4089 GBA 2005 Action Activision 0.35
## 4090 Wii 2009 Sports Namco Bandai Games 0.15
## 4091 Wii 2007 Simulation Electronic Arts 0.42
## 4092 3DS 2014 Sports Nintendo 0.15
## 4093 GBA 2004 Racing Zoo Digital Publishing 0.35
## 4094 PS 1999 Role-Playing Konami Digital Entertainment 0.00
## 4095 XB 2004 Sports Electronic Arts 0.36
## 4096 Wii 2009 Action Konami Digital Entertainment 0.23
## 4097 2600 1983 Shooter Atari 0.45
## 4098 SNES 1991 Adventure Konami Digital Entertainment 0.00
## 4099 X360 2008 Misc Microsoft Game Studios 0.27
## 4100 X360 2008 Shooter D3Publisher 0.22
## 4101 X360 2010 Shooter Activision 0.20
## 4102 PS2 2003 Misc Atari 0.24
## 4103 PS2 2006 Action THQ 0.40
## 4104 PS 1999 Fighting Acclaim Entertainment 0.27
## 4105 Wii 2008 Misc System 3 Arcade Software 0.42
## 4106 X360 2006 Sports Electronic Arts 0.44
## 4107 PS 1998 Fighting Activision 0.27
## 4108 PC 2014 Action Activision Blizzard 0.08
## 4109 PSP 2009 Misc MTV Games 0.24
## 4110 DS 2010 Adventure Capcom 0.25
## 4111 X360 2008 Platform Vivendi Games 0.22
## 4112 PSP 2010 Sports Electronic Arts 0.09
## 4113 PS2 2003 Simulation LucasArts 0.24
## 4114 DS 2008 Action Take-Two Interactive 0.44
## 4115 N64 1998 Sports Acclaim Entertainment 0.44
## 4116 N64 1999 Simulation Pack In Soft 0.25
## 4117 PS2 2008 Sports Electronic Arts 0.40
## 4118 PS2 2007 Simulation THQ 0.24
## 4119 WiiU 2012 Action Electronic Arts 0.18
## 4120 DS 2005 Simulation Rising Star Games 0.41
## 4121 PS 1999 Racing Activision 0.27
## 4122 PS3 2011 Role-Playing Unknown 0.26
## 4123 PC 2014 Simulation Sega 0.00
## 4124 PS2 2000 Strategy Electronic Arts 0.23
## 4125 Wii 2010 Racing Electronic Arts 0.18
## 4126 WiiU 2015 Action Activision 0.25
## 4127 X360 2008 Simulation Microsoft Game Studios 0.16
## 4128 DS 2011 Action Take-Two Interactive 0.45
## 4129 Wii 2010 Action Nintendo 0.38
## 4130 PS 1999 Sports 989 Studios 0.27
## 4131 Wii 2007 Platform Activision 0.42
## 4132 GBA 2001 Racing Rebellion 0.34
## 4133 PS3 2007 Action Tecmo Koei 0.14
## 4134 Wii 2008 Action Eidos Interactive 0.14
## 4135 DS 2009 Role-Playing Square Enix 0.12
## 4136 X360 2014 Role-Playing Microsoft Game Studios 0.25
## 4137 XB 2005 Sports Electronic Arts 0.35
## 4138 X360 2006 Sports Electronic Arts 0.19
## 4139 PS2 2009 Action THQ 0.19
## 4140 2600 1981 Racing Activision 0.45
## 4141 Wii 2008 Racing Xplosiv 0.06
## 4142 Wii 2008 Simulation Electronic Arts 0.37
## 4143 PS2 2002 Racing Ignition Entertainment 0.23
## 4144 DS 2009 Racing THQ 0.35
## 4145 Wii 2008 Racing Ubisoft 0.15
## 4146 PS3 NA Platform N/A 0.00
## 4147 PS2 2000 Puzzle Sony Computer Entertainment 0.14
## 4148 2600 1989 Action Activision 0.45
## 4149 PS 1996 Shooter Acclaim Entertainment 0.24
## 4150 N64 1998 Sports Electronic Arts 0.45
## 4151 3DS 2015 Role-Playing Nintendo 0.16
## 4152 2600 NA Fighting Ultravision 0.44
## 4153 PS3 2008 Shooter D3Publisher 0.23
## 4154 X360 2008 Shooter Midway Games 0.25
## 4155 PS2 2002 Fighting Activision 0.23
## 4156 X360 2012 Fighting Capcom 0.31
## 4157 PS2 2006 Action Electronic Arts 0.39
## 4158 Wii 2009 Racing Electronic Arts 0.19
## 4159 DS 2006 Action Ubisoft 0.43
## 4160 X360 2010 Role-Playing Electronic Arts 0.33
## 4161 SNES 1995 Puzzle Compile 0.00
## 4162 PS 2000 Action Midway Games 0.26
## 4163 DS 2005 Platform Konami Digital Entertainment 0.37
## 4164 PS3 2014 Fighting Namco Bandai Games 0.15
## 4165 PS3 2013 Action Activision 0.23
## 4166 PS 1995 Action Psygnosis 0.26
## 4167 PS2 2001 Action Sony Computer Entertainment 0.23
## 4168 PS3 2012 Action Konami Digital Entertainment 0.21
## 4169 X360 2014 Sports Electronic Arts 0.14
## 4170 Wii 2010 Fighting THQ 0.30
## 4171 Wii 2011 Role-Playing Square Enix 0.00
## 4172 PS2 2000 Fighting Empire Interactive 0.05
## 4173 Wii 2008 Simulation Ubisoft 0.42
## 4174 WiiU 2014 Action Warner Bros. Interactive Entertainment 0.23
## 4175 GBA 2002 Platform Nintendo 0.00
## 4176 PS2 2006 Role-Playing Square Enix 0.04
## 4177 PS2 2002 Racing THQ 0.23
## 4178 X360 2007 Role-Playing Microsoft Game Studios 0.41
## 4179 PSV 2012 Action Electronic Arts 0.00
## 4180 PSV 2011 Sports Sega 0.05
## 4181 PC 2009 Strategy THQ 0.00
## 4182 PSP 2007 Racing Sega 0.10
## 4183 DS 2010 Action Level 5 0.00
## 4184 DS 2007 Platform Activision 0.41
## 4185 PS3 2015 Action Disney Interactive Studios 0.14
## 4186 PS2 2005 Racing Midway Games 0.23
## 4187 N64 1998 Platform Nintendo 0.27
## 4188 N64 1997 Racing Titus 0.28
## 4189 N64 1998 Role-Playing Konami Digital Entertainment 0.38
## 4190 PS 1999 Misc Hudson Entertainment 0.00
## 4191 N64 1997 Shooter Midway Games 0.38
## 4192 Wii 2009 Puzzle Electronic Arts 0.34
## 4193 PC 2010 Simulation Electronic Arts 0.00
## 4194 X360 2005 Fighting Tecmo Koei 0.30
## 4195 2600 1987 Action Activision 0.44
## 4196 X360 2011 Action Sega 0.28
## 4197 Wii 2009 Platform Disney Interactive Studios 0.29
## 4198 PS2 2006 Sports Midway Games 0.23
## 4199 XB 2006 Racing Electronic Arts 0.35
## 4200 Wii NA Sports Electronic Arts 0.43
## 4201 XOne 2015 Sports Electronic Arts 0.37
## 4202 PC 2011 Sports Electronic Arts 0.04
## 4203 PS 1999 Misc Codemasters 0.26
## 4204 DS 2007 Action Activision 0.43
## 4205 X360 2013 Sports Take-Two Interactive 0.44
## 4206 SNES 1995 Misc Hudson Soft 0.00
## 4207 PS2 2005 Sports Konami Digital Entertainment 0.00
## 4208 PC 2011 Simulation Electronic Arts 0.00
## 4209 PS2 2009 Racing THQ 0.27
## 4210 PS2 2003 Racing Codemasters 0.23
## 4211 X360 2014 Sports Electronic Arts 0.35
## 4212 GBA 2006 Adventure Disney Interactive Studios 0.33
## 4213 PS2 2005 Misc Activision 0.39
## 4214 3DS 2012 Role-Playing Level 5 0.00
## 4215 PS 1996 Sports Electronic Arts 0.26
## 4216 Wii 2010 Misc Nordic Games 0.00
## 4217 GBA 2005 Action Ubisoft 0.33
## 4218 PS3 2011 Racing THQ 0.24
## 4219 DS 2008 Action Capcom 0.22
## 4220 DS 2007 Puzzle Ignition Entertainment 0.43
## 4221 PS2 2004 Fighting Atari 0.23
## 4222 GC 2005 Misc Nintendo 0.36
## 4223 GC 2004 Action Konami Digital Entertainment 0.30
## 4224 DS 2007 Sports Ubisoft 0.46
## 4225 PS2 2002 Sports Activision 0.23
## 4226 PS2 2007 Adventure Konami Digital Entertainment 0.23
## 4227 DS 2008 Platform Vivendi Games 0.26
## 4228 GBA 2001 Shooter THQ 0.33
## 4229 PS3 2007 Racing THQ 0.35
## 4230 GBA 2004 Puzzle Nintendo 0.25
## 4231 XB 2005 Shooter THQ 0.34
## 4232 GBA 2002 Misc Infogrames 0.33
## 4233 2600 NA Action Atari 0.43
## 4234 Wii 2011 Misc GameMill Entertainment 0.44
## 4235 PS 1999 Sports Ubisoft 0.26
## 4236 Wii 2007 Action Vivendi Games 0.40
## 4237 PS3 2011 Shooter Warner Bros. Interactive Entertainment 0.21
## 4238 GBA 2005 Platform Disney Interactive Studios 0.33
## 4239 PS2 2002 Action Wanadoo 0.20
## 4240 PSP 2007 Shooter Sony Computer Entertainment 0.25
## 4241 SNES 1992 Sports Namco Bandai Games 0.00
## 4242 PS2 2001 Strategy THQ 0.13
## 4243 SNES 1993 Platform Namco Bandai Games 0.00
## 4244 GBA 2002 Platform Activision 0.33
## 4245 PC 2014 Shooter Bethesda Softworks 0.12
## 4246 PS3 2011 Shooter THQ 0.13
## 4247 GBA 2004 Platform THQ 0.33
## 4248 3DS 2012 Action Nintendo 0.20
## 4249 DS 2008 Strategy Take-Two Interactive 0.38
## 4250 PSP 2006 Racing Sony Computer Entertainment 0.37
## 4251 DS 2008 Platform Take-Two Interactive 0.27
## 4252 PS2 2007 Misc Sony Computer Entertainment 0.23
## 4253 PS2 2005 Shooter Ubisoft 0.38
## 4254 Wii 2010 Sports Konami Digital Entertainment 0.36
## 4255 DS 2011 Action Activision 0.34
## 4256 PS2 2005 Fighting Atari 0.38
## 4257 GBA 2001 Platform THQ 0.33
## 4258 PS3 2008 Platform Vivendi Games 0.19
## 4259 PS 1999 Racing Midway Games 0.26
## 4260 PSP 2006 Shooter Ubisoft 0.23
## 4261 DS 2008 Adventure THQ 0.42
## 4262 3DS 2016 Action Nintendo 0.04
## 4263 PS 1996 Sports Sony Computer Entertainment 0.26
## 4264 X360 2013 Action Activision 0.26
## 4265 PS2 2005 Shooter Ubisoft 0.38
## 4266 PS3 2011 Sports Sega 0.09
## 4267 XOne 2014 Sports Electronic Arts 0.30
## 4268 2600 1983 Action Atari 0.43
## 4269 PS2 2002 Action Sony Computer Entertainment 0.22
## 4270 PS2 2003 Misc Sony Computer Entertainment 0.22
## 4271 GBA 2001 Action THQ 0.33
## 4272 GBA 2003 Racing Vivendi Games 0.33
## 4273 PS3 2009 Action LucasArts 0.19
## 4274 PS3 2015 Simulation Koch Media 0.11
## 4275 DS 2006 Fighting Sega 0.30
## 4276 Wii 2011 Sports Electronic Arts 0.43
## 4277 DS 2009 Misc Warner Bros. Interactive Entertainment 0.33
## 4278 XOne 2015 Action Warner Bros. Interactive Entertainment 0.26
## 4279 DS 2011 Misc THQ 0.37
## 4280 PS2 2009 Platform Sony Computer Entertainment 0.22
## 4281 PS2 2002 Misc Hudson Soft 0.00
## 4282 X360 2008 Strategy Electronic Arts 0.18
## 4283 PSP 2006 Action Eidos Interactive 0.09
## 4284 X360 2015 Action Activision 0.24
## 4285 X360 2007 Action Sega 0.30
## 4286 PS 2000 Racing Activision 0.25
## 4287 Wii 2010 Action Warner Bros. Interactive Entertainment 0.29
## 4288 PSV 2015 Role-Playing Namco Bandai Games 0.08
## 4289 PS 1999 Fighting Virgin Interactive 0.25
## 4290 PS2 2005 Shooter NovaLogic 0.22
## 4291 PSP 2007 Racing Electronic Arts 0.02
## 4292 X360 2006 Sports Electronic Arts 0.42
## 4293 X360 2009 Racing Ubisoft 0.24
## 4294 SNES 1994 Shooter Taito 0.00
## 4295 PS2 2002 Role-Playing Atari 0.14
## 4296 X360 2013 Platform Ubisoft 0.19
## 4297 GBA 2003 Role-Playing Nintendo 0.00
## 4298 PS3 2010 Role-Playing Tecmo Koei 0.22
## 4299 Wii 2009 Adventure Activision 0.42
## 4300 3DS 2015 Puzzle Nintendo 0.05
## 4301 X360 2010 Action Electronic Arts 0.21
## 4302 XB 2003 Sports Microsoft Game Studios 0.36
## 4303 Wii 2010 Misc Disney Interactive Studios 0.43
## 4304 PS 1995 Simulation Sony Computer Entertainment 0.25
## 4305 Wii 2007 Action Disney Interactive Studios 0.39
## 4306 PS3 2011 Shooter THQ 0.20
## 4307 PS3 2011 Misc Sony Computer Entertainment 0.00
## 4308 PSV 2015 Misc Nippon Ichi Software 0.13
## 4309 PS3 2009 Role-Playing Namco Bandai Games 0.00
## 4310 XOne 2014 Action Square Enix 0.26
## 4311 PSP 2009 Action Ubisoft Annecy 0.03
## 4312 GBA 2005 Platform THQ 0.33
## 4313 PSV 2013 Role-Playing Namco Bandai Games 0.15
## 4314 PS 1999 Shooter Atari 0.25
## 4315 3DS 2014 Action Warner Bros. Interactive Entertainment 0.21
## 4316 Wii 2007 Adventure Activision 0.42
## 4317 SNES 1996 Sports Konami Digital Entertainment 0.00
## 4318 PS4 2014 Adventure Telltale Games 0.12
## 4319 PS2 2005 Sports Konami Digital Entertainment 0.00
## 4320 GC 2003 Action Atari 0.34
## 4321 Wii 2008 Platform Vivendi Games 0.36
## 4322 XB 2004 Racing Electronic Arts 0.34
## 4323 SNES 1995 Sports Epoch 0.00
## 4324 DS 2007 Puzzle Majesco Entertainment 0.42
## 4325 GC 2002 Role-Playing Infogrames 0.23
## 4326 DS 2012 Misc Activision 0.03
## 4327 PS2 2002 Action BAM! Entertainment 0.22
## 4328 PSV 2012 Shooter Sony Computer Entertainment 0.21
## 4329 Wii 2012 Sports Take-Two Interactive 0.39
## 4330 3DS 2011 Fighting Ubisoft Annecy 0.13
## 4331 XB NA Shooter Vivendi Games 0.32
## 4332 DS 2008 Misc Ubisoft 0.41
## 4333 PS2 2006 Sports Electronic Arts 0.38
## 4334 PC 2014 Action Ubisoft 0.14
## 4335 Wii 2008 Misc Konami Digital Entertainment 0.42
## 4336 X360 2011 Sports Take-Two Interactive 0.40
## 4337 X360 2008 Shooter Activision 0.30
## 4338 2600 1985 Puzzle Activision 0.42
## 4339 PS 1998 Sports 989 Studios 0.25
## 4340 PS2 2005 Shooter Midway Games 0.22
## 4341 PS 1998 Sports Namco Bandai Games 0.00
## 4342 X360 2007 Racing Sega 0.12
## 4343 PS2 2004 Sports Electronic Arts 0.22
## 4344 X360 2008 Fighting Midway Games 0.26
## 4345 XB 2003 Shooter Activision 0.34
## 4346 Wii 2007 Strategy LucasArts 0.39
## 4347 2600 1981 Simulation Atari 0.42
## 4348 PS3 2010 Action Activision 0.26
## 4349 X360 2011 Shooter Warner Bros. Interactive Entertainment 0.30
## 4350 DS 2007 Misc Ubisoft 0.41
## 4351 PS4 2016 Shooter Electronic Arts 0.17
## 4352 Wii 2009 Misc MTV Games 0.42
## 4353 PS3 2015 Sports Konami Digital Entertainment 0.08
## 4354 PS 1998 Action Activision 0.25
## 4355 DS 2009 Action Activision 0.27
## 4356 Wii 2009 Sports Konami Digital Entertainment 0.09
## 4357 GBA 2004 Misc Konami Digital Entertainment 0.32
## 4358 PS3 2009 Misc Sony Computer Entertainment 0.11
## 4359 PSV 2013 Role-Playing Namco Bandai Games 0.00
## 4360 Wii 2009 Action Nintendo 0.10
## 4361 PS2 2001 Sports Konami Digital Entertainment 0.00
## 4362 PS4 2015 Action Namco Bandai Games 0.08
## 4363 PS2 2003 Action THQ 0.22
## 4364 SNES 1993 Fighting Takara 0.00
## 4365 N64 1998 Action GT Interactive 0.36
## 4366 N64 2000 Puzzle Nintendo 0.36
## 4367 PS3 2008 Role-Playing Atari 0.19
## 4368 Wii 2009 Simulation Konami Digital Entertainment 0.26
## 4369 3DS 2014 Sports Electronic Arts 0.09
## 4370 Wii 2007 Simulation Ubisoft 0.41
## 4371 DS 2007 Action Activision 0.41
## 4372 GBA 2001 Fighting Infogrames 0.32
## 4373 PS2 2006 Role-Playing Tecmo Koei 0.22
## 4374 PS 1995 Role-Playing Atlus 0.00
## 4375 DS 2009 Misc Activision 0.21
## 4376 X360 2012 Fighting Namco Bandai Games 0.26
## 4377 GBA 2004 Racing THQ 0.32
## 4378 X360 2008 Action Sega 0.16
## 4379 2600 NA Action Atari 0.42
## 4380 PS 1995 Action Namco Bandai Games 0.00
## 4381 X360 NA Action Konami Digital Entertainment 0.25
## 4382 PS2 2009 Misc Sony Computer Entertainment 0.00
## 4383 PSP 2010 Shooter Sony Computer Entertainment 0.17
## 4384 PS 1999 Role-Playing Square 0.00
## 4385 PS2 2008 Misc Disney Interactive Studios 0.09
## 4386 X360 2009 Sports Electronic Arts 0.40
## 4387 PS2 2004 Action Tecmo Koei 0.04
## 4388 PS3 2007 Sports Activision 0.36
## 4389 PS 1994 Sports Sony Computer Entertainment 0.25
## 4390 XB 2005 Fighting THQ 0.34
## 4391 X360 2010 Sports 505 Games 0.38
## 4392 PSP 2007 Strategy THQ 0.04
## 4393 GC 2004 Sports Electronic Arts 0.35
## 4394 2600 1987 Shooter Atari 0.42
## 4395 GC 2004 Fighting THQ 0.35
## 4396 DS 2005 Action Square Enix 0.13
## 4397 XB 2003 Racing Acclaim Entertainment 0.36
## 4398 PS 2000 Racing Eidos Interactive 0.25
## 4399 PS2 2002 Racing Electronic Arts 0.22
## 4400 PS 1996 Role-Playing Konami Digital Entertainment 0.14
## 4401 WiiU 2015 Sports Nintendo 0.13
## 4402 Wii 2008 Sports Electronic Arts 0.18
## 4403 2600 1981 Action Tigervision 0.42
## 4404 PS2 2004 Action THQ 0.22
## 4405 GBA 2004 Sports Nintendo 0.32
## 4406 PSP 2008 Platform Vivendi Games 0.11
## 4407 Wii 2009 Misc Konami Digital Entertainment 0.24
## 4408 DS 2009 Simulation 505 Games 0.42
## 4409 XOne 2013 Misc Ubisoft 0.30
## 4410 PS2 2004 Misc Konami Digital Entertainment 0.22
## 4411 PS3 2013 Shooter 505 Games 0.21
## 4412 PS2 2006 Sports Spike 0.37
## 4413 PS2 2005 Misc Sony Computer Entertainment 0.37
## 4414 XB 2005 Sports Konami Digital Entertainment 0.06
## 4415 N64 1999 Sports Electronic Arts 0.42
## 4416 PS2 2004 Action Konami Digital Entertainment 0.22
## 4417 PS2 2005 Misc THQ 0.37
## 4418 X360 2015 Action Disney Interactive Studios 0.19
## 4419 DS 2009 Puzzle Warner Bros. Interactive Entertainment 0.30
## 4420 PS2 2002 Adventure Vivendi Games 0.22
## 4421 WiiU 2015 Action Disney Interactive Studios 0.20
## 4422 PS2 2004 Action Activision 0.22
## 4423 XB 2005 Role-Playing Activision 0.30
## 4424 Wii 2009 Misc Namco Bandai Games 0.41
## 4425 X360 2012 Action Activision 0.28
## 4426 PS3 2013 Action Deep Silver 0.14
## 4427 DS 2004 Simulation Electronic Arts 0.40
## 4428 PS2 2003 Action Electronic Arts 0.22
## 4429 XB 2006 Action Electronic Arts 0.33
## 4430 X360 2013 Action Capcom 0.26
## 4431 XOne 2016 Shooter Electronic Arts 0.26
## 4432 PS 1996 Sports Namco Bandai Games 0.00
## 4433 XB 2002 Sports Electronic Arts 0.35
## 4434 PS2 2005 Shooter Electronic Arts 0.37
## 4435 Wii 2009 Action Disney Interactive Studios 0.19
## 4436 Wii 2009 Action D3Publisher 0.25
## 4437 XB 2005 Action Vivendi Games 0.33
## 4438 GBA 2003 Platform Nintendo 0.00
## 4439 PS 1997 Shooter Fox Interactive 0.25
## 4440 X360 2011 Racing Electronic Arts 0.18
## 4441 PS 1999 Racing SquareSoft 0.07
## 4442 PS3 2012 Action Tecmo Koei 0.19
## 4443 X360 2011 Shooter Ubisoft 0.28
## 4444 XB 2006 Action LucasArts 0.33
## 4445 Wii 2008 Misc Ubisoft 0.10
## 4446 DS 2007 Misc Ubisoft 0.40
## 4447 X360 2007 Shooter Take-Two Interactive 0.36
## 4448 PS2 2005 Shooter Namco Bandai Games 0.00
## 4449 PS 2000 Puzzle Namco Bandai Games 0.25
## 4450 PS 1996 Role-Playing Crystal Dynamics 0.25
## 4451 SNES 1996 Puzzle Hudson Soft 0.00
## 4452 NES 1991 Puzzle Hudson Soft 0.16
## 4453 N64 1997 Shooter GT Interactive 0.35
## 4454 Wii 2009 Shooter Nintendo 0.20
## 4455 Wii 2009 Misc Knowledge Adventure 0.41
## 4456 PS3 2010 Action 505 Games 0.18
## 4457 GC 2005 Misc THQ 0.34
## 4458 PS2 2007 Strategy Banpresto 0.00
## 4459 PS 2001 Action 3DO 0.24
## 4460 DS 2007 Simulation Ubisoft 0.41
## 4461 DS 2007 Simulation Activision 0.40
## 4462 PSP 2009 Strategy Konami Digital Entertainment 0.19
## 4463 XB 2004 Racing THQ 0.34
## 4464 PS2 2002 Sports Konami Digital Entertainment 0.00
## 4465 PS 2000 Sports Sony Computer Entertainment 0.24
## 4466 GC 2004 Fighting Tomy Corporation 0.00
## 4467 DS 2010 Action THQ 0.26
## 4468 GC 2003 Platform Nintendo 0.34
## 4469 GBA 2003 Action THQ 0.31
## 4470 2600 NA Puzzle Atari 0.41
## 4471 PS2 2003 Misc Namco Bandai Games 0.00
## 4472 DS 2010 Sports Mastiff 0.41
## 4473 X360 NA Action Vivendi Games 0.26
## 4474 PS3 2012 Misc Ubisoft 0.26
## 4475 GC 2002 Shooter Eidos Interactive 0.34
## 4476 GBA 2003 Action Majesco Entertainment 0.31
## 4477 X360 2012 Action Capcom 0.28
## 4478 GC 2002 Adventure Nintendo 0.34
## 4479 GBA 2004 Action THQ 0.31
## 4480 PS2 2005 Fighting Atari 0.36
## 4481 PS2 2009 Misc Sony Computer Entertainment 0.00
## 4482 SAT 1996 Adventure Sega 0.00
## 4483 Wii 2007 Platform THQ 0.40
## 4484 PS2 2005 Action Namco Bandai Games 0.00
## 4485 DS 2010 Simulation Konami Digital Entertainment 0.00
## 4486 PS2 2002 Sports Midway Games 0.21
## 4487 Wii 2011 Misc Ubisoft 0.41
## 4488 PS2 2007 Action THQ 0.36
## 4489 PSP 2007 Fighting Atari 0.19
## 4490 DS 2006 Puzzle Nintendo 0.16
## 4491 XB 2002 Simulation Activision 0.35
## 4492 Wii 2009 Sports Mastiff 0.41
## 4493 GBA 2004 Adventure Nintendo 0.26
## 4494 PS3 2010 Role-Playing Sega 0.19
## 4495 3DS 2011 Puzzle Tetris Online 0.20
## 4496 DS 2009 Misc Take-Two Interactive 0.39
## 4497 PS2 2003 Action Sony Computer Entertainment 0.21
## 4498 N64 2001 Sports Electronic Arts 0.41
## 4499 GBA 2004 Racing Electronic Arts 0.31
## 4500 PS2 2008 Action Activision 0.17
## 4501 PS 2001 Shooter Take-Two Interactive 0.24
## 4502 XB 2001 Sports Electronic Arts 0.32
## 4503 GBA 2005 Simulation THQ 0.31
## 4504 PC 2013 Sports Electronic Arts 0.01
## 4505 PS2 2005 Action Disney Interactive Studios 0.36
## 4506 PS4 2014 Racing Ubisoft 0.13
## 4507 DS 2010 Misc THQ 0.41
## 4508 SAT 1996 Platform Sega 0.00
## 4509 XB 2003 Sports Electronic Arts 0.40
## 4510 PC 2016 Shooter Activision 0.22
## 4511 XOne 2015 Misc Harmonix Music Systems 0.35
## 4512 Wii 2010 Sports Electronic Arts 0.38
## 4513 PS2 2003 Action Electronic Arts 0.21
## 4514 WiiU 2016 Misc Microsoft Game Studios 0.18
## 4515 PS 2001 Sports Sony Computer Entertainment 0.24
## 4516 PS4 2014 Action Square Enix 0.16
## 4517 PS2 2000 Shooter Eidos Interactive 0.21
## 4518 2600 1981 Action Activision 0.40
## 4519 PS2 2004 Role-Playing Namco Bandai Games 0.21
## 4520 DS 2009 Role-Playing Rising Star Games 0.28
## 4521 GBA 2002 Platform BAM! Entertainment 0.31
## 4522 GBA 2003 Platform Capcom 0.18
## 4523 SNES 1994 Simulation Enix Corporation 0.00
## 4524 Wii 2010 Sports Electronic Arts 0.23
## 4525 PS3 2010 Role-Playing Nippon Ichi Software 0.12
## 4526 X360 2012 Shooter Take-Two Interactive 0.21
## 4527 GBA 2004 Misc N/A 0.31
## 4528 PS2 2009 Action Atari 0.15
## 4529 PS2 2003 Action Interplay 0.21
## 4530 Wii 2010 Action Activision 0.24
## 4531 X360 2007 Strategy Electronic Arts 0.35
## 4532 N64 1998 Racing Midway Games 0.28
## 4533 N64 1997 Platform Nintendo 0.25
## 4534 PC 2012 Shooter Take-Two Interactive 0.15
## 4535 DS 2008 Simulation Ubisoft 0.39
## 4536 DS 2006 Platform Konami Digital Entertainment 0.33
## 4537 Wii NA Sports Unknown 0.40
## 4538 PS2 2004 Sports Sony Computer Entertainment 0.36
## 4539 Wii 2013 Sports Electronic Arts 0.00
## 4540 PS2 2003 Role-Playing Sony Online Entertainment 0.21
## 4541 PS 1996 Sports Sony Computer Entertainment 0.10
## 4542 DS 2009 Adventure ChunSoft 0.37
## 4543 PS2 2001 Simulation Namco Bandai Games 0.09
## 4544 PS3 2012 Simulation Konami Digital Entertainment 0.21
## 4545 PS3 2007 Action Electronic Arts 0.16
## 4546 PSP 2006 Role-Playing Ubisoft 0.17
## 4547 PS2 2008 Misc Electronic Arts 0.21
## 4548 PS2 2006 Role-Playing Square Enix 0.07
## 4549 PC 2006 Simulation Microsoft Game Studios 0.02
## 4550 XOne 2014 Action Warner Bros. Interactive Entertainment 0.23
## 4551 GC 2002 Sports Electronic Arts 0.33
## 4552 Wii 2009 Racing Electronic Arts 0.39
## 4553 X360 2008 Misc Disney Interactive Studios 0.39
## 4554 GBA 2002 Sports Atari 0.31
## 4555 WiiU 2012 Shooter Activision 0.21
## 4556 PS3 2010 Action Disney Interactive Studios 0.27
## 4557 XB 2003 Misc Midway Games 0.33
## 4558 DS 2009 Shooter Activision 0.37
## 4559 Wii 2007 Simulation Ubisoft 0.39
## 4560 DS 2011 Action Ubisoft 0.24
## 4561 PS2 2009 Action Activision 0.21
## 4562 PS 1997 Sports 989 Studios 0.24
## 4563 PS4 2014 Action Activision 0.18
## 4564 PS2 2005 Misc Sega 0.21
## 4565 PSP 2007 Action Disney Interactive Studios 0.15
## 4566 PSP 2006 Racing THQ 0.11
## 4567 DS 2006 Action D3Publisher 0.39
## 4568 SAT 1997 Role-Playing Sega 0.00
## 4569 PSP 2011 Strategy Banpresto 0.00
## 4570 GC 2002 Sports Electronic Arts 0.33
## 4571 DS 2009 Action D3Publisher 0.22
## 4572 PSP 2009 Action D3Publisher 0.13
## 4573 DS 2008 Role-Playing Square Enix 0.23
## 4574 PS2 2007 Platform Vivendi Games 0.21
## 4575 GBA 2001 Role-Playing Capcom 0.14
## 4576 PS3 2009 Misc Warner Bros. Interactive Entertainment 0.24
## 4577 PS2 2006 Shooter Eidos Interactive 0.35
## 4578 PS2 2005 Sports Take-Two Interactive 0.21
## 4579 GC 2003 Shooter Electronic Arts 0.33
## 4580 XB 2003 Simulation Electronic Arts 0.31
## 4581 X360 2009 Misc Activision 0.23
## 4582 PS2 2003 Adventure Sony Computer Entertainment 0.21
## 4583 PS 1999 Adventure Sony Computer Entertainment 0.24
## 4584 SNES 1991 Action Namco Bandai Games 0.00
## 4585 PS 1998 Action Psygnosis 0.24
## 4586 3DS 2013 Role-Playing Rising Star Games 0.22
## 4587 GC 2005 Sports Activision 0.33
## 4588 X360 2011 Sports Take-Two Interactive 0.15
## 4589 GBA 2004 Platform Nintendo 0.00
## 4590 DS 2008 Platform Vivendi Games 0.39
## 4591 Wii 2007 Shooter Electronic Arts 0.34
## 4592 PSP 2007 Strategy Konami Digital Entertainment 0.03
## 4593 PS 1997 Simulation Psygnosis 0.24
## 4594 PS2 2003 Sports Acclaim Entertainment 0.21
## 4595 PS 2003 Sports Gotham Games 0.23
## 4596 PSV 2012 Role-Playing GungHo 0.22
## 4597 DS 2010 Action Electronic Arts 0.20
## 4598 DS 2006 Simulation Ubisoft 0.38
## 4599 DS 2009 Action THQ 0.42
## 4600 PS 2001 Racing Electronic Arts 0.23
## 4601 SAT 1997 Role-Playing ESP 0.00
## 4602 XB 2004 Sports Global Star 0.32
## 4603 GBA 2005 Misc Konami Digital Entertainment 0.30
## 4604 PS2 2003 Racing THQ 0.21
## 4605 PS2 2007 Action THQ 0.21
## 4606 PS2 2002 Action Atari 0.21
## 4607 Wii 2007 Platform Sega 0.33
## 4608 PS2 2004 Racing Zoo Digital Publishing 0.35
## 4609 X360 2010 Shooter Sega 0.19
## 4610 GBA 2004 Action Ubisoft 0.30
## 4611 DS 2009 Fighting THQ 0.37
## 4612 GBA 2004 Platform Activision 0.30
## 4613 PS 1998 Racing TYO 0.23
## 4614 PSP 2005 Sports Electronic Arts 0.39
## 4615 PS 1999 Role-Playing Sony Computer Entertainment 0.00
## 4616 DS 2007 Misc Telegames 0.39
## 4617 PSP 2008 Fighting Namco Bandai Games 0.00
## 4618 XB 2002 Racing Atari 0.35
## 4619 PS2 2004 Sports Konami Digital Entertainment 0.00
## 4620 DS 2010 Adventure Capcom 0.20
## 4621 PS2 2003 Action THQ 0.21
## 4622 N64 1998 Racing Midway Games 0.35
## 4623 N64 2000 Sports Midway Games 0.34
## 4624 N64 2001 Puzzle Nintendo 0.34
## 4625 N64 1999 Sports Konami Digital Entertainment 0.00
## 4626 N64 2000 Shooter 3DO 0.34
## 4627 GC 2004 Shooter Electronic Arts 0.32
## 4628 PS3 2010 Misc MTV Games 0.19
## 4629 PS4 2015 Action Bethesda Softworks 0.09
## 4630 PS2 2008 Sports Sony Computer Entertainment 0.35
## 4631 XOne 2014 Action Disney Interactive Studios 0.24
## 4632 XB 2004 Simulation Konami Digital Entertainment 0.32
## 4633 GC 2004 Platform Capcom 0.32
## 4634 X360 2006 Simulation Ubisoft 0.36
## 4635 SNES 1995 Sports Namco Bandai Games 0.00
## 4636 GBA 2004 Misc N/A 0.30
## 4637 PS2 2008 Sports Activision 0.21
## 4638 DS 2010 Misc Namco Bandai Games 0.00
## 4639 GC 2005 Action Electronic Arts 0.32
## 4640 Wii 2009 Adventure Knowledge Adventure 0.39
## 4641 PS2 2007 Strategy LucasArts 0.20
## 4642 DS 2009 Simulation Ubisoft 0.35
## 4643 X360 2005 Action Sega 0.36
## 4644 PS 2001 Action Capcom 0.14
## 4645 Wii 2008 Racing Activision 0.39
## 4646 PS2 2002 Shooter Universal Interactive 0.20
## 4647 GC 2005 Puzzle Sega 0.32
## 4648 PS2 2005 Action Konami Digital Entertainment 0.18
## 4649 PS3 2010 Action Ubisoft 0.21
## 4650 DS 2008 Simulation Rising Star Games 0.22
## 4651 PS 1998 Sports Konami Digital Entertainment 0.02
## 4652 GBA 2001 Platform THQ 0.30
## 4653 XB 2006 Shooter Electronic Arts 0.31
## 4654 Wii 2007 Adventure Nintendo 0.18
## 4655 XB 2006 Action THQ 0.31
## 4656 PSP 2009 Action LucasArts 0.21
## 4657 PSP 2010 Action Take-Two Interactive 0.39
## 4658 WiiU 2015 Misc Nintendo 0.19
## 4659 3DS 2016 Action Nintendo 0.16
## 4660 PS3 2010 Action Electronic Arts 0.13
## 4661 Wii 2011 Sports Namco Bandai Games 0.16
## 4662 PS3 2011 Fighting THQ 0.16
## 4663 XB 2004 Role-Playing Electronic Arts 0.31
## 4664 PSP 2010 Sports Sega 0.00
## 4665 PS2 2007 Action Disney Interactive Studios 0.20
## 4666 PS 2000 Adventure Capcom 0.17
## 4667 PS 1997 Fighting Capcom 0.16
## 4668 PS2 2004 Misc Mud Duck Productions 0.20
## 4669 PSP 2007 Platform Konami Digital Entertainment 0.22
## 4670 PS2 2004 Action Midway Games 0.20
## 4671 SAT 1995 Fighting Sega 0.00
## 4672 PS3 2009 Puzzle Namco Bandai Games 0.26
## 4673 XB 2001 Simulation LucasArts 0.30
## 4674 X360 2007 Shooter Vivendi Games 0.36
## 4675 PS2 2003 Sports Acclaim Entertainment 0.20
## 4676 PS2 2003 Simulation Konami Digital Entertainment 0.15
## 4677 DS 2009 Action Atari 0.26
## 4678 3DS 2013 Action Screenlife 0.00
## 4679 PS2 2003 Misc Sony Computer Entertainment 0.20
## 4680 GBA 2001 Adventure BAM! Entertainment 0.30
## 4681 PS2 2003 Sports Sony Computer Entertainment 0.20
## 4682 GBA 2001 Adventure Ubisoft 0.30
## 4683 PSV 2013 Misc Nippon Ichi Software 0.14
## 4684 PC NA Role-Playing Unknown 0.24
## 4685 PC 1998 Action Eidos Interactive 0.41
## 4686 PS2 2010 Sports Konami Digital Entertainment 0.04
## 4687 DC 1999 Racing Sega 0.00
## 4688 PS 1998 Shooter Activision 0.23
## 4689 PS2 2007 Action Vivendi Games 0.34
## 4690 PC 2007 Shooter Take-Two Interactive 0.01
## 4691 PS3 2007 Racing THQ 0.37
## 4692 PS2 2010 Sports Sony Computer Entertainment 0.20
## 4693 PS 2000 Misc Hasbro Interactive 0.23
## 4694 XB 2005 Shooter Ubisoft 0.26
## 4695 PSP 2009 Fighting Namco Bandai Games 0.00
## 4696 PS 2000 Sports Sony Computer Entertainment 0.23
## 4697 PS 1999 Action Take-Two Interactive 0.23
## 4698 PS 2000 Sports Konami Digital Entertainment 0.00
## 4699 PS3 2015 Shooter Activision 0.16
## 4700 SAT 1995 Action Namco Bandai Games 0.00
## 4701 X360 2012 Action Electronic Arts 0.28
## 4702 PSP 2009 Shooter Activision 0.17
## 4703 X360 2014 Shooter Bethesda Softworks 0.18
## 4704 DS 2009 Adventure THQ 0.15
## 4705 X360 2015 Simulation Koch Media 0.21
## 4706 PS2 2002 Platform THQ 0.20
## 4707 DS 2007 Misc Square Enix 0.00
## 4708 DS 2008 Platform Konami Digital Entertainment 0.31
## 4709 PS3 2010 Fighting PQube 0.21
## 4710 PS2 2006 Action Activision 0.20
## 4711 PSP 2007 Action Warner Bros. Interactive Entertainment 0.27
## 4712 SAT 1996 Adventure Sega 0.00
## 4713 PS2 2005 Adventure THQ 0.34
## 4714 Wii 2009 Misc Ubisoft 0.28
## 4715 Wii 2009 Simulation Electronic Arts 0.36
## 4716 PS3 2012 Action Electronic Arts 0.37
## 4717 PS 1996 Racing Pioneer LDC 0.23
## 4718 PSV 2015 Action Warner Bros. Interactive Entertainment 0.09
## 4719 Wii 2009 Misc Hudson Soft 0.00
## 4720 PSP 2009 Action THQ 0.24
## 4721 X360 2008 Action Activision 0.36
## 4722 PS2 2002 Adventure Sony Computer Entertainment 0.00
## 4723 Wii 2011 Misc THQ 0.36
## 4724 PSP 2009 Racing THQ 0.29
## 4725 X360 2011 Simulation THQ 0.30
## 4726 PS 1997 Strategy Virgin Interactive 0.23
## 4727 DS 2009 Action LucasArts 0.23
## 4728 NES 1985 Puzzle Namco Bandai Games 0.00
## 4729 N64 1999 Role-Playing Nintendo 0.10
## 4730 N64 1999 Action Titus 0.33
## 4731 PS3 2008 Sports Electronic Arts 0.08
## 4732 PS2 2002 Action Atari 0.20
## 4733 PSV 2014 Action Warner Bros. Interactive Entertainment 0.05
## 4734 PS2 2007 Role-Playing Sony Computer Entertainment 0.20
## 4735 PS 1997 Simulation Sony Computer Entertainment 0.13
## 4736 Wii 2009 Racing Zoo Games 0.39
## 4737 Wii 2008 Sports RTL 0.18
## 4738 X360 2010 Misc MTV Games 0.24
## 4739 PS 1999 Simulation Taito 0.00
## 4740 PS3 2012 Action Activision 0.19
## 4741 PC 2014 Shooter Activision 0.14
## 4742 Wii 2011 Misc THQ 0.26
## 4743 PS3 2010 Misc Electronic Arts 0.16
## 4744 PS2 2009 Misc Activision 0.15
## 4745 WiiU 2013 Action Nintendo 0.20
## 4746 Wii 2010 Action Rising Star Games 0.21
## 4747 X360 2006 Shooter Electronic Arts 0.35
## 4748 PS2 2001 Simulation Metro 3D 0.11
## 4749 PS2 2006 Misc Sony Computer Entertainment 0.20
## 4750 GC 2002 Fighting Midway Games 0.31
## 4751 Wii 2006 Role-Playing Activision 0.37
## 4752 PS2 2010 Action Take-Two Interactive 0.34
## 4753 PSP 2010 Misc Namco Bandai Games 0.00
## 4754 PS 1996 Misc Empire Interactive 0.23
## 4755 PS 1998 Sports Magical Company 0.15
## 4756 PS2 2008 Sports Take-Two Interactive 0.34
## 4757 GBA 2001 Misc Konami Digital Entertainment 0.00
## 4758 Wii 2008 Racing Warner Bros. Interactive Entertainment 0.36
## 4759 X360 2010 Action 505 Games 0.21
## 4760 Wii 2008 Simulation Electronic Arts 0.34
## 4761 PS3 2008 Fighting Midway Games 0.22
## 4762 X360 2011 Misc Ubisoft 0.29
## 4763 PC 2011 Shooter Take-Two Interactive 0.18
## 4764 PSP 2010 Misc Sega 0.00
## 4765 PS2 2009 Role-Playing Activision 0.23
## 4766 SNES 1995 Puzzle Nintendo 0.00
## 4767 PS2 2005 Platform Midway Games 0.34
## 4768 SNES 1994 Sports Konami Digital Entertainment 0.00
## 4769 PS2 2001 Platform Ubisoft 0.20
## 4770 XOne 2015 Shooter Take-Two Interactive 0.24
## 4771 X360 2011 Shooter Microsoft Game Studios 0.26
## 4772 PS 2000 Fighting Electronic Arts 0.23
## 4773 PS2 2005 Action Electronic Arts 0.34
## 4774 PC 2012 Action Electronic Arts 0.02
## 4775 PS3 2012 Action Capcom 0.18
## 4776 DS 2009 Action Ubisoft 0.19
## 4777 DS 2009 Misc Mentor Interactive 0.38
## 4778 PS2 2002 Action Activision 0.20
## 4779 PS 2003 Misc Sony Computer Entertainment 0.23
## 4780 PS 2001 Sports Sony Computer Entertainment 0.23
## 4781 2600 1983 Adventure Atari 0.38
## 4782 PS3 2008 Misc Disney Interactive Studios 0.08
## 4783 3DS 2014 Simulation Nintendo 0.00
## 4784 X360 2007 Action Ubisoft 0.36
## 4785 2600 1981 Action Coleco 0.38
## 4786 Wii 2010 Action Sega 0.17
## 4787 PSV 2014 Misc Sega 0.13
## 4788 X360 2007 Strategy Codemasters 0.34
## 4789 GC 2003 Platform THQ 0.31
## 4790 PS3 2007 Action Activision 0.32
## 4791 PS3 2008 Sports Sega 0.13
## 4792 3DS NA Action Warner Bros. Interactive Entertainment 0.18
## 4793 WiiU 2013 Role-Playing Square Enix 0.00
## 4794 PS3 2008 Platform THQ 0.12
## 4795 GB 1997 Role-Playing Imagineer 0.00
## 4796 PS2 2009 Sports Take-Two Interactive 0.33
## 4797 PS2 2002 Misc Midway Games 0.20
## 4798 PS2 NA Sports Unknown 0.20
## 4799 Wii 2012 Action Activision 0.38
## 4800 Wii 2009 Misc Namco Bandai Games 0.00
## 4801 PS3 2014 Action Square Enix 0.10
## 4802 2600 1982 Action Sega 0.37
## 4803 PS2 2005 Role-Playing Midway Games 0.20
## 4804 GC 2003 Sports Electronic Arts 0.31
## 4805 DS 2005 Strategy Nintendo 0.30
## 4806 DS 2009 Action Konami Digital Entertainment 0.27
## 4807 PS2 2008 Action Tecmo Koei 0.00
## 4808 PSP 2005 Fighting THQ 0.36
## 4809 PS2 2008 Action Disney Interactive Studios 0.20
## 4810 GBA 2005 Action THQ 0.29
## 4811 PS 1997 Strategy Sony Computer Entertainment 0.00
## 4812 GC 2005 Strategy Nintendo 0.25
## 4813 PS 1999 Sports 989 Studios 0.22
## 4814 GC 2004 Action THQ 0.31
## 4815 XOne 2014 Misc Ubisoft 0.29
## 4816 SNES 1994 Fighting Takara 0.00
## 4817 XOne 2014 Sports Electronic Arts 0.31
## 4818 Wii 2007 Action Ubisoft 0.34
## 4819 Wii 2009 Action Square Enix 0.22
## 4820 PS3 2009 Sports Activision Value 0.37
## 4821 XOne 2016 Sports Electronic Arts 0.23
## 4822 SAT 1995 Fighting Sega 0.00
## 4823 PS 1999 Sports 989 Studios 0.22
## 4824 PS3 2010 Action Sega 0.14
## 4825 PS2 2008 Platform Vivendi Games 0.12
## 4826 PSP 2011 Misc Namco Bandai Games 0.00
## 4827 N64 1999 Racing Nintendo 0.32
## 4828 N64 1997 Racing Kemco 0.32
## 4829 N64 1999 Sports Acclaim Entertainment 0.37
## 4830 N64 1997 Fighting Midway Games 0.32
## 4831 PS2 2001 Racing Acclaim Entertainment 0.20
## 4832 PS2 2004 Misc Atari 0.33
## 4833 PS 1999 Platform Infogrames 0.22
## 4834 X360 2010 Sports Electronic Arts 0.27
## 4835 DS 2009 Adventure Focus Home Interactive 0.06
## 4836 PS2 2007 Racing Activision 0.20
## 4837 PS2 2005 Sports Sony Computer Entertainment 0.33
## 4838 X360 2009 Action LucasArts 0.18
## 4839 PS2 2007 Sports 505 Games 0.20
## 4840 PC 2010 Action Take-Two Interactive 0.17
## 4841 GBA 2001 Action THQ 0.29
## 4842 Wii 2009 Action THQ 0.38
## 4843 XB 2005 Racing THQ 0.32
## 4844 GC 2006 Action Midway Games 0.31
## 4845 DS 2009 Action Sega 0.22
## 4846 GC 2004 Simulation Electronic Arts 0.24
## 4847 PS 1999 Racing Electronic Arts 0.22
## 4848 GBA 2006 Role-Playing Nintendo 0.00
## 4849 GBA 2004 Action THQ 0.29
## 4850 DS 2007 Puzzle Eidos Interactive 0.34
## 4851 X360 2010 Sports Activision 0.32
## 4852 X360 2009 Fighting THQ 0.20
## 4853 WiiU 2014 Sports Nintendo 0.19
## 4854 X360 2007 Action Eidos Interactive 0.12
## 4855 PS 1999 Misc Vivendi Games 0.22
## 4856 SNES 1995 Role-Playing ChunSoft 0.00
## 4857 WiiU 2013 Platform Sega 0.24
## 4858 PS3 2008 Action Sega 0.17
## 4859 PS3 NA Action Konami Digital Entertainment 0.18
## 4860 GC 2002 Shooter Activision 0.31
## 4861 XB 2001 Sports Electronic Arts 0.35
## 4862 PS 2000 Adventure Sony Computer Entertainment 0.00
## 4863 PS3 2012 Simulation Namco Bandai Games 0.09
## 4864 PS2 2003 Platform Sony Computer Entertainment 0.19
## 4865 PS 1996 Strategy Virgin Interactive 0.22
## 4866 PS2 NA Simulation Unknown 0.19
## 4867 PS3 2010 Sports Electronic Arts 0.22
## 4868 PC 2010 Role-Playing Electronic Arts 0.01
## 4869 PS2 2004 Strategy Namco Bandai Games 0.00
## 4870 GC 2004 Shooter Activision 0.31
## 4871 DS 2010 Action Warner Bros. Interactive Entertainment 0.26
## 4872 DS 2007 Role-Playing D3Publisher 0.37
## 4873 X360 2015 Adventure Square Enix 0.17
## 4874 X360 2006 Action Eidos Interactive 0.29
## 4875 SNES 1995 Role-Playing Namco Bandai Games 0.00
## 4876 X360 2010 Role-Playing Sega 0.23
## 4877 PS2 2005 Racing Jester Interactive 0.33
## 4878 PS2 2004 Fighting Konami Digital Entertainment 0.19
## 4879 PS3 2013 Misc Ubisoft 0.17
## 4880 PS2 2007 Action Take-Two Interactive 0.19
## 4881 XB 2005 Action Activision 0.26
## 4882 PS3 2013 Racing Codemasters 0.07
## 4883 3DS 2012 Action Warner Bros. Interactive Entertainment 0.19
## 4884 PS2 2007 Racing THQ 0.19
## 4885 PS3 2015 Action Activision 0.15
## 4886 N64 1998 Sports Electronic Arts 0.38
## 4887 Wii 2009 Sports Take-Two Interactive 0.36
## 4888 PS3 2011 Role-Playing Square Enix 0.17
## 4889 PS3 2008 Action Sega 0.14
## 4890 Wii 2007 Sports 505 Games 0.36
## 4891 DS 2008 Racing Activision 0.37
## 4892 PSP 2011 Role-Playing Level 5 0.00
## 4893 PS 2000 Racing Hasbro Interactive 0.22
## 4894 PS 1997 Fighting Virgin Interactive 0.22
## 4895 2600 1982 Racing Mattel Interactive 0.37
## 4896 PS2 2002 Shooter Namco Bandai Games 0.00
## 4897 GBA 2003 Action THQ 0.28
## 4898 Wii 2008 Fighting Tomy Corporation 0.34
## 4899 PS2 2008 Sports Electronic Arts 0.32
## 4900 PSP 2011 Action LucasArts 0.14
## 4901 XB 2002 Shooter Sega 0.29
## 4902 Wii 2008 Role-Playing Rising Star Games 0.18
## 4903 GBA 2002 Role-Playing Nintendo 0.00
## 4904 PSP 2009 Action THQ 0.39
## 4905 3DS 2011 Sports Electronic Arts 0.08
## 4906 DS 2008 Sports Ubisoft 0.36
## 4907 X360 2012 Shooter Take-Two Interactive 0.24
## 4908 PSP 2008 Sports Electronic Arts 0.23
## 4909 2600 1981 Action Activision 0.37
## 4910 DS 2008 Misc Activision 0.36
## 4911 PSP 2006 Platform Sony Computer Entertainment 0.14
## 4912 PS 1998 Sports Take-Two Interactive 0.22
## 4913 DS 2008 Misc THQ 0.36
## 4914 GC 2004 Misc Nintendo 0.30
## 4915 PS4 2013 Misc Ubisoft 0.18
## 4916 PS3 2013 Adventure Konami Digital Entertainment 0.31
## 4917 PS 2001 Role-Playing Enterbrain 0.00
## 4918 3DS 2012 Role-Playing Namco Bandai Games 0.18
## 4919 X360 2011 Shooter THQ 0.18
## 4920 PSV 2012 Racing Sony Computer Entertainment 0.14
## 4921 DS 2009 Racing Electronic Arts 0.22
## 4922 Wii 2011 Adventure Nintendo 0.19
## 4923 DS 2005 Platform Nintendo 0.34
## 4924 X360 2010 Sports Electronic Arts 0.18
## 4925 3DS 2011 Strategy Ubisoft 0.25
## 4926 Wii 2011 Misc Namco Bandai Games 0.00
## 4927 PC 2005 Strategy Microsoft Game Studios 0.00
## 4928 XB 2003 Sports Electronic Arts 0.29
## 4929 PS3 2015 Sports Sony Computer Entertainment 0.30
## 4930 GBA 2004 Sports Electronic Arts 0.28
## 4931 N64 1999 Sports Acclaim Entertainment 0.36
## 4932 N64 2000 Fighting Nintendo 0.00
## 4933 N64 1998 Racing Acclaim Entertainment 0.31
## 4934 N64 1999 Action 3DO 0.31
## 4935 PS3 NA Action Vivendi Games 0.18
## 4936 GC 2005 Adventure Nintendo 0.23
## 4937 PC 2009 Simulation Ubisoft 0.00
## 4938 PS2 2003 Misc Sony Computer Entertainment 0.19
## 4939 Wii 2008 Misc Activision 0.36
## 4940 PS2 2000 Fighting Ubisoft 0.16
## 4941 PS2 2002 Action Eidos Interactive 0.19
## 4942 Wii 2010 Misc Warner Bros. Interactive Entertainment 0.37
## 4943 WiiU 2012 Action Activision 0.23
## 4944 WiiU 2012 Misc Ubisoft 0.22
## 4945 SNES 1991 Fighting Human Entertainment 0.00
## 4946 PS2 2005 Sports Activision 0.19
## 4947 PS3 2006 Role-Playing Activision 0.33
## 4948 DS 2009 Adventure THQ 0.24
## 4949 PS3 2008 Racing Capcom 0.07
## 4950 Wii 2008 Simulation Ubisoft 0.34
## 4951 PS2 2003 Misc Ubisoft 0.19
## 4952 PS3 2013 Sports Electronic Arts 0.16
## 4953 SNES 1992 Fighting Takara 0.00
## 4954 X360 2013 Simulation Focus Home Interactive 0.22
## 4955 GB 2001 Role-Playing Banpresto 0.00
## 4956 Wii 2007 Adventure Ubisoft 0.35
## 4957 3DS 2011 Sports Electronic Arts 0.36
## 4958 GBA 2005 Simulation Electronic Arts 0.28
## 4959 PS2 2006 Platform Vivendi Games 0.19
## 4960 PS3 2014 Sports Sony Computer Entertainment America 0.35
## 4961 SNES 1994 Sports Namco Bandai Games 0.00
## 4962 PS2 2002 Racing Capcom 0.19
## 4963 XB 2005 Shooter Ubisoft 0.29
## 4964 DS 2009 Misc Avanquest 0.26
## 4965 Wii 2009 Sports 505 Games 0.36
## 4966 PS2 2007 Sports Electronic Arts 0.19
## 4967 PS2 2008 Misc Konami Digital Entertainment 0.19
## 4968 2600 1981 Action Data Age 0.36
## 4969 PS 1999 Simulation Konami Digital Entertainment 0.00
## 4970 3DS 2011 Action Tecmo Koei 0.12
## 4971 X360 2006 Action Eidos Interactive 0.27
## 4972 DS 2009 Action Activision 0.20
## 4973 Wii 2009 Misc Nordic Games 0.00
## 4974 GBA 2003 Sports Electronic Arts 0.28
## 4975 DS 2007 Misc Ubisoft 0.38
## 4976 PS4 2015 Action Deep Silver 0.13
## 4977 PS2 2003 Action THQ 0.19
## 4978 3DS 2013 Action Namco Bandai Games 0.05
## 4979 DS 2008 Role-Playing Sega 0.16
## 4980 PS 1996 Sports Electronic Arts Victor 0.21
## 4981 PS3 2009 Sports Sega 0.09
## 4982 SNES 1991 Sports Nintendo 0.00
## 4983 PS2 2003 Role-Playing Ghostlight 0.07
## 4984 GB 1998 Platform Nintendo 0.00
## 4985 PS 1997 Racing GT Interactive 0.21
## 4986 PSV 2013 Role-Playing Nippon Ichi Software 0.16
## 4987 PS 1998 Racing Human Entertainment 0.00
## 4988 DS 2009 Simulation Ubisoft 0.24
## 4989 XB 2004 Sports Sega 0.29
## 4990 PS2 2007 Action Warner Bros. Interactive Entertainment 0.19
## 4991 Wii 2008 Sports Activision Value 0.36
## 4992 Wii 2009 Role-Playing Rising Star Games 0.17
## 4993 PS2 2007 Strategy Namco Bandai Games 0.00
## 4994 WiiU 2012 Action Warner Bros. Interactive Entertainment 0.17
## 4995 PS3 2008 Misc Disney Interactive Studios 0.27
## 4996 Wii 2009 Misc Pinnacle 0.00
## 4997 PSV 2015 Role-Playing Namco Bandai Games 0.00
## 4998 PS3 2010 Sports Black Bean Games 0.15
## 4999 GBA 2005 Platform Jack of All Games 0.27
## 5000 PSP 2009 Fighting Namco Bandai Games 0.13
## 5001 PS2 2001 Sports Sony Computer Entertainment 0.19
## 5002 GC 2002 Shooter Acclaim Entertainment 0.30
## 5003 X360 2015 Shooter Activision 0.22
## 5004 DS 2007 Simulation Atari 0.07
## 5005 PS2 2002 Strategy Namco Bandai Games 0.00
## 5006 GBA 2002 Action Ubisoft 0.27
## 5007 PS2 2008 Sports Sega 0.10
## 5008 PS2 2002 Action Sega 0.19
## 5009 PS3 2007 Sports Electronic Arts 0.29
## 5010 SAT 1995 Role-Playing Atlus 0.00
## 5011 3DS 2011 Platform Ubisoft 0.11
## 5012 PS3 2007 Sports Electronic Arts 0.35
## 5013 GC 2005 Fighting Electronic Arts 0.30
## 5014 PS3 2014 Sports Electronic Arts 0.21
## 5015 PS 1994 Sports Sony Computer Entertainment 0.11
## 5016 XOne 2016 Racing Microsoft Game Studios 0.15
## 5017 Wii 2009 Action Codemasters 0.12
## 5018 PS 1998 Action Eidos Interactive 0.21
## 5019 PS 2000 Strategy Namco Bandai Games 0.00
## 5020 PS2 2005 Misc THQ 0.19
## 5021 PS2 2004 Racing Empire Interactive 0.19
## 5022 3DS 2013 Adventure Capcom 0.00
## 5023 GC 2003 Sports Electronic Arts 0.29
## 5024 PS2 2010 Sports Electronic Arts 0.19
## 5025 PS4 2015 Role-Playing Namco Bandai Games 0.16
## 5026 GBA 2004 Action Disney Interactive Studios 0.27
## 5027 3DS 2012 Action Konami Digital Entertainment 0.15
## 5028 PS2 2003 Strategy Atari 0.19
## 5029 DS 2006 Misc Nintendo 0.31
## 5030 PS3 2006 Sports Take-Two Interactive 0.30
## 5031 PS 1996 Action Namco Bandai Games 0.00
## 5032 PS2 2002 Role-Playing Enix Corporation 0.07
## 5033 PS2 2000 Shooter Konami Digital Entertainment 0.19
## 5034 GB 1991 Role-Playing SquareSoft 0.00
## 5035 Wii 2009 Sports Sega 0.13
## 5036 PS2 2008 Platform Take-Two Interactive 0.19
## 5037 PS2 2008 Action Sega 0.32
## 5038 PS2 2008 Shooter Electronic Arts 0.21
## 5039 Wii 2011 Sports Activision 0.34
## 5040 PS3 2010 Fighting Electronic Arts 0.16
## 5041 PSP 2010 Action Sega 0.18
## 5042 Wii 2009 Racing Codemasters 0.11
## 5043 SAT 1996 Simulation Konami Digital Entertainment 0.00
## 5044 PS 1999 Action Sony Computer Entertainment 0.21
## 5045 DS 2009 Misc Activision 0.13
## 5046 XB 2002 Action Interplay 0.28
## 5047 PS2 2007 Racing THQ 0.32
## 5048 PS 1998 Racing GT Interactive 0.21
## 5049 SNES 1995 Strategy Banpresto 0.00
## 5050 PSP 2007 Sports Electronic Arts 0.14
## 5051 GC 2003 Adventure Nintendo 0.24
## 5052 PSP 2011 Misc Namco Bandai Games 0.00
## 5053 3DS 2012 Role-Playing Atlus 0.12
## 5054 PS 2000 Racing Sony Computer Entertainment 0.21
## 5055 PS 1999 Sports 989 Sports 0.21
## 5056 WiiU 2012 Action Warner Bros. Interactive Entertainment 0.26
## 5057 PS3 2016 Sports Electronic Arts 0.02
## 5058 PC 2011 Action THQ 0.16
## 5059 PS4 2014 Misc Ubisoft 0.19
## 5060 PS2 2008 Action Activision 0.12
## 5061 Wii 2010 Simulation Activision 0.32
## 5062 2600 NA Puzzle Atari 0.35
## 5063 DS 2008 Simulation Ubisoft 0.35
## 5064 Wii 2010 Misc MTV Games 0.22
## 5065 2600 1982 Action Atari 0.35
## 5066 DS 2010 Racing Activision 0.35
## 5067 PSV 2013 Action Tecmo Koei 0.05
## 5068 PS2 2004 Misc Sony Computer Entertainment 0.18
## 5069 XB 2005 Simulation Konami Digital Entertainment 0.28
## 5070 PS3 2014 Fighting Namco Bandai Games 0.00
## 5071 PS2 2010 Fighting THQ 0.24
## 5072 PC 2010 Racing Electronic Arts 0.12
## 5073 DS 2006 Platform Vivendi Games 0.34
## 5074 3DS 2011 Sports Konami Digital Entertainment 0.11
## 5075 3DS 2011 Role-Playing Ghostlight 0.28
## 5076 DS 2009 Role-Playing Namco Bandai Games 0.13
## 5077 Wii 2009 Fighting THQ 0.31
## 5078 PS3 2011 Shooter Sega 0.15
## 5079 PSP NA Action Sega 0.11
## 5080 GC 2004 Action Electronic Arts 0.29
## 5081 X360 2005 Shooter Activision 0.32
## 5082 DS 2008 Adventure Ubisoft 0.35
## 5083 2600 1986 Shooter Atari 0.35
## 5084 DS 2008 Simulation Ubisoft 0.35
## 5085 PS2 2006 Fighting Atari 0.09
## 5086 DS 2009 Simulation THQ 0.35
## 5087 WiiU 2012 Sports Ubisoft 0.21
## 5088 PS3 2014 Shooter Sega 0.12
## 5089 DS 2008 Fighting Takara Tomy 0.19
## 5090 PS3 2009 Action Konami Digital Entertainment 0.13
## 5091 DS 2007 Platform Vivendi Games 0.32
## 5092 PS 1997 Fighting SquareSoft 0.00
## 5093 DS 2010 Action Scholastic Inc. 0.35
## 5094 X360 2009 Misc Electronic Arts 0.12
## 5095 PS2 2008 Sports Electronic Arts 0.16
## 5096 GC 2005 Action Activision 0.29
## 5097 PS4 2016 Adventure Square Enix 0.14
## 5098 X360 2007 Role-Playing Microsoft Game Studios 0.18
## 5099 XB 2002 Sports Microsoft Game Studios 0.28
## 5100 Wii 2007 Sports Take-Two Interactive 0.34
## 5101 X360 2006 Sports Spike 0.34
## 5102 PS 1994 Shooter Sony Computer Entertainment 0.08
## 5103 PS2 2006 Simulation Ubisoft 0.18
## 5104 Wii 2009 Action Eidos Interactive 0.17
## 5105 PC 2016 Shooter Ubisoft 0.20
## 5106 PSP 2011 Role-Playing Sega 0.00
## 5107 DS 2008 Simulation Ubisoft 0.34
## 5108 XOne 2015 Action Warner Bros. Interactive Entertainment 0.21
## 5109 GC 2002 Platform THQ 0.29
## 5110 PS2 2003 Sports Natsume 0.18
## 5111 PS2 2004 Sports Activision 0.18
## 5112 PSP 2010 Action Ubisoft 0.09
## 5113 PS2 2006 Action Midway Games 0.18
## 5114 PS2 2002 Sports 3DO 0.18
## 5115 PSP 2010 Sports Electronic Arts 0.35
## 5116 SNES 1994 Sports Human Entertainment 0.00
## 5117 SAT 1995 Shooter Sega 0.00
## 5118 Wii 2011 Sports Electronic Arts 0.21
## 5119 PC 2011 Shooter Bethesda Softworks 0.14
## 5120 PS2 2007 Action Activision 0.31
## 5121 PS 1998 Adventure Sony Computer Entertainment 0.00
## 5122 X360 2011 Role-Playing Square Enix 0.21
## 5123 PSP 2007 Racing THQ 0.06
## 5124 Wii 2009 Sports Destineer 0.35
## 5125 N64 2000 Role-Playing ChunSoft 0.00
## 5126 N64 1999 Shooter Acclaim Entertainment 0.30
## 5127 N64 2000 Action THQ 0.30
## 5128 2600 1981 Action Imagic 0.35
## 5129 GC 2004 Role-Playing Nintendo 0.29
## 5130 PSP 2012 Action Electronic Arts 0.05
## 5131 PS3 2009 Strategy Electronic Arts 0.14
## 5132 PSP 2007 Action Electronic Arts 0.10
## 5133 PC 2008 Strategy Sega 0.00
## 5134 GC 2002 Action Nintendo 0.28
## 5135 DS 2007 Puzzle Namco Bandai Games 0.00
## 5136 GBA 2003 Sports Knowledge Adventure 0.26
## 5137 PS3 2009 Platform Capcom 0.12
## 5138 X360 2009 Shooter Warner Bros. Interactive Entertainment 0.17
## 5139 GBA 2003 Adventure Square Enix 0.00
## 5140 PS4 2015 Action Bethesda Softworks 0.11
## 5141 PSP 2006 Role-Playing Activision 0.33
## 5142 PSP 2005 Sports Electronic Arts 0.34
## 5143 SNES 1994 Strategy Banpresto 0.00
## 5144 PS2 2006 Sports Electronic Arts 0.17
## 5145 N64 1999 Sports Konami Digital Entertainment 0.37
## 5146 3DS 2014 Misc Square Enix 0.13
## 5147 DS 2005 Simulation Nintendo 0.30
## 5148 SNES 1994 Role-Playing Atlus 0.00
## 5149 PS2 2006 Role-Playing Namco Bandai Games 0.09
## 5150 Wii 2008 Simulation Game Factory 0.34
## 5151 PC 2014 Strategy Take-Two Interactive 0.11
## 5152 PC 2011 Action Electronic Arts 0.09
## 5153 DC 1998 Fighting Sega 0.00
## 5154 PS3 2011 Action Activision 0.11
## 5155 GB 1997 Strategy ASCII Entertainment 0.00
## 5156 PS4 2013 Platform Activision 0.20
## 5157 PSV 2012 Action Warner Bros. Interactive Entertainment 0.17
## 5158 PS4 2015 Misc Harmonix Music Systems 0.25
## 5159 PC 2009 Shooter Valve Software 0.00
## 5160 PS2 2007 Simulation Electronic Arts 0.30
## 5161 PSP 2006 Sports Electronic Arts 0.34
## 5162 Wii 2008 Action Disney Interactive Studios 0.31
## 5163 XB NA Sports Electronic Arts 0.31
## 5164 DS 2009 Racing Activision 0.25
## 5165 DS 2007 Sports Atari 0.33
## 5166 GC 2004 Shooter Electronic Arts 0.28
## 5167 SNES 1994 Sports Media Rings 0.00
## 5168 PS2 2008 Fighting Namco Bandai Games 0.08
## 5169 SAT 1996 Adventure Elf 0.00
## 5170 X360 2010 Action Ubisoft 0.24
## 5171 PS2 2001 Sports Konami Digital Entertainment 0.18
## 5172 DS NA Puzzle Unknown 0.32
## 5173 PS4 2016 Action Capcom 0.09
## 5174 SNES 1994 Fighting Human Entertainment 0.00
## 5175 SNES 1993 Fighting Namco Bandai Games 0.00
## 5176 PS2 2002 Adventure ChunSoft 0.00
## 5177 PS2 2003 Sports 3DO 0.18
## 5178 PS2 2005 Action Vivendi Games 0.18
## 5179 PS2 2005 Shooter Midway Games 0.18
## 5180 DS 2010 Fighting Namco Bandai Games 0.00
## 5181 PSP 2006 Role-Playing Square Enix 0.17
## 5182 PSP 2008 Sports Electronic Arts 0.07
## 5183 X360 2013 Action Deep Silver 0.17
## 5184 X360 2013 Sports Electronic Arts 0.21
## 5185 PSP 2008 Platform Sony Computer Entertainment 0.21
## 5186 PS2 2001 Simulation Tecmo Koei 0.11
## 5187 PS2 2005 Action THQ 0.18
## 5188 X360 2010 Action Activision 0.24
## 5189 X360 2009 Fighting PQube 0.21
## 5190 PS 1997 Simulation Activision 0.20
## 5191 PS3 2013 Shooter D3Publisher 0.04
## 5192 GBA 2002 Action Nintendo 0.26
## 5193 PS2 2001 Role-Playing Sony Computer Entertainment 0.14
## 5194 Wii 2009 Misc Ubisoft 0.33
## 5195 PS 1997 Action Namco Bandai Games 0.00
## 5196 GBA NA Action Unknown 0.26
## 5197 X360 NA Strategy Kalypso Media 0.20
## 5198 DS 2008 Racing Warner Bros. Interactive Entertainment 0.29
## 5199 Wii 2009 Sports Take-Two Interactive 0.33
## 5200 WiiU 2012 Action Ubisoft 0.19
## 5201 SNES 1997 Platform Nintendo 0.00
## 5202 PS 1997 Sports Starfish 0.20
## 5203 PS2 2000 Sports Sony Computer Entertainment 0.18
## 5204 XB 2005 Action Take-Two Interactive 0.27
## 5205 NES 1993 Action Ocean 0.25
## 5206 N64 1997 Action Konami Digital Entertainment 0.07
## 5207 N64 1997 Puzzle Nintendo 0.29
## 5208 N64 2000 Action THQ 0.29
## 5209 PSV 2013 Fighting Marvelous Entertainment 0.13
## 5210 Wii 2008 Sports Zushi Games 0.33
## 5211 PS 2001 Racing Activision 0.20
## 5212 PS3 2009 Misc Activision 0.20
## 5213 GBA 2001 Sports Activision 0.26
## 5214 Wii 2008 Sports Bethesda Softworks 0.33
## 5215 XB 2004 Simulation Microsoft Game Studios 0.27
## 5216 PC 2014 Action Warner Bros. Interactive Entertainment 0.12
## 5217 GBA 2002 Simulation Jorudan 0.00
## 5218 SNES 1994 Role-Playing Laguna 0.00
## 5219 WiiU 2013 Shooter Activision 0.23
## 5220 PS 1999 Racing LEGO Media 0.20
## 5221 Wii 2011 Sports Take-Two Interactive 0.30
## 5222 Wii 2009 Fighting Ubisoft 0.33
## 5223 X360 2011 Misc Microsoft Game Studios 0.27
## 5224 XB 2003 Sports Sega 0.27
## 5225 DS 2007 Racing Destination Software, Inc 0.33
## 5226 PS2 2005 Fighting Atari 0.00
## 5227 X360 2015 Misc Ubisoft 0.23
## 5228 DS 2007 Strategy THQ 0.07
## 5229 PS2 2004 Sports Zoo Digital Publishing 0.18
## 5230 PS2 2004 Sports Sega 0.00
## 5231 PS3 2010 Action Capcom 0.18
## 5232 PS3 2012 Shooter Activision 0.11
## 5233 PSP 2012 Strategy Namco Bandai Games 0.00
## 5234 Wii 2011 Fighting THQ 0.24
## 5235 PS2 2003 Platform Take-Two Interactive 0.18
## 5236 PS2 2003 Role-Playing Sony Computer Entertainment 0.18
## 5237 PS 2000 Simulation Konami Digital Entertainment 0.00
## 5238 PS3 2008 Adventure Sega 0.00
## 5239 Wii 2009 Misc Mindscape 0.00
## 5240 GBA 2001 Strategy Banpresto 0.00
## 5241 PC NA Action Square Enix 0.06
## 5242 Wii 2007 Action Zoo Digital Publishing 0.33
## 5243 PC 2013 Strategy THQ 0.06
## 5244 PS3 2013 Shooter Trion Worlds 0.19
## 5245 Wii 2011 Misc Nordic Games 0.00
## 5246 PS 1995 Fighting New 0.00
## 5247 2600 1981 Action Mattel Interactive 0.33
## 5248 Wii 2010 Simulation Konami Digital Entertainment 0.29
## 5249 XB 2002 Action Electronic Arts 0.27
## 5250 X360 2010 Fighting Electronic Arts 0.23
## 5251 PSP 2011 Role-Playing Namco Bandai Games 0.00
## 5252 PS 1998 Racing Acclaim Entertainment 0.20
## 5253 SNES 1994 Platform Konami Digital Entertainment 0.00
## 5254 PS3 2008 Misc Electronic Arts 0.25
## 5255 DS 2010 Platform Capcom 0.21
## 5256 PS2 2001 Racing Midway Games 0.17
## 5257 PSP 2009 Action Electronic Arts 0.24
## 5258 PS2 2009 Sports Take-Two Interactive 0.17
## 5259 PSP 2009 Sports Sega 0.00
## 5260 DC 1999 Sports Sega 0.00
## 5261 DS 2008 Adventure Take-Two Interactive 0.33
## 5262 PS 1997 Racing Psygnosis 0.06
## 5263 XB 2001 Platform TDK Mediactive 0.25
## 5264 DS 2009 Adventure Ubisoft 0.16
## 5265 PSP 2007 Shooter Sony Computer Entertainment 0.32
## 5266 PS 1998 Action Sony Computer Entertainment 0.20
## 5267 Wii 2006 Simulation Nintendo 0.28
## 5268 GBA 2005 Sports Atari 0.25
## 5269 XOne 2016 Role-Playing Namco Bandai Games 0.23
## 5270 PS2 2005 Sports Zoo Digital Publishing 0.17
## 5271 GC 2005 Adventure THQ 0.27
## 5272 PS2 2006 Role-Playing Konami Digital Entertainment 0.08
## 5273 GB 1996 Puzzle Nintendo 0.00
## 5274 PS3 2013 Action Capcom 0.10
## 5275 Wii 2007 Strategy Nintendo 0.22
## 5276 PS2 2004 Sports Global Star 0.17
## 5277 Wii 2010 Misc THQ 0.25
## 5278 3DS 2013 Action Namco Bandai Games 0.00
## 5279 PS3 2010 Sports Sega 0.09
## 5280 PS2 2003 Misc Hudson Soft 0.00
## 5281 PS3 2009 Action Eidos Interactive 0.14
## 5282 X360 2012 Fighting Namco Bandai Games 0.19
## 5283 PS2 2003 Action Ubisoft 0.17
## 5284 GBA 2002 Action Activision 0.25
## 5285 XB 2003 Sports Zoo Digital Publishing 0.26
## 5286 X360 2009 Shooter Warner Bros. Interactive Entertainment 0.13
## 5287 PS2 2006 Sports Konami Digital Entertainment 0.00
## 5288 3DS 2014 Role-Playing Nintendo 0.08
## 5289 WiiU 2016 Shooter Nintendo 0.16
## 5290 SNES 1995 Action Laguna 0.04
## 5291 DS 2009 Action Eidos Interactive 0.17
## 5292 SNES 1993 Racing Nintendo 0.00
## 5293 PS2 2001 Fighting Virgin Interactive 0.15
## 5294 PS2 2003 Racing THQ 0.17
## 5295 PS 2000 Role-Playing Atlus 0.03
## 5296 GBA 2003 Action THQ 0.25
## 5297 DS 2011 Fighting Namco Bandai Games 0.00
## 5298 PS3 2011 Fighting Namco Bandai Games 0.20
## 5299 Wii 2010 Misc Konami Digital Entertainment 0.31
## 5300 DS 2008 Simulation Electronic Arts 0.30
## 5301 Wii 2009 Adventure Disney Interactive Studios 0.13
## 5302 Wii 2013 Strategy Activision 0.21
## 5303 Wii NA Action N/A 0.15
## 5304 DS 2007 Platform Capcom 0.23
## 5305 N64 2000 Sports Konami Digital Entertainment 0.00
## 5306 PS3 2013 Shooter City Interactive 0.05
## 5307 PS3 2010 Sports Ubisoft 0.11
## 5308 Wii 2011 Action Electronic Arts 0.18
## 5309 X360 2010 Strategy Square Enix 0.23
## 5310 PS2 2003 Action Capcom 0.17
## 5311 GC 2006 Racing Electronic Arts 0.27
## 5312 GBA 2003 Action THQ 0.25
## 5313 DS 2005 Action THQ 0.32
## 5314 PS2 2004 Platform THQ 0.17
## 5315 PS 2000 Action THQ 0.19
## 5316 XB 2003 Misc Microsoft Game Studios 0.26
## 5317 X360 2011 Fighting THQ 0.18
## 5318 PS3 2010 Shooter Sony Computer Entertainment 0.13
## 5319 PS2 2007 Sports Take-Two Interactive 0.17
## 5320 PS2 2009 Misc Activision 0.17
## 5321 PS2 2002 Fighting Sammy Corporation 0.09
## 5322 X360 2008 Racing Capcom 0.11
## 5323 PSP 2010 Strategy Konami Digital Entertainment 0.13
## 5324 PS3 2008 Shooter Activision 0.23
## 5325 PS2 2005 Shooter Ubisoft 0.17
## 5326 PS 2001 Role-Playing Namco Bandai Games 0.00
## 5327 PS2 2008 Platform Brash Entertainment 0.17
## 5328 PS2 2002 Sports Acclaim Entertainment 0.17
## 5329 PS2 2003 Misc Konami Digital Entertainment 0.17
## 5330 GC 2004 Sports Electronic Arts 0.27
## 5331 DS 2008 Misc Nobilis 0.32
## 5332 PS2 2003 Shooter Vivendi Games 0.17
## 5333 PS4 2015 Simulation Koch Media 0.10
## 5334 PS2 2000 Sports Konami Digital Entertainment 0.00
## 5335 PS 1998 Racing 989 Studios 0.19
## 5336 PS2 2000 Role-Playing Ubisoft 0.10
## 5337 X360 2007 Action Electronic Arts 0.30
## 5338 PS 1999 Role-Playing Kadokawa Shoten 0.19
## 5339 SAT 1996 Fighting Capcom 0.00
## 5340 PS2 2002 Platform THQ 0.17
## 5341 DS 2010 Adventure Disney Interactive Studios 0.18
## 5342 PSP 2006 Sports Sony Computer Entertainment 0.32
## 5343 PS3 2012 Racing Codemasters 0.06
## 5344 GC 2006 Platform Activision 0.27
## 5345 PSP 2011 Fighting Namco Bandai Games 0.09
## 5346 PS4 2015 Misc Ubisoft 0.16
## 5347 PS2 2005 Adventure Global Star 0.17
## 5348 DS 2007 Action Disney Interactive Studios 0.30
## 5349 X360 2008 Sports Electronic Arts 0.08
## 5350 PS 1998 Puzzle Sony Computer Entertainment 0.00
## 5351 DS 2009 Simulation Ubisoft 0.32
## 5352 GBA 2005 Misc Zoo Digital Publishing 0.25
## 5353 PSP 2011 Strategy Namco Bandai Games 0.00
## 5354 PSP 2011 Action Disney Interactive Studios 0.11
## 5355 GBA 2002 Platform THQ 0.25
## 5356 PS2 2008 Misc Disney Interactive Studios 0.17
## 5357 PS2 2006 Action Tecmo Koei 0.11
## 5358 DC 1999 Fighting Namco Bandai Games 0.00
## 5359 PS 1999 Racing Psygnosis 0.19
## 5360 DS 2007 Role-Playing Nintendo 0.20
## 5361 PS3 2007 Action THQ 0.13
## 5362 GBA 2004 Platform Nintendo 0.10
## 5363 XOne 2014 Action Activision 0.25
## 5364 DS 2007 Action THQ 0.31
## 5365 X360 2006 Shooter Vivendi Games 0.28
## 5366 X360 2006 Action Microsoft Game Studios 0.27
## 5367 2600 1980 Action Activision 0.32
## 5368 GBA 2002 Action Atari 0.25
## 5369 PS2 2003 Simulation Tecmo Koei 0.08
## 5370 DS 2010 Action Sega 0.15
## 5371 Wii 2010 Action City Interactive 0.15
## 5372 PS2 2004 Adventure Disney Interactive Studios 0.17
## 5373 SAT 1995 Shooter Sega 0.00
## 5374 X360 2011 Action Electronic Arts 0.19
## 5375 PS2 2009 Racing Sony Computer Entertainment 0.07
## 5376 GBA 2004 Platform THQ 0.25
## 5377 DS 2010 Role-Playing Atlus 0.24
## 5378 PS 1997 Fighting Virgin Interactive 0.19
## 5379 PS2 2000 Puzzle Acclaim Entertainment 0.17
## 5380 XB 2004 Shooter Eidos Interactive 0.26
## 5381 PS2 2001 Simulation Eidos Interactive 0.17
## 5382 2600 1982 Action ITT Family Games 0.32
## 5383 2600 1983 Action Activision 0.32
## 5384 X360 2016 Action Warner Bros. Interactive Entertainment 0.17
## 5385 X360 2005 Action Microsoft Game Studios 0.28
## 5386 Wii 2011 Action Namco Bandai Games 0.29
## 5387 GC 2005 Fighting THQ 0.26
## 5388 PS3 2009 Action Tecmo Koei 0.14
## 5389 XB 2004 Simulation Electronic Arts 0.22
## 5390 2600 1981 Action 20th Century Fox Video Games 0.32
## 5391 Wii 2011 Action Ubisoft 0.13
## 5392 Wii 2007 Action Activision 0.31
## 5393 PS3 2012 Action Konami Digital Entertainment 0.15
## 5394 SAT 1995 Fighting Virgin Interactive 0.00
## 5395 N64 1998 Racing GT Interactive 0.27
## 5396 2600 1982 Action 20th Century Fox Video Games 0.32
## 5397 PS3 2009 Action Electronic Arts 0.15
## 5398 3DS 2011 Strategy Ubisoft 0.22
## 5399 PS 1998 Misc ASCII Entertainment 0.19
## 5400 Wii 2008 Racing THQ 0.29
## 5401 2600 1981 Shooter Coleco 0.32
## 5402 PSP 2007 Sports Sega 0.00
## 5403 PS2 2004 Adventure Vivendi Games 0.17
## 5404 PS3 2011 Action Electronic Arts 0.14
## 5405 XB 2006 Sports Electronic Arts 0.25
## 5406 DS 2007 Misc Hudson Soft 0.00
## 5407 PS 1997 Shooter Sony Computer Entertainment 0.05
## 5408 DS 2009 Puzzle PopCap Games 0.31
## 5409 DS 2008 Misc 505 Games 0.31
## 5410 XOne 2014 Platform Ubisoft 0.13
## 5411 DS 2007 Puzzle D3Publisher 0.28
## 5412 PSP 2008 Role-Playing Square Enix 0.14
## 5413 DS 2008 Simulation Nobilis 0.30
## 5414 PS 1998 Action Sony Computer Entertainment 0.19
## 5415 X360 2011 Sports Home Entertainment Suppliers 0.09
## 5416 XB 2002 Racing Midway Games 0.25
## 5417 3DS 2013 Strategy Activision 0.15
## 5418 DS 2008 Simulation Ubisoft 0.31
## 5419 PS3 2008 Sports Electronic Arts 0.29
## 5420 XOne 2013 Simulation Microsoft Game Studios 0.18
## 5421 GBA 2005 Racing Disney Interactive Studios 0.24
## 5422 PC 2011 Simulation Electronic Arts 0.11
## 5423 GC 2003 Action Konami Digital Entertainment 0.26
## 5424 DS 2009 Simulation Eidos Interactive 0.21
## 5425 PS2 2009 Misc Disney Interactive Studios 0.10
## 5426 PS3 2010 Misc Sony Computer Entertainment 0.00
## 5427 PS4 2016 Role-Playing Atlus 0.00
## 5428 PS3 2007 Misc Sony Computer Entertainment 0.28
## 5429 X360 2007 Action Disney Interactive Studios 0.29
## 5430 PSV 2012 Racing Sony Computer Entertainment 0.17
## 5431 PS2 2008 Action Namco Bandai Games 0.04
## 5432 DS 2011 Action Namco Bandai Games 0.27
## 5433 PS 1996 Action Electronic Arts 0.19
## 5434 PS2 2001 Racing Atari 0.16
## 5435 DS 2006 Adventure THQ 0.30
## 5436 X360 2015 Shooter Electronic Arts 0.17
## 5437 XB 2005 Shooter NovaLogic 0.25
## 5438 DS 2009 Action Majesco Entertainment 0.12
## 5439 PS2 2005 Misc Oxygen Interactive 0.16
## 5440 PS3 2011 Action Ackkstudios 0.00
## 5441 PS3 2011 Shooter Codemasters 0.06
## 5442 X360 2009 Action Microsoft Game Studios 0.14
## 5443 XB 2006 Shooter Ubisoft 0.21
## 5444 DS 2009 Action Activision 0.17
## 5445 X360 2008 Shooter LucasArts 0.15
## 5446 PS 1996 Racing Jaleco 0.06
## 5447 Wii 2011 Role-Playing Nintendo 0.13
## 5448 PS3 2012 Action Sega 0.09
## 5449 X360 2011 Fighting Rising Star Games 0.23
## 5450 PS2 2003 Adventure Ubisoft 0.16
## 5451 GBA 2003 Platform THQ 0.24
## 5452 PS 1998 Puzzle Sony Computer Entertainment 0.06
## 5453 Wii 2010 Misc Deep Silver 0.00
## 5454 DS 2007 Role-Playing Namco Bandai Games 0.14
## 5455 PSP 2006 Fighting Capcom 0.27
## 5456 PSP 2006 Role-Playing Ubisoft 0.14
## 5457 X360 2009 Sports Sega 0.12
## 5458 PS 1998 Action Eidos Interactive 0.19
## 5459 PSP 2009 Role-Playing Namco Bandai Games 0.00
## 5460 Wii 2011 Misc Activision 0.31
## 5461 Wii 2010 Action Sega 0.15
## 5462 PSP 2004 Misc Sony Computer Entertainment 0.13
## 5463 PS3 2012 Shooter Take-Two Interactive 0.14
## 5464 PS3 2009 Misc Sony Computer Entertainment 0.00
## 5465 Wii 2009 Role-Playing Activision 0.26
## 5466 PSV 2011 Fighting Capcom 0.20
## 5467 GC 2003 Fighting THQ 0.26
## 5468 DS 2007 Puzzle Nintendo 0.14
## 5469 GC 2005 Simulation Electronic Arts 0.26
## 5470 XB 2003 Action Universal Interactive 0.25
## 5471 X360 2007 Action Ubisoft 0.29
## 5472 Wii 2009 Shooter Zushi Games 0.31
## 5473 Wii 2010 Misc D3Publisher 0.31
## 5474 PS2 2001 Platform Sony Computer Entertainment 0.12
## 5475 XB 2003 Shooter Eidos Interactive 0.25
## 5476 X360 2010 Role-Playing Sega 0.12
## 5477 Wii 2008 Simulation Ubisoft 0.30
## 5478 PS2 2002 Action Sony Computer Entertainment 0.16
## 5479 XB 2001 Racing Electronic Arts 0.25
## 5480 PSP 2006 Role-Playing Sony Computer Entertainment 0.21
## 5481 PS3 2009 Sports Electronic Arts 0.31
## 5482 PS 1999 Simulation Konami Digital Entertainment 0.00
## 5483 PS4 2015 Fighting Tecmo Koei 0.09
## 5484 GC 2004 Platform THQ 0.26
## 5485 PS3 2011 Sports 505 Games 0.00
## 5486 PC 2012 Action Electronic Arts 0.14
## 5487 PS2 2002 Sports Activision 0.16
## 5488 GBA 2005 Action Activision 0.24
## 5489 WiiU 2014 Action Sega 0.21
## 5490 PS2 2002 Fighting Acclaim Entertainment 0.16
## 5491 PS 1999 Sports Namco Bandai Games 0.00
## 5492 PSV 2011 Platform Sony Computer Entertainment 0.15
## 5493 X360 2012 Action Konami Digital Entertainment 0.22
## 5494 GB 1990 Sports Namco Bandai Games 0.00
## 5495 SNES 1994 Sports Hudson Soft 0.00
## 5496 Wii 2009 Action Majesco Entertainment 0.17
## 5497 PSP 2006 Misc Capcom 0.26
## 5498 DS 2008 Sports Electronic Arts 0.30
## 5499 PS2 2009 Sports Sony Computer Entertainment 0.16
## 5500 PS4 2016 Role-Playing Square Enix 0.10
## 5501 PS2 2001 Sports Sony Computer Entertainment 0.16
## 5502 GBA 2004 Platform Nintendo 0.17
## 5503 PS3 2014 Fighting Namco Bandai Games 0.10
## 5504 PS2 2009 Action Warner Bros. Interactive Entertainment 0.14
## 5505 XB 2006 Fighting Electronic Arts 0.26
## 5506 GBA 2001 Racing THQ 0.24
## 5507 PS2 2003 Action Capcom 0.05
## 5508 PS3 2008 Sports Electronic Arts 0.08
## 5509 N64 NA Role-Playing Nintendo 0.00
## 5510 N64 1998 Action 3DO 0.26
## 5511 PSP 2011 Misc Sega 0.00
## 5512 X360 2009 Strategy Eidos Interactive 0.17
## 5513 PS 1998 Platform Activision 0.18
## 5514 PS2 2006 Role-Playing Tecmo Koei 0.09
## 5515 PS3 2010 Sports Activision 0.26
## 5516 X360 2010 Sports Hudson Soft 0.27
## 5517 PS2 2002 Adventure Capcom 0.10
## 5518 SNES 1991 Sports Banpresto 0.00
## 5519 DS 2008 Adventure Scholastic Inc. 0.31
## 5520 PS3 2011 Action Disney Interactive Studios 0.15
## 5521 GC 2005 Shooter Activision 0.25
## 5522 Wii 2006 Action Konami Digital Entertainment 0.22
## 5523 PSP 2007 Strategy THQ 0.11
## 5524 X360 2013 Racing Codemasters 0.01
## 5525 PS2 2003 Role-Playing Tecmo Koei 0.16
## 5526 PS2 2005 Fighting Ignition Entertainment 0.16
## 5527 Wii 2007 Sports Electronic Arts 0.29
## 5528 PSP 2009 Racing Sony Computer Entertainment 0.09
## 5529 PS3 2009 Racing Ubisoft 0.12
## 5530 GC 2006 Platform THQ 0.25
## 5531 DS 2009 Simulation SouthPeak Games 0.28
## 5532 PSP 2008 Sports Sony Computer Entertainment 0.30
## 5533 X360 2011 Misc Ubisoft 0.20
## 5534 PS 1994 Shooter Konami Digital Entertainment 0.00
## 5535 GBA 2003 Platform Disney Interactive Studios 0.24
## 5536 DC 2001 Adventure Sega 0.00
## 5537 DS 2011 Action Avanquest 0.12
## 5538 PS 2000 Sports Sony Computer Entertainment 0.18
## 5539 GBA 2003 Misc THQ 0.24
## 5540 PS3 2013 Strategy Activision 0.10
## 5541 GC 2005 Fighting Tomy Corporation 0.00
## 5542 SNES 1991 Strategy Namco Bandai Games 0.00
## 5543 Wii 2010 Platform D3Publisher 0.19
## 5544 X360 2008 Action Sega 0.19
## 5545 DS 2010 Action Electronic Arts 0.22
## 5546 GC 2005 Sports Electronic Arts 0.25
## 5547 DS 2007 Misc Rocket Company 0.00
## 5548 X360 2011 Misc Take-Two Interactive 0.14
## 5549 X360 2007 Role-Playing Atari 0.19
## 5550 PS 1997 Misc Takara 0.00
## 5551 DS 2007 Sports Electronic Arts 0.29
## 5552 PS 1996 Sports Electronic Arts 0.16
## 5553 PS3 2010 Action Namco Bandai Games 0.09
## 5554 PS3 2007 Role-Playing Sony Computer Entertainment 0.20
## 5555 3DS 2015 Fighting Namco Bandai Games 0.12
## 5556 PS2 2007 Action Tecmo Koei 0.00
## 5557 XOne 2014 Shooter 505 Games 0.19
## 5558 GC 2006 Action THQ 0.25
## 5559 PS3 2011 Action Capcom 0.11
## 5560 2600 1983 Action Parker Bros. 0.31
## 5561 DS 2010 Role-Playing Atlus 0.13
## 5562 PSV 2012 Action Warner Bros. Interactive Entertainment 0.10
## 5563 GC 2005 Sports Electronic Arts 0.25
## 5564 Wii 2008 Misc Konami Digital Entertainment 0.30
## 5565 2600 1981 Action Starpath Corp. 0.30
## 5566 WiiU 2013 Action Warner Bros. Interactive Entertainment 0.20
## 5567 DS 2009 Simulation 505 Games 0.30
## 5568 GBA 2005 Puzzle Nintendo 0.12
## 5569 Wii 2006 Fighting Sega 0.22
## 5570 PS 1995 Fighting Tomy Corporation 0.00
## 5571 XB 2006 Sports Take-Two Interactive 0.24
## 5572 PS2 2004 Misc Play It 0.16
## 5573 PSV 2014 Action Sony Computer Entertainment 0.14
## 5574 PC 2011 Shooter Electronic Arts 0.13
## 5575 PS3 2010 Misc Konami Digital Entertainment 0.25
## 5576 X360 2009 Action Codemasters 0.15
## 5577 PSP 2009 Sports Take-Two Interactive 0.30
## 5578 PS3 2014 Fighting Namco Bandai Games 0.04
## 5579 PC 2008 Role-Playing Atari 0.32
## 5580 GBA 2004 Action Konami Digital Entertainment 0.23
## 5581 PS2 2004 Action THQ 0.16
## 5582 PSP 2012 Fighting Namco Bandai Games 0.00
## 5583 PC 2013 Action Warner Bros. Interactive Entertainment 0.13
## 5584 PS2 2003 Shooter Vivendi Games 0.16
## 5585 PS 1999 Sports Electronic Arts 0.18
## 5586 PS3 2015 Action Capcom 0.06
## 5587 X360 2006 Racing Atari 0.23
## 5588 PS3 2008 Action Sega 0.13
## 5589 PSV 2012 Sports Electronic Arts 0.30
## 5590 DS 2008 Action THQ 0.18
## 5591 X360 2009 Sports Electronic Arts 0.30
## 5592 X360 2012 Fighting Ubisoft Annecy 0.19
## 5593 DS 2011 Role-Playing Ghostlight 0.17
## 5594 N64 1998 Sports Acclaim Entertainment 0.30
## 5595 DS 2008 Misc Hudson Soft 0.00
## 5596 XOne 2016 Action Warner Bros. Interactive Entertainment 0.18
## 5597 PSP 2009 Fighting Namco Bandai Games 0.15
## 5598 PS2 2001 Racing Sony Computer Entertainment 0.16
## 5599 X360 2007 Puzzle Namco Bandai Games 0.14
## 5600 PS 1997 Puzzle Acclaim Entertainment 0.18
## 5601 XB 2005 Sports Electronic Arts 0.28
## 5602 PS3 2009 Action Codemasters 0.11
## 5603 PS 2002 Role-Playing Enix Corporation 0.00
## 5604 PSP 2010 Shooter Electronic Arts 0.12
## 5605 DS 2010 Platform D3Publisher 0.22
## 5606 Wii 2008 Racing Zoo Digital Publishing 0.30
## 5607 PC 2009 Action Eidos Interactive 0.00
## 5608 X360 2007 Action Vivendi Games 0.27
## 5609 X360 2008 Platform Vivendi Games 0.16
## 5610 X360 2006 Shooter Take-Two Interactive 0.27
## 5611 Wii 2009 Misc Take-Two Interactive 0.30
## 5612 PS 1996 Action Electronic Arts 0.05
## 5613 PS 1997 Sports Sony Computer Entertainment 0.18
## 5614 PS4 2014 Action Square Enix 0.09
## 5615 X360 2005 Sports Activision 0.28
## 5616 PS 1999 Simulation Ubisoft 0.11
## 5617 X360 2014 Shooter 505 Games 0.16
## 5618 PS2 2003 Fighting Atari 0.00
## 5619 PS2 NA Role-Playing Unknown 0.08
## 5620 PC 2010 Strategy Ubisoft 0.00
## 5621 PS2 2008 Action Take-Two Interactive 0.16
## 5622 PS4 2016 Action Ubisoft 0.03
## 5623 DS 2009 Sports THQ 0.18
## 5624 X360 2011 Misc Zoo Games 0.30
## 5625 PS2 2005 Shooter Ubisoft 0.16
## 5626 X360 NA Shooter Unknown 0.24
## 5627 X360 2007 Simulation Konami Digital Entertainment 0.30
## 5628 Wii 2009 Simulation Electronic Arts 0.15
## 5629 GC 2003 Action Ubisoft 0.25
## 5630 PS2 2000 Simulation Sony Computer Entertainment 0.16
## 5631 N64 1997 Sports Konami Digital Entertainment 0.15
## 5632 PS 2000 Platform Ubisoft 0.18
## 5633 GB 1995 Puzzle Nintendo 0.00
## 5634 PS4 2016 Racing Codemasters 0.03
## 5635 GBA 2001 Action Majesco Entertainment 0.23
## 5636 PS 2000 Sports Electronic Arts 0.18
## 5637 DS 2011 Misc P2 Games 0.00
## 5638 PS 1997 Racing Sony Computer Entertainment 0.18
## 5639 Wii 2007 Sports Atari 0.27
## 5640 PS2 2003 Platform Konami Digital Entertainment 0.16
## 5641 PS 1995 Misc Electronic Arts 0.18
## 5642 PSP 2008 Sports Ubisoft 0.26
## 5643 PS2 2004 Misc Konami Digital Entertainment 0.16
## 5644 Wii 2008 Sports Ubisoft 0.00
## 5645 PS2 2001 Simulation ASCII Entertainment 0.00
## 5646 SAT 1995 Fighting Virgin Interactive 0.00
## 5647 PS 1999 Sports Konami Digital Entertainment 0.00
## 5648 GBA 2005 Misc N/A 0.23
## 5649 PS2 2002 Fighting Ubisoft 0.16
## 5650 PSP 2005 Fighting Electronic Arts 0.29
## 5651 GBA 2005 Platform THQ 0.23
## 5652 NES 1991 Puzzle BPS 0.00
## 5653 X360 2009 Action Electronic Arts 0.17
## 5654 PS2 2003 Sports Activision 0.16
## 5655 PS2 2009 Misc MTV Games 0.16
## 5656 DS 2009 Puzzle Rondomedia 0.14
## 5657 GBA 2002 Adventure BAM! Entertainment 0.23
## 5658 2600 NA Racing Activision 0.30
## 5659 2600 1982 Action Data Age 0.30
## 5660 PS 1997 Adventure Acclaim Entertainment 0.18
## 5661 DS 2008 Sports Enterbrain 0.00
## 5662 PS4 2016 Platform Electronic Arts 0.10
## 5663 PSP 2007 Action Take-Two Interactive 0.04
## 5664 XB 2002 Sports Sega 0.24
## 5665 Wii 2008 Role-Playing Eidos Interactive 0.28
## 5666 Wii 2010 Strategy Square Enix 0.00
## 5667 SNES 1993 Role-Playing Hudson Soft 0.00
## 5668 PS2 2003 Fighting Namco Bandai Games 0.00
## 5669 GBA 2002 Misc Atari 0.23
## 5670 PS2 NA Sports Unknown 0.16
## 5671 PS 1997 Simulation Human Entertainment 0.00
## 5672 PS 1997 Strategy Banpresto 0.00
## 5673 SNES 1994 Role-Playing SquareSoft 0.00
## 5674 XB 2003 Sports Microsoft Game Studios 0.24
## 5675 GBA 2001 Sports Electronic Arts 0.23
## 5676 PS2 2008 Sports Electronic Arts 0.03
## 5677 X360 2007 Shooter Codemasters 0.28
## 5678 DS 2009 Simulation Electronic Arts 0.29
## 5679 XB 2004 Strategy Deep Silver 0.24
## 5680 PS2 2001 Racing Gathering of Developers 0.16
## 5681 X360 2010 Sports Activision 0.28
## 5682 SNES 1996 Misc Hudson Soft 0.00
## 5683 PS 2001 Action THQ 0.18
## 5684 PS2 2000 Strategy Tecmo Koei 0.08
## 5685 PSP 2007 Action Activision 0.08
## 5686 X360 2011 Adventure Deep Silver 0.20
## 5687 X360 2010 Fighting PQube 0.23
## 5688 PS2 2002 Adventure Sony Computer Entertainment 0.15
## 5689 PS2 2009 Misc Activision 0.10
## 5690 PSP 2007 Racing Sony Computer Entertainment 0.13
## 5691 DS 2008 Misc Konami Digital Entertainment 0.00
## 5692 XOne 2015 Misc Ubisoft 0.24
## 5693 Wii 2008 Action Capcom 0.17
## 5694 PS2 2004 Action Tecmo Koei 0.00
## 5695 XB 2002 Adventure Microsoft Game Studios 0.22
## 5696 PS 1998 Platform Ocean 0.18
## 5697 PS3 2016 Action Warner Bros. Interactive Entertainment 0.10
## 5698 DC 1999 Sports Sega 0.00
## 5699 PC 2011 Role-Playing Microsoft Game Studios 0.09
## 5700 XOne 2015 Fighting Namco Bandai Games 0.18
## 5701 PC 2011 Role-Playing Ubisoft 0.12
## 5702 X360 2009 Racing Codemasters 0.09
## 5703 Wii 2010 Sports Namco Bandai Games 0.10
## 5704 PS 1997 Strategy Electronic Arts 0.18
## 5705 PSP 2011 Role-Playing Capcom 0.00
## 5706 XB 2003 Racing Vivendi Games 0.24
## 5707 Wii 2010 Misc Warner Bros. Interactive Entertainment 0.29
## 5708 PS 1995 Sports Sony Computer Entertainment 0.17
## 5709 Wii 2007 Misc Konami Digital Entertainment 0.29
## 5710 DS 2010 Action Disney Interactive Studios 0.25
## 5711 PS2 2007 Sports Konami Digital Entertainment 0.00
## 5712 DS 2007 Shooter Konami Digital Entertainment 0.28
## 5713 GBA 2003 Sports Electronic Arts 0.22
## 5714 PS3 2014 Shooter 505 Games 0.10
## 5715 SNES 1995 Platform Konami Digital Entertainment 0.00
## 5716 3DS 2011 Puzzle Square Enix 0.08
## 5717 GB 1999 Action Nintendo 0.00
## 5718 PSP 2008 Sports Konami Digital Entertainment 0.00
## 5719 PS 1998 Misc NewKidCo 0.17
## 5720 Wii 2008 Action Sega 0.28
## 5721 X360 2008 Misc Atari 0.27
## 5722 XB 2002 Sports Microsoft Game Studios 0.23
## 5723 PS2 2005 Sports Electronic Arts 0.15
## 5724 DS 2007 Adventure Activision 0.28
## 5725 DS 2005 Action Ubisoft 0.25
## 5726 3DS 2015 Misc Sega 0.15
## 5727 3DS 2014 Strategy Namco Bandai Games 0.00
## 5728 DS 2010 Platform Activision 0.19
## 5729 PS3 2007 Sports Sony Computer Entertainment 0.29
## 5730 PS4 2016 Shooter Deep Silver 0.05
## 5731 PS2 2003 Misc Sony Computer Entertainment 0.15
## 5732 PS 1996 Adventure Infogrames 0.17
## 5733 XB 2004 Strategy Konami Digital Entertainment 0.23
## 5734 XB 2005 Action Atari 0.23
## 5735 XB 2005 Action Midway Games 0.23
## 5736 DS 2006 Action Midway Games 0.27
## 5737 PS 1997 Shooter SquareSoft 0.10
## 5738 PS 1998 Misc Sony Computer Entertainment 0.17
## 5739 DS 2009 Puzzle Storm City Games 0.29
## 5740 XOne 2014 Action Deep Silver 0.15
## 5741 X360 2010 Action Capcom 0.19
## 5742 X360 2012 Sports Konami Digital Entertainment 0.08
## 5743 PS2 2003 Simulation Agetec 0.07
## 5744 PS2 2009 Strategy Namco Bandai Games 0.00
## 5745 DS 2007 Action CokeM Interactive 0.29
## 5746 SAT 1995 Shooter Sega 0.00
## 5747 PS 2001 Action Take-Two Interactive 0.17
## 5748 XB 2005 Shooter Ubisoft 0.23
## 5749 GBA 2005 Action THQ 0.22
## 5750 PS 1999 Strategy Banpresto 0.00
## 5751 PSP 2005 Platform Capcom 0.27
## 5752 Wii 2009 Sports Activision Value 0.29
## 5753 PSP 2010 Role-Playing Square Enix 0.07
## 5754 N64 1997 Sports Konami Digital Entertainment 0.00
## 5755 N64 1998 Platform Konami Digital Entertainment 0.06
## 5756 N64 1999 Racing Electronic Arts 0.25
## 5757 N64 1998 Racing Activision 0.25
## 5758 N64 1999 Sports Take-Two Interactive 0.25
## 5759 N64 2001 Simulation Nintendo 0.00
## 5760 PC 2015 Simulation Sega 0.00
## 5761 DS 2006 Fighting Namco Bandai Games 0.31
## 5762 X360 2010 Action Disney Interactive Studios 0.24
## 5763 XOne 2015 Action Disney Interactive Studios 0.18
## 5764 3DS 2014 Action Namco Bandai Games 0.00
## 5765 Wii 2008 Misc Zoo Games 0.29
## 5766 Wii 2010 Action Electronic Arts 0.18
## 5767 PS2 2007 Sports Konami Digital Entertainment 0.00
## 5768 Wii 2008 Misc Activision 0.28
## 5769 Wii 2008 Simulation Rising Star Games 0.25
## 5770 XB NA Shooter Activision 0.23
## 5771 DS 2010 Strategy Konami Digital Entertainment 0.18
## 5772 GBA 2002 Action Ubisoft 0.22
## 5773 Wii 2009 Strategy Rising Star Games 0.15
## 5774 2600 1982 Action CBS Electronics 0.29
## 5775 PS2 2005 Misc Sony Computer Entertainment 0.15
## 5776 DS 2005 Platform Activision 0.25
## 5777 X360 2005 Sports Electronic Arts 0.28
## 5778 PS2 2008 Sports Ubisoft 0.15
## 5779 SAT 1997 Role-Playing Atlus 0.00
## 5780 PS3 2008 Sports Bethesda Softworks 0.28
## 5781 Wii 2010 Sports Activision 0.23
## 5782 X360 2006 Strategy Electronic Arts 0.28
## 5783 PS 1998 Racing Infogrames 0.17
## 5784 XB 2004 Misc Midway Games 0.24
## 5785 PS 1997 Simulation SquareSoft 0.00
## 5786 DS 2006 Puzzle Ubisoft 0.28
## 5787 PC 2012 Role-Playing Electronic Arts 0.14
## 5788 GC 2002 Racing Electronic Arts 0.24
## 5789 PSP 2012 Strategy Namco Bandai Games 0.00
## 5790 PS3 2012 Action Sony Computer Entertainment 0.14
## 5791 DS 2010 Puzzle Warner Bros. Interactive Entertainment 0.11
## 5792 PS 1998 Sports Sony Computer Entertainment 0.17
## 5793 PS2 2002 Racing LucasArts 0.15
## 5794 PSP 2007 Sports Electronic Arts 0.28
## 5795 PS3 2011 Fighting Rising Star Games 0.17
## 5796 PS2 2001 Sports Sony Computer Entertainment 0.15
## 5797 PS 1998 Misc Acclaim Entertainment 0.17
## 5798 PS2 2001 Misc Magix 0.15
## 5799 2600 NA Action Atari 0.29
## 5800 SNES 1993 Platform Konami Digital Entertainment 0.00
## 5801 2600 1981 Action Mattel Interactive 0.29
## 5802 PS2 2002 Action Activision 0.15
## 5803 PS 1999 Platform GT Interactive 0.17
## 5804 PSV 2013 Role-Playing Nippon Ichi Software 0.08
## 5805 PSP 2010 Role-Playing Marvelous Interactive 0.18
## 5806 Wii 2009 Sports Ubisoft 0.25
## 5807 DS 2009 Misc Mentor Interactive 0.29
## 5808 XOne 2013 Platform Activision 0.22
## 5809 PS 1999 Misc Activision 0.17
## 5810 PS3 2009 Action Activision 0.21
## 5811 PSP 2010 Action Konami Digital Entertainment 0.09
## 5812 XB 2002 Fighting Universal Interactive 0.23
## 5813 PS 2000 Puzzle Empire Interactive 0.17
## 5814 GBA 2001 Puzzle Nintendo 0.00
## 5815 PS 2000 Platform Sony Computer Entertainment 0.17
## 5816 PS2 2002 Action Sony Computer Entertainment 0.15
## 5817 SNES 1996 Role-Playing ASCII Entertainment 0.00
## 5818 SNES 1994 Fighting Namco Bandai Games 0.00
## 5819 PS2 2000 Role-Playing Activision 0.15
## 5820 3DS 2013 Adventure Warner Bros. Interactive Entertainment 0.18
## 5821 DS 2009 Simulation Ubisoft 0.28
## 5822 X360 2009 Role-Playing Banpresto 0.13
## 5823 GBA 2005 Action Activision 0.22
## 5824 DS 2006 Action THQ 0.28
## 5825 XB 2003 Racing Microsoft Game Studios 0.23
## 5826 GBA 2002 Racing TDK Mediactive 0.22
## 5827 PS3 2014 Action Namco Bandai Games 0.09
## 5828 X360 2014 Shooter Sega 0.15
## 5829 GB 1995 Misc Nintendo 0.00
## 5830 SAT 1996 Shooter Sega 0.00
## 5831 PS 1998 Fighting SquareSoft 0.17
## 5832 PSP 2005 Misc Sega 0.00
## 5833 Wii 2011 Misc Konami Digital Entertainment 0.24
## 5834 GBA 2003 Platform Universal Interactive 0.22
## 5835 PS 2000 Action 3DO 0.17
## 5836 PS3 2012 Strategy Namco Bandai Games 0.00
## 5837 PS3 2007 Shooter Midway Games 0.24
## 5838 Wii 2007 Simulation Nintendo 0.22
## 5839 DS NA Action Activision 0.26
## 5840 PSP 2006 Puzzle Disney Interactive Studios 0.12
## 5841 WiiU 2014 Action Nintendo 0.20
## 5842 PC 2006 Simulation Deep Silver 0.00
## 5843 PS 1995 Platform Sony Computer Entertainment 0.05
## 5844 PS2 2005 Misc Konami Digital Entertainment 0.15
## 5845 DS 2010 Action Warner Bros. Interactive Entertainment 0.24
## 5846 GC 2002 Racing Acclaim Entertainment 0.23
## 5847 GBA 2005 Platform Disney Interactive Studios 0.22
## 5848 PS2 2003 Action Capcom 0.15
## 5849 X360 2011 Fighting Ubisoft 0.18
## 5850 X360 2011 Racing Activision 0.29
## 5851 DS 2009 Puzzle Sega 0.00
## 5852 Wii 2010 Platform Activision 0.19
## 5853 GBA 2005 Adventure Global Star 0.22
## 5854 PS2 2005 Adventure Sony Computer Entertainment 0.15
## 5855 SAT 1995 Role-Playing Sega 0.00
## 5856 GBA 2006 Misc Nintendo 0.00
## 5857 DS 2007 Strategy Banpresto 0.00
## 5858 PS 1997 Racing Sony Computer Entertainment 0.17
## 5859 PSP 2010 Strategy Sony Computer Entertainment 0.05
## 5860 PS2 2006 Adventure Sony Computer Entertainment 0.15
## 5861 PSP 2007 Platform Activision 0.01
## 5862 PS NA Racing Unknown 0.17
## 5863 NES 1990 Sports Namco Bandai Games 0.00
## 5864 DS 2011 Misc Activision 0.27
## 5865 DS 2008 Strategy THQ 0.24
## 5866 DS 2007 Action Warner Bros. Interactive Entertainment 0.28
## 5867 PS2 2007 Strategy Banpresto 0.00
## 5868 PS3 2013 Role-Playing Square Enix 0.10
## 5869 SAT 1994 Sports Sega 0.00
## 5870 PC 2004 Simulation Electronic Arts 0.02
## 5871 PSV NA Role-Playing Nippon Ichi Software 0.13
## 5872 3DS 2011 Action Ubisoft 0.14
## 5873 PS4 2015 Action Capcom 0.12
## 5874 DS 2009 Adventure Disney Interactive Studios 0.28
## 5875 X360 2007 Action Tecmo Koei 0.15
## 5876 Wii 2008 Racing Eidos Interactive 0.27
## 5877 PS4 2014 Action Tecmo Koei 0.09
## 5878 PSV 2014 Action Tecmo Koei 0.05
## 5879 Wii 2010 Action Capcom 0.08
## 5880 PS2 2002 Strategy Tecmo Koei 0.05
## 5881 DS 2008 Role-Playing Nintendo 0.00
## 5882 SNES 1994 Role-Playing Hudson Soft 0.00
## 5883 PS4 2015 Simulation Kalypso Media 0.05
## 5884 PS2 2001 Sports Midas Interactive Entertainment 0.15
## 5885 DS 2008 Role-Playing Nintendo 0.20
## 5886 N64 1999 Racing Take-Two Interactive 0.24
## 5887 N64 1999 Shooter Activision 0.24
## 5888 DS 2006 Misc Spike 0.00
## 5889 GBA 2003 Racing THQ 0.21
## 5890 DS 2009 Simulation Electronic Arts 0.15
## 5891 X360 2007 Action Electronic Arts 0.24
## 5892 PS4 2015 Action Activision 0.17
## 5893 PS 1997 Simulation Namco Bandai Games 0.00
## 5894 3DS 2011 Action Namco Bandai Games 0.00
## 5895 PS2 2000 Platform Ubisoft 0.15
## 5896 GBA 2003 Action Atari 0.21
## 5897 SNES 1997 Puzzle Hudson Soft 0.00
## 5898 X360 2006 Action Microsoft Game Studios 0.20
## 5899 PSP 2011 Role-Playing Atlus 0.13
## 5900 PS 2000 Action 3DO 0.17
## 5901 PC 2005 Racing Electronic Arts 0.02
## 5902 GC NA Sports Electronic Arts 0.23
## 5903 PS2 2003 Fighting THQ 0.15
## 5904 PS2 2000 Role-Playing Ubisoft 0.10
## 5905 SAT 1996 Strategy Sega 0.00
## 5906 DS 2007 Simulation Ubisoft 0.23
## 5907 X360 2011 Misc Ubisoft 0.15
## 5908 3DS 2012 Role-Playing Atlus 0.13
## 5909 SNES 1995 Sports Tecmo Koei 0.00
## 5910 PS 1996 Fighting Virgin Interactive 0.07
## 5911 X360 2007 Action Activision 0.26
## 5912 PC 2014 Sports Electronic Arts 0.00
## 5913 X360 2008 Simulation Konami Digital Entertainment 0.28
## 5914 3DS NA Simulation Unknown 0.28
## 5915 Wii 2012 Misc Nordic Games 0.08
## 5916 PS2 2004 Fighting Acclaim Entertainment 0.15
## 5917 PSP 2006 Misc Capcom 0.27
## 5918 Wii 2009 Sports Zushi Games 0.26
## 5919 DS 2011 Shooter Activision 0.21
## 5920 PC 2003 Simulation Electronic Arts 0.01
## 5921 SNES 1995 Role-Playing Hudson Soft 0.00
## 5922 PSV 2014 Role-Playing Namco Bandai Games 0.00
## 5923 PS4 2016 Role-Playing Square Enix 0.06
## 5924 PS3 2011 Shooter Ubisoft 0.12
## 5925 PS2 2005 Strategy THQ 0.15
## 5926 DS 2009 Misc Majesco Entertainment 0.28
## 5927 Wii 2010 Misc Namco Bandai Games 0.00
## 5928 X360 2012 Shooter Activision 0.13
## 5929 PS2 2006 Simulation Electronic Arts 0.02
## 5930 PSV 2016 Role-Playing Square Enix 0.00
## 5931 DS 2007 Action Disney Interactive Studios 0.17
## 5932 GBA 2003 Sports Konami Digital Entertainment 0.00
## 5933 DS 2006 Platform Capcom 0.18
## 5934 DS 2005 Simulation Marvelous Interactive 0.30
## 5935 DS 2007 Sports Konami Digital Entertainment 0.00
## 5936 PS3 2009 Shooter Warner Bros. Interactive Entertainment 0.14
## 5937 GBA 2004 Action THQ 0.21
## 5938 GBA 2002 Platform THQ 0.21
## 5939 PS3 2009 Racing Activision 0.19
## 5940 PS 1997 Simulation Electronic Arts 0.16
## 5941 X360 2009 Misc Activision 0.16
## 5942 X360 2007 Role-Playing Square Enix 0.25
## 5943 GB 1999 Simulation Jorudan 0.00
## 5944 GC 2004 Action Activision 0.23
## 5945 PS3 2012 Fighting Tecmo Koei 0.00
## 5946 PS2 2004 Sports Midway Games 0.14
## 5947 XB 2003 Action Konami Digital Entertainment 0.22
## 5948 DS 2005 Adventure Nintendo 0.15
## 5949 X360 2008 Sports Electronic Arts 0.12
## 5950 DS 2007 Puzzle Avanquest 0.02
## 5951 Wii 2010 Action Warner Bros. Interactive Entertainment 0.22
## 5952 Wii 2006 Fighting Atari 0.24
## 5953 XB 2003 Sports Mud Duck Productions 0.22
## 5954 X360 2014 Action Square Enix 0.14
## 5955 GC 2002 Platform THQ 0.23
## 5956 Wii 2011 Misc Ubisoft 0.28
## 5957 2600 1986 Sports Atari 0.28
## 5958 DS 2020 Simulation Ubisoft 0.27
## 5959 PS2 2002 Role-Playing Ubisoft 0.14
## 5960 PSP 2006 Shooter Sony Computer Entertainment 0.26
## 5961 PS3 2010 Shooter Square Enix 0.09
## 5962 DS 2006 Platform Warner Bros. Interactive Entertainment 0.21
## 5963 X360 2009 Action Eidos Interactive 0.12
## 5964 X360 2010 Role-Playing Square Enix 0.13
## 5965 Wii 2009 Sports Take-Two Interactive 0.26
## 5966 PSP 2005 Role-Playing Activision 0.25
## 5967 DS 2010 Misc GSP 0.04
## 5968 X360 2009 Shooter Atari 0.16
## 5969 GBA 2003 Racing Electronic Arts 0.21
## 5970 GBA 2002 Sports Konami Digital Entertainment 0.00
## 5971 PS3 2007 Action Electronic Arts 0.25
## 5972 PSV 2014 Action Sony Computer Entertainment 0.01
## 5973 SAT 1995 Role-Playing Sega 0.00
## 5974 WiiU 2013 Action Ubisoft 0.18
## 5975 Wii 2007 Sports Konami Digital Entertainment 0.23
## 5976 XB 2002 Sports TDK Mediactive 0.22
## 5977 PS3 2014 Action Activision 0.06
## 5978 PS3 2009 Action Tecmo Koei 0.11
## 5979 PS 1999 Sports Konami Digital Entertainment 0.16
## 5980 PS2 2002 Adventure 505 Games 0.02
## 5981 X360 2009 Action THQ 0.20
## 5982 PSP 2010 Adventure Sega 0.00
## 5983 Wii 2007 Action Ubisoft 0.24
## 5984 Wii 2009 Action Namco Bandai Games 0.00
## 5985 PS2 2009 Action D3Publisher 0.11
## 5986 PS3 2010 Adventure Namco Bandai Games 0.09
## 5987 GC 2005 Sports Electronic Arts 0.23
## 5988 PS2 2000 Shooter Midas Interactive Entertainment 0.14
## 5989 Wii 2007 Sports Nintendo 0.02
## 5990 PSP 2008 Racing Empire Interactive 0.13
## 5991 PS 1998 Strategy Virgin Interactive 0.03
## 5992 PS 2000 Sports Konami Digital Entertainment 0.00
## 5993 PS3 2013 Shooter Take-Two Interactive 0.08
## 5994 X360 2005 Sports Electronic Arts 0.27
## 5995 Wii 2009 Misc Activision 0.14
## 5996 SAT 1996 Sports Sega 0.00
## 5997 DS 2009 Role-Playing Atlus 0.14
## 5998 PS 2000 Misc Hasbro Interactive 0.16
## 5999 PS 1997 Strategy Namco Bandai Games 0.00
## 6000 PS2 2008 Platform Sony Computer Entertainment 0.13
## 6001 Wii 2010 Platform D3Publisher 0.17
## 6002 PS2 2006 Role-Playing Tecmo Koei 0.14
## 6003 SNES 1994 Misc Enix Corporation 0.00
## 6004 X360 2010 Misc Konami Digital Entertainment 0.25
## 6005 Wii 2011 Action Electronic Arts 0.13
## 6006 GC 2002 Fighting Namco Bandai Games 0.00
## 6007 PS3 2012 Action Sony Computer Entertainment 0.18
## 6008 2600 1983 Action Activision 0.27
## 6009 DS 2009 Simulation Ubisoft 0.27
## 6010 XB 2005 Shooter Midway Games 0.22
## 6011 Wii 2011 Misc Ubisoft 0.22
## 6012 Wii 2010 Misc Disney Interactive Studios 0.18
## 6013 PSP 2010 Simulation Namco Bandai Games 0.06
## 6014 GBA 2003 Simulation Jorudan 0.00
## 6015 PS3 2011 Action Sony Computer Entertainment 0.13
## 6016 X360 2013 Strategy Activision 0.16
## 6017 PS2 2004 Platform Capcom 0.14
## 6018 Wii 2009 Adventure Ubisoft 0.13
## 6019 PS2 2005 Racing Take-Two Interactive 0.14
## 6020 PSV 2012 Action Nihon Falcom Corporation 0.15
## 6021 3DS 2012 Action Electronic Arts 0.06
## 6022 2600 1981 Action Unknown 0.27
## 6023 PS2 2001 Sports Konami Digital Entertainment 0.00
## 6024 N64 1998 Racing Acclaim Entertainment 0.23
## 6025 N64 1998 Racing Kemco 0.23
## 6026 N64 1999 Fighting Titus 0.23
## 6027 N64 1999 Racing Acclaim Entertainment 0.23
## 6028 N64 1999 Puzzle Nintendo 0.22
## 6029 N64 1999 Sports Nintendo 0.23
## 6030 N64 1999 Racing Electronic Arts 0.23
## 6031 N64 1997 Fighting Midway Games 0.23
## 6032 PS3 2007 Action Tecmo Koei 0.10
## 6033 PC 2011 Shooter Wargaming.net 0.00
## 6034 DS 2010 Puzzle Avanquest 0.00
## 6035 GBA 2003 Misc Atari 0.21
## 6036 PS2 2009 Fighting THQ 0.14
## 6037 X360 2008 Shooter Codemasters 0.23
## 6038 PS2 2005 Simulation Codemasters 0.14
## 6039 Wii 2009 Action Capcom 0.15
## 6040 GC 2004 Role-Playing Electronic Arts 0.22
## 6041 3DS 2013 Action Disney Interactive Studios 0.16
## 6042 X360 2012 Role-Playing Microsoft Game Studios 0.18
## 6043 GC NA Action Unknown 0.22
## 6044 3DS 2014 Action Sega 0.17
## 6045 Wii 2012 Misc Nintendo 0.00
## 6046 XB 2007 Sports Electronic Arts 0.22
## 6047 PS 1996 Misc Takara 0.00
## 6048 XB 2003 Role-Playing Ubisoft 0.22
## 6049 X360 2011 Shooter Codemasters 0.10
## 6050 PS3 2015 Action Namco Bandai Games 0.00
## 6051 XB 2005 Action THQ 0.22
## 6052 PS 1996 Sports Sony Computer Entertainment 0.16
## 6053 X360 2011 Action Activision 0.13
## 6054 SNES 1991 Role-Playing Angel Studios 0.00
## 6055 X360 2013 Racing Codemasters 0.08
## 6056 Wii 2008 Simulation Destineer 0.27
## 6057 Wii 2007 Puzzle D3Publisher 0.26
## 6058 PS2 2002 Misc TDK Mediactive 0.14
## 6059 DC 2002 Adventure Sega 0.00
## 6060 PS2 2005 Role-Playing Sega 0.07
## 6061 PS2 2002 Strategy Tecmo Koei 0.06
## 6062 DS 2004 Simulation Electronic Arts 0.27
## 6063 X360 2013 Role-Playing Square Enix 0.15
## 6064 DS 2004 Puzzle Sega 0.17
## 6065 PS3 2009 Misc Electronic Arts 0.12
## 6066 DS 2008 Puzzle Capcom 0.26
## 6067 3DS 2012 Racing Sega 0.12
## 6068 Wii 2007 Action Activision 0.26
## 6069 PS 2000 Sports Midas Interactive Entertainment 0.16
## 6070 Wii 2008 Simulation Deep Silver 0.27
## 6071 3DS 2013 Misc Namco Bandai Games 0.00
## 6072 PC 2014 Shooter Take-Two Interactive 0.11
## 6073 PS2 2007 Sports Ubisoft 0.14
## 6074 PS3 2013 Fighting Arc System Works 0.13
## 6075 PS 2000 Racing Infogrames 0.16
## 6076 PS2 2004 Role-Playing Square Enix 0.00
## 6077 PS 1996 Misc Sony Computer Entertainment 0.03
## 6078 PS2 2003 Platform Ubisoft 0.14
## 6079 DS 2008 Adventure Konami Digital Entertainment 0.00
## 6080 PS2 2004 Shooter Midway Games 0.14
## 6081 Wii 2010 Puzzle Storm City Games 0.27
## 6082 PS 1999 Platform Sony Computer Entertainment 0.16
## 6083 X360 2009 Action Konami Digital Entertainment 0.13
## 6084 DS 2011 Simulation Activision 0.27
## 6085 PS2 2006 Role-Playing Square Enix 0.00
## 6086 PS 1999 Simulation Konami Digital Entertainment 0.00
## 6087 X360 2007 Racing Electronic Arts 0.26
## 6088 PC 2016 Role-Playing Activision 0.14
## 6089 SNES 1992 Strategy Tecmo Koei 0.00
## 6090 DS 2008 Sports Konami Digital Entertainment 0.00
## 6091 PS3 2011 Action Ignition Entertainment 0.11
## 6092 PS3 2012 Action Activision 0.12
## 6093 GC 2004 Platform Vivendi Games 0.22
## 6094 PSP 2008 Action Tecmo Koei 0.06
## 6095 DS 2007 Puzzle THQ 0.26
## 6096 XB 2003 Sports Microsoft Game Studios 0.21
## 6097 PS 1996 Sports Electronic Arts 0.16
## 6098 DS 2008 Action THQ 0.26
## 6099 DS 2011 Misc Nintendo 0.00
## 6100 DS 2010 Action Activision 0.26
## 6101 GBA 2001 Platform Interplay 0.20
## 6102 GBA 2003 Role-Playing Nintendo 0.08
## 6103 PS3 2007 Action Sega 0.14
## 6104 X360 2012 Racing Codemasters 0.07
## 6105 DS 2008 Sports THQ 0.26
## 6106 X360 2011 Sports 505 Games 0.03
## 6107 Wii 2009 Action Activision 0.11
## 6108 PS2 2003 Racing Ubisoft 0.14
## 6109 PS2 2008 Misc Sony Computer Entertainment 0.14
## 6110 X360 2009 Shooter Rising Star Games 0.15
## 6111 PS 1997 Racing Playmates 0.16
## 6112 PS3 2012 Sports Sony Computer Entertainment 0.00
## 6113 GBA 2003 Sports Activision 0.20
## 6114 GBA 2005 Action Atari 0.20
## 6115 DS 2007 Adventure Game Factory 0.26
## 6116 SNES 1995 Fighting Human Entertainment 0.00
## 6117 DS 2007 Simulation THQ 0.26
## 6118 SNES 1994 Sports Konami Digital Entertainment 0.00
## 6119 XOne 2014 Action Konami Digital Entertainment 0.15
## 6120 PS 2000 Platform Ubisoft 0.16
## 6121 XB 2005 Action Take-Two Interactive 0.21
## 6122 X360 2010 Misc Electronic Arts 0.16
## 6123 PS2 2001 Role-Playing Midway Games 0.09
## 6124 Wii 2010 Sports Take-Two Interactive 0.24
## 6125 PS4 2016 Fighting Namco Bandai Games 0.10
## 6126 PS2 NA Platform Midway Games 0.14
## 6127 XB 2002 Sports Activision 0.21
## 6128 GBA 2006 Role-Playing Konami Digital Entertainment 0.20
## 6129 GBA 2001 Action Activision 0.20
## 6130 PS2 2003 Racing Namco Bandai Games 0.14
## 6131 PS3 2010 Sports Activision 0.18
## 6132 PS2 2003 Sports Namco Bandai Games 0.00
## 6133 GC 2003 Racing Acclaim Entertainment 0.22
## 6134 WS 1999 Role-Playing Namco Bandai Games 0.00
## 6135 GBA 2005 Action Activision 0.20
## 6136 PS3 2008 Action Sony Computer Entertainment 0.00
## 6137 PS4 2016 Sports Konami Digital Entertainment 0.01
## 6138 X360 2006 Simulation Sega 0.24
## 6139 XB 2005 Fighting Electronic Arts 0.21
## 6140 SAT 1995 Fighting SNK Playmore 0.00
## 6141 PSP 2006 Adventure Disney Interactive Studios 0.25
## 6142 DS 2009 Action Ubisoft 0.15
## 6143 GBA 2004 Simulation Majesco Entertainment 0.20
## 6144 Wii 2006 Adventure THQ 0.24
## 6145 GBA 2006 Role-Playing Nintendo 0.00
## 6146 2600 1982 Action Tigervision 0.26
## 6147 PS2 2004 Action Capcom 0.14
## 6148 N64 1999 Sports Electronic Arts 0.27
## 6149 DS 2010 Action Konami Digital Entertainment 0.16
## 6150 WiiU 2013 Racing Electronic Arts 0.14
## 6151 PS 2002 Action Hamster Corporation 0.16
## 6152 PS3 2010 Shooter Namco Bandai Games 0.10
## 6153 PS2 2003 Action Electronic Arts 0.14
## 6154 XB NA Shooter Midway Games 0.22
## 6155 XB 2003 Fighting Microsoft Game Studios 0.21
## 6156 GB 1991 Platform Nintendo 0.00
## 6157 DS 2007 Strategy Konami Digital Entertainment 0.13
## 6158 XOne 2016 Fighting Namco Bandai Games 0.19
## 6159 GBA 2002 Fighting Atari 0.20
## 6160 PSV 2013 Platform Sony Computer Entertainment Europe 0.16
## 6161 PSP 2011 Role-Playing Namco Bandai Games 0.00
## 6162 NES 1991 Sports Namco Bandai Games 0.00
## 6163 PS2 2002 Misc Sammy Corporation 0.00
## 6164 PS2 2007 Action Empire Interactive 0.14
## 6165 GB 1991 Platform Nintendo 0.00
## 6166 SNES 1991 Action Tecmo Koei 0.00
## 6167 PS2 2008 Action Disney Interactive Studios 0.12
## 6168 GBA 2002 Platform THQ 0.20
## 6169 DS 2007 Sports Ubisoft 0.26
## 6170 PS2 2006 Puzzle Xplosiv 0.00
## 6171 PS2 2002 Racing THQ 0.14
## 6172 Wii 2010 Sports Mastiff 0.27
## 6173 PS3 2013 Shooter Electronic Arts 0.11
## 6174 PS2 2007 Shooter Sony Computer Entertainment 0.14
## 6175 XB 2003 Shooter SCi 0.21
## 6176 PS3 2015 Misc Activision 0.09
## 6177 PS2 2003 Platform Atari 0.14
## 6178 DS 2010 Misc Warner Bros. Interactive Entertainment 0.27
## 6179 PSP 2007 Sports Sony Computer Entertainment 0.26
## 6180 GBA 2001 Platform Interplay 0.20
## 6181 PS2 2006 Racing Atari 0.12
## 6182 WiiU 2012 Misc Nintendo 0.13
## 6183 DS 2007 Simulation Activision 0.26
## 6184 DS 2010 Misc Electronic Arts 0.16
## 6185 DS 2010 Racing THQ 0.18
## 6186 PS2 2004 Fighting Eidos Interactive 0.14
## 6187 X360 2007 Fighting Sega 0.20
## 6188 GBA 2002 Action Ubisoft 0.20
## 6189 PS 1998 Fighting Sony Computer Entertainment 0.09
## 6190 PS2 2006 Role-Playing 505 Games 0.14
## 6191 X360 2009 Platform Capcom 0.12
## 6192 PS2 2002 Sports Midway Games 0.14
## 6193 SNES 1995 Platform Laguna 0.03
## 6194 XB 2004 Sports Electronic Arts 0.21
## 6195 PS3 2011 Action Electronic Arts 0.11
## 6196 GC NA Action Disney Interactive Studios 0.22
## 6197 PS 1995 Sports Konami Digital Entertainment 0.16
## 6198 GBA 2003 Racing TDK Mediactive 0.20
## 6199 SNES 1992 Sports Ocean 0.00
## 6200 PS3 2014 Misc Ubisoft 0.12
## 6201 GC 2004 Action THQ 0.22
## 6202 XB 2001 Action Konami Digital Entertainment 0.21
## 6203 X360 2011 Sports Activision 0.24
## 6204 PS4 2016 Action Square Enix 0.00
## 6205 3DS 2012 Misc Activision 0.13
## 6206 PS4 2016 Sports Konami Digital Entertainment 0.00
## 6207 PS2 2007 Role-Playing Tecmo Koei 0.14
## 6208 PC 2004 Strategy Atari 0.01
## 6209 PS2 2001 Sports THQ 0.14
## 6210 PS2 2002 Sports Midway Games 0.14
## 6211 PSV 2014 Action Nippon Ichi Software 0.10
## 6212 GC NA Misc Unknown 0.21
## 6213 DS 2006 Platform Activision 0.25
## 6214 PS2 2000 Sports Midas Interactive Entertainment 0.14
## 6215 DS 2010 Adventure Activision 0.26
## 6216 PSP 2007 Action Take-Two Interactive 0.23
## 6217 PS2 2001 Shooter Eidos Interactive 0.05
## 6218 SAT 1997 Strategy Elf 0.00
## 6219 PSP 2011 Misc Sony Computer Entertainment 0.05
## 6220 DS 2010 Misc Warner Bros. Interactive Entertainment 0.26
## 6221 PS 1998 Strategy Activision 0.15
## 6222 PS3 2009 Misc Activision 0.14
## 6223 PS2 2008 Action Namco Bandai Games 0.00
## 6224 XB 2005 Platform Activision 0.21
## 6225 Wii 2010 Action Activision 0.15
## 6226 PS2 2009 Action Activision 0.11
## 6227 SNES 1992 Racing Video System 0.00
## 6228 WiiU 2012 Role-Playing Electronic Arts 0.14
## 6229 DS 2011 Misc GameMill Entertainment 0.26
## 6230 SAT 1994 Simulation Sega 0.00
## 6231 PS2 2003 Sports Atari 0.14
## 6232 GC 2003 Misc Nintendo 0.00
## 6233 DS 2006 Puzzle Sega 0.00
## 6234 PS 1998 Role-Playing Konami Digital Entertainment 0.00
## 6235 X360 2006 Sports Electronic Arts 0.24
## 6236 PC 2012 Action Electronic Arts 0.09
## 6237 GC 2001 Sports Acclaim Entertainment 0.21
## 6238 Wii 2008 Misc MTV Games 0.25
## 6239 DS 2008 Misc Ubisoft 0.25
## 6240 PS3 2013 Platform Sony Computer Entertainment Europe 0.11
## 6241 PS 1998 Fighting Electronic Arts 0.15
## 6242 PS2 2008 Action THQ 0.14
## 6243 XB 2005 Action Activision 0.21
## 6244 PS2 2003 Sports Acclaim Entertainment 0.14
## 6245 PS2 2008 Sports Electronic Arts 0.14
## 6246 Wii 2008 Adventure Namco Bandai Games 0.00
## 6247 Wii 2010 Action THQ 0.22
## 6248 X360 2011 Action Capcom 0.17
## 6249 GBA 2001 Sports Konami Digital Entertainment 0.00
## 6250 PS2 2002 Adventure Ubisoft 0.14
## 6251 GBA 2003 Platform Konami Digital Entertainment 0.20
## 6252 PSP 2011 Sports Take-Two Interactive 0.22
## 6253 PC 2010 Strategy Ubisoft 0.04
## 6254 SAT 1996 Shooter Namco Bandai Games 0.00
## 6255 PS 1997 Simulation From Software 0.06
## 6256 GB 2000 Platform Nintendo 0.00
## 6257 3DS 2012 Misc Nippon Columbia 0.00
## 6258 Wii 2009 Racing Nintendo 0.26
## 6259 PSP 2012 Sports Konami Digital Entertainment 0.00
## 6260 PS4 2015 Action Activision 0.13
## 6261 SNES 1995 Misc Nichibutsu 0.00
## 6262 PSP 2008 Action Spike 0.06
## 6263 PS2 2007 Sports Activision Value 0.13
## 6264 DS 2007 Misc Nintendo 0.00
## 6265 PS2 2000 Sports Take-Two Interactive 0.13
## 6266 2600 1982 Action Coleco 0.26
## 6267 Wii 2014 Adventure Little Orbit 0.05
## 6268 DS 2007 Misc Electronic Arts 0.25
## 6269 XB 2003 Fighting Microsoft Game Studios 0.21
## 6270 PS3 2010 Sports Activision 0.18
## 6271 PS 1996 Fighting Tomy Corporation 0.00
## 6272 GC 2004 Fighting Atari 0.21
## 6273 GBA NA Action N/A 0.00
## 6274 GBA 2002 Racing Konami Digital Entertainment 0.20
## 6275 PS 1998 Action Capcom 0.00
## 6276 PS 1997 Action Tecmo Koei 0.09
## 6277 GBA 2001 Puzzle Unknown 0.20
## 6278 Wii 2013 Misc Majesco Entertainment 0.14
## 6279 DS 2005 Racing Electronic Arts 0.24
## 6280 PS2 2004 Role-Playing Square Enix 0.00
## 6281 PS 2001 Action Conspiracy Entertainment 0.15
## 6282 XB 2001 Sports Midway Games 0.20
## 6283 X360 2010 Action Sega 0.15
## 6284 2600 NA Racing Atari 0.26
## 6285 DS 2009 Simulation Electronic Arts 0.25
## 6286 PS2 2009 Misc Electronic Arts 0.09
## 6287 DS 2008 Role-Playing Konami Digital Entertainment 0.09
## 6288 PS 2000 Adventure THQ 0.15
## 6289 PS 1997 Fighting Namco Bandai Games 0.02
## 6290 PS 2000 Sports Natsume 0.15
## 6291 PS 2001 Sports Acclaim Entertainment 0.15
## 6292 PS4 2015 Role-Playing Focus Home Interactive 0.09
## 6293 X360 2010 Strategy Ubisoft 0.12
## 6294 PS3 2013 Misc Sega 0.08
## 6295 DS 2006 Action Capcom 0.12
## 6296 DS 2005 Puzzle Namco Bandai Games 0.16
## 6297 2600 1984 Racing Activision 0.26
## 6298 PSP 2010 Simulation Sony Computer Entertainment 0.02
## 6299 PC 2014 Action Bethesda Softworks 0.09
## 6300 PS2 2004 Sports Sony Computer Entertainment 0.13
## 6301 PS 1996 Simulation Microprose 0.15
## 6302 PSP 2009 Sports Konami Digital Entertainment 0.00
## 6303 PSP 2006 Strategy Namco Bandai Games 0.00
## 6304 PS 2000 Sports Eidos Interactive 0.15
## 6305 PS2 2002 Racing Codemasters 0.13
## 6306 GC 2003 Role-Playing Nintendo 0.21
## 6307 SNES 1993 Fighting Namco Bandai Games 0.00
## 6308 X360 2008 Shooter Sega 0.15
## 6309 SNES 1994 Sports Namco Bandai Games 0.00
## 6310 3DS 2012 Misc Sega 0.07
## 6311 PS2 2004 Action Ubisoft 0.13
## 6312 GBA 2002 Racing Infogrames 0.19
## 6313 X360 2011 Sports Ubisoft 0.14
## 6314 PSP 2006 Sports Electronic Arts 0.20
## 6315 X360 NA Shooter Activision 0.24
## 6316 X360 2006 Sports Electronic Arts 0.25
## 6317 2600 NA Action Atari 0.25
## 6318 2600 1980 Misc Activision 0.25
## 6319 PS2 2009 Action Disney Interactive Studios 0.12
## 6320 PSP NA Action Warner Bros. Interactive Entertainment 0.10
## 6321 PS3 2011 Action Ubisoft 0.06
## 6322 XB 2004 Racing Microsoft Game Studios 0.18
## 6323 GB 1996 Role-Playing ChunSoft 0.00
## 6324 PS2 2001 Racing Eidos Interactive 0.13
## 6325 GBA 2006 Platform Activision 0.19
## 6326 PS4 2015 Role-Playing Nippon Ichi Software 0.10
## 6327 GC 2005 Platform Disney Interactive Studios 0.21
## 6328 DS 2010 Strategy Ubisoft 0.09
## 6329 GC 2002 Platform Electronic Arts 0.21
## 6330 PS3 2014 Action Capcom 0.00
## 6331 GBA 2002 Role-Playing Konami Digital Entertainment 0.00
## 6332 GBA 2002 Fighting THQ 0.19
## 6333 GB 2000 Role-Playing Imagineer 0.00
## 6334 PS2 2004 Role-Playing Square Enix 0.13
## 6335 PS4 2014 Adventure Focus Home Interactive 0.08
## 6336 XB 2005 Racing Electronic Arts 0.20
## 6337 Wii 2007 Simulation THQ 0.24
## 6338 PS2 2004 Shooter THQ 0.13
## 6339 PS3 2008 Action Activision 0.20
## 6340 XB 2001 Sports Electronic Arts 0.20
## 6341 DS 2008 Misc Nordic Games 0.25
## 6342 PC 2011 Strategy Kalypso Media 0.10
## 6343 N64 1997 Sports Konami Digital Entertainment 0.25
## 6344 N64 1998 Sports Konami Digital Entertainment 0.00
## 6345 N64 1998 Sports Acclaim Entertainment 0.25
## 6346 N64 1999 Action Acclaim Entertainment 0.18
## 6347 N64 1999 Strategy Nintendo 0.22
## 6348 X360 2011 Shooter Ubisoft 0.14
## 6349 PS2 2005 Action Capcom 0.13
## 6350 3DS 2012 Action Nintendo 0.00
## 6351 PSP 2005 Role-Playing Ubisoft 0.00
## 6352 PS2 2007 Action Electronic Arts 0.13
## 6353 DS 2011 Misc D3Publisher 0.13
## 6354 PC 2013 Racing Electronic Arts 0.04
## 6355 PS2 2007 Racing THQ 0.13
## 6356 XB 2005 Action Activision 0.20
## 6357 GBA 2001 Sports Activision 0.19
## 6358 PS2 2000 Racing Namco Bandai Games 0.06
## 6359 DS 2010 Action THQ 0.13
## 6360 Wii 2008 Sports DTP Entertainment 0.23
## 6361 X360 2008 Misc Konami Digital Entertainment 0.25
## 6362 DS 2008 Role-Playing Atlus 0.10
## 6363 XOne 2014 Action Warner Bros. Interactive Entertainment 0.13
## 6364 SNES 1995 Sports Konami Digital Entertainment 0.00
## 6365 PS3 2008 Action Sega 0.22
## 6366 X360 2013 Action Capcom 0.12
## 6367 Wii 2010 Sports Take-Two Interactive 0.25
## 6368 PS3 2011 Racing Activision 0.25
## 6369 SNES 1994 Simulation Hect 0.00
## 6370 DS 2009 Role-Playing Atlus 0.14
## 6371 GBA 2001 Role-Playing Nintendo 0.00
## 6372 PS2 2001 Racing Acclaim Entertainment 0.13
## 6373 GC 2003 Sports Electronic Arts 0.21
## 6374 X360 2015 Fighting Namco Bandai Games 0.16
## 6375 XB 2002 Racing Electronic Arts 0.20
## 6376 X360 2009 Shooter SouthPeak Games 0.15
## 6377 PS 1999 Racing Electronic Arts 0.15
## 6378 DS 2010 Simulation Nintendo 0.25
## 6379 X360 2009 Role-Playing Square Enix 0.25
## 6380 DS 2010 Strategy Nintendo 0.00
## 6381 PS4 2016 Racing Codemasters 0.01
## 6382 GBA 2005 Misc Zoo Digital Publishing 0.19
## 6383 X360 2011 Misc Activision 0.25
## 6384 X360 2007 Action THQ 0.23
## 6385 X360 2008 Action Sega 0.22
## 6386 Wii 2009 Misc Take-Two Interactive 0.24
## 6387 PS 1999 Role-Playing Activision 0.15
## 6388 PS2 2002 Shooter BAM! Entertainment 0.13
## 6389 PS2 2010 Action Warner Bros. Interactive Entertainment 0.08
## 6390 PS 1998 Sports Konami Digital Entertainment 0.00
## 6391 3DS 2016 Adventure Capcom 0.00
## 6392 GC 2006 Simulation Electronic Arts 0.21
## 6393 DS 2008 Puzzle Majesco Entertainment 0.24
## 6394 3DS 2013 Action Warner Bros. Interactive Entertainment 0.16
## 6395 X360 2007 Sports Take-Two Interactive 0.18
## 6396 PS2 2003 Racing Sega 0.00
## 6397 DS 2007 Sports Electronic Arts 0.24
## 6398 PS2 2003 Simulation Konami Digital Entertainment 0.13
## 6399 DS 2009 Misc Ubisoft 0.25
## 6400 PS 1995 Shooter GT Interactive 0.15
## 6401 X360 2010 Action Rising Star Games 0.18
## 6402 PS3 NA Misc Unknown 0.25
## 6403 Wii 2009 Puzzle THQ 0.25
## 6404 PS 2000 Sports Sony Computer Entertainment 0.15
## 6405 XB 2002 Sports Electronic Arts 0.20
## 6406 DS 2011 Misc Activision 0.25
## 6407 PS4 2015 Shooter 505 Games 0.09
## 6408 3DS 2014 Action Unknown 0.15
## 6409 DS 2010 Adventure THQ 0.19
## 6410 PSP 2006 Sports Electronic Arts 0.24
## 6411 PS 1996 Fighting Sony Computer Entertainment 0.06
## 6412 PS3 2014 Adventure Activision 0.11
## 6413 PS 1998 Role-Playing Crave Entertainment 0.15
## 6414 SNES 1995 Puzzle Banpresto 0.00
## 6415 X360 2009 Sports Activision Value 0.25
## 6416 PS2 2005 Fighting Namco Bandai Games 0.13
## 6417 PS2 2004 Strategy Atari 0.13
## 6418 PSV 2012 Action Tecmo Koei 0.13
## 6419 DS 2007 Puzzle Mumbo Jumbo 0.25
## 6420 X360 2006 Action Electronic Arts 0.23
## 6421 PS2 2007 Adventure Ubisoft 0.13
## 6422 DS 2009 Misc Mentor Interactive 0.25
## 6423 PSV 2011 Action Tecmo Koei 0.06
## 6424 Wii 2009 Sports Take-Two Interactive 0.25
## 6425 PS3 2010 Sports Konami Digital Entertainment 0.00
## 6426 GBA 2003 Action Majesco Entertainment 0.19
## 6427 XOne 2015 Action Electronic Arts 0.15
## 6428 PS3 2011 Action Tecmo Koei 0.04
## 6429 Wii 2008 Sports Ubisoft 0.24
## 6430 Wii 2009 Simulation Ubisoft 0.25
## 6431 DS 2007 Simulation Majesco Entertainment 0.24
## 6432 Wii 2009 Misc Konami Digital Entertainment 0.16
## 6433 PS2 2006 Action Ubisoft 0.13
## 6434 Wii 2009 Sports Take-Two Interactive 0.14
## 6435 PS3 2012 Role-Playing Tecmo Koei 0.06
## 6436 X360 2012 Action Activision 0.18
## 6437 PSP 2010 Fighting Namco Bandai Games 0.11
## 6438 GBA 2004 Misc N/A 0.19
## 6439 XB 2003 Sports Sega 0.20
## 6440 PS 1997 Sports Tecmo Koei 0.00
## 6441 PS3 2006 Sports Sony Computer Entertainment 0.24
## 6442 PS2 2002 Misc Pacific Century Cyber Works 0.11
## 6443 Wii 2010 Shooter Mastiff 0.25
## 6444 X360 2007 Sports Take-Two Interactive 0.24
## 6445 GBA 2002 Role-Playing Atari 0.19
## 6446 X360 2014 Racing Ubisoft 0.06
## 6447 Wii 2011 Misc THQ 0.23
## 6448 X360 2007 Strategy Eidos Interactive 0.21
## 6449 DS 2005 Platform Ubisoft 0.21
## 6450 PS3 2013 Action Namco Bandai Games 0.00
## 6451 DC 1998 Shooter Sega 0.00
## 6452 Wii 2010 Action Electronic Arts 0.22
## 6453 PS3 2010 Simulation Namco Bandai Games 0.00
## 6454 Wii 2009 Simulation Electronic Arts 0.22
## 6455 PS2 2001 Action Take-Two Interactive 0.13
## 6456 XB 2002 Shooter Sega 0.16
## 6457 PS 1999 Sports Konami Digital Entertainment 0.00
## 6458 PS3 2010 Role-Playing Spike 0.24
## 6459 PS 1996 Role-Playing From Software 0.08
## 6460 PSV 2014 Misc Nippon Ichi Software 0.13
## 6461 3DS 2013 Action Namco Bandai Games 0.00
## 6462 DS 2009 Role-Playing Hudson Soft 0.08
## 6463 PS 1996 Sports Sony Computer Entertainment 0.15
## 6464 PS2 2007 Simulation Ubisoft 0.13
## 6465 PS2 2008 Shooter Activision Value 0.13
## 6466 Wii 2015 Action Activision 0.05
## 6467 PC 2008 Strategy Microsoft Game Studios 0.04
## 6468 PS 1997 Platform Sony Computer Entertainment 0.15
## 6469 DS 2009 Simulation Konami Digital Entertainment 0.00
## 6470 DS 2007 Role-Playing Namco Bandai Games 0.00
## 6471 PS2 2006 Sports Midway Games 0.13
## 6472 PSV 2014 Fighting Namco Bandai Games 0.00
## 6473 GBA 2002 Action THQ 0.19
## 6474 GEN 1994 Racing Sega 0.00
## 6475 PSP 2005 Racing Vivendi Games 0.16
## 6476 PS3 2010 Action Deep Silver 0.05
## 6477 PS2 2008 Adventure Disney Interactive Studios 0.09
## 6478 DS 2007 Misc Nintendo 0.00
## 6479 Wii 2009 Simulation Namco Bandai Games 0.24
## 6480 DS 2008 Adventure Codemasters 0.24
## 6481 3DS 2013 Sports Level 5 0.00
## 6482 PS2 2004 Racing Take-Two Interactive 0.13
## 6483 DS 2010 Misc Ubisoft 0.22
## 6484 PS2 2007 Role-Playing Sega 0.10
## 6485 Wii 2010 Simulation Atari 0.24
## 6486 PS3 2013 Sports Konami Digital Entertainment 0.00
## 6487 GBA 2002 Action THQ 0.19
## 6488 PS2 2006 Action Capcom 0.00
## 6489 PSP 2006 Fighting Namco Bandai Games 0.26
## 6490 Wii 2011 Role-Playing Nintendo 0.00
## 6491 GBA 2002 Platform THQ 0.19
## 6492 GBA 2006 Role-Playing Nintendo 0.00
## 6493 GBA 2005 Racing Electronic Arts 0.19
## 6494 PSV 2012 Misc Ubisoft 0.11
## 6495 PS 2000 Simulation Activision 0.15
## 6496 Wii 2009 Role-Playing Square Enix 0.13
## 6497 PS3 NA Sports Home Entertainment Suppliers 0.00
## 6498 DS 2008 Simulation Majesco Entertainment 0.24
## 6499 GC 2002 Shooter LucasArts 0.20
## 6500 PS2 2002 Fighting Ubisoft 0.13
## 6501 DS 2011 Adventure Capcom 0.00
## 6502 Wii 2010 Misc Zoo Games 0.25
## 6503 DS 2007 Misc 505 Games 0.24
## 6504 Wii 2010 Sports Ubisoft 0.14
## 6505 DS 2009 Puzzle Warner Bros. Interactive Entertainment 0.00
## 6506 PC 2006 Role-Playing Take-Two Interactive 0.01
## 6507 PS3 2011 Sports Konami Digital Entertainment 0.00
## 6508 DS 2004 Sports Electronic Arts 0.24
## 6509 3DS 2014 Action Activision 0.14
## 6510 GBA 2006 Misc Konami Digital Entertainment 0.14
## 6511 GBA 2003 Sports Konami Digital Entertainment 0.00
## 6512 GBA 2004 Adventure Banpresto 0.00
## 6513 X360 2010 Strategy PopCap Games 0.24
## 6514 PS2 2002 Racing BAM! Entertainment 0.13
## 6515 PS3 2009 Misc Disney Interactive Studios 0.17
## 6516 DS 2009 Action Activision 0.17
## 6517 3DS 2013 Role-Playing Atlus 0.10
## 6518 PS 1999 Misc Enix Corporation 0.04
## 6519 PSP 2009 Misc Sega 0.00
## 6520 PS3 2007 Racing THQ 0.18
## 6521 PSP 2008 Fighting Namco Bandai Games 0.00
## 6522 PSP 2009 Action Capcom 0.00
## 6523 N64 1996 Action Activision 0.21
## 6524 N64 2000 Simulation LucasArts 0.21
## 6525 N64 1999 Shooter GT Interactive 0.21
## 6526 N64 1999 Shooter Acclaim Entertainment 0.21
## 6527 PS2 2007 Sports Electronic Arts 0.13
## 6528 PS2 2004 Simulation Indie Games 0.06
## 6529 PS2 2002 Sports Konami Digital Entertainment 0.13
## 6530 GBA 2002 Adventure NewKidCo 0.19
## 6531 PSV 2013 Role-Playing Marvelous Entertainment 0.13
## 6532 PS3 2014 Action Sega 0.00
## 6533 PSP 2009 Action Activision 0.11
## 6534 X360 2010 Sports Activision 0.17
## 6535 XB 2003 Sports TDK Mediactive 0.19
## 6536 GC 2001 Adventure Ubisoft 0.20
## 6537 X360 2014 Action Activision 0.10
## 6538 2600 1981 Sports Atari 0.24
## 6539 PS2 2009 Sports Electronic Arts 0.12
## 6540 DS 2007 Strategy Namco Bandai Games 0.00
## 6541 PS3 2007 Action Ubisoft 0.20
## 6542 Wii 2009 Action Activision 0.14
## 6543 XB 2003 Role-Playing Atari 0.19
## 6544 PS3 2012 Adventure Focus Home Interactive 0.05
## 6545 X360 2012 Role-Playing Focus Home Interactive 0.15
## 6546 DS 2011 Misc Rising Star Games 0.15
## 6547 PS 2000 Racing Acclaim Entertainment 0.14
## 6548 PS2 2001 Role-Playing Eidos Interactive 0.13
## 6549 GC 2003 Racing Vivendi Games 0.20
## 6550 Wii 2008 Misc Hudson Soft 0.01
## 6551 PSP 2009 Sports Sony Computer Entertainment 0.24
## 6552 DS 2004 Puzzle Nintendo 0.13
## 6553 PS3 2014 Action Tecmo Koei 0.00
## 6554 X360 2014 Racing Codemasters 0.08
## 6555 GBA 2004 Action Nintendo 0.10
## 6556 Wii 2007 Action THQ 0.24
## 6557 X360 2005 Action Ubisoft 0.20
## 6558 DS 2008 Adventure Game Factory 0.24
## 6559 PS2 2005 Simulation Banpresto 0.00
## 6560 GBA 2003 Action Konami Digital Entertainment 0.18
## 6561 SAT 1997 Fighting Capcom 0.00
## 6562 X360 2013 Shooter Electronic Arts 0.16
## 6563 GBA 2004 Misc N/A 0.18
## 6564 XB 2005 Adventure Electronic Arts 0.19
## 6565 PSP 2007 Racing Sega 0.03
## 6566 PS2 2004 Fighting Ignition Entertainment 0.13
## 6567 PS 1998 Fighting Virgin Interactive 0.14
## 6568 X360 2008 Shooter Atari 0.08
## 6569 SAT 1996 Sports Sega 0.00
## 6570 Wii 2009 Sports 505 Games 0.17
## 6571 PS3 2013 Action Namco Bandai Games 0.10
## 6572 PS2 2002 Adventure Sony Computer Entertainment 0.13
## 6573 X360 2006 Sports Tecmo Koei 0.15
## 6574 Wii 2008 Simulation Ubisoft 0.23
## 6575 XB 2005 Misc THQ 0.19
## 6576 PS 1998 Racing Takara 0.00
## 6577 PS3 2012 Action Sony Computer Entertainment 0.00
## 6578 PS3 2011 Action Bethesda Softworks 0.12
## 6579 GC 2004 Platform Activision 0.20
## 6580 DS 2006 Adventure Disney Interactive Studios 0.23
## 6581 GBA 2002 Platform Electronic Arts 0.18
## 6582 PS 1999 Simulation From Software 0.07
## 6583 SNES 1999 Strategy Nintendo 0.00
## 6584 2600 1987 Shooter Atari 0.24
## 6585 PS3 2008 Racing Electronic Arts 0.22
## 6586 SAT 1997 Role-Playing Hudson Soft 0.00
## 6587 PS2 2007 Simulation Banpresto 0.00
## 6588 GBA 2002 Racing Liquid Games 0.18
## 6589 WiiU 2016 Action Nintendo 0.03
## 6590 DS 2009 Adventure Take-Two Interactive 0.24
## 6591 GC 2002 Sports Infogrames 0.20
## 6592 XB 2002 Sports Acclaim Entertainment 0.19
## 6593 PC 2010 Simulation Ubisoft 0.00
## 6594 PS2 2004 Racing Activision 0.13
## 6595 PS2 2009 Adventure Eidos Interactive 0.00
## 6596 PS 1999 Sports Electronic Arts 0.14
## 6597 PC 2011 Action LucasArts 0.10
## 6598 PS2 2003 Sports Sony Computer Entertainment 0.13
## 6599 PSP 2005 Racing Codemasters 0.00
## 6600 GBA 2002 Strategy Banpresto 0.00
## 6601 GBA 2002 Platform Konami Digital Entertainment 0.16
## 6602 DS 2005 Misc Nintendo 0.21
## 6603 PS2 2001 Racing Sony Computer Entertainment 0.13
## 6604 Wii 2011 Misc Take-Two Interactive 0.23
## 6605 SAT 1996 Role-Playing NEC 0.00
## 6606 XB 2004 Role-Playing Acclaim Entertainment 0.19
## 6607 GC 2004 Sports Electronic Arts 0.20
## 6608 GBA 2001 Fighting Ubisoft 0.18
## 6609 XB 2003 Simulation LucasArts 0.19
## 6610 PS 1998 Sports Axela 0.00
## 6611 PS3 2007 Action Electronic Arts 0.16
## 6612 SAT 1998 Strategy Namco Bandai Games 0.00
## 6613 DS 2008 Simulation Ubisoft 0.23
## 6614 PS2 2006 Action THQ 0.12
## 6615 DS 2010 Role-Playing Activision 0.22
## 6616 PSP 2007 Misc Crave Entertainment 0.24
## 6617 PS 1999 Role-Playing 3DO 0.14
## 6618 PS3 2012 Adventure Sony Computer Entertainment Europe 0.04
## 6619 PS4 2015 Platform Sony Computer Entertainment 0.09
## 6620 PS2 2009 Action LucasArts 0.17
## 6621 GC 2002 Adventure Vivendi Games 0.15
## 6622 X360 2008 Racing Electronic Arts 0.23
## 6623 PS2 2000 Sports Take-Two Interactive 0.12
## 6624 SNES 1991 Strategy Tecmo Koei 0.00
## 6625 PS3 2009 Shooter Vivendi Games 0.12
## 6626 Wii 2008 Action Capcom 0.14
## 6627 3DS 2011 Simulation Ubisoft 0.11
## 6628 GBA 2006 Platform Vivendi Games 0.18
## 6629 DS 2006 Action Disney Interactive Studios 0.23
## 6630 XB 2005 Misc Activision 0.19
## 6631 PS3 2014 Misc Sega 0.09
## 6632 SAT 1994 Shooter Acclaim Entertainment 0.00
## 6633 GB 2000 Sports Konami Digital Entertainment 0.00
## 6634 PS3 2012 Role-Playing Focus Home Interactive 0.10
## 6635 GC 2006 Action Midway Games 0.20
## 6636 PS2 2003 Misc Disney Interactive Studios 0.12
## 6637 XB 2002 Sports Electronic Arts 0.19
## 6638 DS 2009 Misc Ubisoft 0.21
## 6639 PS 1998 Fighting Titus 0.14
## 6640 GBA 2002 Platform Disney Interactive Studios 0.18
## 6641 PSP 2010 Misc Sega 0.00
## 6642 PS 1994 Strategy ArtDink 0.00
## 6643 XB 2001 Misc Microsoft Game Studios 0.19
## 6644 PS 1999 Misc Ubisoft 0.14
## 6645 Wii 2007 Sports Activision 0.22
## 6646 XB 2003 Sports Microsoft Game Studios 0.20
## 6647 PS 2000 Shooter Sunsoft 0.14
## 6648 PS2 NA Sports Unknown 0.12
## 6649 GBA 2004 Misc N/A 0.18
## 6650 X360 2006 Racing THQ 0.22
## 6651 X360 2012 Action Activision 0.14
## 6652 X360 2011 Action THQ 0.16
## 6653 PS3 2009 Action THQ 0.15
## 6654 PS3 2012 Simulation Konami Digital Entertainment 0.10
## 6655 X360 2008 Action Activision 0.12
## 6656 PS 1996 Racing Psygnosis 0.14
## 6657 DS 2007 Simulation Empire Interactive 0.09
## 6658 PS 2001 Action BAM! Entertainment 0.14
## 6659 X360 2007 Action Electronic Arts 0.22
## 6660 PS2 2008 Action Tecmo Koei 0.00
## 6661 PS3 2011 Misc Ubisoft 0.10
## 6662 3DS 2013 Sports Electronic Arts 0.00
## 6663 XB 2004 Shooter Vivendi Games 0.19
## 6664 GBA 2001 Puzzle Activision 0.10
## 6665 GC 2005 Shooter Electronic Arts 0.19
## 6666 Wii 2008 Action Activision 0.22
## 6667 GC 2003 Platform Sega 0.19
## 6668 GBA 2001 Misc Midway Games 0.18
## 6669 X360 2009 Action THQ 0.25
## 6670 WS 2001 Role-Playing SquareSoft 0.00
## 6671 PS2 2002 Racing Sony Computer Entertainment 0.12
## 6672 X360 2011 Action Activision 0.18
## 6673 PSP 2008 Sports Electronic Arts 0.06
## 6674 PS 1997 Role-Playing Gust 0.00
## 6675 X360 2006 Action THQ 0.21
## 6676 GBA 2004 Misc Majesco Entertainment 0.18
## 6677 XB 2005 Sports Electronic Arts 0.19
## 6678 XB 2004 Misc Atari 0.19
## 6679 PS 2000 Fighting Ubisoft 0.14
## 6680 XB 2003 Shooter Ubisoft 0.16
## 6681 X360 2007 Racing THQ 0.23
## 6682 NG 1994 Fighting SNK 0.00
## 6683 Wii 2007 Fighting Midway Games 0.21
## 6684 X360 2008 Sports Take-Two Interactive 0.14
## 6685 N64 1999 Role-Playing Konami Digital Entertainment 0.16
## 6686 N64 1999 Sports Midway Games 0.23
## 6687 N64 1998 Sports Fox Interactive 0.20
## 6688 N64 1997 Misc Take-Two Interactive 0.20
## 6689 N64 1997 Racing Ocean 0.20
## 6690 N64 1997 Racing Ubisoft 0.11
## 6691 N64 1998 Action GT Interactive 0.20
## 6692 N64 1997 Sports Midway Games 0.23
## 6693 N64 1999 Sports Nintendo 0.20
## 6694 PS4 2015 Fighting Namco Bandai Games 0.07
## 6695 Wii 2010 Misc Mindscape 0.00
## 6696 PS2 2008 Action Vivendi Games 0.12
## 6697 GC 2003 Fighting Electronic Arts 0.19
## 6698 PS2 2005 Platform THQ 0.12
## 6699 PS 1996 Racing Sony Computer Entertainment 0.00
## 6700 XB 2005 Simulation Electronic Arts 0.19
## 6701 PS 1998 Misc Interplay 0.14
## 6702 XOne 2015 Role-Playing Square Enix 0.15
## 6703 PS2 2003 Sports Sega 0.12
## 6704 DS 2006 Role-Playing Nintendo 0.00
## 6705 SAT 1998 Sports Sega 0.00
## 6706 PC 2011 Adventure Take-Two Interactive 0.08
## 6707 SAT 1998 Adventure NEC Interchannel 0.00
## 6708 PC 2012 Action Square Enix 0.03
## 6709 X360 2008 Adventure Disney Interactive Studios 0.18
## 6710 PSP 2009 Role-Playing Activision 0.17
## 6711 3DS 2015 Role-Playing FuRyu 0.11
## 6712 PSP 2009 Role-Playing Nippon Ichi Software 0.10
## 6713 PS2 2005 Action Capcom 0.03
## 6714 Wii 2008 Misc Disney Interactive Studios 0.20
## 6715 PS 1995 Sports Acclaim Entertainment 0.14
## 6716 X360 2006 Shooter Ubisoft 0.20
## 6717 GBA 2002 Role-Playing Natsume 0.18
## 6718 GBA 2002 Sports Konami Digital Entertainment 0.00
## 6719 PS3 2011 Action Activision 0.14
## 6720 PS 1998 Action Acclaim Entertainment 0.14
## 6721 Wii 2009 Action Activision 0.19
## 6722 PS2 2002 Sports Namco Bandai Games 0.00
## 6723 X360 2012 Action Tecmo Koei 0.16
## 6724 PS3 2010 Platform D3Publisher 0.12
## 6725 PS3 2015 Action Sega 0.00
## 6726 Wii 2010 Action Ubisoft 0.11
## 6727 PS2 2008 Action Tecmo Koei 0.12
## 6728 DS 2009 Simulation Ubisoft 0.16
## 6729 2600 1982 Action 20th Century Fox Video Games 0.23
## 6730 XB 2005 Shooter Ubisoft 0.19
## 6731 PS 1999 Role-Playing Ubisoft 0.14
## 6732 PS3 2010 Misc Sony Computer Entertainment 0.07
## 6733 X360 2007 Simulation 505 Games 0.19
## 6734 PS 2000 Racing Electronic Arts 0.14
## 6735 DS 2009 Simulation Electronic Arts 0.23
## 6736 Wii 2010 Platform THQ 0.22
## 6737 PS2 2006 Adventure Ubisoft 0.12
## 6738 Wii 2007 Sports Capcom 0.20
## 6739 PS2 2001 Racing Sony Computer Entertainment 0.12
## 6740 GC 2005 Platform Midway Games 0.19
## 6741 PS2 2007 Racing THQ 0.12
## 6742 X360 2009 Racing Activision 0.14
## 6743 PS3 2007 Action Electronic Arts 0.18
## 6744 PC 2015 Strategy Ubisoft 0.02
## 6745 PS 1999 Strategy Electronic Arts 0.14
## 6746 DS 2008 Puzzle Rising Star Games 0.06
## 6747 Wii 2009 Role-Playing Capcom 0.00
## 6748 PS3 2009 Racing Codemasters 0.08
## 6749 PS3 2010 Misc Electronic Arts 0.18
## 6750 X360 2013 Action Konami Digital Entertainment 0.06
## 6751 PS 1996 Shooter Konami Digital Entertainment 0.14
## 6752 PS 1996 Platform Sony Computer Entertainment 0.05
## 6753 GC 2002 Misc Atari 0.19
## 6754 PS3 2008 Racing Black Bean Games 0.12
## 6755 PS2 2004 Role-Playing Square Enix 0.12
## 6756 PS 1997 Racing Takara 0.00
## 6757 DS 2009 Adventure Disney Interactive Studios 0.22
## 6758 GBA 2002 Action Vivendi Games 0.18
## 6759 PS3 2007 Sports Spike 0.23
## 6760 GC 2005 Role-Playing Activision 0.19
## 6761 GBA 2005 Misc Zoo Digital Publishing 0.18
## 6762 PSP 2007 Racing Ubisoft 0.03
## 6763 PS3 2008 Shooter Codemasters 0.21
## 6764 GC 2002 Sports Nintendo 0.19
## 6765 3DS 2014 Adventure Little Orbit 0.04
## 6766 X360 2011 Action Ubisoft 0.07
## 6767 GBA 2004 Racing Nintendo 0.11
## 6768 GBA 2004 Shooter Nintendo 0.08
## 6769 PS2 2008 Adventure THQ 0.12
## 6770 DS 2013 Simulation Disney Interactive Studios 0.13
## 6771 PS2 2005 Adventure Global Star 0.12
## 6772 DS 2008 Role-Playing Namco Bandai Games 0.00
## 6773 PS2 2006 Role-Playing Namco Bandai Games 0.12
## 6774 X360 2011 Action Tecmo Koei 0.16
## 6775 GBA 2005 Simulation Ubisoft 0.18
## 6776 PS 2001 Sports Konami Digital Entertainment 0.00
## 6777 DS 2010 Shooter Activision 0.22
## 6778 PS2 NA Misc Unknown 0.12
## 6779 XOne 2014 Racing Ubisoft 0.12
## 6780 PSV 2015 Action Warner Bros. Interactive Entertainment 0.03
## 6781 DS 2008 Role-Playing Rising Star Games 0.11
## 6782 DS 2006 Adventure Disney Interactive Studios 0.23
## 6783 PS3 2010 Racing Activision 0.21
## 6784 DS 2011 Action Konami Digital Entertainment 0.00
## 6785 PS 1995 Strategy Mindscape 0.14
## 6786 Wii 2009 Adventure Ubisoft 0.12
## 6787 PS 1996 Sports Tecmo Koei 0.04
## 6788 PS 1997 Action Sony Computer Entertainment 0.14
## 6789 PSP 2005 Sports Sony Computer Entertainment 0.23
## 6790 PS 2000 Shooter 3DO 0.14
## 6791 X360 2008 Strategy Electronic Arts 0.16
## 6792 X360 2011 Misc Sega 0.16
## 6793 WiiU 2012 Sports Electronic Arts 0.22
## 6794 PSV 2014 Adventure Marvelous Interactive 0.11
## 6795 PC 2011 Shooter THQ 0.11
## 6796 DS 2009 Misc Disney Interactive Studios 0.08
## 6797 X360 2009 Action Activision 0.20
## 6798 PS2 2002 Misc THQ 0.12
## 6799 PS 1999 Simulation Konami Digital Entertainment 0.00
## 6800 PS2 2003 Sports Konami Digital Entertainment 0.12
## 6801 3DS 2011 Simulation Namco Bandai Games 0.10
## 6802 X360 2009 Sports Activision Value 0.23
## 6803 XB 2004 Racing Namco Bandai Games 0.18
## 6804 PS 1995 Sports Sony Computer Entertainment 0.00
## 6805 PS2 2003 Platform Acclaim Entertainment 0.12
## 6806 DS 2008 Action Sega 0.22
## 6807 PC NA Shooter Take-Two Interactive 0.02
## 6808 PS2 2006 Fighting Capcom 0.11
## 6809 PSP 2011 Sports Konami Digital Entertainment 0.00
## 6810 DS 2009 Adventure Ubisoft 0.10
## 6811 PS2 2005 Shooter Electronic Arts 0.12
## 6812 DS 2006 Adventure Ubisoft 0.11
## 6813 GC 2005 Simulation Ubisoft 0.19
## 6814 XB 2002 Action Capcom 0.14
## 6815 GBA 2005 Platform Nintendo 0.17
## 6816 PS 1997 Fighting Xing Entertainment 0.04
## 6817 PS 1997 Action Psygnosis 0.13
## 6818 PS3 2010 Sports Ubisoft 0.06
## 6819 Wii 2010 Action Activision 0.13
## 6820 XB 2003 Racing TDK Mediactive 0.18
## 6821 PS3 2011 Role-Playing Nippon Ichi Software 0.05
## 6822 PS3 2008 Misc MTV Games 0.21
## 6823 Wii 2010 Sports Hudson Soft 0.15
## 6824 DS 2005 Action Electronic Arts 0.21
## 6825 PSP 2005 Misc Midway Games 0.21
## 6826 XOne 2015 Racing Codemasters 0.08
## 6827 3DS 2013 Platform Activision 0.10
## 6828 Wii 2010 Sports XS Games 0.23
## 6829 PSP 2008 Role-Playing Nippon Ichi Software 0.05
## 6830 Wii 2008 Misc Electronic Arts 0.20
## 6831 XB 2003 Racing Acclaim Entertainment 0.18
## 6832 Wii 2008 Misc MTV Games 0.17
## 6833 PS3 NA Shooter Unknown 0.17
## 6834 PS2 2005 Misc Sega 0.12
## 6835 PSV 2012 Fighting Capcom 0.14
## 6836 XB 2003 Shooter Namco Bandai Games 0.18
## 6837 PSP 2010 Platform D3Publisher 0.10
## 6838 PC 2010 Shooter THQ 0.00
## 6839 GC 2005 Action Ubisoft 0.19
## 6840 3DS 2015 Role-Playing Atlus 0.16
## 6841 Wii 2007 Misc Activision 0.22
## 6842 PS2 2003 Role-Playing Banpresto 0.00
## 6843 PSP 2010 Sports Konami Digital Entertainment 0.00
## 6844 GC 2001 Racing Electronic Arts 0.19
## 6845 Wii 2010 Adventure THQ 0.16
## 6846 Wii 2008 Sports Oxygen Interactive 0.02
## 6847 PS2 2006 Misc Sega 0.00
## 6848 XB 2001 Action Microsoft Game Studios 0.18
## 6849 DS 2007 Role-Playing Rising Star Games 0.16
## 6850 GBA 2004 Misc N/A 0.17
## 6851 Wii 2010 Action Warner Bros. Interactive Entertainment 0.17
## 6852 XB 2005 Fighting Atari 0.18
## 6853 DS 2008 Simulation THQ 0.22
## 6854 PS3 2012 Sports Electronic Arts 0.09
## 6855 PS2 2003 Role-Playing Sega 0.00
## 6856 GBA 2005 Puzzle Namco Bandai Games 0.17
## 6857 PS2 2005 Racing ValuSoft 0.12
## 6858 Wii 2009 Misc Ubisoft 0.22
## 6859 PS2 2007 Racing Activision 0.12
## 6860 PSP 2006 Role-Playing Rising Star Games 0.15
## 6861 GC 2004 Role-Playing Marvelous Interactive 0.19
## 6862 PSP 2009 Sports Electronic Arts 0.21
## 6863 X360 2006 Action Electronic Arts 0.20
## 6864 PS2 2008 Sports Konami Digital Entertainment 0.00
## 6865 PSP 2009 Racing THQ 0.18
## 6866 PS3 2009 Action Activision 0.19
## 6867 2600 1981 Action Taito 0.22
## 6868 N64 1999 Action Midway Games 0.19
## 6869 N64 1999 Misc Acclaim Entertainment 0.19
## 6870 N64 2000 Misc Midway Games 0.19
## 6871 N64 1999 Racing THQ 0.19
## 6872 N64 2000 Fighting Midway Games 0.19
## 6873 N64 2000 Action 3DO 0.19
## 6874 Wii 2008 Misc MTV Games 0.21
## 6875 PS2 2002 Sports Sega 0.12
## 6876 PS3 2009 Action Namco Bandai Games 0.00
## 6877 DS 2011 Action Electronic Arts 0.12
## 6878 XB 2003 Sports Electronic Arts 0.18
## 6879 PS 1998 Platform Ocean 0.13
## 6880 GC 2005 Action Activision 0.19
## 6881 Wii 2009 Sports Codemasters 0.00
## 6882 PSP 2007 Action Take-Two Interactive 0.22
## 6883 GBA 2005 Sports Activision 0.17
## 6884 DS 2007 Racing THQ 0.22
## 6885 DS 2009 Puzzle THQ 0.22
## 6886 DS 2008 Adventure PopCap Games 0.13
## 6887 GBA 2004 Platform Nintendo 0.00
## 6888 PS 1998 Shooter Acclaim Entertainment 0.13
## 6889 PS2 2003 Action Sony Computer Entertainment 0.00
## 6890 PS3 2011 Misc THQ 0.15
## 6891 3DS 2014 Action Warner Bros. Interactive Entertainment 0.09
## 6892 PS4 2014 Action Tecmo Koei 0.08
## 6893 XB 2003 Platform Vivendi Games 0.18
## 6894 PS2 2008 Simulation Konami Digital Entertainment 0.12
## 6895 X360 2012 Racing Codemasters 0.08
## 6896 X360 2009 Role-Playing DTP Entertainment 0.18
## 6897 2600 1980 Misc Atari 0.22
## 6898 SNES 1996 Role-Playing SquareSoft 0.00
## 6899 X360 2011 Action Activision 0.18
## 6900 Wii 2010 Adventure Namco Bandai Games 0.16
## 6901 3DS 2015 Platform Nintendo 0.09
## 6902 XB 2001 Racing Gathering of Developers 0.18
## 6903 PS 2002 Racing XS Games 0.13
## 6904 PSP 2009 Role-Playing GungHo 0.19
## 6905 DS 2010 Adventure Focus Home Interactive 0.07
## 6906 GBA 2004 Action Take-Two Interactive 0.17
## 6907 GBA 2004 Adventure Game Factory 0.17
## 6908 X360 2007 Misc Microsoft Game Studios 0.19
## 6909 DS 2009 Puzzle Ubisoft 0.00
## 6910 X360 2012 Action Capcom 0.15
## 6911 XOne 2016 Action Warner Bros. Interactive Entertainment 0.12
## 6912 X360 2009 Action Tecmo Koei 0.16
## 6913 PS2 2003 Misc Sony Computer Entertainment 0.12
## 6914 PS 1998 Action Interplay 0.13
## 6915 PS2 2004 Role-Playing Midway Games 0.12
## 6916 PSP 2009 Sports Electronic Arts 0.12
## 6917 DS 2008 Misc Activision 0.22
## 6918 PC 2011 Puzzle Focus Home Interactive 0.00
## 6919 PS3 2012 Role-Playing Deep Silver 0.04
## 6920 PSP NA Misc Unknown 0.00
## 6921 X360 2015 Misc Activision 0.12
## 6922 WiiU 2013 Misc Nintendo 0.06
## 6923 PS 1995 Sports Electronic Arts 0.13
## 6924 PS4 2014 Action Nippon Ichi Software 0.13
## 6925 X360 2009 Role-Playing Bethesda Softworks 0.16
## 6926 PS 2000 Action Sony Computer Entertainment 0.13
## 6927 Wii NA Misc Konami Digital Entertainment 0.22
## 6928 X360 2011 Misc THQ 0.16
## 6929 PSV 2012 Action Warner Bros. Interactive Entertainment 0.09
## 6930 Wii 2010 Racing Focus Home Interactive 0.10
## 6931 DS 2009 Puzzle Nintendo 0.00
## 6932 PS 2000 Shooter Hasbro Interactive 0.13
## 6933 X360 2009 Action Electronic Arts 0.17
## 6934 PS3 2010 Role-Playing Tecmo Koei 0.08
## 6935 XB 2006 Sports Electronic Arts 0.18
## 6936 GBA 2003 Action Knowledge Adventure 0.17
## 6937 PSP 2013 Role-Playing Namco Bandai Games 0.00
## 6938 Wii NA Sports Activision 0.21
## 6939 PS 1998 Misc NewKidCo 0.13
## 6940 2600 1988 Action Activision 0.22
## 6941 2600 1981 Shooter Mattel Interactive 0.22
## 6942 DS 2010 Puzzle Storm City Games 0.11
## 6943 X360 2009 Action Atari 0.16
## 6944 X360 2013 Shooter Take-Two Interactive 0.10
## 6945 DS 2008 Role-Playing Sega 0.09
## 6946 Wii 2011 Racing Activision 0.22
## 6947 PSV 2012 Action Konami Digital Entertainment 0.13
## 6948 DS 2006 Role-Playing Konami Digital Entertainment 0.17
## 6949 PS4 2014 Adventure Telltale Games 0.10
## 6950 WiiU 2012 Action Disney Interactive Studios 0.14
## 6951 PC 2011 Role-Playing Sony Online Entertainment 0.16
## 6952 PS2 2007 Racing Electronic Arts 0.12
## 6953 PS3 2008 Action Activision 0.12
## 6954 DS 2010 Misc Take-Two Interactive 0.16
## 6955 DS 2008 Racing Electronic Arts 0.18
## 6956 WiiU 2016 Action Warner Bros. Interactive Entertainment 0.12
## 6957 DS 2006 Role-Playing Takara Tomy 0.22
## 6958 PS2 2003 Platform BAM! Entertainment 0.11
## 6959 PS2 2004 Misc Konami Digital Entertainment 0.11
## 6960 DS 2010 Misc Disney Interactive Studios 0.16
## 6961 DS 2010 Simulation Konami Digital Entertainment 0.00
## 6962 3DS 2015 Role-Playing Nippon Ichi Software 0.09
## 6963 PS2 2006 Action Namco Bandai Games 0.00
## 6964 PS 1998 Fighting Virgin Interactive 0.13
## 6965 DS 2013 Platform Ubisoft 0.00
## 6966 Wii 2009 Misc THQ 0.00
## 6967 Wii NA Sports THQ 0.09
## 6968 DS 2007 Racing Activision 0.22
## 6969 PS2 NA Racing Unknown 0.11
## 6970 GBA 2003 Strategy Banpresto 0.00
## 6971 XB 2003 Racing Electronic Arts 0.18
## 6972 XB 2002 Action Electronic Arts 0.18
## 6973 PSV 2016 Action Warner Bros. Interactive Entertainment 0.07
## 6974 DS 2010 Action LucasArts 0.18
## 6975 XB 2005 Action Electronic Arts 0.18
## 6976 XOne 2013 Misc Majesco Entertainment 0.17
## 6977 PS3 2011 Action Namco Bandai Games 0.00
## 6978 3DS 2015 Action Nintendo 0.00
## 6979 DS 2005 Puzzle Nintendo 0.15
## 6980 X360 2011 Sports Sega 0.11
## 6981 DS 2011 Action THQ 0.16
## 6982 PS3 2008 Role-Playing Nippon Ichi Software 0.14
## 6983 DS 2008 Simulation 505 Games 0.22
## 6984 PS3 2011 Sports Activision 0.17
## 6985 DC 1999 Sports Sega 0.00
## 6986 PSP 2005 Puzzle Namco Bandai Games 0.13
## 6987 PSV 2011 Action Ubisoft 0.14
## 6988 PC 2015 Strategy Sega 0.09
## 6989 PSP 2005 Sports Electronic Arts 0.19
## 6990 X360 2010 Sports Sega 0.08
## 6991 XB 2002 Sports Sega 0.17
## 6992 PS3 2009 Misc Sony Computer Entertainment 0.00
## 6993 PS2 2004 Racing Atari 0.11
## 6994 XB 2003 Racing Empire Interactive 0.17
## 6995 PS3 2013 Action Tecmo Koei 0.00
## 6996 PSV 2012 Misc Sega 0.00
## 6997 PS3 2008 Shooter Sega 0.14
## 6998 PS3 2011 Misc Sony Computer Entertainment 0.13
## 6999 PS2 2001 Racing Acclaim Entertainment 0.11
## 7000 Wii 2007 Racing Zoo Digital Publishing 0.22
## 7001 Wii 2009 Misc MTV Games 0.22
## 7002 PS2 2002 Action Universal Interactive 0.11
## 7003 PS2 2006 Sports Sega 0.00
## 7004 Wii 2007 Action Warner Bros. Interactive Entertainment 0.21
## 7005 PS2 2005 Role-Playing Capcom 0.00
## 7006 N64 2000 Sports Acclaim Entertainment 0.22
## 7007 PSP 2005 Misc Play It 0.20
## 7008 PS4 2015 Role-Playing Namco Bandai Games 0.09
## 7009 GC 2002 Shooter Activision 0.18
## 7010 GC 2003 Action Ubisoft 0.18
## 7011 Wii 2008 Adventure Activision 0.20
## 7012 X360 2009 Misc MTV Games 0.22
## 7013 Wii 2010 Strategy THQ 0.11
## 7014 PS2 2003 Sports Sega 0.11
## 7015 GB 1997 Simulation Victor Interactive 0.00
## 7016 DS 2009 Simulation Ubisoft 0.16
## 7017 XB 2005 Action Vivendi Games 0.17
## 7018 PS3 2009 Adventure Disney Interactive Studios 0.14
## 7019 PS2 2002 Sports Sony Computer Entertainment 0.11
## 7020 XOne 2015 Action Activision 0.16
## 7021 PS 1998 Fighting Namco Bandai Games 0.13
## 7022 SAT 1995 Fighting Sega 0.00
## 7023 SAT 1996 Role-Playing Kadokawa Shoten 0.00
## 7024 GC 2002 Platform THQ 0.18
## 7025 DS 2008 Sports Ubisoft 0.21
## 7026 WiiU 2014 Action Warner Bros. Interactive Entertainment 0.10
## 7027 DS 2008 Misc Disney Interactive Studios 0.19
## 7028 X360 2005 Action Take-Two Interactive 0.21
## 7029 DS 2006 Strategy THQ 0.19
## 7030 DS 2008 Simulation Atari 0.20
## 7031 PS 2001 Shooter Ubisoft 0.13
## 7032 PS 2000 Sports Sony Computer Entertainment 0.13
## 7033 Wii 2007 Sports Detn8 Games 0.21
## 7034 GBA 2005 Misc Konami Digital Entertainment 0.17
## 7035 PSP 2013 Sports Electronic Arts 0.00
## 7036 PS2 NA Shooter Unknown 0.11
## 7037 PS 1998 Simulation Psygnosis 0.13
## 7038 DS 2010 Adventure Nintendo 0.00
## 7039 PSP 2008 Strategy Konami Digital Entertainment 0.00
## 7040 X360 2009 Action Tecmo Koei 0.13
## 7041 X360 2014 Fighting Namco Bandai Games 0.13
## 7042 DS 2008 Simulation GSP 0.21
## 7043 GBA 2005 Sports Electronic Arts 0.17
## 7044 Wii 2011 Misc Konami Digital Entertainment 0.15
## 7045 PS3 2007 Racing Electronic Arts 0.15
## 7046 NG 1994 Fighting SNK 0.00
## 7047 PS 1996 Action American Softworks 0.13
## 7048 DS 2008 Role-Playing Rising Star Games 0.21
## 7049 XOne 2015 Racing Slightly Mad Studios 0.08
## 7050 PS2 2010 Sports Take-Two Interactive 0.11
## 7051 PC 2015 Shooter Activision 0.00
## 7052 XB 2004 Action Take-Two Interactive 0.17
## 7053 PS3 2011 Action Activision 0.13
## 7054 Wii 2009 Action THQ 0.08
## 7055 PS2 2001 Sports Sony Computer Entertainment 0.11
## 7056 PS3 2009 Sports Activision Value 0.21
## 7057 GBA 2002 Platform Capcom 0.16
## 7058 PS4 2014 Sports Electronic Arts 0.15
## 7059 Wii 2008 Puzzle Capcom 0.19
## 7060 PC 2012 Role-Playing Deep Silver 0.00
## 7061 PSV 2016 Action Square Enix 0.00
## 7062 X360 2011 Action THQ 0.20
## 7063 Wii 2008 Action Ubisoft 0.20
## 7064 PSP 2012 Adventure Namco Bandai Games 0.00
## 7065 DS 2007 Sports Activision 0.21
## 7066 GB 1992 Puzzle Nintendo 0.00
## 7067 PS2 2003 Sports Sega 0.00
## 7068 PS3 2009 Action Tecmo Koei 0.00
## 7069 PS2 2007 Misc Activision 0.11
## 7070 3DS 2011 Fighting THQ 0.15
## 7071 DS 2007 Action Nintendo 0.09
## 7072 PS2 2005 Action Sony Computer Entertainment 0.11
## 7073 PS4 2016 Sports 505 Games 0.02
## 7074 3DS 2011 Misc Activision 0.22
## 7075 PSP 2009 Adventure Namco Bandai Games 0.00
## 7076 PS 1997 Action GT Interactive 0.13
## 7077 GBA 2007 Adventure Activision 0.16
## 7078 Wii 2008 Simulation Ubisoft 0.21
## 7079 PSP 2009 Fighting Namco Bandai Games 0.00
## 7080 DS 2008 Sports Sega 0.00
## 7081 Wii 2006 Sports Nintendo 0.14
## 7082 PS2 2003 Racing Eidos Interactive 0.11
## 7083 GBA 2004 Role-Playing Capcom 0.16
## 7084 Wii 2009 Adventure Activision 0.21
## 7085 SNES 1996 Role-Playing Enix Corporation 0.00
## 7086 XB 2003 Shooter Electronic Arts 0.17
## 7087 DS 2005 Fighting Tomy Corporation 0.00
## 7088 XB 2003 Shooter Activision 0.17
## 7089 Wii 2010 Sports Konami Digital Entertainment 0.08
## 7090 PS2 2007 Adventure Disney Interactive Studios 0.11
## 7091 PS2 2006 Role-Playing Square Enix 0.06
## 7092 PS 1997 Role-Playing Psygnosis 0.13
## 7093 PS3 2010 Sports Konami Digital Entertainment 0.00
## 7094 PS2 2008 Action THQ 0.11
## 7095 SNES 1991 Shooter Nintendo 0.00
## 7096 PS 1998 Action GT Interactive 0.13
## 7097 PS 1999 Strategy Banpresto 0.00
## 7098 GC 2002 Sports Electronic Arts 0.18
## 7099 PS2 2003 Shooter Zoo Digital Publishing 0.11
## 7100 PS2 2003 Sports Midway Games 0.11
## 7101 Wii 2009 Simulation Electronic Arts 0.18
## 7102 Wii 2010 Racing Disney Interactive Studios 0.18
## 7103 PS 1995 Shooter Ocean 0.06
## 7104 Wii 2007 Sports 505 Games 0.21
## 7105 PS 1997 Fighting Virgin Interactive 0.06
## 7106 XB 2004 Misc Zoo Digital Publishing 0.17
## 7107 PSP 2008 Role-Playing Rising Star Games 0.09
## 7108 PS2 2006 Role-Playing Namco Bandai Games 0.11
## 7109 PSP 2006 Role-Playing Tecmo Koei 0.15
## 7110 PS3 2012 Adventure Sony Computer Entertainment 0.19
## 7111 PSP 2008 Sports Electronic Arts 0.21
## 7112 Wii 2010 Sports D3Publisher 0.21
## 7113 PS2 2003 Sports Sony Computer Entertainment 0.11
## 7114 Wii 2009 Misc Nordcurrent 0.19
## 7115 PS2 2004 Adventure THQ 0.11
## 7116 DS 2007 Strategy Sega 0.20
## 7117 PS2 2007 Misc Sony Computer Entertainment 0.11
## 7118 PS3 2011 Shooter Ubisoft 0.09
## 7119 Wii 2010 Action THQ 0.14
## 7120 X360 2008 Misc MTV Games 0.21
## 7121 GB 1996 Puzzle Nintendo 0.00
## 7122 PS2 2002 Sports Sony Computer Entertainment 0.11
## 7123 DS 2011 Adventure Scholastic Inc. 0.21
## 7124 PS 1998 Fighting Tomy Corporation 0.00
## 7125 PSV 2015 Action Marvelous Interactive 0.06
## 7126 DS 2006 Role-Playing Namco Bandai Games 0.00
## 7127 PS2 2002 Sports Sony Computer Entertainment 0.11
## 7128 PS 1997 Platform Ocean 0.13
## 7129 PS2 2003 Action Kemco 0.11
## 7130 PSP 2005 Sports Electronic Arts 0.20
## 7131 PS3 2014 Role-Playing Namco Bandai Games 0.00
## 7132 3DS 2011 Racing Disney Interactive Studios 0.21
## 7133 DS 2008 Simulation Ubisoft 0.20
## 7134 PC 2012 Shooter Take-Two Interactive 0.11
## 7135 PS2 2002 Action Midway Games 0.11
## 7136 Wii 2008 Fighting Electronic Arts 0.20
## 7137 PSP 2006 Role-Playing Eidos Interactive 0.20
## 7138 PS3 2011 Action Namco Bandai Games 0.00
## 7139 PS2 2008 Fighting Midway Games 0.10
## 7140 DS 2006 Misc Konami Digital Entertainment 0.18
## 7141 GC 2004 Fighting Electronic Arts 0.17
## 7142 PSP 2013 Role-Playing Namco Bandai Games 0.00
## 7143 PS2 2005 Action Sega 0.11
## 7144 PS3 2013 Action Deep Silver 0.12
## 7145 GBA 2001 Misc Takara 0.16
## 7146 X360 2013 Action Namco Bandai Games 0.12
## 7147 N64 1997 Misc Namco Bandai Games 0.00
## 7148 GC 2003 Misc Acclaim Entertainment 0.17
## 7149 2600 1981 Shooter 20th Century Fox Video Games 0.21
## 7150 2600 1982 Action Bomb 0.21
## 7151 2600 1981 Action Parker Bros. 0.21
## 7152 PSP 2009 Role-Playing Falcom Corporation 0.14
## 7153 DS 2010 Action THQ 0.17
## 7154 PSP 2007 Action Namco Bandai Games 0.00
## 7155 PS3 2009 Action Disney Interactive Studios 0.13
## 7156 PSP 2011 Action Level 5 0.00
## 7157 Wii 2010 Misc D3Publisher 0.21
## 7158 XB 2004 Shooter SCi 0.17
## 7159 PS2 2002 Sports Crave Entertainment 0.11
## 7160 PS2 2004 Shooter Namco Bandai Games 0.11
## 7161 PS2 2005 Misc Hudson Soft 0.00
## 7162 XOne 2015 Role-Playing Namco Bandai Games 0.13
## 7163 DS 2008 Simulation 505 Games 0.21
## 7164 PS2 2010 Platform D3Publisher 0.13
## 7165 3DS 2013 Action Sega 0.00
## 7166 GC 2002 Role-Playing Atari 0.17
## 7167 DS 2009 Platform Ubisoft 0.20
## 7168 PS2 2008 Racing Capcom 0.01
## 7169 PSP 2011 Sports Electronic Arts 0.21
## 7170 PS3 2011 Action Capcom 0.00
## 7171 GBA 2001 Role-Playing Ubisoft 0.11
## 7172 DS 2008 Role-Playing GungHo 0.10
## 7173 PS2 2005 Racing Global Star 0.11
## 7174 GC 2004 Sports Electronic Arts 0.17
## 7175 GBA 2004 Sports Nintendo 0.16
## 7176 GBA 2005 Action THQ 0.16
## 7177 DS 2008 Adventure Ubisoft 0.21
## 7178 PS3 2010 Racing Capcom 0.05
## 7179 PS3 2011 Role-Playing Marvelous Interactive 0.14
## 7180 Wii 2009 Platform Majesco Entertainment 0.19
## 7181 PS4 2016 Shooter Take-Two Interactive 0.09
## 7182 PS3 NA Sports Sony Computer Entertainment 0.00
## 7183 PS3 2013 Role-Playing Tecmo Koei 0.06
## 7184 DS 2010 Puzzle Avanquest 0.13
## 7185 2600 1981 Action Atari 0.21
## 7186 SNES 1992 Platform Hudson Soft 0.00
## 7187 PS 1998 Puzzle Acclaim Entertainment 0.12
## 7188 Wii 2007 Platform Vivendi Games 0.18
## 7189 PS 1996 Sports Acclaim Entertainment 0.12
## 7190 Wii 2006 Action Midway Games 0.19
## 7191 PS2 2004 Fighting Namco Bandai Games 0.03
## 7192 Wii 2008 Misc Ubisoft 0.20
## 7193 PS2 2002 Shooter Capcom 0.07
## 7194 Wii 2008 Sports Activision 0.20
## 7195 PS2 2003 Action Namco Bandai Games 0.00
## 7196 3DS 2011 Platform Sega 0.14
## 7197 Wii 2011 Action THQ 0.19
## 7198 DS 2006 Sports Activision 0.20
## 7199 GBA 2004 Platform Capcom 0.16
## 7200 PC 2012 Action Warner Bros. Interactive Entertainment 0.07
## 7201 PS3 2013 Action Square Enix 0.07
## 7202 PSP 2007 Action Vivendi Games 0.03
## 7203 PS3 2014 Action Konami Digital Entertainment 0.03
## 7204 Wii 2010 Action THQ 0.19
## 7205 DS 2008 Misc AQ Interactive 0.20
## 7206 Wii 2008 Action Ubisoft 0.16
## 7207 PS 1999 Sports Mattel Interactive 0.12
## 7208 Wii 2010 Adventure Ubisoft 0.12
## 7209 GBA 2004 Misc N/A 0.16
## 7210 PSP 2007 Action Empire Interactive 0.09
## 7211 PS3 2013 Role-Playing Nippon Ichi Software 0.05
## 7212 PC 2015 Shooter Ubisoft 0.12
## 7213 PSV 2012 Action Ubisoft 0.09
## 7214 PC NA Action Warner Bros. Interactive Entertainment 0.05
## 7215 GBA 2004 Misc Atari 0.16
## 7216 DS 2009 Simulation Ubisoft 0.20
## 7217 PS3 2014 Adventure Telltale Games 0.09
## 7218 GBA 2004 Role-Playing Electronic Arts 0.16
## 7219 Wii 2009 Adventure Deep Silver 0.09
## 7220 XB 2004 Action Midway Games 0.16
## 7221 PS4 2016 Role-Playing Square Enix 0.00
## 7222 GC 2002 Puzzle THQ 0.17
## 7223 X360 2014 Adventure Activision 0.11
## 7224 N64 2000 Fighting Acclaim Entertainment 0.18
## 7225 N64 2000 Action Capcom 0.14
## 7226 N64 1996 Sports Imagineer 0.00
## 7227 N64 1999 Action GT Interactive 0.18
## 7228 N64 2000 Puzzle Namco Bandai Games 0.18
## 7229 Wii 2009 Role-Playing Namco Bandai Games 0.00
## 7230 DS 2008 Strategy THQ 0.17
## 7231 GC 2004 Action Capcom 0.17
## 7232 DS 2009 Adventure Ubisoft 0.20
## 7233 Wii 2009 Racing Zoo Digital Publishing 0.21
## 7234 PS2 2002 Misc Acclaim Entertainment 0.11
## 7235 DS 2007 Puzzle Avanquest 0.03
## 7236 PS 1996 Sports Acclaim Entertainment 0.12
## 7237 DS 2008 Adventure Atari 0.04
## 7238 DS 2007 Shooter Eidos Interactive 0.20
## 7239 X360 2009 Strategy Kalypso Media 0.15
## 7240 XB 2002 Misc Infogrames 0.16
## 7241 X360 2009 Action D3Publisher 0.11
## 7242 PS 1998 Sports Fox Interactive 0.12
## 7243 Wii 2009 Action Electronic Arts 0.17
## 7244 XB 2004 Shooter Eidos Interactive 0.16
## 7245 X360 2011 Action Bethesda Softworks 0.13
## 7246 PS 1998 Strategy Konami Digital Entertainment 0.05
## 7247 PS4 2016 Role-Playing Namco Bandai Games 0.00
## 7248 GC 2001 Sports Acclaim Entertainment 0.17
## 7249 PS2 2004 Role-Playing 505 Games 0.11
## 7250 PS2 2001 Simulation Sammy Corporation 0.11
## 7251 DC 2000 Fighting Virgin Interactive 0.00
## 7252 Wii 2008 Sports Electronic Arts 0.19
## 7253 DS 2009 Role-Playing Sega 0.07
## 7254 X360 2011 Misc Unknown 0.11
## 7255 PS4 2015 Action Activision 0.10
## 7256 DS 2008 Misc Namco Bandai Games 0.00
## 7257 GC 2005 Action Electronic Arts 0.17
## 7258 Wii 2011 Misc THQ 0.20
## 7259 PS3 2015 Misc Ubisoft 0.10
## 7260 PS3 2009 Misc Crave Entertainment 0.20
## 7261 PS2 2009 Misc Activision 0.11
## 7262 PS2 2001 Sports Acclaim Entertainment 0.11
## 7263 GB 1997 Puzzle Nintendo 0.00
## 7264 X360 2008 Sports Electronic Arts 0.20
## 7265 X360 2006 Shooter Sega 0.19
## 7266 PC 2011 Action Deep Silver 0.12
## 7267 PS2 2006 Role-Playing Rising Star Games 0.11
## 7268 DS 2009 Puzzle Electronic Arts 0.01
## 7269 WiiU 2015 Role-Playing Nintendo 0.10
## 7270 PS2 2003 Sports Electronic Arts 0.11
## 7271 GBA 2002 Action Nintendo 0.16
## 7272 3DS 2012 Adventure Nintendo 0.12
## 7273 PSP 2005 Sports Sony Computer Entertainment 0.20
## 7274 GBA 2003 Action Tomy Corporation 0.16
## 7275 PSP 2009 Role-Playing Atlus 0.08
## 7276 DS 2007 Adventure Tecmo Koei 0.00
## 7277 PS2 2002 Racing Activision 0.11
## 7278 DS 2006 Sports Electronic Arts 0.20
## 7279 PS2 2006 Sports Konami Digital Entertainment 0.00
## 7280 GC 2002 Sports Sega 0.17
## 7281 PS4 2015 Action Nordic Games 0.09
## 7282 PS 2001 Sports Take-Two Interactive 0.12
## 7283 DS 2005 Platform Nintendo 0.00
## 7284 GBA 2003 Platform Zoo Digital Publishing 0.16
## 7285 DS 2008 Misc THQ 0.20
## 7286 PS2 2008 Sports Konami Digital Entertainment 0.00
## 7287 PS 1999 Action Sony Computer Entertainment 0.12
## 7288 PS 1999 Racing Electronic Arts 0.12
## 7289 PS3 2013 Shooter Capcom 0.07
## 7290 Wii 2008 Misc Zoo Digital Publishing 0.19
## 7291 3DS 2015 Strategy Nintendo 0.14
## 7292 PS3 2010 Racing Black Bean Games 0.05
## 7293 PS4 2013 Sports Electronic Arts 0.14
## 7294 GC 2004 Action THQ 0.17
## 7295 SAT 1995 Sports Sega 0.00
## 7296 GBA 2003 Misc Codemasters 0.15
## 7297 Wii 2008 Sports DTP Entertainment 0.00
## 7298 GBA 2002 Misc THQ 0.15
## 7299 GC 2005 Action Activision 0.17
## 7300 X360 2013 Shooter City Interactive 0.06
## 7301 X360 2006 Simulation Ubisoft 0.19
## 7302 SNES 1993 Action Namco Bandai Games 0.00
## 7303 PS3 2010 Simulation Activision 0.11
## 7304 PSV 2015 Action Namco Bandai Games 0.00
## 7305 PS2 2002 Adventure Eidos Interactive 0.11
## 7306 X360 2012 Simulation Namco Bandai Games 0.13
## 7307 PC 2003 Role-Playing CCP 0.00
## 7308 PSP 2012 Action Namco Bandai Games 0.00
## 7309 DS 2008 Action Tecmo Koei 0.17
## 7310 PS4 2015 Racing Milestone S.r.l. 0.03
## 7311 DS 2008 Role-Playing Ignition Entertainment 0.12
## 7312 XOne 2014 Role-Playing Square Enix 0.10
## 7313 PS 2000 Sports Konami Digital Entertainment 0.12
## 7314 PS2 2001 Sports THQ 0.11
## 7315 PS3 2008 Adventure Unknown 0.12
## 7316 PS 2001 Sports Activision Value 0.12
## 7317 PSP 2006 Role-Playing Ghostlight 0.10
## 7318 Wii 2010 Misc Nintendo 0.20
## 7319 NA NA
## 7320 PS2 2004 Racing Ubisoft 0.11
## 7321 PS 1996 Platform BMG Interactive Entertainment 0.12
## 7322 PS3 2011 Misc Sony Computer Entertainment 0.00
## 7323 GC 2005 Misc Namco Bandai Games 0.17
## 7324 PS2 2004 Racing Eidos Interactive 0.11
## 7325 PSP 2005 Sports Sony Computer Entertainment 0.20
## 7326 PS2 2009 Fighting Ubisoft 0.11
## 7327 SAT 1997 Sports Sega 0.00
## 7328 3DS 2011 Action Activision 0.16
## 7329 Wii 2007 Role-Playing Square Enix 0.09
## 7330 SAT 1997 Role-Playing Kadokawa Shoten 0.00
## 7331 DS 2007 Sports Namco Bandai Games 0.00
## 7332 PS2 2002 Action Agetec 0.03
## 7333 SAT 1997 Adventure Imagineer 0.00
## 7334 Wii 2010 Misc Nordic Games 0.00
## 7335 Wii 2008 Sports Atari 0.20
## 7336 Wii 2011 Action Konami Digital Entertainment 0.08
## 7337 PSV 2013 Action Nippon Ichi Software 0.09
## 7338 PS2 2008 Racing Warner Bros. Interactive Entertainment 0.10
## 7339 X360 2006 Sports Take-Two Interactive 0.20
## 7340 XOne 2014 Action Activision 0.12
## 7341 X360 2011 Sports Activision 0.18
## 7342 GC 2006 Adventure THQ 0.17
## 7343 PS 1999 Action Electronic Arts 0.12
## 7344 PSP 2010 Fighting THQ 0.11
## 7345 PS3 2008 Racing THQ 0.10
## 7346 PS2 2000 Racing Interplay 0.10
## 7347 3DS 2012 Simulation Konami Digital Entertainment 0.00
## 7348 PS2 2004 Role-Playing Ubisoft 0.10
## 7349 X360 2007 Sports Electronic Arts 0.20
## 7350 PS2 2006 Misc Hudson Soft 0.00
## 7351 GBA 2002 Shooter TDK Mediactive 0.15
## 7352 PS2 NA Fighting N/A 0.10
## 7353 XB 2003 Fighting Gotham Games 0.16
## 7354 PS3 2010 Action Namco Bandai Games 0.00
## 7355 PS2 2002 Strategy Ubisoft 0.10
## 7356 DS 2005 Sports Activision 0.19
## 7357 PS3 2011 Platform THQ 0.11
## 7358 X360 2009 Sports Take-Two Interactive 0.19
## 7359 XB 2002 Shooter Universal Interactive 0.16
## 7360 X360 2009 Adventure Disney Interactive Studios 0.14
## 7361 X360 2009 Shooter THQ 0.12
## 7362 Wii 2008 Action THQ 0.19
## 7363 XB 2005 Sports Take-Two Interactive 0.16
## 7364 XB 2004 Action Activision 0.16
## 7365 PS2 2005 Misc Take-Two Interactive 0.10
## 7366 X360 2010 Action Deep Silver 0.07
## 7367 PS2 2004 Shooter Konami Digital Entertainment 0.10
## 7368 PSP 2005 Sports Electronic Arts 0.20
## 7369 PS3 2014 Racing Codemasters 0.05
## 7370 2600 NA Action Activision 0.20
## 7371 2600 NA Puzzle Sears 0.20
## 7372 2600 1981 Sports Atari 0.20
## 7373 Wii 2011 Misc Unknown 0.00
## 7374 DS 2011 Strategy Konami Digital Entertainment 0.10
## 7375 X360 2015 Action Konami Digital Entertainment 0.12
## 7376 X360 2010 Misc Electronic Arts 0.17
## 7377 PS3 2009 Action Electronic Arts 0.11
## 7378 X360 2007 Misc Ubisoft 0.18
## 7379 PS2 2004 Action Capcom 0.10
## 7380 PS2 2001 Shooter Electronic Arts 0.10
## 7381 PS2 2005 Platform Namco Bandai Games 0.10
## 7382 GC 2003 Fighting Tomy Corporation 0.00
## 7383 XB NA Shooter Unknown 0.16
## 7384 PS 1996 Adventure Pioneer LDC 0.00
## 7385 PS4 2014 Action Activision 0.07
## 7386 SNES 1995 Fighting Namco Bandai Games 0.00
## 7387 Wii 2009 Adventure GSP 0.12
## 7388 3DS 2014 Action Marvelous Entertainment 0.09
## 7389 PSP 2009 Fighting THQ 0.17
## 7390 DS 2008 Action Disney Interactive Studios 0.19
## 7391 PS3 2011 Sports Tecmo Koei 0.06
## 7392 PS 2000 Fighting Acclaim Entertainment 0.12
## 7393 Wii 2009 Sports JoWood Productions 0.15
## 7394 XB 2005 Shooter Ubisoft 0.16
## 7395 Wii 2011 Sports Activision 0.15
## 7396 PSP 2005 Adventure Ubisoft 0.18
## 7397 X360 2009 Sports XS Games 0.20
## 7398 PS2 2005 Strategy Square Enix 0.00
## 7399 PS2 2003 Platform Capcom 0.10
## 7400 GC 2003 Platform THQ 0.16
## 7401 Wii 2010 Misc Namco Bandai Games 0.20
## 7402 DS 2009 Action Zoo Games 0.20
## 7403 PSP 2010 Sports Sony Computer Entertainment 0.06
## 7404 PS2 2002 Role-Playing THQ 0.10
## 7405 PS 2002 Platform TDK Mediactive 0.12
## 7406 PS2 2001 Adventure Konami Digital Entertainment 0.09
## 7407 PSP NA Strategy Sega 0.00
## 7408 XB 2003 Sports Activision Value 0.16
## 7409 WiiU 2013 Simulation Disney Interactive Studios 0.15
## 7410 PSP 2007 Sports 505 Games 0.19
## 7411 PSP 2005 Misc Activision 0.19
## 7412 N64 1997 Fighting Interplay 0.17
## 7413 N64 1999 Misc Hasbro Interactive 0.17
## 7414 N64 1998 Fighting THQ 0.17
## 7415 N64 2000 Racing Midway Games 0.17
## 7416 N64 1999 Platform Crave Entertainment 0.17
## 7417 N64 1999 Shooter Virgin Interactive 0.17
## 7418 3DS 2012 Role-Playing Nintendo 0.13
## 7419 X360 2012 Action Activision 0.20
## 7420 PS 1996 Role-Playing Seta Corporation 0.00
## 7421 X360 2008 Racing Black Bean Games 0.06
## 7422 SAT 1996 Fighting SNK 0.00
## 7423 GC 2003 Action Electronic Arts 0.16
## 7424 PS3 NA Racing Black Bean Games 0.00
## 7425 PS 1997 Role-Playing On Demand 0.12
## 7426 PS 1999 Role-Playing SquareSoft 0.12
## 7427 PS 2000 Role-Playing Sony Computer Entertainment 0.00
## 7428 GBA 2004 Platform Konami Digital Entertainment 0.00
## 7429 X360 2007 Action Microsoft Game Studios 0.18
## 7430 X360 2009 Action Gamebridge 0.12
## 7431 PS2 2002 Action Eidos Interactive 0.10
## 7432 XB 2004 Shooter Atari 0.17
## 7433 PS2 2001 Racing Electronic Arts 0.10
## 7434 PS2 2008 Action Activision 0.10
## 7435 PS3 2013 Role-Playing Nippon Ichi Software 0.09
## 7436 XB 2005 Action Electronic Arts 0.16
## 7437 Wii 2012 Misc Ubisoft 0.15
## 7438 PS2 2006 Sports Konami Digital Entertainment 0.00
## 7439 GBA 2003 Platform TDK Mediactive 0.15
## 7440 DS 2010 Role-Playing Nintendo 0.08
## 7441 PSP 2010 Role-Playing Namco Bandai Games 0.00
## 7442 XB 2002 Action Sega 0.13
## 7443 GC 2001 Sports Midway Games 0.16
## 7444 Wii 2010 Action THQ 0.12
## 7445 GC 2002 Sports Electronic Arts 0.16
## 7446 X360 2009 Sports Zushi Games 0.18
## 7447 PS 1999 Racing Psygnosis 0.12
## 7448 PS2 2000 Sports Konami Digital Entertainment 0.10
## 7449 PS2 2005 Action Eidos Interactive 0.10
## 7450 DS 2008 Sports Activision 0.19
## 7451 DS 2009 Strategy Namco Bandai Games 0.00
## 7452 PS 2000 Fighting Midway Games 0.12
## 7453 PSV 2014 Action Warner Bros. Interactive Entertainment 0.03
## 7454 PSV 2014 Platform Ubisoft 0.03
## 7455 DS 2007 Role-Playing Namco Bandai Games 0.19
## 7456 DS 2008 Racing Eidos Interactive 0.19
## 7457 DS 2011 Puzzle Scholastic Inc. 0.19
## 7458 PS2 2006 Role-Playing Tecmo Koei 0.00
## 7459 X360 2010 Shooter Majesco Entertainment 0.19
## 7460 PS2 2005 Action THQ 0.10
## 7461 X360 2010 Shooter Namco Bandai Games 0.11
## 7462 X360 2007 Sports Electronic Arts 0.19
## 7463 XB 2002 Sports Electronic Arts 0.15
## 7464 PS3 2011 Action THQ 0.11
## 7465 SAT 1995 Fighting Acclaim Entertainment 0.00
## 7466 DS 2008 Misc Activision 0.19
## 7467 PSP 2005 Sports Electronic Arts 0.19
## 7468 PS 1998 Adventure Sony Computer Entertainment 0.00
## 7469 PS2 2002 Sports Sega 0.10
## 7470 DS 2006 Misc Namco Bandai Games 0.00
## 7471 GBA 2004 Misc N/A 0.15
## 7472 PS3 2010 Sports Konami Digital Entertainment 0.00
## 7473 Wii 2008 Misc THQ 0.19
## 7474 GBA 2001 Fighting Ubisoft 0.09
## 7475 Wii 2011 Role-Playing Marvelous Interactive 0.14
## 7476 DS 2012 Action Activision 0.15
## 7477 PSP 2009 Sports Electronic Arts 0.19
## 7478 PS2 2002 Sports Zoo Digital Publishing 0.04
## 7479 Wii 2009 Simulation Ubisoft 0.13
## 7480 GC 2002 Action Atari 0.16
## 7481 XB 2004 Sports Global Star 0.15
## 7482 3DS 2012 Action Nintendo 0.00
## 7483 PS3 2012 Action Sega 0.10
## 7484 X360 2009 Adventure Ubisoft 0.10
## 7485 PC 2013 Shooter Trion Worlds 0.14
## 7486 PSP 2011 Sports Sega 0.00
## 7487 3DS 2015 Action Warner Bros. Interactive Entertainment 0.05
## 7488 PS 2000 Adventure Infogrames 0.11
## 7489 DS 2006 Racing Electronic Arts 0.17
## 7490 GC 2005 Fighting Atari 0.16
## 7491 PS3 2010 Action Sony Computer Entertainment 0.06
## 7492 PS3 2012 Action Konami Digital Entertainment 0.00
## 7493 XB 2003 Platform Activision 0.15
## 7494 GBA 2002 Action THQ 0.15
## 7495 PS4 2014 Adventure Telltale Games 0.10
## 7496 PSP 2006 Strategy Atari 0.18
## 7497 Wii 2010 Strategy Ubisoft 0.15
## 7498 PS4 2016 Action Tecmo Koei 0.02
## 7499 NG 1995 Fighting SNK 0.00
## 7500 DS 2009 Simulation 505 Games 0.19
## 7501 GBA 2002 Misc Acclaim Entertainment 0.15
## 7502 Wii 2010 Sports Activision 0.19
## 7503 PS3 2007 Role-Playing Ubisoft 0.17
## 7504 GBA 2004 Action Atari 0.15
## 7505 Wii 2011 Fighting THQ 0.11
## 7506 GB 2000 Strategy Nintendo 0.00
## 7507 PSP 2008 Misc Crave Entertainment 0.19
## 7508 X360 2011 Misc THQ 0.19
## 7509 DS 2009 Adventure City Interactive 0.07
## 7510 XOne 2014 Sports Electronic Arts 0.17
## 7511 PS2 2004 Fighting Capcom 0.10
## 7512 3DS 2011 Action Konami Digital Entertainment 0.16
## 7513 SNES 1995 Strategy Namco Bandai Games 0.00
## 7514 PS2 2005 Sports Atari 0.10
## 7515 XB 2001 Racing Infogrames 0.15
## 7516 Wii 2009 Action Sega 0.17
## 7517 DS 2009 Puzzle Level 5 0.00
## 7518 X360 2010 Simulation Kalypso Media 0.11
## 7519 Wii 2009 Sports Black Bean Games 0.14
## 7520 PS2 2007 Action Capcom 0.00
## 7521 PS2 2008 Misc Sony Computer Entertainment 0.00
## 7522 PC 2011 Role-Playing Unknown 0.09
## 7523 PS2 2005 Strategy Konami Digital Entertainment 0.06
## 7524 XB 2005 Sports Electronic Arts 0.15
## 7525 PS3 2011 Sports Take-Two Interactive 0.15
## 7526 PS3 2006 Simulation Namco Bandai Games 0.06
## 7527 DC 2000 Role-Playing Sega 0.00
## 7528 XB 2002 Racing Sega 0.14
## 7529 X360 2008 Role-Playing Ubisoft 0.16
## 7530 Wii 2011 Misc Ubisoft 0.00
## 7531 XB 2006 Racing Take-Two Interactive 0.15
## 7532 PS2 2000 Sports Konami Digital Entertainment 0.00
## 7533 PC 2011 Shooter THQ 0.09
## 7534 GBA 2005 Misc Zoo Digital Publishing 0.15
## 7535 PS2 2005 Misc Crave Entertainment 0.10
## 7536 SNES 1994 Racing BPS 0.00
## 7537 PSP 2012 Role-Playing Sega 0.00
## 7538 PS3 2013 Role-Playing Nippon Ichi Software 0.05
## 7539 PS3 2014 Role-Playing Tecmo Koei 0.06
## 7540 Wii 2009 Misc Mindscape 0.00
## 7541 PS2 2008 Sports Crave Entertainment 0.10
## 7542 PS2 2006 Fighting Ignition Entertainment 0.10
## 7543 PS2 2003 Sports Konami Digital Entertainment 0.00
## 7544 PS3 2011 Fighting PQube 0.04
## 7545 3DS 2012 Fighting Nintendo 0.06
## 7546 DS 2008 Misc Mindscape 0.00
## 7547 X360 2011 Misc 505 Games 0.17
## 7548 PSP 2010 Sports Sony Computer Entertainment 0.19
## 7549 XOne 2015 Strategy Microsoft Game Studios 0.14
## 7550 X360 2009 Sports Codemasters 0.00
## 7551 PS2 2004 Racing Play It 0.10
## 7552 GC 2005 Misc THQ 0.16
## 7553 SAT 1996 Strategy NCS 0.00
## 7554 NG 1994 Fighting SNK 0.00
## 7555 XB 2002 Sports Midway Games 0.15
## 7556 Wii 2009 Action Namco Bandai Games 0.13
## 7557 Wii 2009 Role-Playing Disney Interactive Studios 0.16
## 7558 PS3 2011 Shooter D3Publisher 0.06
## 7559 PS2 2004 Platform Activision 0.10
## 7560 DS 2009 Role-Playing Activision 0.16
## 7561 GC 2003 Fighting Namco Bandai Games 0.00
## 7562 PC 2015 Action Ubisoft 0.10
## 7563 GBA 2003 Sports THQ 0.14
## 7564 PS2 2001 Racing Infogrames 0.09
## 7565 PC 2016 Strategy Take-Two Interactive 0.09
## 7566 PS3 2010 Sports Codemasters 0.00
## 7567 PS2 2004 Sports Sega 0.10
## 7568 Wii 2009 Misc THQ 0.17
## 7569 PS2 2000 Fighting SquareSoft 0.00
## 7570 PS3 2011 Action Nippon Ichi Software 0.00
## 7571 PS3 2007 Shooter Codemasters 0.17
## 7572 GBA 2003 Simulation Ubisoft 0.14
## 7573 PS3 2011 Action Sega 0.10
## 7574 PSV 2012 Sports Sony Computer Entertainment 0.18
## 7575 GC 2004 Platform THQ 0.16
## 7576 PS4 2016 Sports Electronic Arts 0.13
## 7577 SAT 1996 Shooter Namco Bandai Games 0.00
## 7578 DS 2011 Simulation 505 Games 0.13
## 7579 PSP 2012 Action Sega 0.00
## 7580 XB 2002 Sports Sega 0.15
## 7581 GBA 2003 Platform Activision 0.14
## 7582 PSP 2011 Role-Playing Sega 0.00
## 7583 XB 2006 Racing THQ 0.15
## 7584 PS2 2003 Misc Namco Bandai Games 0.00
## 7585 DS 2009 Simulation Ubisoft 0.19
## 7586 GC 2002 Racing Midway Games 0.16
## 7587 PSP 2008 Action Tecmo Koei 0.02
## 7588 PS2 2005 Shooter Electronic Arts 0.10
## 7589 GBA 2001 Sports Ubisoft 0.14
## 7590 PS 1996 Role-Playing ArtDink 0.06
## 7591 X360 2005 Racing Namco Bandai Games 0.10
## 7592 PS4 2013 Strategy Activision 0.10
## 7593 DS 2009 Misc Take-Two Interactive 0.19
## 7594 DS 2009 Misc Ubisoft 0.19
## 7595 DS 2009 Simulation Aspyr 0.19
## 7596 X360 2010 Shooter Square Enix 0.10
## 7597 X360 2010 Misc Namco Bandai Games 0.10
## 7598 PS 1997 Shooter Interplay 0.11
## 7599 X360 2007 Racing Activision 0.18
## 7600 PS3 2009 Action Atari 0.12
## 7601 PS2 2009 Misc MTV Games 0.10
## 7602 X360 2012 Simulation Konami Digital Entertainment 0.14
## 7603 GC 2004 Platform Electronic Arts 0.15
## 7604 PS 1998 Racing Sony Computer Entertainment 0.11
## 7605 PSP 2011 Role-Playing Falcom Corporation 0.00
## 7606 PS3 2010 Action Konami Digital Entertainment 0.10
## 7607 DS 2010 Puzzle Avanquest 0.07
## 7608 XOne 2015 Action Deep Silver 0.10
## 7609 WiiU 2013 Fighting Warner Bros. Interactive Entertainment 0.10
## 7610 XB 2003 Sports Electronic Arts 0.15
## 7611 DS 2010 Adventure Ubisoft 0.13
## 7612 PC 2004 Shooter LucasArts 0.06
## 7613 PS2 2003 Sports Sony Computer Entertainment 0.10
## 7614 XB 2005 Action Disney Interactive Studios 0.15
## 7615 N64 2000 Platform Ubisoft 0.16
## 7616 N64 NA Sports Namco Bandai Games 0.00
## 7617 N64 1999 Racing Titus 0.06
## 7618 N64 1997 Puzzle Activision 0.13
## 7619 N64 1998 Sports Kemco 0.16
## 7620 N64 2000 Platform Activision 0.16
## 7621 N64 2000 Racing Acclaim Entertainment 0.16
## 7622 N64 1998 Shooter Gremlin Interactive Ltd 0.16
## 7623 N64 2000 Racing Midway Games 0.16
## 7624 N64 1999 Strategy Banpresto 0.00
## 7625 N64 1996 Sports Atlus 0.16
## 7626 PSP 2006 Sports Sony Computer Entertainment 0.18
## 7627 XB 2003 Racing Bethesda Softworks 0.15
## 7628 PSP 2010 Role-Playing Sega 0.00
## 7629 DS 2011 Simulation Activision 0.14
## 7630 3DS 2012 Action Agatsuma Entertainment 0.16
## 7631 DS 2008 Action Eidos Interactive 0.16
## 7632 PSP 2005 Fighting Sony Computer Entertainment 0.18
## 7633 PS4 2015 Sports Activision 0.09
## 7634 PS2 2002 Misc Sammy Corporation 0.00
## 7635 GBA 2005 Misc Namco Bandai Games 0.14
## 7636 PS2 2008 Racing Xplosiv 0.10
## 7637 PS3 2013 Role-Playing Nippon Ichi Software 0.06
## 7638 PS 1999 Strategy Tecmo Koei 0.00
## 7639 Wii 2010 Racing THQ 0.15
## 7640 Wii 2010 Misc Namco Bandai Games 0.00
## 7641 PS3 2011 Sports THQ 0.08
## 7642 PC 2012 Strategy Sega 0.07
## 7643 PS2 2009 Sports Take-Two Interactive 0.10
## 7644 XB 2002 Sports Activision 0.15
## 7645 SNES 1996 Role-Playing SquareSoft 0.00
## 7646 PS3 2006 Role-Playing Electronic Arts 0.14
## 7647 XB 2005 Action Electronic Arts 0.15
## 7648 SAT 1994 Shooter Sega 0.00
## 7649 PC NA Action Electronic Arts 0.02
## 7650 PS3 2013 Sports Konami Digital Entertainment 0.00
## 7651 Wii 2009 Action Destineer 0.14
## 7652 PS4 2016 Shooter Take-Two Interactive 0.05
## 7653 PS3 2010 Simulation Konami Digital Entertainment 0.12
## 7654 PS2 2007 Sports Activision Value 0.10
## 7655 DC 2000 Role-Playing Ubisoft 0.00
## 7656 PS 1996 Misc Sony Computer Entertainment 0.02
## 7657 DS 2008 Misc Disney Interactive Studios 0.18
## 7658 Wii 2011 Sports THQ 0.12
## 7659 X360 2014 Adventure Little Orbit 0.05
## 7660 XB 2004 Action Activision 0.15
## 7661 GC 2004 Sports Electronic Arts 0.15
## 7662 PSP 2013 Sports Konami Digital Entertainment 0.00
## 7663 PS2 2005 Action Konami Digital Entertainment 0.10
## 7664 DS 2008 Misc Ubisoft 0.00
## 7665 X360 2007 Shooter Activision 0.18
## 7666 PSV 2011 Racing Namco Bandai Games 0.04
## 7667 DS 2008 Role-Playing Sega 0.10
## 7668 PS2 2003 Strategy Activision 0.10
## 7669 Wii 2011 Misc Ubisoft 0.19
## 7670 XB 2001 Sports Acclaim Entertainment 0.15
## 7671 DS 2009 Simulation Electronic Arts 0.18
## 7672 PSP 2012 Sports Konami Digital Entertainment 0.00
## 7673 3DS 2016 Action GungHo 0.00
## 7674 GC 2002 Platform THQ 0.15
## 7675 X360 2008 Role-Playing Compile Heart 0.18
## 7676 X360 2008 Racing THQ 0.12
## 7677 PSP 2007 Strategy Take-Two Interactive 0.16
## 7678 PS2 2004 Misc Namco Bandai Games 0.00
## 7679 PS2 2004 Misc Namco Bandai Games 0.10
## 7680 X360 2008 Misc Disney Interactive Studios 0.18
## 7681 PSP 2005 Action Electronic Arts 0.17
## 7682 PS 1995 Puzzle Acclaim Entertainment 0.11
## 7683 PC 2014 Role-Playing Ubisoft 0.07
## 7684 PSP 2006 Shooter Ubisoft 0.17
## 7685 XB 2003 Puzzle THQ 0.15
## 7686 PS3 2006 Simulation 505 Games 0.09
## 7687 XOne 2014 Action Square Enix 0.10
## 7688 PS2 2004 Action Atari 0.10
## 7689 SNES 1991 Sports Culture Brain 0.00
## 7690 Wii 2008 Sports Activision 0.18
## 7691 WiiU 2013 Action Capcom 0.07
## 7692 Wii 2009 Simulation Majesco Entertainment 0.18
## 7693 PS2 2002 Racing Infogrames 0.10
## 7694 PSP 2006 Puzzle Crave Entertainment 0.18
## 7695 Wii 2011 Racing Activision 0.18
## 7696 GBA 2003 Sports Atari 0.14
## 7697 PS2 2005 Simulation Ubisoft 0.10
## 7698 PSP 2010 Sports Konami Digital Entertainment 0.00
## 7699 Wii 2008 Role-Playing Sega 0.08
## 7700 PSP 2011 Role-Playing Sony Computer Entertainment 0.00
## 7701 PS 2002 Action Namco Bandai Games 0.00
## 7702 PSP 2005 Sports Electronic Arts 0.18
## 7703 X360 2007 Action THQ 0.16
## 7704 GBA 2007 Action THQ 0.14
## 7705 GBA 2002 Platform THQ 0.14
## 7706 X360 2007 Action Tecmo Koei 0.17
## 7707 GC 2004 Misc Mad Catz 0.15
## 7708 XB 2002 Adventure Vivendi Games 0.15
## 7709 PS 2000 Action Ubisoft 0.11
## 7710 GBA 2001 Action THQ 0.14
## 7711 DS 2008 Puzzle Nordcurrent 0.05
## 7712 DS 2009 Action Activision 0.15
## 7713 PSP 2011 Sports Konami Digital Entertainment 0.00
## 7714 DS 2006 Misc Shogakukan 0.00
## 7715 XB 2002 Role-Playing Virgin Interactive 0.15
## 7716 PSP 2006 Action Take-Two Interactive 0.18
## 7717 GC 2004 Action Ubisoft 0.15
## 7718 XB 2002 Fighting Crave Entertainment 0.14
## 7719 3DS 2012 Role-Playing Namco Bandai Games 0.00
## 7720 Wii 2011 Action THQ 0.15
## 7721 PC NA Racing Atari 0.05
## 7722 3DS 2016 Platform Capcom 0.13
## 7723 PS2 2005 Action Vivendi Games 0.10
## 7724 Wii 2009 Action Konami Digital Entertainment 0.15
## 7725 3DS 2012 Action Activision 0.18
## 7726 PS2 2005 Racing Xplosiv 0.10
## 7727 PC 2009 Adventure Merscom LLC 0.00
## 7728 DS 2008 Misc THQ 0.18
## 7729 PSV 2013 Role-Playing Nippon Ichi Software 0.06
## 7730 PS4 2015 Shooter Rebellion Developments 0.04
## 7731 PS2 2001 Sports Sony Computer Entertainment 0.10
## 7732 PS2 2008 Role-Playing Gust 0.07
## 7733 PS2 2003 Action SCi 0.10
## 7734 GBA 2002 Misc BAM! Entertainment 0.14
## 7735 DS 2008 Role-Playing Tecmo Koei 0.16
## 7736 PS3 2012 Racing Codemasters 0.02
## 7737 DS 2008 Simulation Destineer 0.18
## 7738 Wii 2008 Shooter Zoo Games 0.18
## 7739 PS3 2008 Role-Playing Codemasters 0.05
## 7740 XB 2002 Racing Empire Interactive 0.15
## 7741 PS2 2005 Misc Sony Computer Entertainment 0.10
## 7742 GBA 2003 Platform Vivendi Games 0.14
## 7743 PS2 2006 Fighting Ignition Entertainment 0.07
## 7744 WiiU 2012 Action Nintendo 0.15
## 7745 PC 2013 Action Deep Silver 0.06
## 7746 PS 1996 Fighting Namco Bandai Games 0.00
## 7747 X360 2012 Action Konami Digital Entertainment 0.11
## 7748 PS4 2014 Role-Playing Focus Home Interactive 0.07
## 7749 X360 2008 Shooter Eidos Interactive 0.08
## 7750 PS3 2010 Action Konami Digital Entertainment 0.10
## 7751 PS3 2009 Action Activision 0.13
## 7752 PS2 2005 Shooter Ubisoft 0.10
## 7753 Wii 2009 Role-Playing Marvelous Interactive 0.13
## 7754 Wii 2009 Misc Take-Two Interactive 0.18
## 7755 DS 2005 Action Sega 0.00
## 7756 X360 2008 Action Namco Bandai Games 0.07
## 7757 DS 2009 Simulation Ubisoft 0.18
## 7758 SNES 1996 Misc Nippon Telenet 0.00
## 7759 GBA 2001 Role-Playing Ubisoft 0.14
## 7760 Wii 2008 Action Vivendi Games 0.17
## 7761 PSP 2012 Misc Spike 0.00
## 7762 PC 2010 Shooter Sega 0.00
## 7763 GC 2006 Platform Vivendi Games 0.15
## 7764 NA NA
## 7765 X360 2006 Role-Playing Ubisoft 0.16
## 7766 GBA 2002 Action TDK Core 0.14
## 7767 DS 2009 Sports Konami Digital Entertainment 0.00
## 7768 PS 1997 Sports Konami Digital Entertainment 0.00
## 7769 PC 2015 Simulation Electronic Arts 0.05
## 7770 SNES 1993 Misc Sammy Corporation 0.00
## 7771 3DS 2011 Misc Namco Bandai Games 0.10
## 7772 PS3 2010 Shooter Tecmo Koei 0.05
## 7773 XB 2004 Action Take-Two Interactive 0.14
## 7774 PS2 2002 Sports Sony Computer Entertainment 0.09
## 7775 PS3 2011 Simulation bitComposer Games 0.10
## 7776 Wii 2011 Misc THQ 0.14
## 7777 DS 2009 Misc Zoo Digital Publishing 0.18
## 7778 DS 2010 Misc Konami Digital Entertainment 0.11
## 7779 DS 2008 Role-Playing Square Enix 0.11
## 7780 PSP 2005 Action Ubisoft 0.16
## 7781 DS 2009 Shooter Square Enix 0.17
## 7782 PSP 2009 Action Activision 0.13
## 7783 3DS 2015 Action Capcom 0.00
## 7784 DS 2010 Puzzle Foreign Media Games 0.01
## 7785 SNES 1996 Sports Epoch 0.00
## 7786 X360 2009 Role-Playing Deep Silver 0.07
## 7787 DS 2010 Adventure Astragon 0.06
## 7788 3DS 2012 Simulation Konami Digital Entertainment 0.00
## 7789 X360 2006 Role-Playing Square Enix 0.17
## 7790 PS2 2002 Role-Playing Capcom 0.09
## 7791 N64 1996 Sports Konami Digital Entertainment 0.00
## 7792 PSP 2010 Action Electronic Arts 0.12
## 7793 PS3 2010 Platform Activision 0.16
## 7794 PS3 2009 Misc MTV Games 0.18
## 7795 PS2 2003 Strategy Banpresto 0.00
## 7796 PS 1998 Racing Acclaim Entertainment 0.11
## 7797 PSV 2013 Role-Playing Screenlife 0.13
## 7798 PS 1996 Shooter Interplay 0.11
## 7799 PC 2010 Strategy Square Enix 0.00
## 7800 X360 2010 Misc Konami Digital Entertainment 0.15
## 7801 PS3 2009 Shooter THQ 0.10
## 7802 GC 2002 Adventure Nintendo 0.15
## 7803 3DS 2011 Action Electronic Arts 0.09
## 7804 Wii 2008 Racing Zoo Digital Publishing 0.18
## 7805 PS3 2008 Shooter Eidos Interactive 0.05
## 7806 X360 2008 Fighting Electronic Arts 0.15
## 7807 PS3 2012 Sports Take-Two Interactive 0.18
## 7808 DS 2009 Role-Playing Ubisoft 0.16
## 7809 Wii 2008 Adventure THQ 0.17
## 7810 PS2 2004 Racing Bethesda Softworks 0.09
## 7811 PS2 2003 Shooter Electronic Arts 0.09
## 7812 XB 2003 Action Eidos Interactive 0.14
## 7813 3DS 2016 Simulation Marvelous Interactive 0.00
## 7814 Wii 2009 Action Activision 0.18
## 7815 X360 2010 Adventure Namco Bandai Games 0.14
## 7816 PS2 2004 Misc Atari 0.09
## 7817 GBA 2002 Role-Playing Namco Bandai Games 0.00
## 7818 DS 2010 Action Activision 0.17
## 7819 PS2 2003 Strategy Electronic Arts 0.09
## 7820 PS3 2011 Strategy PopCap Games 0.18
## 7821 XOne 2013 Sports Electronic Arts 0.16
## 7822 PS2 2001 Shooter Konami Digital Entertainment 0.09
## 7823 GBA 2001 Sports Acclaim Entertainment 0.14
## 7824 SNES 1996 Sports Konami Digital Entertainment 0.00
## 7825 DS 2010 Adventure Konami Digital Entertainment 0.00
## 7826 PS2 2003 Sports Midway Games 0.09
## 7827 PC 2013 Action Ubisoft 0.04
## 7828 PS 1996 Strategy SSI 0.11
## 7829 PS 1999 Fighting Human Entertainment 0.00
## 7830 PS3 2013 Action Namco Bandai Games 0.00
## 7831 X360 2012 Action Sega 0.09
## 7832 PSP 2009 Simulation 505 Games 0.08
## 7833 XOne 2015 Simulation Koch Media 0.10
## 7834 PS3 2008 Simulation Ubisoft 0.06
## 7835 DS 2008 Puzzle Rondomedia 0.15
## 7836 Wii 2011 Misc THQ 0.08
## 7837 DS 2006 Fighting Namco Bandai Games 0.02
## 7838 SAT 1995 Simulation Sega 0.00
## 7839 PS2 2008 Misc Sony Computer Entertainment 0.09
## 7840 PS2 2008 Misc Ignition Entertainment 0.09
## 7841 PS 1998 Fighting Capcom 0.11
## 7842 X360 2011 Action THQ 0.15
## 7843 PS2 2001 Misc Sony Computer Entertainment 0.09
## 7844 PSP 2005 Platform Konami Digital Entertainment 0.17
## 7845 PS3 2009 Racing THQ 0.14
## 7846 Wii 2011 Role-Playing Level 5 0.00
## 7847 GBA 2004 Adventure THQ 0.14
## 7848 XB 2002 Sports Electronic Arts 0.14
## 7849 PSV 2016 Action Kadokawa Games 0.00
## 7850 3DS 2011 Misc THQ 0.13
## 7851 PS2 2003 Misc Sony Computer Entertainment 0.09
## 7852 PC 2011 Racing Electronic Arts 0.05
## 7853 Wii 2009 Racing Ubisoft 0.18
## 7854 GBA 2002 Adventure Konami Digital Entertainment 0.14
## 7855 XB 2004 Role-Playing Microsoft Game Studios 0.14
## 7856 PS3 2011 Action Electronic Arts 0.07
## 7857 3DS 2012 Action Activision 0.15
## 7858 PSP 2009 Adventure Sony Computer Entertainment 0.00
## 7859 PSV 2014 Role-Playing Idea Factory 0.08
## 7860 N64 1996 Shooter GT Interactive 0.15
## 7861 N64 1997 Fighting GT Interactive 0.15
## 7862 N64 1997 Action Video System 0.15
## 7863 N64 1997 Puzzle Compile 0.00
## 7864 N64 1996 Sports Imagineer 0.00
## 7865 N64 1998 Shooter GT Interactive 0.15
## 7866 N64 1999 Misc NewKidCo 0.15
## 7867 3DS 2015 Action Nintendo 0.00
## 7868 Wii 2009 Puzzle Performance Designed Products 0.18
## 7869 DS 2008 Adventure Namco Bandai Games 0.00
## 7870 Wii 2009 Adventure Ubisoft 0.18
## 7871 Wii 2011 Misc Electronic Arts 0.13
## 7872 GC 2004 Action Konami Digital Entertainment 0.15
## 7873 PC 2013 Action Deep Silver 0.11
## 7874 XOne 2013 Fighting Ubisoft 0.11
## 7875 PS2 2008 Sports Activision 0.09
## 7876 GBA 2002 Sports Electronic Arts 0.14
## 7877 PSP 2010 Action Spike 0.00
## 7878 PS 1996 Strategy Mindscape 0.11
## 7879 X360 2011 Action Electronic Arts 0.10
## 7880 PC 2010 Action Take-Two Interactive 0.18
## 7881 DS 2008 Sports Sega 0.00
## 7882 PS3 2011 Action Tecmo Koei 0.06
## 7883 DS 2010 Misc THQ 0.18
## 7884 PS2 2000 Sports Konami Digital Entertainment 0.09
## 7885 GBA 2002 Role-Playing Media Rings 0.14
## 7886 PS2 2005 Shooter Eidos Interactive 0.09
## 7887 PSV 2013 Role-Playing Xseed Games 0.04
## 7888 Wii 2006 Misc Namco Bandai Games 0.12
## 7889 PS2 2006 Misc D3Publisher 0.00
## 7890 PS3 2010 Sports 505 Games 0.10
## 7891 PS3 2010 Sports Ubisoft 0.11
## 7892 GC 2003 Action Universal Interactive 0.15
## 7893 PS4 2016 Action Sony Computer Entertainment 0.00
## 7894 PS3 2011 Sports Activision 0.11
## 7895 Wii 2010 Sports Ubisoft 0.14
## 7896 PS2 2007 Misc Electronic Arts 0.09
## 7897 PS2 2002 Shooter Activision 0.09
## 7898 PS2 2006 Role-Playing Sega 0.00
## 7899 PS2 2002 Sports Atari 0.09
## 7900 PSV 2015 Action Namco Bandai Games 0.00
## 7901 PS2 2004 Action Sega 0.09
## 7902 DS 2009 Sports Nintendo 0.00
## 7903 DS 2010 Adventure Astragon 0.05
## 7904 GC 2006 Platform Vivendi Games 0.15
## 7905 2600 1981 Sports Mattel Interactive 0.18
## 7906 Wii 2011 Misc Crave Entertainment 0.18
## 7907 DS 2010 Puzzle Storm City Games 0.18
## 7908 PS 1997 Strategy Sony Computer Entertainment 0.00
## 7909 3DS NA Simulation Majesco Entertainment 0.18
## 7910 PS 1999 Sports Accolade 0.10
## 7911 GEN 1993 Strategy Sega 0.00
## 7912 PS 1999 Sports Tecmo Koei 0.00
## 7913 XB 2004 Action Electronic Arts 0.14
## 7914 3DS 2011 Racing Activision 0.18
## 7915 PSV 2014 Role-Playing Namco Bandai Games 0.00
## 7916 DS 2006 Puzzle Nintendo 0.00
## 7917 X360 2007 Action Namco Bandai Games 0.15
## 7918 WiiU 2013 Misc Namco Bandai Games 0.00
## 7919 PS2 2009 Action Activision 0.11
## 7920 PS3 2010 Adventure Ubisoft 0.11
## 7921 PS 1995 Sports Acclaim Entertainment 0.10
## 7922 PC 2010 Role-Playing JoWood Productions 0.09
## 7923 Wii 2008 Action SouthPeak Games 0.17
## 7924 X360 2012 Sports 505 Games 0.00
## 7925 PS2 2007 Sports Konami Digital Entertainment 0.00
## 7926 DS 2010 Puzzle THQ 0.10
## 7927 Wii 2007 Action Namco Bandai Games 0.16
## 7928 DS 2004 Misc Nintendo 0.00
## 7929 PS2 2005 Action Sony Computer Entertainment 0.09
## 7930 SNES 1993 Simulation Hect 0.00
## 7931 PC 2011 Racing Codemasters 0.00
## 7932 DS 2010 Misc Hudson Soft 0.00
## 7933 PS3 2013 Strategy Tecmo Koei 0.00
## 7934 Wii 2010 Adventure Asylum Entertainment 0.00
## 7935 Wii 2009 Action Namco Bandai Games 0.17
## 7936 Wii 2011 Misc Nordic Games 0.00
## 7937 DS 2007 Adventure Unknown 0.00
## 7938 PS3 2008 Adventure Disney Interactive Studios 0.12
## 7939 PS4 2014 Misc Sony Computer Entertainment Europe 0.00
## 7940 Wii 2010 Sports Zoo Games 0.18
## 7941 PSV 2015 Action Namco Bandai Games 0.00
## 7942 Wii 2007 Adventure Namco Bandai Games 0.07
## 7943 Wii 2010 Sports Mastiff 0.18
## 7944 GBA 2005 Platform Vivendi Games 0.13
## 7945 X360 2011 Shooter D3Publisher 0.10
## 7946 DS 2007 Misc Nintendo 0.00
## 7947 X360 NA Simulation Ubisoft 0.14
## 7948 PS 1994 Simulation Core Design Ltd. 0.10
## 7949 Wii 2007 Action Disney Interactive Studios 0.17
## 7950 PC 2008 Shooter Activision 0.02
## 7951 PS3 2012 Sports Konami Digital Entertainment 0.00
## 7952 3DS 2013 Misc Namco Bandai Games 0.00
## 7953 SAT 1995 Misc Seta Corporation 0.00
## 7954 GBA 2004 Adventure N/A 0.13
## 7955 X360 2012 Sports Electronic Arts 0.10
## 7956 DS 2009 Action Konami Digital Entertainment 0.00
## 7957 GBA 2002 Action Vivendi Games 0.13
## 7958 PS 1996 Platform Accolade 0.10
## 7959 3DS 2011 Sports Marvelous Interactive 0.12
## 7960 PS2 2000 Sports Sony Computer Entertainment 0.09
## 7961 DS 2010 Simulation 505 Games 0.18
## 7962 PS2 2003 Strategy Capcom 0.09
## 7963 SNES 1994 Strategy Namco Bandai Games 0.00
## 7964 PS2 2003 Shooter Metro 3D 0.09
## 7965 GBA 2001 Action Activision 0.13
## 7966 Wii 2009 Racing Capcom 0.05
## 7967 XB 2002 Racing Sega 0.12
## 7968 PS2 2005 Action Activision 0.09
## 7969 DS 2008 Fighting THQ 0.15
## 7970 3DS 2013 Action Konami Digital Entertainment 0.00
## 7971 PS2 2006 Action Tecmo Koei 0.00
## 7972 XB 2002 Action Eidos Interactive 0.14
## 7973 PS3 2009 Shooter Activision 0.17
## 7974 PS2 2007 Sports Sega 0.00
## 7975 XB 2003 Sports Electronic Arts 0.14
## 7976 XOne 2014 Misc Microsoft Game Studios 0.15
## 7977 PSP 2012 Role-Playing Level 5 0.00
## 7978 DS 2006 Role-Playing Nintendo 0.16
## 7979 WiiU 2012 Fighting Namco Bandai Games 0.09
## 7980 Wii 2009 Racing Activision 0.17
## 7981 Wii 2007 Action D3Publisher 0.17
## 7982 PS2 2002 Role-Playing Tecmo Koei 0.09
## 7983 PSV 2014 Role-Playing Sega 0.00
## 7984 X360 2010 Racing Black Bean Games 0.10
## 7985 PSP 2005 Action Tecmo Koei 0.07
## 7986 XB 2006 Sports Electronic Arts 0.13
## 7987 X360 2007 Shooter Ubisoft 0.14
## 7988 XB 2002 Misc Microsoft Game Studios 0.14
## 7989 DS 2007 Adventure Midway Games 0.17
## 7990 PS2 2003 Role-Playing Sony Online Entertainment 0.09
## 7991 X360 2011 Sports Activision 0.14
## 7992 X360 2008 Sports Midway Games 0.17
## 7993 PSP 2011 Fighting THQ 0.12
## 7994 PS 1997 Action Namco Bandai Games 0.10
## 7995 DC 2001 Role-Playing Sega 0.00
## 7996 PS3 2011 Simulation Sony Computer Entertainment 0.06
## 7997 PC 2011 Action Warner Bros. Interactive Entertainment 0.04
## 7998 PS3 2010 Sports Take-Two Interactive 0.17
## 7999 PS2 2004 Fighting Vivendi Games 0.09
## 8000 DS 2010 Adventure Namco Bandai Games 0.06
## 8001 X360 2012 Shooter Electronic Arts 0.10
## 8002 Wii 2009 Simulation Konami Digital Entertainment 0.17
## 8003 X360 2010 Sports Ubisoft 0.08
## 8004 PS2 2004 Simulation 505 Games 0.09
## 8005 GBA 2003 Sports BAM! Entertainment 0.13
## 8006 DS 2010 Action THQ 0.13
## 8007 DS 2006 Simulation Ubisoft 0.17
## 8008 PS2 2003 Role-Playing Atari 0.09
## 8009 XB 2005 Shooter Take-Two Interactive 0.14
## 8010 PS4 2014 Racing Milestone S.r.l. 0.04
## 8011 XB 2003 Action LucasArts 0.14
## 8012 Wii 2007 Sports Electronic Arts 0.17
## 8013 PS2 2003 Action Vivendi Games 0.09
## 8014 PSP 2009 Role-Playing Rising Star Games 0.08
## 8015 X360 2008 Misc MTV Games 0.16
## 8016 PS 2000 Sports Victor Interactive 0.10
## 8017 Wii 2009 Action Take-Two Interactive 0.17
## 8018 PSV 2013 Adventure Square Enix 0.14
## 8019 XB 2002 Platform Electronic Arts 0.14
## 8020 SAT 1997 Fighting Tecmo Koei 0.00
## 8021 PS2 2000 Racing Electronic Arts 0.04
## 8022 PS2 2003 Adventure Sony Computer Entertainment 0.09
## 8023 DS 2005 Action Disney Interactive Studios 0.15
## 8024 XB 2005 Shooter Midway Games 0.14
## 8025 Wii 2009 Action 505 Games 0.11
## 8026 PS4 2014 Action Tecmo Koei 0.06
## 8027 GBA 2005 Strategy Banpresto 0.00
## 8028 PC 2015 Shooter Take-Two Interactive 0.07
## 8029 DS 2007 Sports Jaleco 0.00
## 8030 PS2 2007 Role-Playing Nippon Ichi Software 0.04
## 8031 Wii 2011 Platform THQ 0.11
## 8032 X360 2010 Misc Microsoft Game Studios 0.05
## 8033 PS 2000 Action TDK Core 0.10
## 8034 PC 2009 Shooter Take-Two Interactive 0.01
## 8035 GBA 2001 Adventure Konami Digital Entertainment 0.13
## 8036 DS 2009 Action Activision 0.17
## 8037 PSP 2009 Action Atari 0.16
## 8038 GB 1991 Strategy Nintendo 0.00
## 8039 PS2 2003 Misc Sony Computer Entertainment 0.09
## 8040 Wii 2008 Adventure Atari 0.09
## 8041 PC 2009 Strategy THQ 0.00
## 8042 XOne 2014 Misc Ubisoft 0.08
## 8043 XB 2005 Role-Playing Midway Games 0.14
## 8044 XB 2001 Shooter Konami Digital Entertainment 0.14
## 8045 Wii NA Simulation Unknown 0.15
## 8046 XB 2002 Misc Infogrames 0.14
## 8047 PS 2001 Action Eidos Interactive 0.10
## 8048 PS3 2010 Action Activision 0.12
## 8049 X360 2013 Action Capcom 0.10
## 8050 N64 1999 Sports Konami Digital Entertainment 0.00
## 8051 WS 1999 Role-Playing Namco Bandai Games 0.00
## 8052 PS 1997 Platform Sony Computer Entertainment 0.00
## 8053 PS2 2004 Shooter Gathering of Developers 0.09
## 8054 X360 2013 Action Square Enix 0.07
## 8055 GBA 2002 Misc Atari 0.13
## 8056 PS2 2008 Sports DTP Entertainment 0.00
## 8057 PC 2011 Racing Ubisoft 0.05
## 8058 PSP 2005 Strategy Konami Digital Entertainment 0.11
## 8059 3DS 2012 Misc Sega 0.00
## 8060 Wii 2008 Misc Sega 0.09
## 8061 PS2 2009 Action Activision 0.13
## 8062 PSP 2005 Misc Sony Computer Entertainment 0.00
## 8063 Wii 2011 Misc Activision 0.15
## 8064 3DS 2016 Action Warner Bros. Interactive Entertainment 0.07
## 8065 GC 2002 Fighting Activision 0.14
## 8066 DS 2005 Action Activision 0.17
## 8067 Wii 2011 Misc Nordic Games 0.00
## 8068 SNES 1993 Sports Capcom 0.04
## 8069 X360 2008 Action Disney Interactive Studios 0.16
## 8070 DS 2011 Simulation Activision 0.13
## 8071 Wii 2010 Misc Ubisoft 0.00
## 8072 PS3 2009 Role-Playing Nippon Ichi Software 0.07
## 8073 DS 2010 Puzzle PlayV 0.05
## 8074 GC 2006 Sports Electronic Arts 0.14
## 8075 PSV 2014 Role-Playing Atlus 0.07
## 8076 PC 2015 Action Warner Bros. Interactive Entertainment 0.11
## 8077 SAT 1998 Fighting Capcom 0.00
## 8078 GBA 2004 Misc Nintendo 0.13
## 8079 3DS 2013 Role-Playing Namco Bandai Games 0.00
## 8080 DS 2008 Misc Brash Entertainment 0.17
## 8081 XB 2001 Racing Infogrames 0.15
## 8082 PS3 2014 Fighting Arc System Works 0.09
## 8083 PS3 2011 Sports Konami Digital Entertainment 0.00
## 8084 X360 2010 Platform D3Publisher 0.10
## 8085 PSV 2014 Fighting Sega 0.08
## 8086 SNES 1991 Strategy Banpresto 0.00
## 8087 X360 NA Sports Unknown 0.17
## 8088 PS4 2016 Role-Playing Nippon Ichi Software 0.06
## 8089 XB 2004 Shooter Empire Interactive 0.14
## 8090 PS 1996 Misc Sony Computer Entertainment 0.10
## 8091 PSP 2007 Action Activision 0.16
## 8092 PS2 2004 Role-Playing Capcom 0.09
## 8093 PS2 2003 Racing Genki 0.09
## 8094 PS 1997 Adventure ASCII Entertainment 0.00
## 8095 PC 2010 Sports Electronic Arts 0.00
## 8096 PC 2013 Action Warner Bros. Interactive Entertainment 0.04
## 8097 XB 2004 Sports Activision 0.13
## 8098 DS 2007 Simulation Disney Interactive Studios 0.13
## 8099 N64 1999 Misc NewKidCo 0.14
## 8100 N64 1999 Racing Acclaim Entertainment 0.14
## 8101 SNES 1994 Shooter Konami Digital Entertainment 0.00
## 8102 PSV 2013 Role-Playing Compile Heart 0.09
## 8103 GC 2002 Action Midway Games 0.14
## 8104 PS2 2006 Simulation Banpresto 0.00
## 8105 WiiU 2015 Misc Activision 0.12
## 8106 XB 2005 Platform Sega 0.13
## 8107 PS3 2012 Racing Namco Bandai Games 0.05
## 8108 DS 2005 Racing Electronic Arts 0.15
## 8109 DS 2010 Adventure SouthPeak Games 0.01
## 8110 GBA 2001 Adventure Ubisoft 0.13
## 8111 PS3 2006 Racing Sega 0.14
## 8112 DC 2000 Sports Sega 0.00
## 8113 PS2 2000 Puzzle Empire Interactive 0.09
## 8114 XB 2007 Action Activision 0.13
## 8115 PC 2013 Shooter Sega 0.10
## 8116 X360 2010 Action Namco Bandai Games 0.14
## 8117 PS3 2011 Shooter Square Enix 0.07
## 8118 PC 2014 Role-Playing Namco Bandai Games 0.08
## 8119 3DS 2013 Misc Nintendo 0.00
## 8120 GC 2005 Shooter Activision 0.14
## 8121 X360 2010 Racing THQ 0.17
## 8122 X360 2011 Action THQ 0.13
## 8123 PS3 2009 Misc Sony Computer Entertainment 0.00
## 8124 Wii 2008 Sports Activision 0.17
## 8125 SAT 1994 Racing Sega 0.00
## 8126 Wii 2011 Action Activision 0.10
## 8127 PS 1999 Action Crave Entertainment 0.10
## 8128 PC 2012 Shooter Ubisoft 0.05
## 8129 GBA 2003 Sports Electronic Arts 0.13
## 8130 DS 2011 Action Sega 0.10
## 8131 PC 2011 Shooter Bethesda Softworks 0.06
## 8132 GBA 2005 Misc Zoo Digital Publishing 0.13
## 8133 PS2 2005 Racing Zoo Digital Publishing 0.09
## 8134 X360 2010 Action Tecmo Koei 0.11
## 8135 PC 2015 Sports Electronic Arts 0.04
## 8136 XB 2004 Action Konami Digital Entertainment 0.14
## 8137 PS3 2011 Shooter Unknown 0.17
## 8138 PS2 2002 Strategy Eidos Interactive 0.09
## 8139 PC 2016 Shooter Bethesda Softworks 0.06
## 8140 DS 2010 Misc UFO Interactive 0.17
## 8141 3DS 2012 Sports Konami Digital Entertainment 0.05
## 8142 Wii 2008 Adventure Activision 0.08
## 8143 GC 2001 Sports Electronic Arts 0.14
## 8144 PS4 2014 Action Namco Bandai Games 0.10
## 8145 X360 2009 Racing Atari 0.06
## 8146 PS 2000 Misc Infogrames 0.10
## 8147 PSP 2013 Action Tecmo Koei 0.00
## 8148 PS2 2002 Action Midway Games 0.09
## 8149 Wii 2007 Action Ignition Entertainment 0.16
## 8150 GC 2001 Platform Ubisoft 0.14
## 8151 Wii 2008 Puzzle Destineer 0.17
## 8152 PS 1998 Sports THQ 0.10
## 8153 PS2 2008 Sports Activision Value 0.09
## 8154 X360 2009 Shooter DTP Entertainment 0.14
## 8155 PS 2000 Action Take-Two Interactive 0.10
## 8156 PS2 2005 Action Namco Bandai Games 0.00
## 8157 PS2 2003 Misc Sony Computer Entertainment 0.09
## 8158 PS NA Action Unknown 0.10
## 8159 PSV 2014 Role-Playing Nippon Ichi Software 0.04
## 8160 GC 2005 Adventure Global Star 0.14
## 8161 PS2 2005 Simulation 505 Games 0.05
## 8162 PS2 2009 Action Eidos Interactive 0.09
## 8163 GBA 2004 Misc THQ 0.13
## 8164 PS3 2007 Sports Take-Two Interactive 0.16
## 8165 PS2 2002 Sports Konami Digital Entertainment 0.04
## 8166 DS 2008 Sports Electronic Arts 0.14
## 8167 PSP 2009 Strategy Namco Bandai Games 0.00
## 8168 X360 NA Shooter Unknown 0.13
## 8169 PSP 2008 Strategy Namco Bandai Games 0.00
## 8170 XB 2005 Racing THQ 0.13
## 8171 GBA 2003 Platform Electronic Arts 0.13
## 8172 GBA 2002 Sports Atari 0.13
## 8173 DS 2006 Role-Playing Namco Bandai Games 0.00
## 8174 DS 2008 Simulation Electronic Arts 0.00
## 8175 PS3 2011 Action Capcom 0.00
## 8176 PS2 2008 Racing Sega 0.09
## 8177 Wii 2011 Racing Ubisoft 0.06
## 8178 PS2 2004 Fighting Global Star 0.09
## 8179 Wii 2010 Sports Zoo Games 0.17
## 8180 PS2 2001 Sports Midway Games 0.09
## 8181 X360 2011 Action Sega 0.11
## 8182 DS 2010 Action Disney Interactive Studios 0.12
## 8183 DS 2005 Platform Namco Bandai Games 0.16
## 8184 GBA 2001 Sports Konami Digital Entertainment 0.13
## 8185 DS 2008 Adventure THQ 0.16
## 8186 Wii 2010 Sports GameMill Entertainment 0.17
## 8187 PC 2005 Shooter LucasArts 0.02
## 8188 PS 2000 Sports Empire Interactive 0.10
## 8189 PS 2001 Adventure LEGO Media 0.10
## 8190 X360 2007 Sports Take-Two Interactive 0.16
## 8191 X360 2016 Sports Electronic Arts 0.03
## 8192 DS 2010 Adventure THQ 0.17
## 8193 GBA 2004 Sports Atari 0.13
## 8194 XB 2008 Sports Electronic Arts 0.13
## 8195 GBA 2005 Platform THQ 0.13
## 8196 PS2 2006 Role-Playing Banpresto 0.00
## 8197 PS2 2008 Sports Konami Digital Entertainment 0.00
## 8198 XB 2003 Sports Electronic Arts 0.13
## 8199 XB 2005 Misc Namco Bandai Games 0.13
## 8200 PS3 2011 Misc THQ 0.16
## 8201 PS3 2010 Action THQ 0.12
## 8202 XB 2002 Sports Sega 0.13
## 8203 DS 2007 Misc Ubisoft 0.15
## 8204 DS 2010 Misc Disney Interactive Studios 0.14
## 8205 PS2 NA Sports Unknown 0.09
## 8206 Wii 2008 Fighting Konami Digital Entertainment 0.13
## 8207 PSP 2010 Misc Ubisoft Annecy 0.07
## 8208 PS2 2005 Action Midway Games 0.09
## 8209 PS3 2010 Misc Disney Interactive Studios 0.11
## 8210 PS3 2009 Sports Codemasters 0.00
## 8211 PS2 2005 Sports Sony Computer Entertainment 0.09
## 8212 DS 2009 Adventure Ubisoft 0.16
## 8213 PS2 2001 Shooter Midas Interactive Entertainment 0.09
## 8214 PS3 2009 Strategy Sega 0.13
## 8215 3DS 2013 Misc Konami Digital Entertainment 0.00
## 8216 DS 2006 Sports Konami Digital Entertainment 0.00
## 8217 PS3 2011 Action Warner Bros. Interactive Entertainment 0.09
## 8218 PC 2011 Adventure LucasArts 0.00
## 8219 DS 2009 Adventure Ubisoft 0.07
## 8220 PS 2000 Adventure Mattel Interactive 0.10
## 8221 PS3 2011 Racing Capcom 0.04
## 8222 PSV 2016 Sports Konami Digital Entertainment 0.00
## 8223 PS2 2002 Sports Sega 0.09
## 8224 GBA NA Action Unknown 0.13
## 8225 PSV 2014 Action Idea Factory International 0.07
## 8226 GBA 2001 Sports BAM! Entertainment 0.12
## 8227 PS3 2009 Action Playlogic Game Factory 0.11
## 8228 PS2 2002 Sports Natsume 0.09
## 8229 GC 2002 Platform THQ 0.13
## 8230 PS2 2001 Adventure 3DO 0.09
## 8231 GC 2006 Platform Ubisoft 0.13
## 8232 PS3 2008 Action Disney Interactive Studios 0.14
## 8233 PS4 2015 Adventure Telltale Games 0.10
## 8234 XOne 2014 Misc Microsoft Game Studios 0.11
## 8235 DS 2010 Sports Atari 0.16
## 8236 PS 1995 Fighting Acclaim Entertainment 0.10
## 8237 DS 2007 Adventure Konami Digital Entertainment 0.09
## 8238 GBA 2004 Misc Crave Entertainment 0.12
## 8239 PS2 2005 Shooter Essential Games 0.00
## 8240 PS3 2008 Sports Activision 0.16
## 8241 GC 2006 Sports Take-Two Interactive 0.13
## 8242 PS3 2009 Sports Spike 0.16
## 8243 DS 2009 Role-Playing Square Enix 0.00
## 8244 PS2 2002 Sports Sony Computer Entertainment 0.08
## 8245 PS3 2011 Action DTP Entertainment 0.07
## 8246 DS 2010 Strategy Namco Bandai Games 0.00
## 8247 GC 2006 Action Midway Games 0.13
## 8248 XB 2003 Sports Microsoft Game Studios 0.13
## 8249 PS 1998 Fighting SNK 0.00
## 8250 PC 2011 Role-Playing Square Enix 0.08
## 8251 X360 2011 Sports Activision 0.16
## 8252 PS 1996 Action Adeline Software 0.10
## 8253 DS 2007 Sports 505 Games 0.16
## 8254 Wii 2008 Simulation Destineer 0.16
## 8255 DS 2007 Action Namco Bandai Games 0.00
## 8256 PS2 2004 Sports Sony Computer Entertainment 0.08
## 8257 PS3 2008 Fighting Electronic Arts 0.13
## 8258 DS 2009 Puzzle Performance Designed Products 0.16
## 8259 Wii 2008 Sports Electronic Arts 0.16
## 8260 PS4 2015 Action Sega 0.00
## 8261 GC 2003 Platform Vivendi Games 0.13
## 8262 PC 2012 Role-Playing Funcom 0.07
## 8263 X360 2008 Sports Take-Two Interactive 0.15
## 8264 X360 2006 Action Activision 0.16
## 8265 GC 2005 Action Activision 0.13
## 8266 XB 2003 Shooter Vivendi Games 0.13
## 8267 PS3 2011 Platform Sony Computer Entertainment 0.08
## 8268 PSP 2012 Action Namco Bandai Games 0.00
## 8269 PS2 2009 Action Activision 0.08
## 8270 GBA 2001 Sports Konami Digital Entertainment 0.12
## 8271 PS2 2001 Shooter Virgin Interactive 0.08
## 8272 XB 2003 Misc Microsoft Game Studios 0.13
## 8273 PS3 2009 Action Warner Bros. Interactive Entertainment 0.08
## 8274 GC 2005 Fighting Electronic Arts 0.13
## 8275 DS 2006 Puzzle Nintendo 0.13
## 8276 PS 2001 Platform Sony Computer Entertainment 0.10
## 8277 GB 1999 Sports Konami Digital Entertainment 0.00
## 8278 SAT 1998 Fighting SNK 0.00
## 8279 DS 2010 Action Namco Bandai Games 0.00
## 8280 Wii 2008 Adventure Scholastic Inc. 0.16
## 8281 PSV 2014 Action Namco Bandai Games 0.06
## 8282 PS 1999 Strategy Namco Bandai Games 0.00
## 8283 PS 1999 Adventure ChunSoft 0.00
## 8284 DS 2007 Shooter SouthPeak Games 0.15
## 8285 XB 2004 Shooter Midway Games 0.13
## 8286 XB 2003 Shooter Vivendi Games 0.13
## 8287 PSP 2010 Platform D3Publisher 0.05
## 8288 PS2 2005 Racing Play It 0.08
## 8289 PS2 2003 Strategy Jaleco 0.08
## 8290 GBA 2005 Misc THQ 0.12
## 8291 DS 2009 Action Take-Two Interactive 0.16
## 8292 PS2 2008 Sports Atari 0.08
## 8293 PS2 2000 Action 3DO 0.08
## 8294 3DS 2016 Role-Playing Deep Silver 0.03
## 8295 PC 2009 Strategy Microsoft Game Studios 0.01
## 8296 DS 2006 Action THQ 0.12
## 8297 PS2 2009 Sports Atari 0.08
## 8298 PS 1997 Action Capcom 0.00
## 8299 PS3 2010 Action Warner Bros. Interactive Entertainment 0.10
## 8300 X360 2006 Sports Take-Two Interactive 0.15
## 8301 X360 2010 Action Microsoft Game Studios 0.06
## 8302 PS 1996 Fighting Sony Computer Entertainment 0.00
## 8303 PS2 2003 Action Midway Games 0.08
## 8304 PS2 2003 Role-Playing Square Enix 0.00
## 8305 PS2 2007 Role-Playing Namco Bandai Games 0.00
## 8306 Wii 2010 Misc UFO Interactive 0.16
## 8307 WS 2000 Strategy Namco Bandai Games 0.00
## 8308 GC 2003 Platform Warner Bros. Interactive Entertainment 0.13
## 8309 GBA 2005 Platform THQ 0.12
## 8310 PSP 2009 Action Namco Bandai Games 0.00
## 8311 PSP 2008 Sports Activision 0.16
## 8312 Wii 2010 Sports D3Publisher 0.16
## 8313 PSP 2007 Action Sony Computer Entertainment 0.07
## 8314 PS3 NA Sports Unknown 0.16
## 8315 XB 2003 Action Interplay 0.13
## 8316 X360 2008 Role-Playing Codemasters 0.03
## 8317 PSP 2006 Sports Electronic Arts 0.13
## 8318 PSP 2013 Action Konami Digital Entertainment 0.00
## 8319 DC 1999 Racing Genki 0.00
## 8320 PS 1998 Fighting Agetec 0.05
## 8321 X360 2007 Action Activision 0.16
## 8322 Wii 2009 Sports Atari 0.16
## 8323 Wii 2008 Puzzle Deep Silver 0.04
## 8324 XB 2004 Action Eidos Interactive 0.13
## 8325 PS3 2009 Misc Sony Computer Entertainment 0.00
## 8326 PSP 2008 Sports Sony Computer Entertainment 0.16
## 8327 3DS 2012 Action Activision 0.13
## 8328 GBA 2005 Action Electronic Arts 0.12
## 8329 X360 2014 Action Activision 0.09
## 8330 PS 1999 Platform Atari 0.09
## 8331 GBA 2004 Misc N/A 0.12
## 8332 Wii 2008 Puzzle Mumbo Jumbo 0.16
## 8333 Wii 2008 Misc Game Factory 0.16
## 8334 X360 2009 Action Playlogic Game Factory 0.14
## 8335 PS2 NA Action Universal Interactive 0.08
## 8336 X360 2010 Racing Capcom 0.07
## 8337 PSP 2004 Misc Konami Digital Entertainment 0.00
## 8338 N64 1999 Racing Midway Games 0.14
## 8339 N64 1999 Adventure Hudson Soft 0.05
## 8340 N64 2000 Shooter Acclaim Entertainment 0.12
## 8341 XB 2003 Action Electronic Arts 0.13
## 8342 GBA 2004 Misc N/A 0.12
## 8343 Wii 2008 Simulation Majesco Entertainment 0.14
## 8344 GBA 2004 Misc Nintendo 0.12
## 8345 PS3 2012 Role-Playing Nippon Ichi Software 0.06
## 8346 PS2 2009 Sports Spike 0.08
## 8347 PSP 2010 Action Namco Bandai Games 0.00
## 8348 PS2 2008 Misc Disney Interactive Studios 0.08
## 8349 PS2 2007 Adventure Kadokawa Shoten 0.00
## 8350 GBA 2004 Action Disney Interactive Studios 0.12
## 8351 PC 2005 Strategy Take-Two Interactive 0.02
## 8352 PSP 2013 Sports Konami Digital Entertainment 0.00
## 8353 PS 1995 Role-Playing Panther Software 0.02
## 8354 Wii 2010 Misc Ubisoft 0.16
## 8355 PS4 2015 Sports Electronic Arts 0.10
## 8356 X360 2010 Adventure Ubisoft 0.11
## 8357 DS 2010 Misc Telegames 0.16
## 8358 PS2 2006 Role-Playing Namco Bandai Games 0.00
## 8359 GBA 2004 Adventure Capcom 0.00
## 8360 DS 2008 Action THQ 0.16
## 8361 PS2 2001 Sports Tecmo Koei 0.05
## 8362 PS 2000 Action Konami Digital Entertainment 0.09
## 8363 Wii 2009 Puzzle Konami Digital Entertainment 0.10
## 8364 X360 2007 Misc Microsoft Game Studios 0.14
## 8365 PS2 2004 Action Electronic Arts 0.08
## 8366 X360 2009 Action Activision 0.12
## 8367 X360 2012 Action GameMill Entertainment 0.16
## 8368 PS2 2007 Action Blast! Entertainment Ltd 0.08
## 8369 GBA 2004 Misc N/A 0.12
## 8370 Wii 2013 Simulation Disney Interactive Studios 0.08
## 8371 Wii 2007 Misc Rising Star Games 0.11
## 8372 SNES 1996 Shooter Hudson Soft 0.00
## 8373 PS2 2004 Shooter Atari 0.08
## 8374 PS 2000 Action 3DO 0.09
## 8375 PS2 2005 Action Capcom 0.04
## 8376 PS 1996 Action Gremlin Interactive Ltd 0.09
## 8377 PS2 NA Fighting Ubisoft 0.00
## 8378 PS4 2015 Racing Milestone S.r.l. 0.00
## 8379 GC 2005 Sports Electronic Arts 0.13
## 8380 X360 2007 Racing Activision 0.15
## 8381 X360 2009 Action Disney Interactive Studios 0.11
## 8382 GBA 2003 Shooter Electronic Arts 0.12
## 8383 PS2 2007 Fighting Namco Bandai Games 0.00
## 8384 GC 2002 Platform TDK Mediactive 0.13
## 8385 PS 1998 Role-Playing SquareSoft 0.00
## 8386 PS2 2004 Sports Sony Computer Entertainment 0.08
## 8387 XB 2002 Shooter Infogrames 0.13
## 8388 PS 2001 Racing Hasbro Interactive 0.09
## 8389 PS 1996 Sports Gremlin Interactive Ltd 0.09
## 8390 3DS 2011 Misc Ubisoft 0.13
## 8391 XB 2003 Action Take-Two Interactive 0.13
## 8392 PSV 2015 Role-Playing Namco Bandai Games 0.00
## 8393 PS 1995 Racing Crystal Dynamics 0.09
## 8394 Wii 2010 Action Activision 0.15
## 8395 PS2 2002 Sports Electronic Arts 0.07
## 8396 PS2 2008 Misc THQ 0.08
## 8397 DS 2006 Fighting Nintendo 0.02
## 8398 PS 1998 Adventure Human Entertainment 0.02
## 8399 PS 2000 Action Ubisoft 0.09
## 8400 Wii 2007 Sports Ubisoft 0.15
## 8401 PS4 2016 Sports Konami Digital Entertainment 0.00
## 8402 GC 2003 Platform Capcom 0.13
## 8403 Wii 2009 Misc Mindscape 0.00
## 8404 PSP 2005 Racing Sony Computer Entertainment 0.14
## 8405 DS 2006 Platform Nintendo 0.00
## 8406 PS2 2008 Role-Playing Atlus 0.00
## 8407 X360 2010 Simulation 505 Games 0.08
## 8408 PS 1996 Misc Konami Digital Entertainment 0.00
## 8409 PS2 2000 Racing Acclaim Entertainment 0.08
## 8410 PS4 2016 Role-Playing Sega 0.06
## 8411 PS3 2008 Action Konami Digital Entertainment 0.13
## 8412 XB 2003 Fighting Eidos Interactive 0.13
## 8413 DS 2004 Puzzle Ignition Entertainment 0.10
## 8414 XB 2002 Action Midway Games 0.13
## 8415 PS4 2015 Action Tecmo Koei 0.05
## 8416 PS2 2003 Role-Playing Hudson Soft 0.00
## 8417 GC 2002 Role-Playing Activision 0.10
## 8418 PS3 2011 Racing Ubisoft 0.00
## 8419 X360 2009 Sports Focus Home Interactive 0.13
## 8420 GBA 2002 Racing THQ 0.12
## 8421 GBA 2002 Shooter BAM! Entertainment 0.12
## 8422 SNES 1996 Strategy Tecmo Koei 0.00
## 8423 DS 2010 Misc 505 Games 0.16
## 8424 DS 2007 Adventure Take-Two Interactive 0.15
## 8425 SNES 1993 Sports Hudson Soft 0.00
## 8426 DS 2009 Misc Game Life 0.04
## 8427 SNES 1996 Fighting Nintendo 0.00
## 8428 3DS 2014 Role-Playing Square Enix 0.00
## 8429 XOne 2015 Shooter 505 Games 0.08
## 8430 XB 2006 Shooter Eidos Interactive 0.12
## 8431 3DS 2014 Action Nippon Columbia 0.00
## 8432 X360 2015 Sports Deep Silver 0.15
## 8433 DS 2008 Action Activision 0.15
## 8434 PS3 2008 Shooter LucasArts 0.11
## 8435 PS2 2004 Misc Sega 0.08
## 8436 GC 2003 Misc Midway Games 0.13
## 8437 XB 2004 Adventure Vivendi Games 0.12
## 8438 GBA 2005 Misc DSI Games 0.12
## 8439 Wii 2008 Platform Namco Bandai Games 0.11
## 8440 PS3 NA Action Namco Bandai Games 0.13
## 8441 PS2 2008 Sports Sony Computer Entertainment 0.08
## 8442 DS 2005 Action Vivendi Games 0.14
## 8443 SAT 1997 Action Capcom 0.00
## 8444 PC 2014 Role-Playing NCSoft 0.08
## 8445 3DS 2016 Role-Playing Namco Bandai Games 0.00
## 8446 X360 2010 Simulation Activision 0.12
## 8447 DS 2007 Misc IE Institute 0.00
## 8448 PS3 2014 Sports Konami Digital Entertainment 0.00
## 8449 PS4 2015 Action Marvelous Interactive 0.07
## 8450 SNES 1997 Sports Nintendo 0.00
## 8451 GC 2002 Adventure Nintendo 0.01
## 8452 PC 2012 Simulation Electronic Arts 0.00
## 8453 X360 2012 Action Sega 0.11
## 8454 XB 2004 Racing Empire Interactive 0.12
## 8455 3DS 2015 Role-Playing Namco Bandai Games 0.04
## 8456 PS3 2008 Sports Electronic Arts 0.15
## 8457 PS3 2010 Action Activision 0.14
## 8458 2600 1983 Action Parker Bros. 0.15
## 8459 2600 1982 Action Avalon Interactive 0.15
## 8460 2600 1981 Action Mattel Interactive 0.15
## 8461 SAT 1995 Shooter Konami Digital Entertainment 0.00
## 8462 X360 2007 Strategy LucasArts 0.13
## 8463 PS3 2012 Role-Playing Compile Heart 0.05
## 8464 PS2 2002 Platform Atari 0.08
## 8465 PSV 2015 Action Namco Bandai Games 0.00
## 8466 Wii 2010 Strategy Take-Two Interactive 0.13
## 8467 PS3 2016 Action Sony Computer Entertainment 0.13
## 8468 PSV 2013 Role-Playing Sega 0.00
## 8469 PS2 2001 Racing Atari 0.08
## 8470 PS2 2002 Role-Playing Sony Computer Entertainment 0.00
## 8471 PS2 2001 Racing LucasArts 0.08
## 8472 Wii 2008 Puzzle Popcorn Arcade 0.16
## 8473 GBA 2002 Racing THQ 0.12
## 8474 PS3 2014 Role-Playing Tecmo Koei 0.05
## 8475 PS3 2009 Action Activision 0.15
## 8476 X360 2009 Adventure Codemasters 0.14
## 8477 PS 2000 Shooter Fox Interactive 0.09
## 8478 PS2 2004 Sports Sony Computer Entertainment 0.08
## 8479 PSP 2006 Role-Playing Take-Two Interactive 0.13
## 8480 PSP 2008 Action Activision 0.12
## 8481 3DS 2011 Racing Codemasters 0.07
## 8482 DS 2011 Misc THQ 0.12
## 8483 Wii 2010 Shooter Neko Entertainment 0.08
## 8484 PS3 2010 Action Electronic Arts 0.11
## 8485 DS 2010 Role-Playing Square Enix 0.12
## 8486 X360 2011 Action Ignition Entertainment 0.07
## 8487 PS2 2003 Sports Sega 0.08
## 8488 Wii 2011 Action Sega 0.11
## 8489 PS2 2000 Racing Electronic Arts 0.06
## 8490 PSP 2006 Fighting Majesco Entertainment 0.13
## 8491 DS 2009 Fighting Konami Digital Entertainment 0.00
## 8492 X360 2010 Action Namco Bandai Games 0.08
## 8493 DS 2010 Action PlayV 0.00
## 8494 GC 2002 Shooter TDK Mediactive 0.13
## 8495 DS 2005 Sports Nintendo 0.11
## 8496 PS2 2002 Platform Infogrames 0.08
## 8497 PS 2000 Misc Hudson Soft 0.00
## 8498 GBA 2006 Simulation THQ 0.12
## 8499 PS2 2003 Adventure Atari 0.08
## 8500 PS3 2013 Action Tecmo Koei 0.02
## 8501 GBA 2006 Action Namco Bandai Games 0.12
## 8502 Wii 2007 Racing Activision 0.15
## 8503 Wii 2009 Action Vir2L Studios 0.14
## 8504 PC 2011 Strategy N/A 0.06
## 8505 Wii 2012 Action Activision 0.11
## 8506 Wii 2010 Action Unknown 0.11
## 8507 PS2 2003 Simulation Sammy Corporation 0.08
## 8508 3DS 2011 Adventure Konami Digital Entertainment 0.07
## 8509 DS 2006 Action Disney Interactive Studios 0.15
## 8510 Wii 2007 Fighting Atari 0.15
## 8511 PS2 2006 Adventure Sega 0.00
## 8512 GBA 2003 Action Ubisoft 0.12
## 8513 PSP 2010 Role-Playing Falcom Corporation 0.00
## 8514 X360 2011 Action Ubisoft Annecy 0.09
## 8515 PS 1995 Role-Playing Sony Computer Entertainment 0.09
## 8516 PSP 2009 Misc Disney Interactive Studios 0.13
## 8517 GBA 2005 Sports DTP Entertainment 0.12
## 8518 PS 2000 Sports Namco Bandai Games 0.00
## 8519 GC 2004 Misc Midway Games 0.13
## 8520 GC 2003 Racing THQ 0.13
## 8521 DS 2007 Strategy Sega 0.00
## 8522 PS 1998 Sports Victor Interactive 0.00
## 8523 PS 1998 Racing Gremlin Interactive Ltd 0.09
## 8524 XB 2003 Strategy Atari 0.12
## 8525 PS3 2009 Simulation Ubisoft 0.12
## 8526 PS2 2007 Misc Activision 0.08
## 8527 Wii 2012 Sports Take-Two Interactive 0.15
## 8528 X360 2014 Sports Konami Digital Entertainment 0.05
## 8529 PS4 2015 Action Tecmo Koei 0.07
## 8530 SNES 1992 Adventure ChunSoft 0.00
## 8531 3DS 2011 Role-Playing Namco Bandai Games 0.00
## 8532 GC 2005 Racing Vivendi Games 0.12
## 8533 X360 2011 Misc 505 Games 0.11
## 8534 Wii 2009 Sports Atari 0.15
## 8535 DS 2010 Simulation Majesco Entertainment 0.13
## 8536 X360 2014 Racing Deep Silver 0.15
## 8537 XB 2005 Shooter Electronic Arts 0.12
## 8538 PS2 2005 Misc Midway Games 0.08
## 8539 PS2 2002 Platform Midway Games 0.08
## 8540 PS3 2007 Action Ubisoft 0.14
## 8541 DS 2009 Puzzle D3Publisher 0.15
## 8542 DS 2005 Misc Nintendo 0.00
## 8543 PS2 2005 Adventure Activision 0.08
## 8544 PS2 2003 Action Ubisoft 0.08
## 8545 PS3 2012 Action Activision 0.12
## 8546 Wii 2007 Platform Konami Digital Entertainment 0.14
## 8547 PS2 2002 Adventure Acclaim Entertainment 0.08
## 8548 PSP 2011 Strategy Konami Digital Entertainment 0.00
## 8549 PS3 2008 Shooter Activision Value 0.15
## 8550 XB 2003 Action Tecmo Koei 0.12
## 8551 PS2 2003 Sports Activision 0.08
## 8552 GC 2005 Action THQ 0.12
## 8553 SNES 1997 Sports Konami Digital Entertainment 0.00
## 8554 PS NA Adventure Infogrames 0.09
## 8555 PS3 2007 Sports Take-Two Interactive 0.15
## 8556 GC 2006 Platform D3Publisher 0.12
## 8557 DS 2006 Action Vivendi Games 0.13
## 8558 PSP 2006 Strategy Vivendi Games 0.15
## 8559 PS2 2005 Role-Playing Banpresto 0.00
## 8560 PS2 2006 Sports Konami Digital Entertainment 0.00
## 8561 PS2 2002 Shooter Konami Digital Entertainment 0.08
## 8562 X360 2006 Misc Activision 0.15
## 8563 GBA 2002 Racing Infogrames 0.12
## 8564 PS2 2008 Fighting Namco Bandai Games 0.08
## 8565 SNES 1995 Sports Konami Digital Entertainment 0.00
## 8566 Wii 2008 Fighting Midway Games 0.14
## 8567 PS2 2003 Misc Play It 0.08
## 8568 PSP 2006 Strategy Sony Online Entertainment 0.14
## 8569 GC 2005 Action Vivendi Games 0.12
## 8570 Wii 2009 Sports Activision 0.15
## 8571 PS3 2009 Fighting Ignition Entertainment 0.11
## 8572 DS 2010 Adventure Asylum Entertainment 0.00
## 8573 XOne 2014 Action Square Enix 0.08
## 8574 DS 2008 Sports Ubisoft 0.15
## 8575 DS 2009 Strategy Majesco Entertainment 0.15
## 8576 SNES 1991 Simulation Imagineer 0.00
## 8577 Wii 2011 Sports Take-Two Interactive 0.15
## 8578 PSP 2011 Action Capcom 0.00
## 8579 PC 2011 Sports Take-Two Interactive 0.09
## 8580 GBA 2001 Action THQ 0.11
## 8581 PS 1997 Sports Aques 0.00
## 8582 N64 1998 Fighting Ocean 0.13
## 8583 N64 1999 Shooter Crave Entertainment 0.13
## 8584 N64 2001 Action BAM! Entertainment 0.13
## 8585 N64 2001 Sports Konami Digital Entertainment 0.00
## 8586 N64 2000 Fighting Ubisoft 0.13
## 8587 N64 2000 Racing Midway Games 0.13
## 8588 N64 1999 Shooter Activision 0.13
## 8589 N64 2000 Strategy Nintendo 0.13
## 8590 N64 1999 Racing THQ 0.13
## 8591 N64 1998 Action Ubisoft 0.13
## 8592 N64 1999 Misc Midway Games 0.13
## 8593 N64 1996 Simulation Enix Corporation 0.00
## 8594 X360 2006 Role-Playing Namco Bandai Games 0.12
## 8595 DS 2009 Puzzle Ubisoft 0.00
## 8596 DS 2010 Action Namco Bandai Games 0.05
## 8597 DS 2006 Misc TDK Core 0.00
## 8598 PSP 2006 Simulation Rising Star Games 0.08
## 8599 PC 2014 Racing Ubisoft 0.00
## 8600 PSP 2008 Simulation Namco Bandai Games 0.00
## 8601 PS2 2003 Fighting Vivendi Games 0.08
## 8602 X360 2009 Adventure Focus Home Interactive 0.11
## 8603 PS2 2006 Role-Playing Namco Bandai Games 0.00
## 8604 XB 2004 Sports Zoo Digital Publishing 0.12
## 8605 PS3 2007 Shooter Vivendi Games 0.14
## 8606 X360 2006 Sports Midway Games 0.15
## 8607 DS 2010 Simulation THQ 0.15
## 8608 PS3 2011 Sports Ubisoft 0.08
## 8609 DS 2008 Sports Ubisoft 0.14
## 8610 DS 2008 Adventure Konami Digital Entertainment 0.03
## 8611 PS3 2013 Simulation Focus Home Interactive 0.00
## 8612 Wii 2010 Action Crave Entertainment 0.15
## 8613 PSV 2011 Action Sony Computer Entertainment 0.06
## 8614 DS 2009 Action THQ 0.08
## 8615 PS2 2004 Adventure Namco Bandai Games 0.08
## 8616 DS 2007 Role-Playing Success 0.16
## 8617 PC 2011 Shooter Electronic Arts 0.07
## 8618 SNES 1992 Sports Banpresto 0.00
## 8619 X360 2010 Sports Ubisoft 0.10
## 8620 PSP 2011 Sports Sony Computer Entertainment 0.15
## 8621 Wii NA Misc Unknown 0.15
## 8622 X360 2005 Sports Take-Two Interactive 0.13
## 8623 Wii 2009 Misc D3Publisher 0.14
## 8624 PS2 2006 Racing Empire Interactive 0.08
## 8625 PSP 2006 Fighting Atari 0.14
## 8626 PS 1995 Sports Electronic Arts 0.09
## 8627 DS 2008 Action Destineer 0.15
## 8628 X360 2013 Action Tecmo Koei 0.09
## 8629 PS 2000 Sports Sony Computer Entertainment 0.09
## 8630 Wii 2008 Action THQ 0.15
## 8631 X360 2012 Misc Ubisoft 0.13
## 8632 DS 2012 Action Warner Bros. Interactive Entertainment 0.00
## 8633 PS3 2014 Fighting Sega 0.05
## 8634 PS 2000 Sports Konami Digital Entertainment 0.00
## 8635 SAT 1998 Adventure Imagineer 0.00
## 8636 DS 2007 Misc Ubisoft 0.12
## 8637 Wii 2010 Strategy Konami Digital Entertainment 0.11
## 8638 PSV 2013 Adventure Warner Bros. Interactive Entertainment 0.02
## 8639 GBA 2001 Racing Konami Digital Entertainment 0.09
## 8640 SNES 1994 Fighting Capcom 0.00
## 8641 PS3 2008 Sports Midway Games 0.11
## 8642 GBA 2003 Racing Nintendo 0.11
## 8643 PS 1999 Racing Square 0.00
## 8644 DS 2011 Misc D3Publisher 0.14
## 8645 GBA 2001 Puzzle Namco Bandai Games 0.00
## 8646 DS 2009 Misc DTP Entertainment 0.14
## 8647 WiiU 2012 Action THQ 0.07
## 8648 Wii 2010 Adventure Destineer 0.15
## 8649 Wii 2011 Misc Electronic Arts 0.10
## 8650 DS 2007 Sports Spike 0.15
## 8651 PSP 2009 Sports Sega 0.00
## 8652 Wii 2011 Sports Take-Two Interactive 0.15
## 8653 PC 2010 Shooter City Interactive 0.00
## 8654 DS 2007 Misc 505 Games 0.15
## 8655 PS3 2011 Misc THQ 0.04
## 8656 GBA 2005 Action THQ 0.11
## 8657 PS3 2012 Role-Playing Nippon Ichi Software 0.04
## 8658 PS4 2016 Adventure Sega 0.00
## 8659 PS 1998 Misc Syscom 0.00
## 8660 X360 2009 Sports Aspyr 0.15
## 8661 PS 1996 Sports Electronic Arts 0.09
## 8662 X360 2010 Action Konami Digital Entertainment 0.10
## 8663 PS 1996 Fighting Acclaim Entertainment 0.01
## 8664 PS2 2004 Shooter Play It 0.08
## 8665 DS 2007 Puzzle Rising Star Games 0.13
## 8666 PSP 2010 Misc Ubisoft 0.11
## 8667 Wii 2007 Adventure Electronic Arts 0.14
## 8668 PS 1995 Shooter Sony Computer Entertainment 0.00
## 8669 PSP 2008 Strategy Namco Bandai Games 0.00
## 8670 GC 2003 Sports Electronic Arts 0.12
## 8671 DS 2006 Adventure THQ 0.14
## 8672 XOne 2013 Strategy Activision 0.11
## 8673 Wii 2010 Sports Atari 0.15
## 8674 PS4 2014 Fighting Arc System Works 0.10
## 8675 Wii 2009 Misc Activision 0.14
## 8676 DS 2010 Misc THQ 0.14
## 8677 3DS 2015 Role-Playing Sega 0.03
## 8678 PC 2011 Racing Codemasters 0.00
## 8679 3DS 2012 Misc Nintendo 0.00
## 8680 X360 2012 Simulation Konami Digital Entertainment 0.11
## 8681 DS 2010 Action Crave Entertainment 0.15
## 8682 Wii 2012 Action THQ 0.12
## 8683 GBA 2001 Racing THQ 0.11
## 8684 XB 2005 Shooter Microsoft Game Studios 0.12
## 8685 PS 1996 Racing Ubisoft 0.09
## 8686 DS 2005 Puzzle Ubisoft 0.10
## 8687 GC 2002 Sports Sega 0.12
## 8688 PS2 2007 Fighting AQ Interactive 0.06
## 8689 XB 2004 Sports Electronic Arts 0.12
## 8690 PSP 2010 Sports Konami Digital Entertainment 0.00
## 8691 PSP 2005 Shooter THQ 0.14
## 8692 PS2 2003 Shooter Vivendi Games 0.08
## 8693 XOne 2014 Adventure Telltale Games 0.08
## 8694 PSP 2011 Role-Playing Square Enix 0.00
## 8695 Wii 2007 Puzzle 505 Games 0.13
## 8696 Wii 2008 Misc Activision 0.14
## 8697 3DS 2012 Role-Playing Namco Bandai Games 0.00
## 8698 PS 1996 Action Eidos Interactive 0.09
## 8699 PC 2012 Action Nordic Games 0.03
## 8700 PS3 2010 Action THQ 0.07
## 8701 PS3 2011 Misc Namco Bandai Games 0.00
## 8702 DS 2009 Action Activision 0.14
## 8703 DS 2009 Simulation Ubisoft 0.15
## 8704 PS2 2008 Misc MTV Games 0.08
## 8705 3DS 2011 Action Marvelous Interactive 0.00
## 8706 DS 2005 Action Activision 0.14
## 8707 X360 2010 Action Ubisoft Annecy 0.07
## 8708 X360 NA Action Unknown 0.15
## 8709 GBA 2002 Action TDK Mediactive 0.11
## 8710 DS 2007 Puzzle White Park Bay Software 0.13
## 8711 PS4 2013 Platform System 3 0.06
## 8712 PS 2000 Racing Vatical Entertainment 0.09
## 8713 PS 1996 Action Electronic Arts 0.09
## 8714 Wii 2011 Sports Take-Two Interactive 0.05
## 8715 DS 2010 Action Ubisoft 0.14
## 8716 GBA 2002 Sports Activision 0.11
## 8717 PS 1999 Racing Sony Computer Entertainment 0.09
## 8718 PS 1996 Misc Sony Computer Entertainment 0.02
## 8719 PS 1997 Racing BMG Interactive Entertainment 0.09
## 8720 DS 2007 Fighting Sega 0.12
## 8721 Wii 2011 Simulation Crave Entertainment 0.15
## 8722 GBA 2003 Fighting Namco Bandai Games 0.11
## 8723 PS 1998 Racing Tecmo Koei 0.00
## 8724 X360 2005 Sports Electronic Arts 0.11
## 8725 PS2 2001 Racing BAM! Entertainment 0.08
## 8726 PC 2011 Shooter Warner Bros. Interactive Entertainment 0.04
## 8727 X360 2011 Platform THQ 0.10
## 8728 PS2 2003 Shooter THQ 0.08
## 8729 DS 2009 Racing Activision 0.13
## 8730 3DS 2011 Adventure Ubisoft 0.07
## 8731 PS3 2010 Action Rising Star Games 0.08
## 8732 PSP 2006 Puzzle Konami Digital Entertainment 0.14
## 8733 PS2 2001 Misc Codemasters 0.08
## 8734 DS 2008 Puzzle Avanquest 0.14
## 8735 X360 2009 Action Activision 0.14
## 8736 DS 2008 Shooter Square Enix 0.12
## 8737 GC 2003 Racing Acclaim Entertainment 0.12
## 8738 PS2 2001 Racing Acclaim Entertainment 0.08
## 8739 PS3 2007 Sports Take-Two Interactive 0.14
## 8740 DS 2007 Role-Playing Namco Bandai Games 0.00
## 8741 PS2 2004 Role-Playing Tecmo Koei 0.08
## 8742 XB 2004 Platform Microsoft Game Studios 0.12
## 8743 X360 2009 Strategy Sega 0.11
## 8744 PS3 2009 Sports Take-Two Interactive 0.13
## 8745 PSP 2006 Sports Electronic Arts 0.07
## 8746 GC 2005 Platform THQ 0.12
## 8747 PC 2012 Adventure Daedalic 0.00
## 8748 3DS 2014 Simulation Natsume 0.12
## 8749 GC 2002 Sports Electronic Arts 0.12
## 8750 GC 2003 Sports Electronic Arts 0.12
## 8751 GC 2001 Racing Acclaim Entertainment 0.12
## 8752 XOne 2016 Sports Electronic Arts 0.13
## 8753 DS 2009 Puzzle GSP 0.00
## 8754 X360 2014 Action Konami Digital Entertainment 0.07
## 8755 PS2 2005 Role-Playing Atari 0.08
## 8756 X360 2009 Racing THQ 0.14
## 8757 PS 1999 Misc Sony Computer Entertainment 0.09
## 8758 2600 1989 Puzzle Atari 0.14
## 8759 2600 1982 Action Activision 0.14
## 8760 SAT 1996 Puzzle Sega 0.00
## 8761 2600 NA Sports Atari 0.14
## 8762 PSP 2006 Sports Konami Digital Entertainment 0.00
## 8763 3DS 2011 Action Ubisoft 0.05
## 8764 XB 2004 Racing Zoo Digital Publishing 0.11
## 8765 DS 2010 Action Disney Interactive Studios 0.12
## 8766 PS3 2014 Action Square Enix 0.05
## 8767 DS 2009 Simulation City Interactive 0.13
## 8768 XB 2005 Strategy Deep Silver 0.11
## 8769 XOne 2015 Action Bethesda Softworks 0.07
## 8770 XB 2002 Action Atari 0.11
## 8771 GBA 2005 Misc N/A 0.11
## 8772 PSP 2009 Fighting Namco Bandai Games 0.14
## 8773 GC 2005 Platform THQ 0.12
## 8774 PS 1998 Racing GT Interactive 0.09
## 8775 Wii 2007 Action Tecmo Koei 0.11
## 8776 X360 2006 Shooter Microsoft Game Studios 0.12
## 8777 PS2 2005 Racing Konami Digital Entertainment 0.07
## 8778 PS2 2000 Sports Sony Computer Entertainment 0.07
## 8779 PS2 2004 Misc Eidos Interactive 0.07
## 8780 DS 2007 Strategy Square Enix 0.08
## 8781 Wii 2009 Shooter Activision 0.14
## 8782 GC 2004 Shooter Global Star 0.12
## 8783 Wii 2008 Simulation Deep Silver 0.13
## 8784 PSP 2011 Adventure Kadokawa Shoten 0.00
## 8785 DS 2006 Platform Vivendi Games 0.13
## 8786 PS2 2009 Sports Konami Digital Entertainment 0.00
## 8787 PS3 2007 Simulation Ubisoft 0.10
## 8788 DS 2009 Racing Zoo Digital Publishing 0.14
## 8789 X360 2010 Action THQ 0.12
## 8790 SAT 1997 Strategy Sega 0.00
## 8791 PS3 2013 Role-Playing Nippon Ichi Software 0.07
## 8792 GC 2003 Platform Konami Digital Entertainment 0.12
## 8793 DS 2005 Action THQ 0.13
## 8794 PC 2010 Action THQ 0.07
## 8795 PS2 2009 Action D3Publisher 0.05
## 8796 DS 2009 Puzzle Mindscape 0.00
## 8797 Wii 2010 Sports Namco Bandai Games 0.14
## 8798 PS2 2008 Sports Konami Digital Entertainment 0.05
## 8799 GBA 2005 Adventure THQ 0.11
## 8800 3DS 2015 Misc Square Enix 0.00
## 8801 DS 2010 Sports Take-Two Interactive 0.14
## 8802 3DS 2012 Platform Namco Bandai Games 0.08
## 8803 PS 2000 Action Activision 0.08
## 8804 Wii 2010 Sports D3Publisher 0.14
## 8805 PS3 2011 Action Sega 0.07
## 8806 PS3 2007 Action Take-Two Interactive 0.12
## 8807 Wii 2006 Shooter Ignition Entertainment 0.12
## 8808 DS 2010 Action Activision 0.11
## 8809 PSP 2012 Action Konami Digital Entertainment 0.00
## 8810 SAT 1997 Fighting Sega 0.00
## 8811 SNES 1996 Role-Playing SquareSoft 0.00
## 8812 PSV 2014 Action Namco Bandai Games 0.00
## 8813 GBA 2003 Action Ubisoft 0.11
## 8814 Wii 2008 Puzzle Majesco Entertainment 0.14
## 8815 GC 2003 Action Tomy Corporation 0.12
## 8816 XB 2003 Sports Sega 0.11
## 8817 XB 2002 Shooter Take-Two Interactive 0.11
## 8818 PS 1997 Adventure Sony Computer Entertainment 0.00
## 8819 GC 2005 Action Capcom 0.12
## 8820 PSP 2005 Role-Playing Sony Computer Entertainment 0.14
## 8821 DS 2010 Puzzle Astragon 0.09
## 8822 PS3 2007 Sports Electronic Arts 0.12
## 8823 PC 2011 Simulation Electronic Arts 0.05
## 8824 X360 2011 Action DTP Entertainment 0.08
## 8825 GC 2006 Platform Sega 0.12
## 8826 DS 2011 Misc Unknown 0.14
## 8827 PS 2001 Sports Electronic Arts 0.08
## 8828 DS 2010 Misc Game Factory 0.14
## 8829 XB 2004 Fighting Capcom 0.11
## 8830 X360 2007 Role-Playing Square Enix 0.13
## 8831 PSP 2007 Adventure Namco Bandai Games 0.00
## 8832 XB 2004 Shooter Atari 0.11
## 8833 PS2 2005 Adventure Atari 0.07
## 8834 PSV 2013 Role-Playing GungHo 0.08
## 8835 SNES 1991 Sports Imagineer 0.00
## 8836 PS2 2001 Sports Sony Computer Entertainment 0.07
## 8837 X360 2013 Shooter D3Publisher 0.06
## 8838 Wii 2007 Action Activision 0.13
## 8839 Wii 2007 Misc Xplosiv 0.14
## 8840 PS3 2012 Shooter EA Games 0.07
## 8841 PS2 2008 Fighting Ignition Entertainment 0.07
## 8842 PS3 2008 Sports Sony Computer Entertainment 0.14
## 8843 PS2 2005 Role-Playing Atari 0.07
## 8844 PS4 2015 Fighting Namco Bandai Games 0.00
## 8845 PC 2011 Action Unknown 0.00
## 8846 3DS 2013 Action Konami Digital Entertainment 0.04
## 8847 PS3 2015 Action Namco Bandai Games 0.00
## 8848 XOne 2014 Misc Disney Interactive Studios 0.11
## 8849 GBA 2004 Misc N/A 0.11
## 8850 PS2 2001 Racing Electronic Arts 0.07
## 8851 PSV 2014 Role-Playing Nippon Ichi Software 0.02
## 8852 GC 2002 Simulation Titus 0.12
## 8853 SAT 1995 Sports Sega 0.00
## 8854 PSP 2010 Action Activision 0.09
## 8855 PSV 2014 Role-Playing Sony Computer Entertainment 0.00
## 8856 PSP 2011 Role-Playing Sony Computer Entertainment 0.00
## 8857 3DS 2015 Simulation Marvelous Entertainment 0.04
## 8858 GBA 2005 Action THQ 0.11
## 8859 PS2 2008 Shooter Activision 0.07
## 8860 PS2 2008 Sports Electronic Arts 0.07
## 8861 XOne 2016 Platform Electronic Arts 0.08
## 8862 N64 2001 Sports Media Factory 0.00
## 8863 N64 2000 Platform Epoch 0.00
## 8864 N64 1997 Adventure Take-Two Interactive 0.12
## 8865 N64 1997 Fighting Vic Tokai 0.12
## 8866 PSV 2015 Role-Playing Nihon Falcom Corporation 0.00
## 8867 GC 2002 Sports Acclaim Entertainment 0.12
## 8868 Wii 2009 Action Destineer 0.14
## 8869 DS 2009 Simulation Ubisoft 0.14
## 8870 PS 1998 Action Activision 0.08
## 8871 XB 2002 Fighting Rage Software 0.11
## 8872 XB 2003 Racing Empire Interactive 0.11
## 8873 PSV 2016 Role-Playing Nippon Ichi Software 0.02
## 8874 Wii 2008 Adventure JoWood Productions 0.13
## 8875 Wii 2011 Sports Sega 0.05
## 8876 SNES 1995 Puzzle Nintendo 0.00
## 8877 Wii 2008 Action Destineer 0.14
## 8878 XB 2004 Shooter THQ 0.11
## 8879 Wii 2007 Racing Activision 0.13
## 8880 PS3 2007 Shooter Activision 0.12
## 8881 XB 2006 Action THQ 0.11
## 8882 PS3 2009 Sports Konami Digital Entertainment 0.00
## 8883 PS2 2001 Shooter Codemasters 0.07
## 8884 GC 2006 Action Activision 0.12
## 8885 DS 2005 Puzzle 505 Games 0.14
## 8886 Wii 2007 Action Vivendi Games 0.12
## 8887 X360 2009 Misc MTV Games 0.14
## 8888 PS 1998 Strategy Mindscape 0.08
## 8889 GBA 2002 Sports Acclaim Entertainment 0.11
## 8890 XB 2004 Action THQ 0.11
## 8891 PS 1999 Sports Tecmo Koei 0.00
## 8892 PS3 2013 Sports Take-Two Interactive 0.14
## 8893 Wii 2011 Racing Activision 0.10
## 8894 PS3 2015 Action Konami Digital Entertainment 0.00
## 8895 PS2 2005 Racing Ubisoft 0.07
## 8896 GC 2006 Action Namco Bandai Games 0.11
## 8897 GBA 2004 Misc N/A 0.11
## 8898 X360 2008 Simulation Ubisoft 0.06
## 8899 GC 2005 Adventure Nintendo 0.11
## 8900 PS2 NA Misc Empire Interactive 0.07
## 8901 PS 1998 Fighting Sony Computer Entertainment 0.08
## 8902 Wii 2009 Misc Electronic Arts 0.14
## 8903 GBA 2002 Fighting Capcom 0.11
## 8904 DS 2008 Role-Playing D3Publisher 0.13
## 8905 SAT 1997 Shooter Namco Bandai Games 0.00
## 8906 DS 2004 Racing Namco Bandai Games 0.14
## 8907 PS4 2014 Action Tecmo Koei 0.04
## 8908 Wii 2008 Adventure Sega 0.14
## 8909 GEN 1993 Fighting Capcom 0.00
## 8910 PS3 2011 Action Konami Digital Entertainment 0.00
## 8911 PS2 2006 Fighting Namco Bandai Games 0.00
## 8912 PS 2000 Sports Konami Digital Entertainment 0.00
## 8913 DS 2005 Puzzle 505 Games 0.14
## 8914 DS 2006 Sports Konami Digital Entertainment 0.00
## 8915 Wii 2008 Puzzle Game Factory 0.13
## 8916 Wii 2008 Sports THQ 0.14
## 8917 DC 2001 Adventure Sega 0.00
## 8918 PS2 2008 Sports Bethesda Softworks 0.07
## 8919 XB 2005 Misc Capcom 0.11
## 8920 PS2 2003 Shooter Play It 0.07
## 8921 GC 2005 Action Vivendi Games 0.11
## 8922 GC 2005 Action Ubisoft 0.11
## 8923 PSP 2011 Adventure Banpresto 0.00
## 8924 Wii 2009 Sports Take-Two Interactive 0.14
## 8925 XB 2005 Platform Namco Bandai Games 0.11
## 8926 PSV 2014 Adventure Telltale Games 0.10
## 8927 PSP 2009 Simulation Rising Star Games 0.07
## 8928 XB 2003 Role-Playing Sega 0.11
## 8929 PC 2012 Racing Codemasters 0.01
## 8930 XB NA Sports Unknown 0.11
## 8931 DS 2007 Misc Ubisoft 0.13
## 8932 X360 2011 Action Black Bean Games 0.08
## 8933 PSP 2008 Misc Ignition Entertainment 0.13
## 8934 PSP 2004 Fighting Capcom 0.13
## 8935 X360 2009 Sports Take-Two Interactive 0.11
## 8936 GC 2005 Action Electronic Arts 0.11
## 8937 PS 2001 Racing Activision 0.08
## 8938 PS4 2014 Action Sega 0.00
## 8939 PSV 2011 Racing Codemasters 0.03
## 8940 PS 2000 Platform Ubisoft 0.08
## 8941 PS 1997 Strategy Namco Bandai Games 0.00
## 8942 PS 1999 Adventure Crave Entertainment 0.08
## 8943 XB 2004 Platform Vivendi Games 0.11
## 8944 PS2 2000 Simulation Konami Digital Entertainment 0.00
## 8945 DS 2005 Action Konami Digital Entertainment 0.15
## 8946 PSV 2014 Adventure Idea Factory 0.09
## 8947 3DS 2013 Action Nippon Columbia 0.00
## 8948 XOne 2016 Role-Playing Square Enix 0.08
## 8949 XB 2006 Sports Electronic Arts 0.11
## 8950 DS 2009 Role-Playing Namco Bandai Games 0.00
## 8951 GBA 2004 Sports Konami Digital Entertainment 0.00
## 8952 3DS 2012 Platform Ubisoft 0.06
## 8953 X360 2011 Action Sega 0.09
## 8954 GBA 2003 Shooter Electronic Arts 0.11
## 8955 X360 2012 Role-Playing Deep Silver 0.05
## 8956 PS 1996 Adventure Crystal Dynamics 0.08
## 8957 DS 2007 Shooter Vivendi Games 0.13
## 8958 XB 2005 Misc Sega 0.11
## 8959 PS 1999 Role-Playing Atlus 0.00
## 8960 DS 2008 Platform 505 Games 0.00
## 8961 PC 2014 Shooter Sega 0.00
## 8962 PS3 2010 Sports Sony Computer Entertainment 0.13
## 8963 DS 2011 Misc Namco Bandai Games 0.00
## 8964 3DS 2011 Misc Namco Bandai Games 0.09
## 8965 Wii 2010 Sports Black Bean Games 0.12
## 8966 DS 2010 Sports Atari 0.14
## 8967 PS 1997 Racing Sony Computer Entertainment 0.08
## 8968 GBA 2005 Misc Vivendi Games 0.10
## 8969 GC 2003 Shooter Ubisoft 0.11
## 8970 PS 2001 Simulation Konami Digital Entertainment 0.08
## 8971 X360 2010 Action Activision 0.11
## 8972 XB 2001 Racing Eidos Interactive 0.11
## 8973 DS 2010 Misc Activision 0.14
## 8974 PSP 2013 Role-Playing Namco Bandai Games 0.00
## 8975 PS2 2001 Racing Sony Computer Entertainment 0.07
## 8976 PSP 2011 Role-Playing Unknown 0.00
## 8977 DS 2008 Misc Electronic Arts 0.13
## 8978 PS2 2002 Sports Acclaim Entertainment 0.07
## 8979 DS 2009 Puzzle The Adventure Company 0.07
## 8980 DS 2004 Sports Electronic Arts 0.13
## 8981 SAT 1995 Fighting Namco Bandai Games 0.00
## 8982 GBA 2005 Misc Sega 0.10
## 8983 GBA 2003 Role-Playing Konami Digital Entertainment 0.10
## 8984 X360 2007 Racing THQ 0.13
## 8985 Wii 2010 Strategy Namco Bandai Games 0.00
## 8986 DS 2010 Misc THQ 0.14
## 8987 XB 2004 Fighting Zoo Digital Publishing 0.11
## 8988 PS 1995 Role-Playing Sony Computer Entertainment 0.00
## 8989 PSV 2013 Action Tecmo Koei 0.04
## 8990 DS 2013 Action Activision 0.00
## 8991 GBA 2004 Action Crave Entertainment 0.10
## 8992 DS 2008 Shooter Ignition Entertainment 0.13
## 8993 GC 2002 Sports Midway Games 0.11
## 8994 DS 2007 Role-Playing Namco Bandai Games 0.00
## 8995 XB 2003 Action Microsoft Game Studios 0.11
## 8996 PSP 2010 Role-Playing Falcom Corporation 0.09
## 8997 PS2 2005 Role-Playing Ghostlight 0.07
## 8998 PSP 2006 Platform Capcom 0.12
## 8999 PS2 2007 Adventure Ubisoft 0.07
## 9000 PS2 2002 Fighting Titus 0.07
## 9001 DS 2006 Misc Namco Bandai Games 0.02
## 9002 PSV 2014 Action Tecmo Koei 0.03
## 9003 GBA 2002 Sports Konami Digital Entertainment 0.00
## 9004 XB 2005 Racing Midway Games 0.11
## 9005 GEN 1994 Role-Playing Game Arts 0.00
## 9006 DS 2009 Platform Warner Bros. Interactive Entertainment 0.13
## 9007 PS 2001 Puzzle Empire Interactive 0.08
## 9008 3DS 2014 Sports Kadokawa Shoten 0.00
## 9009 3DS 2013 Action D3Publisher 0.10
## 9010 PSV 2014 Role-Playing Nippon Ichi Software 0.07
## 9011 PS 1997 Sports Gremlin Interactive Ltd 0.08
## 9012 PS2 2009 Shooter Activision 0.07
## 9013 PS2 2007 Action Disney Interactive Studios 0.07
## 9014 GB 2000 Adventure Media Factory 0.00
## 9015 SCD 1994 Strategy Sega 0.00
## 9016 GBA 2003 Platform Ubisoft 0.10
## 9017 PS2 2001 Action Wanadoo 0.07
## 9018 PS 1998 Action Sony Computer Entertainment 0.08
## 9019 Wii 2011 Action THQ 0.08
## 9020 DS 2010 Simulation Nobilis 0.13
## 9021 DS 2009 Puzzle Zoo Games 0.13
## 9022 X360 2010 Racing Konami Digital Entertainment 0.12
## 9023 DS 2009 Adventure Nintendo 0.00
## 9024 PS2 2005 Role-Playing 505 Games 0.07
## 9025 Wii 2010 Action Atari 0.13
## 9026 GC 2007 Action THQ 0.11
## 9027 PS2 2009 Action Electronic Arts 0.11
## 9028 PS2 2001 Platform TDK Mediactive 0.07
## 9029 DS 2008 Role-Playing Namco Bandai Games 0.00
## 9030 PS3 2011 Action Tecmo Koei 0.00
## 9031 Wii 2008 Misc SouthPeak Games 0.10
## 9032 PS 1997 Racing Psygnosis 0.08
## 9033 XOne 2015 Action Bethesda Softworks 0.08
## 9034 GBA 2001 Platform Infogrames 0.10
## 9035 PSP 2009 Action Electronic Arts 0.11
## 9036 PC 2010 Role-Playing Electronic Arts 0.00
## 9037 DS 2009 Puzzle UFO Interactive 0.13
## 9038 PSV 2015 Action Disney Interactive Studios 0.00
## 9039 PS 1996 Fighting Acclaim Entertainment 0.08
## 9040 DS 2006 Racing Ubisoft 0.09
## 9041 Wii 2006 Misc System 3 Arcade Software 0.13
## 9042 PS2 2004 Adventure Codemasters 0.07
## 9043 DS 2011 Action Activision 0.12
## 9044 PS2 2006 Adventure THQ 0.07
## 9045 PS2 2004 Role-Playing Tecmo Koei 0.07
## 9046 X360 2006 Action Eidos Interactive 0.10
## 9047 PC 2009 Shooter 505 Games 0.00
## 9048 PS 2001 Racing THQ 0.08
## 9049 PSP 2011 Action Spike 0.00
## 9050 DS 2010 Action Warner Bros. Interactive Entertainment 0.11
## 9051 GC 2002 Simulation Nintendo 0.00
## 9052 GBA 2005 Misc Activision 0.10
## 9053 GB 2001 Role-Playing Enix Corporation 0.00
## 9054 PS2 2003 Puzzle Mindscape 0.07
## 9055 Wii 2008 Action THQ 0.13
## 9056 PC 2000 Strategy Ubisoft 0.02
## 9057 PSP 2008 Racing Xplosiv 0.05
## 9058 PS 2002 Action Namco Bandai Games 0.00
## 9059 PS 1997 Strategy SquareSoft 0.00
## 9060 PSP 2006 Misc 505 Games 0.13
## 9061 GC 2004 Sports Electronic Arts 0.11
## 9062 3DS 2011 Platform Nippon Ichi Software 0.09
## 9063 PC 2007 Shooter Electronic Arts 0.00
## 9064 DS 2008 Sports Arc System Works 0.13
## 9065 Wii 2007 Fighting Ubisoft 0.07
## 9066 PS3 2010 Role-Playing Compile Heart 0.09
## 9067 PS3 2011 Racing Black Bean Games 0.01
## 9068 DC 1998 Fighting Eidos Interactive 0.00
## 9069 PS2 2001 Sports 3DO 0.07
## 9070 DS 2008 Role-Playing Eidos Interactive 0.12
## 9071 PSP 2011 Adventure Broccoli 0.00
## 9072 3DS 2012 Action Marvelous Entertainment 0.00
## 9073 PS2 2004 Misc Codemasters 0.07
## 9074 DS 2009 Simulation Majesco Entertainment 0.13
## 9075 PSP 2010 Role-Playing Namco Bandai Games 0.00
## 9076 XB 2003 Action Atari 0.11
## 9077 PC 2003 Role-Playing LucasArts 0.01
## 9078 XB 2005 Sports Electronic Arts 0.11
## 9079 XB 2002 Sports Sega 0.11
## 9080 PSP 2008 Role-Playing Acquire 0.06
## 9081 DS 2010 Action D3Publisher 0.10
## 9082 Wii NA Simulation Unknown 0.13
## 9083 PSP 2004 Role-Playing Namco Bandai Games 0.03
## 9084 Wii 2007 Misc Ubisoft 0.13
## 9085 DS 2008 Role-Playing GungHo 0.13
## 9086 GBA 2001 Shooter Activision 0.10
## 9087 PS3 2014 Action Namco Bandai Games 0.00
## 9088 PS3 2010 Role-Playing Ubisoft Annecy 0.06
## 9089 PS 2001 Action Acclaim Entertainment 0.08
## 9090 PS2 2001 Misc Sony Computer Entertainment 0.07
## EU_Sales JP_Sales Other_Sales Global_Sales
## 1 29.02 3.77 8.46 82.74
## 2 3.58 6.81 0.77 40.24
## 3 12.88 3.79 3.31 35.82
## 4 11.01 3.28 2.96 33.00
## 5 8.89 10.22 1.00 31.37
## 6 2.26 4.22 0.58 30.26
## 7 9.23 6.50 2.90 30.01
## 8 9.20 2.93 2.85 29.02
## 9 7.06 4.70 2.26 28.62
## 10 0.63 0.28 0.47 28.31
## 11 11.00 1.93 2.75 24.76
## 12 7.57 4.13 1.92 23.42
## 13 6.18 7.20 0.71 23.10
## 14 8.03 3.60 2.15 22.72
## 15 8.59 2.53 1.79 22.00
## 16 4.94 0.24 1.67 21.82
## 17 9.27 0.97 4.14 21.40
## 18 0.40 0.41 10.57 20.81
## 19 3.75 3.54 0.55 20.61
## 20 9.26 4.16 2.05 20.22
## 21 4.52 6.04 1.37 18.36
## 22 2.71 4.18 0.42 18.14
## 23 3.44 3.84 0.46 17.28
## 24 5.31 0.06 1.38 16.38
## 25 5.49 0.47 1.78 16.15
## 26 3.90 5.38 0.50 15.85
## 27 3.28 5.65 0.82 15.32
## 28 5.36 5.32 1.18 15.30
## 29 5.09 1.87 1.16 14.98
## 30 4.28 0.13 1.32 14.76
## 31 5.04 3.12 0.59 14.64
## 32 3.73 0.11 1.13 14.64
## 33 4.05 4.34 0.79 14.35
## 34 5.81 0.35 2.31 14.24
## 35 5.88 0.65 2.52 14.03
## 36 4.30 0.07 1.12 13.73
## 37 3.63 0.08 1.29 13.51
## 38 5.82 0.49 1.62 13.46
## 39 4.51 0.30 1.30 13.10
## 40 2.61 2.66 1.02 13.04
## 41 4.44 0.48 1.83 12.73
## 42 3.52 5.33 0.88 12.27
## 43 3.91 2.67 0.89 12.21
## 44 2.83 0.13 1.21 12.14
## 45 5.81 0.36 2.02 11.98
## 46 2.77 3.96 0.77 11.90
## 47 2.85 1.91 0.23 11.89
## 48 0.01 1.10 7.53 11.66
## 49 3.40 1.20 0.76 11.52
## 50 3.37 3.08 0.65 11.33
## 51 2.04 2.69 0.29 11.18
## 52 3.10 0.14 1.03 11.02
## 53 3.87 2.54 0.52 10.95
## 54 2.99 2.13 0.78 10.79
## 55 4.88 0.81 2.12 10.77
## 56 3.69 0.38 1.63 10.69
## 57 3.76 0.44 1.62 10.57
## 58 2.15 2.12 0.29 10.55
## 59 2.65 3.15 0.35 10.49
## 60 3.11 1.25 0.98 10.42
## 61 3.15 0.00 1.07 10.26
## 62 2.63 0.04 0.82 10.21
## 63 1.98 0.08 0.78 9.88
## 64 1.94 2.23 0.15 9.87
## 65 3.07 2.47 0.63 9.82
## 66 2.36 0.04 0.73 9.76
## 67 2.47 3.28 0.96 9.72
## 68 3.73 0.38 1.38 9.59
## 69 2.89 0.01 0.78 9.52
## 70 3.42 1.69 0.50 9.49
## 71 2.38 0.13 0.90 9.32
## 72 1.71 3.00 0.23 9.30
## 73 2.83 0.02 0.77 9.20
## 74 2.32 4.36 0.41 9.09
## 75 1.88 1.98 0.70 9.02
## 76 2.86 0.10 0.85 8.84
## 77 1.24 3.81 0.18 8.76
## 78 6.06 0.06 1.26 8.49
## 79 3.53 2.49 0.68 8.49
## 80 1.53 0.05 0.08 8.49
## 81 2.30 1.58 0.73 8.42
## 82 1.86 3.14 0.43 8.33
## 83 5.05 0.13 2.01 8.24
## 84 6.42 0.00 0.71 8.11
## 85 2.01 0.13 0.15 8.09
## 86 3.90 0.66 0.91 8.06
## 87 2.07 2.73 0.33 8.05
## 88 1.72 3.63 0.23 7.86
## 89 1.78 2.69 0.55 7.84
## 90 0.45 0.00 0.08 7.81
## 91 2.83 0.24 1.75 7.72
## 92 2.42 0.98 0.64 7.69
## 93 3.29 0.22 1.23 7.67
## 94 3.30 0.14 1.37 7.60
## 95 1.89 1.45 0.16 7.60
## 96 2.17 1.31 0.31 7.58
## 97 1.18 0.70 0.19 7.46
## 98 1.35 2.42 0.43 7.45
## 99 1.90 0.00 0.69 7.37
## 100 2.13 0.06 0.69 7.34
## 101 2.19 0.60 0.70 7.31
## 102 2.09 0.01 0.67 7.30
## 103 3.03 0.00 0.73 7.27
## 104 2.93 0.35 1.10 7.23
## 105 2.83 0.08 1.02 7.20
## 106 2.22 1.40 0.29 7.16
## 107 1.75 1.42 0.28 7.13
## 108 1.04 1.39 0.22 7.07
## 109 2.07 1.27 0.49 6.96
## 110 3.15 0.24 1.10 6.96
## 111 1.77 0.87 0.19 6.95
## 112 2.21 0.00 0.56 6.91
## 113 4.32 0.07 1.73 6.90
## 114 3.02 0.08 1.09 6.90
## 115 2.75 0.17 0.99 6.83
## 116 2.80 0.19 1.06 6.83
## 117 2.35 0.94 0.30 6.82
## 118 2.64 0.00 0.67 6.81
## 119 1.92 0.06 0.64 6.76
## 120 2.25 0.21 1.00 6.73
## 121 2.30 0.28 1.04 6.72
## 122 4.32 0.11 1.42 6.69
## 123 2.78 1.60 0.62 6.67
## 124 2.61 0.17 1.03 6.60
## 125 4.29 0.05 1.47 6.59
## 126 1.84 1.03 0.47 6.59
## 127 2.71 0.25 1.05 6.56
## 128 0.93 1.69 0.14 6.51
## 129 2.56 0.16 1.14 6.50
## 130 1.30 0.08 0.07 6.43
## 131 1.58 2.06 0.21 6.41
## 132 1.20 1.49 0.07 6.40
## 133 1.56 1.29 0.99 6.39
## 134 1.35 0.06 0.61 6.36
## 135 1.97 0.09 0.57 6.34
## 136 1.26 0.87 0.17 6.31
## 137 0.83 2.87 0.12 6.30
## 138 6.21 0.00 0.00 6.28
## 139 2.80 0.02 0.33 6.27
## 140 1.78 0.03 0.51 6.24
## 141 1.62 0.07 0.49 6.24
## 142 1.90 0.07 0.60 6.11
## 143 2.01 0.87 0.72 6.05
## 144 1.20 0.16 0.19 6.03
## 145 1.74 0.83 0.83 6.03
## 146 1.83 0.78 0.24 6.03
## 147 2.28 0.28 1.01 5.99
## 148 0.00 2.33 1.74 5.95
## 149 2.05 0.17 0.90 5.92
## 150 0.69 4.35 0.15 5.84
## 151 1.63 0.00 0.53 5.83
## 152 1.47 2.02 0.45 5.82
## 153 1.89 1.36 0.23 5.74
## 154 1.94 0.07 0.58 5.72
## 155 2.05 0.16 0.96 5.65
## 156 0.69 1.81 0.11 5.58
## 157 1.95 0.21 0.87 5.57
## 158 0.60 1.97 0.04 5.55
## 159 1.65 0.07 0.55 5.55
## 160 1.91 0.11 0.80 5.53
## 161 1.92 0.10 0.51 5.51
## 162 0.57 4.13 0.34 5.50
## 163 1.24 0.91 0.20 5.49
## 164 1.64 0.99 0.23 5.47
## 165 1.11 0.95 0.20 5.46
## 166 1.24 0.94 0.09 5.45
## 167 1.87 0.00 0.84 5.43
## 168 2.29 0.24 0.82 5.42
## 169 2.51 0.00 0.94 5.42
## 170 1.24 1.87 0.52 5.36
## 171 0.96 2.00 0.20 5.34
## 172 1.12 1.01 0.16 5.31
## 173 1.71 0.03 0.44 5.30
## 174 0.77 2.78 0.14 5.30
## 175 1.08 2.11 0.17 5.29
## 176 0.79 1.09 0.06 5.27
## 177 1.56 0.08 0.51 5.27
## 178 2.48 1.03 0.52 5.26
## 179 2.46 0.20 0.28 5.24
## 180 0.26 0.01 0.71 5.23
## 181 0.75 3.61 0.20 5.21
## 182 2.15 0.00 0.62 5.20
## 183 1.25 0.83 0.20 5.20
## 184 1.30 1.27 0.31 5.19
## 185 0.98 1.57 0.15 5.19
## 186 3.48 0.03 0.58 5.18
## 187 1.83 0.95 0.49 5.17
## 188 0.74 2.20 0.11 5.15
## 189 2.02 1.89 0.28 5.15
## 190 2.48 0.44 0.58 5.14
## 191 2.23 0.13 0.80 5.13
## 192 0.61 1.70 0.11 5.13
## 193 1.11 0.05 0.38 5.13
## 194 1.53 0.01 0.38 5.13
## 195 1.69 0.00 0.20 5.12
## 196 0.63 0.00 0.68 5.12
## 197 1.43 1.08 0.65 5.11
## 198 2.01 0.00 0.41 5.08
## 199 2.02 0.16 1.21 5.08
## 200 3.29 0.06 1.13 5.08
## 201 1.30 0.15 0.22 5.07
## 202 1.16 1.11 0.73 5.05
## 203 1.38 0.02 0.20 5.02
## 204 1.06 0.80 0.57 5.02
## 205 1.89 0.00 0.33 5.01
## 206 1.36 0.07 0.21 5.00
## 207 1.18 0.29 0.46 5.00
## 208 0.01 0.01 1.48 4.98
## 209 1.03 0.09 0.44 4.96
## 210 1.20 1.54 0.37 4.96
## 211 1.73 0.12 0.78 4.94
## 212 0.26 0.01 0.66 4.91
## 213 1.54 0.00 0.46 4.90
## 214 0.99 0.89 0.10 4.88
## 215 0.00 4.87 0.00 4.87
## 216 0.60 1.52 0.10 4.85
## 217 1.36 0.12 0.63 4.84
## 218 1.68 0.00 0.59 4.83
## 219 2.00 0.09 0.83 4.83
## 220 3.14 0.04 1.07 4.82
## 221 1.57 0.44 0.21 4.79
## 222 3.75 0.06 0.69 4.77
## 223 1.31 0.04 0.41 4.76
## 224 2.10 0.02 0.25 4.73
## 225 2.19 0.00 0.79 4.70
## 226 1.41 0.02 0.20 4.68
## 227 1.12 1.32 0.37 4.68
## 228 1.95 0.08 0.70 4.67
## 229 2.04 0.06 0.47 4.64
## 230 1.97 0.13 0.24 4.63
## 231 1.12 0.00 0.44 4.62
## 232 0.91 1.15 0.13 4.61
## 233 0.99 0.89 0.13 4.60
## 234 1.99 0.22 0.48 4.58
## 235 1.39 1.10 0.30 4.58
## 236 1.15 1.44 0.43 4.57
## 237 1.87 0.07 0.82 4.55
## 238 0.92 0.01 0.42 4.53
## 239 0.26 0.01 0.08 4.53
## 240 0.24 0.00 0.05 4.50
## 241 0.24 0.01 0.61 4.49
## 242 1.51 0.03 0.23 4.48
## 243 0.14 4.10 0.02 4.47
## 244 1.69 0.08 0.74 4.47
## 245 1.94 0.19 0.77 4.45
## 246 1.29 0.02 0.43 4.45
## 247 1.11 0.46 0.33 4.44
## 248 1.35 0.01 0.39 4.42
## 249 1.29 0.01 0.46 4.41
## 250 2.39 1.05 0.86 4.39
## 251 1.05 0.13 0.40 4.39
## 252 0.50 1.61 0.08 4.38
## 253 1.79 0.08 0.47 4.37
## 254 1.73 0.14 0.75 4.35
## 255 0.91 0.26 0.13 4.34
## 256 0.58 1.38 0.17 4.33
## 257 2.93 0.01 0.46 4.31
## 258 1.18 0.00 0.37 4.31
## 259 0.26 0.00 0.05 4.31
## 260 1.27 0.11 0.41 4.31
## 261 1.20 0.03 0.39 4.26
## 262 1.11 0.72 0.30 4.25
## 263 1.34 0.07 0.61 4.25
## 264 2.02 0.10 0.72 4.24
## 265 1.11 0.05 0.07 4.24
## 266 0.00 0.83 1.93 4.23
## 267 1.02 0.00 0.75 4.22
## 268 2.27 0.00 0.23 4.21
## 269 1.27 0.62 0.30 4.21
## 270 2.55 0.04 0.84 4.21
## 271 2.30 0.20 0.83 4.20
## 272 2.07 0.18 0.65 4.20
## 273 1.83 0.57 0.53 4.20
## 274 1.47 0.04 0.43 4.19
## 275 1.06 0.58 0.53 4.19
## 276 2.79 0.02 0.53 4.19
## 277 0.44 0.31 0.04 4.17
## 278 0.48 1.57 0.07 4.16
## 279 0.27 0.00 0.11 4.16
## 280 0.21 0.01 0.56 4.14
## 281 1.86 0.11 0.77 4.14
## 282 0.00 0.09 0.00 4.12
## 283 0.61 1.76 0.09 4.12
## 284 2.48 0.03 0.89 4.11
## 285 1.20 0.37 0.40 4.10
## 286 0.51 2.10 0.07 4.10
## 287 1.50 0.05 0.42 4.10
## 288 1.26 0.01 0.37 4.09
## 289 1.52 0.00 0.00 4.09
## 290 1.06 0.04 0.33 4.08
## 291 0.04 0.04 1.67 4.07
## 292 1.28 0.03 0.41 4.06
## 293 2.26 0.90 0.77 4.06
## 294 1.55 0.16 0.06 4.05
## 295 1.51 0.51 0.35 4.05
## 296 2.12 0.10 0.69 4.03
## 297 0.58 0.64 0.04 4.03
## 298 1.87 0.12 0.65 4.02
## 299 0.28 2.46 0.04 4.01
## 300 1.20 0.07 0.59 4.01
## 301 1.78 0.92 0.37 4.00
## 302 0.89 0.05 0.37 3.99
## 303 1.35 0.00 0.54 3.98
## 304 1.36 0.06 0.40 3.92
## 305 1.96 0.08 0.70 3.92
## 306 0.76 1.07 0.11 3.91
## 307 1.17 0.01 0.42 3.90
## 308 1.71 0.13 0.73 3.89
## 309 0.49 2.62 0.11 3.89
## 310 1.61 0.06 0.67 3.88
## 311 2.09 0.00 0.64 3.88
## 312 1.94 0.31 0.70 3.87
## 313 0.00 3.77 0.00 3.87
## 314 1.14 0.10 0.51 3.87
## 315 0.65 0.03 0.69 3.85
## 316 1.89 1.12 0.68 3.85
## 317 1.57 1.05 0.35 3.84
## 318 1.44 0.22 0.06 3.84
## 319 0.96 0.54 0.13 3.83
## 320 0.48 0.81 0.27 3.83
## 321 1.93 0.41 0.43 3.82
## 322 1.37 0.73 0.27 3.81
## 323 1.58 0.10 0.61 3.79
## 324 1.91 0.27 0.46 3.78
## 325 1.03 0.00 0.36 3.78
## 326 1.24 0.47 0.25 3.77
## 327 1.40 0.10 0.87 3.77
## 328 1.47 0.00 0.32 3.76
## 329 1.56 0.00 0.17 3.76
## 330 0.88 0.59 0.32 3.76
## 331 2.00 0.14 0.22 3.73
## 332 2.00 0.21 0.56 3.73
## 333 0.77 1.54 0.11 3.72
## 334 1.58 0.00 0.19 3.71
## 335 2.48 0.04 0.59 3.70
## 336 0.73 1.38 0.10 3.70
## 337 1.51 0.27 0.61 3.69
## 338 1.61 0.08 0.41 3.69
## 339 0.00 3.67 0.00 3.67
## 340 1.18 0.01 0.35 3.67
## 341 1.22 0.00 0.79 3.66
## 342 1.13 0.55 0.10 3.65
## 343 0.81 0.06 0.24 3.65
## 344 0.97 0.00 0.35 3.65
## 345 1.80 0.40 0.74 3.64
## 346 1.09 0.15 0.33 3.64
## 347 0.68 0.66 0.06 3.63
## 348 2.46 0.05 0.52 3.63
## 349 0.00 0.64 2.93 3.63
## 350 1.42 0.05 0.38 3.63
## 351 0.83 0.46 0.25 3.62
## 352 1.61 0.15 0.57 3.61
## 353 1.22 0.03 0.44 3.61
## 354 1.40 0.00 0.16 3.61
## 355 1.17 0.00 0.42 3.61
## 356 1.50 0.10 0.39 3.61
## 357 0.67 0.46 0.10 3.60
## 358 1.02 0.03 0.37 3.59
## 359 1.35 0.06 0.16 3.58
## 360 1.79 0.00 0.20 3.56
## 361 1.40 0.07 0.50 3.54
## 362 1.77 0.05 0.49 3.54
## 363 1.58 0.12 0.18 3.54
## 364 1.13 0.10 0.41 3.53
## 365 1.14 0.01 0.41 3.53
## 366 1.08 0.02 0.29 3.53
## 367 2.40 0.02 0.40 3.53
## 368 1.33 0.00 0.23 3.52
## 369 1.21 0.01 0.17 3.52
## 370 0.50 0.05 0.30 3.52
## 371 1.66 0.27 0.38 3.52
## 372 0.94 0.12 0.34 3.51
## 373 0.50 1.75 0.08 3.51
## 374 0.39 0.03 0.24 3.50
## 375 0.38 1.42 0.06 3.50
## 376 0.97 0.02 0.31 3.50
## 377 1.83 0.73 0.35 3.50
## 378 2.36 0.04 0.51 3.49
## 379 1.22 0.02 0.31 3.49
## 380 1.02 0.04 0.32 3.48
## 381 1.01 0.01 0.35 3.48
## 382 0.89 0.00 0.30 3.46
## 383 1.75 0.10 0.72 3.45
## 384 0.00 3.44 0.00 3.44
## 385 0.73 0.03 0.29 3.44
## 386 1.27 0.33 0.29 3.44
## 387 1.54 0.17 0.38 3.43
## 388 1.07 0.06 0.47 3.42
## 389 2.07 0.00 0.22 3.42
## 390 0.00 2.55 0.02 3.42
## 391 1.20 0.02 0.43 3.41
## 392 0.69 0.59 0.40 3.41
## 393 2.28 0.05 0.61 3.40
## 394 1.47 0.19 0.17 3.39
## 395 1.03 0.00 0.32 3.38
## 396 1.35 0.48 0.47 3.38
## 397 0.94 0.74 0.27 3.38
## 398 0.76 0.00 0.13 3.36
## 399 0.67 0.73 0.06 3.36
## 400 1.61 0.82 0.28 3.36
## 401 1.53 0.00 0.18 3.34
## 402 1.14 0.01 0.29 3.34
## 403 0.99 2.32 0.02 3.33
## 404 1.29 0.12 0.46 3.33
## 405 1.01 0.57 0.30 3.33
## 406 1.17 0.76 0.24 3.32
## 407 1.39 0.03 0.43 3.32
## 408 1.05 0.05 0.22 3.31
## 409 1.28 0.05 0.46 3.28
## 410 1.92 0.06 0.50 3.28
## 411 0.92 0.00 0.23 3.28
## 412 1.05 0.02 0.31 3.27
## 413 1.13 0.46 0.32 3.27
## 414 1.59 0.31 0.87 3.27
## 415 0.19 2.78 0.04 3.26
## 416 1.30 0.77 0.22 3.24
## 417 2.11 0.00 0.23 3.23
## 418 1.33 0.12 0.51 3.23
## 419 0.30 0.00 0.59 3.22
## 420 0.00 3.18 0.00 3.22
## 421 1.33 0.00 0.16 3.21
## 422 0.10 2.35 0.02 3.20
## 423 0.72 0.12 0.10 3.20
## 424 1.21 0.07 0.16 3.20
## 425 0.60 0.80 0.44 3.19
## 426 1.01 0.04 0.66 3.19
## 427 0.00 3.19 0.00 3.19
## 428 0.77 0.01 0.26 3.19
## 429 1.12 0.09 0.19 3.18
## 430 0.87 0.93 0.20 3.18
## 431 1.08 0.10 0.47 3.17
## 432 1.02 0.00 0.29 3.17
## 433 0.51 1.93 0.14 3.17
## 434 0.56 0.38 0.17 3.17
## 435 0.98 0.00 0.30 3.16
## 436 0.16 0.99 0.09 3.15
## 437 1.06 0.00 0.29 3.15
## 438 1.57 0.06 0.29 3.15
## 439 0.97 0.88 0.42 3.15
## 440 0.99 0.03 0.24 3.15
## 441 0.00 0.00 2.46 3.14
## 442 1.25 0.02 0.16 3.13
## 443 0.86 0.00 0.13 3.12
## 444 0.62 0.14 0.04 3.12
## 445 1.00 1.03 0.17 3.12
## 446 0.87 0.14 0.42 3.12
## 447 0.00 3.03 0.01 3.12
## 448 1.27 0.06 0.50 3.12
## 449 0.82 0.03 0.27 3.11
## 450 2.02 0.00 0.30 3.11
## 451 0.28 0.55 0.08 3.09
## 452 0.16 0.01 0.42 3.08
## 453 0.45 0.64 0.07 3.08
## 454 0.91 0.04 0.24 3.07
## 455 0.99 0.46 0.22 3.07
## 456 0.62 0.55 0.34 3.07
## 457 1.21 0.00 0.14 3.07
## 458 0.86 0.03 0.24 3.07
## 459 0.84 0.00 0.29 3.05
## 460 1.35 0.02 0.28 3.04
## 461 0.64 0.12 0.22 3.04
## 462 0.80 0.02 0.27 3.03
## 463 1.33 0.00 0.16 3.03
## 464 1.07 0.08 0.47 3.02
## 465 1.04 0.00 0.13 3.02
## 466 0.47 0.45 0.07 3.02
## 467 1.13 0.07 0.38 3.02
## 468 0.32 0.00 0.31 3.00
## 469 0.21 0.01 0.19 3.00
## 470 0.00 0.76 1.09 3.00
## 471 1.02 0.00 0.41 3.00
## 472 1.41 0.05 0.53 2.99
## 473 0.51 0.80 0.07 2.99
## 474 1.18 0.00 0.13 2.99
## 475 1.26 1.16 0.45 2.99
## 476 0.86 0.64 0.13 2.99
## 477 1.00 1.39 0.12 2.98
## 478 1.12 0.08 0.45 2.97
## 479 1.72 0.00 0.29 2.97
## 480 1.01 0.00 0.38 2.97
## 481 1.37 0.06 0.49 2.96
## 482 0.04 1.19 0.15 2.96
## 483 1.15 0.04 0.41 2.96
## 484 0.71 0.15 0.26 2.95
## 485 0.58 0.34 0.04 2.94
## 486 0.51 0.06 0.15 2.94
## 487 1.11 0.04 0.33 2.94
## 488 0.69 0.12 0.37 2.94
## 489 0.77 0.05 0.05 2.94
## 490 0.80 0.03 0.27 2.93
## 491 1.06 0.73 0.26 2.92
## 492 1.13 0.05 0.30 2.91
## 493 0.45 0.62 0.09 2.91
## 494 1.85 0.11 0.33 2.90
## 495 0.80 0.04 0.22 2.90
## 496 1.14 0.00 0.22 2.90
## 497 0.86 0.00 0.28 2.90
## 498 1.24 1.13 0.45 2.90
## 499 1.51 0.06 0.61 2.89
## 500 0.32 1.38 0.20 2.89
## 501 1.12 0.01 0.24 2.89
## 502 1.07 0.00 0.28 2.88
## 503 0.72 0.02 0.11 2.88
## 504 1.27 0.00 0.31 2.88
## 505 2.43 0.12 0.22 2.87
## 506 0.77 0.00 0.22 2.86
## 507 0.16 0.00 0.17 2.86
## 508 0.63 0.03 0.11 2.86
## 509 0.55 0.00 0.32 2.85
## 510 0.51 0.89 0.07 2.85
## 511 0.53 0.98 0.05 2.85
## 512 1.34 0.00 0.14 2.85
## 513 1.14 0.00 0.31 2.85
## 514 1.98 0.05 0.42 2.85
## 515 0.57 0.11 0.30 2.84
## 516 0.86 0.05 0.28 2.83
## 517 0.09 0.00 0.22 2.83
## 518 1.05 0.07 0.43 2.83
## 519 1.08 0.04 0.39 2.83
## 520 0.67 0.10 0.09 2.82
## 521 1.05 0.04 0.14 2.82
## 522 2.79 0.00 0.00 2.81
## 523 1.25 0.03 0.48 2.81
## 524 1.19 0.00 0.30 2.81
## 525 1.06 0.04 0.38 2.80
## 526 0.80 0.00 0.26 2.80
## 527 0.07 1.10 0.15 2.80
## 528 0.20 2.13 0.18 2.79
## 529 0.88 0.09 0.38 2.79
## 530 0.72 0.00 0.11 2.79
## 531 1.15 0.04 0.41 2.79
## 532 0.00 2.78 0.01 2.79
## 533 0.70 0.00 0.11 2.79
## 534 1.43 0.00 0.48 2.79
## 535 0.22 0.00 0.38 2.79
## 536 1.47 0.68 0.34 2.79
## 537 0.29 1.96 0.07 2.79
## 538 0.74 0.00 0.36 2.78
## 539 0.97 0.07 0.47 2.78
## 540 0.83 0.26 0.25 2.78
## 541 0.98 0.17 0.43 2.78
## 542 1.12 0.00 0.24 2.77
## 543 1.20 0.04 0.30 2.77
## 544 1.15 0.07 0.30 2.77
## 545 0.17 0.00 0.03 2.76
## 546 0.54 0.71 0.07 2.75
## 547 1.31 0.06 0.31 2.74
## 548 0.36 1.13 0.23 2.73
## 549 0.31 1.04 0.05 2.73
## 550 0.94 0.02 0.24 2.72
## 551 0.93 0.02 0.27 2.71
## 552 0.52 0.33 0.10 2.70
## 553 0.48 1.09 0.14 2.70
## 554 0.76 0.00 0.47 2.70
## 555 0.53 0.87 0.05 2.70
## 556 0.11 0.00 0.16 2.69
## 557 0.64 0.01 0.19 2.69
## 558 0.12 0.00 0.18 2.69
## 559 0.52 0.35 0.18 2.69
## 560 0.98 0.00 0.24 2.68
## 561 1.11 0.00 0.34 2.68
## 562 0.00 2.68 0.00 2.68
## 563 1.41 0.04 0.53 2.68
## 564 0.75 0.89 0.26 2.68
## 565 0.63 0.00 0.09 2.67
## 566 0.92 0.01 0.26 2.67
## 567 0.64 0.00 0.25 2.67
## 568 1.09 0.00 0.14 2.67
## 569 0.58 0.00 0.09 2.66
## 570 0.80 0.00 0.26 2.65
## 571 1.11 0.00 0.40 2.65
## 572 0.88 0.00 0.22 2.65
## 573 1.11 0.01 0.66 2.65
## 574 0.00 2.65 0.00 2.65
## 575 0.50 0.12 0.03 2.65
## 576 0.87 0.00 0.24 2.64
## 577 0.47 0.02 0.14 2.63
## 578 1.10 0.12 0.65 2.63
## 579 0.82 0.04 0.24 2.63
## 580 0.46 0.06 0.41 2.63
## 581 0.12 0.00 0.36 2.62
## 582 1.06 0.24 0.25 2.62
## 583 0.81 0.04 0.21 2.62
## 584 1.79 0.01 0.23 2.62
## 585 0.14 0.01 0.16 2.62
## 586 0.84 0.96 0.19 2.61
## 587 1.22 0.04 0.44 2.61
## 588 0.52 0.92 0.14 2.60
## 589 0.55 0.11 0.08 2.60
## 590 1.63 0.04 0.43 2.59
## 591 1.12 0.08 0.45 2.59
## 592 0.21 0.00 0.35 2.59
## 593 1.24 0.01 0.69 2.58
## 594 1.33 0.07 0.28 2.58
## 595 1.24 0.03 0.27 2.58
## 596 0.27 1.75 0.18 2.58
## 597 0.88 0.03 0.26 2.58
## 598 0.74 0.31 0.22 2.57
## 599 1.68 0.33 0.28 2.57
## 600 0.56 0.03 0.22 2.57
## 601 0.08 0.00 0.35 2.57
## 602 0.59 0.21 0.07 2.56
## 603 0.00 2.41 0.00 2.56
## 604 0.23 0.00 0.22 2.56
## 605 0.57 0.70 0.07 2.54
## 606 0.87 0.29 0.25 2.54
## 607 0.12 0.00 0.20 2.54
## 608 0.14 0.00 0.03 2.53
## 609 1.12 0.06 0.22 2.52
## 610 0.75 0.16 0.06 2.52
## 611 0.78 0.00 0.24 2.52
## 612 0.00 0.52 1.51 2.52
## 613 1.31 0.08 0.52 2.51
## 614 0.02 0.00 0.19 2.50
## 615 0.07 0.26 2.05 2.50
## 616 0.14 1.08 0.01 2.50
## 617 1.06 0.18 0.39 2.49
## 618 0.56 0.00 0.09 2.49
## 619 0.97 0.00 0.23 2.49
## 620 0.52 0.00 0.15 2.49
## 621 0.85 0.10 0.39 2.48
## 622 0.85 0.00 0.25 2.48
## 623 1.14 0.06 0.13 2.48
## 624 0.44 0.05 0.27 2.48
## 625 0.34 0.00 0.21 2.48
## 626 0.20 0.00 0.17 2.47
## 627 0.36 0.92 0.07 2.47
## 628 0.58 0.00 0.20 2.46
## 629 0.54 0.05 0.31 2.45
## 630 0.00 2.43 0.02 2.45
## 631 0.12 1.34 0.06 2.45
## 632 0.25 0.00 0.07 2.44
## 633 0.73 0.04 0.22 2.44
## 634 0.98 0.00 0.59 2.44
## 635 1.19 0.00 0.18 2.43
## 636 0.82 0.00 0.10 2.43
## 637 0.61 0.02 0.23 2.42
## 638 0.61 0.46 0.08 2.42
## 639 0.32 0.78 0.05 2.42
## 640 1.18 0.54 0.41 2.42
## 641 0.22 0.51 0.06 2.41
## 642 0.26 0.00 0.08 2.41
## 643 0.76 0.70 0.14 2.41
## 644 0.76 0.00 0.22 2.41
## 645 0.00 0.04 1.68 2.41
## 646 0.08 0.00 0.26 2.40
## 647 0.24 0.00 0.07 2.40
## 648 0.18 1.42 0.03 2.40
## 649 0.10 0.00 0.00 2.40
## 650 0.18 0.00 0.07 2.39
## 651 1.49 0.05 0.36 2.39
## 652 0.48 0.00 0.18 2.39
## 653 0.63 0.00 0.22 2.39
## 654 0.81 0.00 0.10 2.39
## 655 0.87 0.04 0.40 2.39
## 656 0.71 0.00 0.20 2.39
## 657 0.61 0.03 0.07 2.38
## 658 0.97 0.00 0.39 2.38
## 659 0.46 0.02 0.18 2.38
## 660 0.39 0.03 0.02 2.38
## 661 0.76 0.26 0.36 2.38
## 662 0.54 0.01 0.37 2.38
## 663 0.15 0.00 0.19 2.38
## 664 0.91 0.00 0.30 2.38
## 665 0.01 0.00 0.18 2.37
## 666 0.02 0.08 0.00 2.37
## 667 1.08 0.04 0.30 2.37
## 668 0.86 0.01 0.26 2.37
## 669 0.13 0.00 0.21 2.37
## 670 0.74 0.02 0.22 2.36
## 671 0.14 1.48 0.05 2.36
## 672 1.05 0.00 0.23 2.35
## 673 0.48 0.40 0.08 2.35
## 674 0.00 2.34 0.01 2.35
## 675 0.46 0.01 0.20 2.35
## 676 0.83 0.00 0.20 2.34
## 677 0.00 0.01 1.41 2.34
## 678 0.90 0.00 0.24 2.34
## 679 0.70 0.34 0.21 2.34
## 680 0.86 0.00 0.20 2.33
## 681 0.54 0.47 0.17 2.32
## 682 0.14 0.00 0.24 2.32
## 683 0.56 0.00 0.19 2.32
## 684 0.40 1.06 0.07 2.32
## 685 1.35 0.04 0.14 2.32
## 686 1.06 0.09 0.32 2.31
## 687 0.45 1.21 0.13 2.31
## 688 0.64 0.00 0.09 2.31
## 689 0.00 2.02 0.01 2.31
## 690 0.46 0.10 0.10 2.31
## 691 0.85 0.00 0.21 2.30
## 692 1.06 0.00 0.29 2.30
## 693 0.54 0.62 0.18 2.30
## 694 0.75 0.15 0.31 2.29
## 695 1.25 0.00 0.13 2.29
## 696 0.68 0.04 0.34 2.29
## 697 0.80 0.00 0.10 2.28
## 698 1.27 0.46 0.26 2.28
## 699 0.98 0.00 0.20 2.28
## 700 0.00 2.28 0.00 2.28
## 701 0.12 1.63 0.02 2.28
## 702 0.07 0.01 1.82 2.28
## 703 0.90 0.00 0.37 2.28
## 704 0.77 0.10 0.36 2.28
## 705 2.00 0.02 0.18 2.28
## 706 0.39 0.64 0.12 2.27
## 707 0.62 0.00 0.31 2.27
## 708 0.92 0.04 0.24 2.27
## 709 0.10 0.91 0.04 2.27
## 710 0.73 0.54 0.09 2.26
## 711 0.54 0.02 0.30 2.26
## 712 0.84 0.00 0.23 2.26
## 713 0.57 0.14 0.21 2.26
## 714 0.79 0.87 0.32 2.25
## 715 0.44 1.06 0.13 2.25
## 716 0.46 0.20 0.08 2.25
## 717 0.25 0.46 0.06 2.25
## 718 0.15 0.00 0.17 2.25
## 719 0.41 1.05 0.11 2.25
## 720 0.51 0.91 0.32 2.25
## 721 0.71 0.22 0.13 2.24
## 722 0.83 0.00 0.11 2.23
## 723 0.25 0.21 0.03 2.23
## 724 0.61 0.00 0.21 2.23
## 725 0.85 0.00 0.28 2.23
## 726 0.62 0.18 0.16 2.22
## 727 1.03 0.00 0.31 2.22
## 728 0.32 0.02 0.18 2.22
## 729 0.63 0.45 0.13 2.22
## 730 0.98 0.00 0.21 2.22
## 731 0.55 0.02 0.19 2.21
## 732 0.55 0.00 0.19 2.21
## 733 0.82 0.05 0.28 2.21
## 734 0.24 0.00 0.18 2.20
## 735 0.12 0.00 0.02 2.20
## 736 0.02 0.00 0.17 2.20
## 737 0.51 0.34 0.23 2.20
## 738 0.00 2.05 0.00 2.20
## 739 0.68 0.02 0.21 2.20
## 740 0.91 0.00 0.23 2.20
## 741 0.97 0.55 0.33 2.19
## 742 0.78 0.02 0.22 2.19
## 743 0.44 0.00 0.08 2.19
## 744 0.17 1.10 0.05 2.19
## 745 0.72 0.30 0.13 2.19
## 746 1.07 0.07 0.45 2.19
## 747 0.00 2.17 0.01 2.18
## 748 0.20 0.00 0.06 2.18
## 749 0.78 0.01 0.17 2.18
## 750 0.07 0.00 0.13 2.18
## 751 0.04 0.73 0.12 2.18
## 752 0.17 0.47 0.06 2.17
## 753 0.68 0.01 0.20 2.17
## 754 0.46 0.08 0.03 2.17
## 755 0.11 1.56 0.02 2.17
## 756 0.83 0.00 0.10 2.16
## 757 0.47 0.00 0.18 2.16
## 758 0.55 0.02 0.08 2.15
## 759 1.16 0.13 0.32 2.15
## 760 0.03 1.98 0.00 2.15
## 761 1.41 0.00 0.14 2.15
## 762 1.03 0.00 0.59 2.14
## 763 0.00 1.45 0.03 2.14
## 764 0.00 2.13 0.00 2.14
## 765 0.38 0.19 0.10 2.14
## 766 0.84 0.00 0.10 2.14
## 767 0.12 0.00 0.02 2.13
## 768 0.81 0.00 0.27 2.13
## 769 0.07 1.35 0.08 2.13
## 770 0.37 0.89 0.05 2.13
## 771 1.16 0.06 0.33 2.13
## 772 0.97 0.02 0.21 2.12
## 773 0.05 1.07 0.09 2.12
## 774 0.09 0.45 0.11 2.12
## 775 0.61 0.05 0.09 2.12
## 776 0.33 0.92 0.04 2.12
## 777 0.27 0.05 0.18 2.11
## 778 0.62 0.00 0.29 2.11
## 779 0.40 0.00 0.03 2.11
## 780 1.34 0.40 0.26 2.11
## 781 0.31 0.02 0.09 2.11
## 782 0.45 0.63 0.13 2.11
## 783 0.56 0.00 0.20 2.11
## 784 0.21 1.13 0.13 2.11
## 785 0.33 0.00 0.15 2.11
## 786 0.07 1.05 0.04 2.10
## 787 0.72 0.00 0.22 2.10
## 788 0.44 0.04 0.07 2.10
## 789 0.13 0.02 0.18 2.10
## 790 0.51 0.01 0.17 2.10
## 791 0.63 0.29 0.19 2.09
## 792 0.00 1.96 0.14 2.09
## 793 0.65 0.08 0.20 2.09
## 794 0.60 0.05 0.18 2.09
## 795 0.12 0.01 0.13 2.09
## 796 0.00 0.00 0.12 2.09
## 797 0.94 0.00 0.22 2.09
## 798 0.93 0.14 0.32 2.09
## 799 0.42 0.96 0.25 2.09
## 800 0.32 0.00 0.00 2.08
## 801 0.71 0.00 0.27 2.08
## 802 1.02 0.05 0.39 2.08
## 803 0.52 0.00 0.20 2.08
## 804 0.33 0.73 0.06 2.08
## 805 0.99 0.13 0.36 2.08
## 806 0.04 0.00 0.00 2.08
## 807 1.08 0.00 0.11 2.08
## 808 0.94 0.00 0.35 2.08
## 809 0.46 0.00 0.08 2.07
## 810 0.42 0.75 0.26 2.07
## 811 0.39 0.00 0.19 2.07
## 812 0.54 0.54 0.23 2.07
## 813 0.36 0.00 0.07 2.07
## 814 0.80 0.01 0.22 2.06
## 815 0.97 0.02 0.34 2.06
## 816 0.63 0.04 0.19 2.06
## 817 0.52 0.74 0.08 2.06
## 818 0.77 0.04 0.10 2.06
## 819 0.46 0.79 0.13 2.06
## 820 0.62 0.13 0.25 2.06
## 821 0.57 0.46 0.13 2.06
## 822 0.92 0.04 0.37 2.05
## 823 0.64 0.00 0.19 2.05
## 824 0.33 0.04 0.25 2.05
## 825 0.06 0.83 0.00 2.05
## 826 0.48 0.05 0.06 2.05
## 827 0.83 0.15 0.35 2.05
## 828 0.25 0.00 0.05 2.05
## 829 1.29 0.02 0.25 2.05
## 830 0.27 0.53 0.14 2.04
## 831 0.42 0.01 0.16 2.04
## 832 1.09 0.00 0.23 2.04
## 833 0.02 0.00 0.28 2.04
## 834 1.02 0.00 0.31 2.04
## 835 0.48 0.29 0.07 2.04
## 836 1.06 0.03 0.37 2.04
## 837 0.25 0.00 0.25 2.03
## 838 0.61 0.13 0.05 2.03
## 839 0.40 0.00 0.16 2.03
## 840 0.18 0.00 0.27 2.03
## 841 0.67 0.00 0.30 2.02
## 842 0.05 0.01 0.15 2.02
## 843 0.09 0.00 0.17 2.02
## 844 0.98 0.04 0.18 2.02
## 845 1.27 0.00 0.25 2.01
## 846 0.62 0.00 0.18 2.01
## 847 0.85 0.01 0.37 2.00
## 848 0.45 0.53 0.13 2.00
## 849 1.31 0.02 0.33 2.00
## 850 0.16 1.29 0.03 2.00
## 851 0.30 0.00 0.22 2.00
## 852 0.64 0.27 0.13 1.99
## 853 0.30 0.90 0.04 1.99
## 854 0.64 0.05 0.09 1.99
## 855 1.09 0.02 0.12 1.98
## 856 0.27 0.75 0.04 1.98
## 857 0.58 0.00 0.16 1.98
## 858 0.63 0.07 0.16 1.98
## 859 0.86 0.08 0.32 1.97
## 860 0.80 0.00 0.18 1.97
## 861 0.95 0.00 0.28 1.97
## 862 0.59 0.00 0.19 1.97
## 863 0.58 0.51 0.17 1.97
## 864 0.64 0.02 0.30 1.97
## 865 0.11 0.00 0.02 1.97
## 866 0.57 0.02 0.15 1.96
## 867 0.50 0.63 0.33 1.96
## 868 0.37 0.41 0.05 1.96
## 869 0.23 1.53 0.02 1.96
## 870 0.03 1.05 0.08 1.96
## 871 0.65 0.02 0.20 1.96
## 872 0.49 0.00 0.16 1.95
## 873 1.01 0.00 0.20 1.95
## 874 0.61 0.00 0.09 1.95
## 875 0.77 0.00 0.09 1.95
## 876 0.20 0.00 0.06 1.95
## 877 0.74 0.00 0.25 1.94
## 878 1.26 0.01 0.18 1.94
## 879 0.00 0.00 0.00 1.94
## 880 1.23 0.00 0.13 1.94
## 881 0.38 0.55 0.05 1.94
## 882 0.15 0.65 0.04 1.94
## 883 0.42 0.03 0.07 1.94
## 884 0.40 0.00 0.12 1.94
## 885 0.72 0.00 0.21 1.93
## 886 0.61 0.00 0.17 1.93
## 887 0.56 0.00 0.27 1.93
## 888 0.39 0.00 0.06 1.93
## 889 0.26 1.30 0.03 1.93
## 890 0.60 0.20 0.07 1.93
## 891 0.24 0.00 0.16 1.93
## 892 0.89 0.10 0.37 1.93
## 893 0.00 0.29 0.12 1.93
## 894 0.87 0.01 0.17 1.92
## 895 0.53 0.41 0.06 1.92
## 896 0.97 0.01 0.22 1.92
## 897 0.85 0.00 0.20 1.92
## 898 0.96 0.00 0.20 1.92
## 899 0.80 0.00 0.09 1.92
## 900 0.73 0.00 0.25 1.92
## 901 0.16 1.46 0.03 1.92
## 902 0.67 0.00 0.18 1.92
## 903 0.16 1.01 0.02 1.91
## 904 0.57 0.00 0.19 1.91
## 905 0.44 0.00 0.17 1.91
## 906 0.78 0.04 0.31 1.91
## 907 0.66 0.00 0.17 1.91
## 908 0.75 0.03 0.09 1.90
## 909 0.92 0.06 0.32 1.90
## 910 0.91 0.03 0.22 1.89
## 911 0.15 0.00 0.18 1.89
## 912 0.30 1.33 0.04 1.89
## 913 0.54 0.03 0.26 1.88
## 914 0.44 0.00 0.08 1.88
## 915 0.72 0.00 0.24 1.88
## 916 0.12 1.48 0.03 1.88
## 917 0.69 0.09 0.21 1.88
## 918 0.36 0.03 0.07 1.88
## 919 0.08 0.00 1.33 1.87
## 920 0.53 0.30 0.09 1.87
## 921 1.47 0.04 0.14 1.87
## 922 0.16 1.07 0.10 1.87
## 923 0.62 0.40 0.12 1.87
## 924 0.52 0.41 0.06 1.86
## 925 0.03 0.00 0.08 1.86
## 926 0.69 0.03 0.02 1.86
## 927 0.44 0.39 0.10 1.86
## 928 0.41 0.04 0.04 1.86
## 929 1.37 0.00 0.49 1.86
## 930 0.92 0.01 0.29 1.86
## 931 0.71 0.00 0.24 1.86
## 932 0.37 0.00 0.15 1.86
## 933 0.42 0.69 0.12 1.86
## 934 0.71 0.13 0.16 1.86
## 935 0.59 0.55 0.11 1.85
## 936 0.49 0.00 0.03 1.85
## 937 0.82 0.00 0.20 1.85
## 938 0.18 0.35 0.06 1.85
## 939 0.19 0.83 0.03 1.85
## 940 0.49 0.08 0.23 1.85
## 941 1.10 0.42 0.33 1.84
## 942 0.34 0.35 0.18 1.84
## 943 0.05 0.00 0.25 1.84
## 944 0.06 0.93 0.00 1.83
## 945 0.49 0.00 0.03 1.83
## 946 0.76 0.00 0.23 1.83
## 947 0.40 0.03 0.07 1.83
## 948 1.02 0.07 0.28 1.83
## 949 0.07 1.49 0.02 1.83
## 950 0.54 0.02 0.17 1.83
## 951 0.33 0.52 0.05 1.83
## 952 0.34 0.79 0.09 1.82
## 953 0.43 0.03 0.12 1.82
## 954 0.07 0.00 0.02 1.82
## 955 0.00 0.00 0.00 1.82
## 956 0.74 0.07 0.09 1.82
## 957 0.21 1.35 0.03 1.81
## 958 0.84 0.11 0.31 1.81
## 959 0.59 0.00 0.18 1.81
## 960 0.51 0.12 0.08 1.81
## 961 0.44 0.56 0.04 1.81
## 962 0.69 0.00 0.23 1.81
## 963 0.03 0.00 0.77 1.80
## 964 0.59 0.21 0.07 1.80
## 965 0.00 0.01 0.13 1.80
## 966 0.21 0.03 0.16 1.80
## 967 0.68 0.00 0.12 1.80
## 968 0.96 0.07 0.27 1.79
## 969 0.39 0.08 0.06 1.79
## 970 0.88 0.06 0.34 1.79
## 971 0.57 0.03 0.14 1.78
## 972 0.29 0.00 0.24 1.78
## 973 0.03 1.49 0.03 1.78
## 974 0.58 0.00 0.08 1.78
## 975 1.01 0.02 0.36 1.78
## 976 0.95 0.36 0.14 1.78
## 977 0.94 0.06 0.33 1.78
## 978 0.46 0.72 0.19 1.78
## 979 0.57 0.14 0.13 1.77
## 980 0.76 0.00 0.16 1.77
## 981 0.45 0.00 0.16 1.77
## 982 0.54 0.84 0.08 1.77
## 983 0.03 0.00 0.15 1.77
## 984 0.09 1.33 0.12 1.77
## 985 0.06 1.03 0.04 1.77
## 986 0.29 0.24 0.06 1.77
## 987 0.45 0.01 0.24 1.77
## 988 0.31 0.56 0.04 1.76
## 989 0.42 0.00 0.07 1.76
## 990 0.54 0.00 0.16 1.76
## 991 0.38 0.40 0.06 1.76
## 992 0.47 0.20 0.07 1.76
## 993 0.12 1.09 0.02 1.76
## 994 0.67 0.00 0.22 1.76
## 995 0.46 0.00 0.07 1.76
## 996 0.67 0.00 0.22 1.76
## 997 0.69 0.04 0.31 1.76
## 998 0.90 0.01 0.17 1.76
## 999 0.47 0.00 0.03 1.76
## 1000 0.48 0.00 0.16 1.76
## 1001 0.95 0.00 0.29 1.76
## 1002 1.07 0.02 0.32 1.76
## 1003 0.87 0.02 0.26 1.76
## 1004 0.04 0.00 0.04 1.75
## 1005 0.37 0.25 0.24 1.75
## 1006 0.45 0.00 0.07 1.75
## 1007 0.90 0.53 0.27 1.75
## 1008 0.54 0.03 0.18 1.75
## 1009 0.13 0.91 0.01 1.75
## 1010 0.34 0.21 0.27 1.75
## 1011 0.14 0.80 0.02 1.75
## 1012 0.66 0.08 0.18 1.75
## 1013 0.66 0.01 0.22 1.75
## 1014 0.46 0.00 0.03 1.75
## 1015 0.89 0.04 0.10 1.74
## 1016 0.49 0.45 0.17 1.74
## 1017 0.63 0.02 0.25 1.74
## 1018 0.40 0.00 0.16 1.74
## 1019 0.89 0.03 0.14 1.74
## 1020 0.61 0.01 0.16 1.74
## 1021 0.04 0.00 0.01 1.74
## 1022 0.04 0.00 0.04 1.74
## 1023 0.88 0.06 0.30 1.74
## 1024 0.75 0.13 0.27 1.74
## 1025 0.66 0.12 0.27 1.73
## 1026 0.66 0.00 0.22 1.73
## 1027 0.68 0.14 0.26 1.73
## 1028 0.20 0.00 0.05 1.73
## 1029 0.62 0.10 0.07 1.73
## 1030 0.44 0.00 0.14 1.73
## 1031 0.70 0.00 0.08 1.73
## 1032 0.52 0.01 0.14 1.73
## 1033 0.66 0.00 0.22 1.72
## 1034 0.78 0.06 0.27 1.72
## 1035 0.78 0.00 0.28 1.72
## 1036 0.18 0.00 0.94 1.72
## 1037 0.83 0.00 0.19 1.72
## 1038 0.98 0.00 0.33 1.72
## 1039 0.03 0.00 0.08 1.72
## 1040 0.21 0.55 0.15 1.72
## 1041 0.87 0.00 0.25 1.71
## 1042 0.16 0.00 0.12 1.71
## 1043 0.64 0.00 0.08 1.71
## 1044 0.41 0.00 0.15 1.71
## 1045 0.34 0.32 0.18 1.71
## 1046 0.55 0.00 0.07 1.71
## 1047 0.00 1.71 0.00 1.71
## 1048 0.39 0.00 0.06 1.71
## 1049 0.00 0.00 0.12 1.70
## 1050 1.08 0.03 0.26 1.70
## 1051 0.24 0.00 1.23 1.70
## 1052 0.42 0.14 0.15 1.70
## 1053 1.12 0.00 0.09 1.70
## 1054 0.21 0.79 0.08 1.70
## 1055 0.00 1.69 0.01 1.70
## 1056 0.83 0.00 0.19 1.70
## 1057 0.05 0.00 0.23 1.70
## 1058 0.34 0.04 0.10 1.69
## 1059 0.18 0.00 0.15 1.69
## 1060 0.54 0.02 0.25 1.69
## 1061 0.53 0.01 0.14 1.69
## 1062 0.64 0.00 0.11 1.69
## 1063 0.44 0.08 0.22 1.69
## 1064 1.01 0.00 0.13 1.69
## 1065 0.28 0.03 0.02 1.69
## 1066 0.48 0.04 0.07 1.69
## 1067 0.66 0.08 0.08 1.69
## 1068 0.71 0.01 0.18 1.69
## 1069 0.12 0.00 0.05 1.69
## 1070 0.52 0.00 0.19 1.69
## 1071 0.42 0.22 0.06 1.69
## 1072 0.52 0.07 0.30 1.69
## 1073 0.47 0.00 0.32 1.68
## 1074 0.64 0.00 0.22 1.68
## 1075 0.06 0.00 0.04 1.68
## 1076 0.64 0.00 0.15 1.68
## 1077 0.24 0.82 0.03 1.68
## 1078 0.87 0.33 0.10 1.68
## 1079 0.00 0.00 0.00 1.68
## 1080 0.30 0.00 0.14 1.68
## 1081 0.55 0.04 0.17 1.68
## 1082 0.27 0.17 0.06 1.68
## 1083 0.57 0.00 0.17 1.67
## 1084 0.52 0.00 0.22 1.67
## 1085 1.02 0.00 0.20 1.67
## 1086 0.05 0.00 0.04 1.67
## 1087 0.59 0.01 0.26 1.67
## 1088 0.67 0.42 0.15 1.67
## 1089 0.39 0.00 0.06 1.67
## 1090 0.30 0.42 0.04 1.67
## 1091 0.49 0.02 0.07 1.67
## 1092 0.95 0.03 0.10 1.67
## 1093 0.65 0.00 0.19 1.67
## 1094 0.59 0.04 0.07 1.67
## 1095 0.32 0.00 0.22 1.67
## 1096 0.09 0.00 0.23 1.67
## 1097 0.45 0.00 0.14 1.67
## 1098 0.66 0.11 0.26 1.66
## 1099 0.73 0.06 0.30 1.66
## 1100 0.30 0.31 0.04 1.66
## 1101 0.61 0.06 0.20 1.66
## 1102 0.64 0.01 0.14 1.66
## 1103 0.63 0.00 0.21 1.66
## 1104 0.70 0.02 0.18 1.66
## 1105 0.15 0.03 0.22 1.66
## 1106 0.12 0.54 0.04 1.66
## 1107 0.10 0.00 0.02 1.65
## 1108 0.11 0.60 0.05 1.65
## 1109 0.38 0.15 0.05 1.65
## 1110 0.68 0.33 0.16 1.65
## 1111 0.00 1.65 0.00 1.65
## 1112 0.38 0.02 0.16 1.65
## 1113 0.02 1.27 0.03 1.64
## 1114 0.05 0.76 0.03 1.64
## 1115 0.72 0.00 0.16 1.64
## 1116 0.10 0.00 0.02 1.64
## 1117 0.63 0.00 0.08 1.64
## 1118 0.26 0.61 0.03 1.64
## 1119 0.63 0.00 0.21 1.64
## 1120 0.15 0.00 0.05 1.64
## 1121 0.88 0.00 0.22 1.64
## 1122 0.48 0.00 0.14 1.64
## 1123 0.89 0.05 0.25 1.64
## 1124 0.02 0.00 0.07 1.63
## 1125 0.96 0.02 0.20 1.63
## 1126 0.25 0.56 0.04 1.63
## 1127 0.81 0.00 0.24 1.63
## 1128 0.73 0.02 0.28 1.63
## 1129 0.34 0.00 0.10 1.63
## 1130 0.48 0.32 0.11 1.63
## 1131 0.14 0.00 0.15 1.63
## 1132 0.09 0.00 0.22 1.62
## 1133 0.85 0.02 0.17 1.62
## 1134 0.41 0.00 0.22 1.62
## 1135 0.63 0.01 0.19 1.62
## 1136 0.61 0.03 0.15 1.62
## 1137 0.04 0.49 0.10 1.62
## 1138 0.11 0.45 0.04 1.62
## 1139 0.61 0.00 0.11 1.62
## 1140 0.38 0.30 0.13 1.61
## 1141 0.62 0.00 0.21 1.61
## 1142 0.53 0.03 0.13 1.61
## 1143 0.27 0.65 0.03 1.61
## 1144 0.00 1.61 0.01 1.61
## 1145 0.38 0.20 0.04 1.61
## 1146 1.18 0.00 0.43 1.61
## 1147 0.00 0.00 0.11 1.61
## 1148 0.68 0.01 0.13 1.61
## 1149 0.48 0.01 0.15 1.60
## 1150 0.99 0.00 0.22 1.60
## 1151 0.23 0.00 0.07 1.60
## 1152 0.69 0.02 0.18 1.60
## 1153 0.96 0.09 0.08 1.60
## 1154 0.09 0.00 0.02 1.60
## 1155 0.48 0.30 0.10 1.60
## 1156 0.02 1.36 0.02 1.60
## 1157 0.74 0.02 0.26 1.60
## 1158 0.44 0.06 0.04 1.60
## 1159 0.12 0.00 0.21 1.59
## 1160 1.58 0.00 0.00 1.59
## 1161 0.36 0.04 0.04 1.59
## 1162 0.41 0.46 0.10 1.59
## 1163 0.46 0.34 0.21 1.59
## 1164 0.09 0.00 0.02 1.59
## 1165 1.10 0.32 0.13 1.59
## 1166 0.44 0.07 0.15 1.59
## 1167 0.50 0.00 0.14 1.59
## 1168 0.60 0.00 0.10 1.59
## 1169 0.80 0.03 0.29 1.58
## 1170 0.56 0.00 0.15 1.58
## 1171 0.58 0.00 0.16 1.58
## 1172 0.60 0.01 0.17 1.58
## 1173 0.60 0.00 0.10 1.58
## 1174 0.80 0.01 0.15 1.58
## 1175 0.49 0.00 0.15 1.58
## 1176 0.76 0.00 0.17 1.58
## 1177 0.26 0.34 0.09 1.58
## 1178 0.37 0.00 0.15 1.58
## 1179 0.44 0.44 0.12 1.58
## 1180 0.65 0.00 0.08 1.58
## 1181 0.18 0.12 1.16 1.57
## 1182 0.60 0.00 0.20 1.57
## 1183 0.53 0.00 0.06 1.57
## 1184 0.11 0.46 0.04 1.57
## 1185 0.64 0.49 0.25 1.56
## 1186 0.60 0.00 0.20 1.56
## 1187 0.40 0.00 0.10 1.56
## 1188 0.14 0.81 0.02 1.56
## 1189 0.19 0.00 0.05 1.56
## 1190 0.44 0.33 0.21 1.56
## 1191 0.17 0.69 0.03 1.56
## 1192 0.00 1.56 0.00 1.56
## 1193 0.38 0.44 0.05 1.56
## 1194 0.75 0.01 0.21 1.56
## 1195 0.56 0.00 0.15 1.55
## 1196 0.54 0.04 0.25 1.55
## 1197 0.59 0.00 0.20 1.55
## 1198 0.57 0.00 0.07 1.55
## 1199 0.44 0.19 0.14 1.55
## 1200 0.47 0.02 0.22 1.55
## 1201 0.38 0.02 0.03 1.55
## 1202 0.87 0.02 0.09 1.55
## 1203 0.53 0.00 0.13 1.55
## 1204 0.53 0.00 0.22 1.55
## 1205 0.51 0.21 0.23 1.55
## 1206 0.00 0.00 0.00 1.55
## 1207 0.36 0.00 0.12 1.55
## 1208 0.50 0.24 0.11 1.55
## 1209 0.35 0.01 0.12 1.54
## 1210 0.43 0.29 0.14 1.54
## 1211 0.22 0.52 0.10 1.54
## 1212 0.44 0.08 0.19 1.54
## 1213 0.87 0.00 0.09 1.54
## 1214 0.02 0.02 0.10 1.54
## 1215 0.52 0.01 0.15 1.54
## 1216 0.07 0.00 0.21 1.54
## 1217 0.58 0.00 0.10 1.54
## 1218 0.69 0.00 0.21 1.53
## 1219 0.41 0.00 0.21 1.53
## 1220 0.65 0.01 0.17 1.53
## 1221 0.79 0.00 0.17 1.53
## 1222 0.29 0.00 0.05 1.53
## 1223 0.05 0.00 0.04 1.53
## 1224 0.43 0.00 0.14 1.53
## 1225 1.26 0.00 0.10 1.53
## 1226 0.15 0.25 0.04 1.53
## 1227 0.58 0.00 0.10 1.53
## 1228 0.52 0.15 0.12 1.52
## 1229 0.45 0.00 0.13 1.52
## 1230 0.69 0.00 0.39 1.52
## 1231 0.39 0.00 0.06 1.52
## 1232 0.90 0.00 0.27 1.52
## 1233 0.05 0.00 0.04 1.52
## 1234 0.00 1.52 0.00 1.52
## 1235 0.06 1.27 0.01 1.52
## 1236 0.04 0.00 0.04 1.52
## 1237 0.05 0.00 0.03 1.52
## 1238 0.72 0.04 0.26 1.52
## 1239 0.63 0.03 0.26 1.52
## 1240 0.31 0.06 0.04 1.52
## 1241 0.05 0.00 0.21 1.51
## 1242 0.09 0.00 0.12 1.51
## 1243 0.71 0.00 0.15 1.51
## 1244 0.54 0.00 0.13 1.51
## 1245 1.16 0.00 0.34 1.51
## 1246 0.00 1.51 0.00 1.51
## 1247 0.15 0.42 0.01 1.51
## 1248 1.16 0.00 0.11 1.51
## 1249 0.06 0.00 0.04 1.51
## 1250 0.03 0.00 1.13 1.51
## 1251 0.27 0.00 0.05 1.51
## 1252 0.32 0.11 0.08 1.50
## 1253 0.58 0.05 0.23 1.50
## 1254 0.52 0.15 0.17 1.50
## 1255 0.48 0.00 0.17 1.50
## 1256 0.05 0.00 0.04 1.50
## 1257 0.78 0.00 0.23 1.50
## 1258 0.31 0.00 0.11 1.50
## 1259 0.07 0.05 0.20 1.50
## 1260 0.27 0.02 0.02 1.50
## 1261 0.10 0.92 0.02 1.50
## 1262 0.36 0.09 0.05 1.50
## 1263 0.00 1.50 0.00 1.50
## 1264 0.53 0.09 0.12 1.50
## 1265 0.20 0.00 0.16 1.50
## 1266 0.14 0.10 0.04 1.50
## 1267 0.28 0.00 0.13 1.49
## 1268 0.38 0.36 0.04 1.49
## 1269 0.43 0.00 0.06 1.49
## 1270 0.00 0.00 0.27 1.49
## 1271 0.36 0.00 0.13 1.49
## 1272 0.36 0.25 0.06 1.49
## 1273 1.10 0.00 0.39 1.49
## 1274 0.52 0.01 0.14 1.49
## 1275 0.73 0.00 0.15 1.49
## 1276 0.69 0.28 0.14 1.48
## 1277 0.88 0.00 0.18 1.48
## 1278 0.37 0.52 0.12 1.48
## 1279 0.50 0.65 0.05 1.48
## 1280 0.25 0.02 0.02 1.48
## 1281 0.35 0.39 0.04 1.48
## 1282 0.47 0.03 0.20 1.48
## 1283 0.56 0.00 0.19 1.48
## 1284 0.20 0.00 0.20 1.48
## 1285 0.59 0.00 0.07 1.48
## 1286 0.92 0.00 0.17 1.47
## 1287 0.55 0.06 0.28 1.47
## 1288 0.41 0.14 0.20 1.47
## 1289 0.18 0.65 0.02 1.47
## 1290 0.37 0.00 0.06 1.47
## 1291 0.03 0.01 0.10 1.47
## 1292 0.40 0.44 0.18 1.47
## 1293 0.20 0.49 0.09 1.47
## 1294 0.40 0.00 0.12 1.47
## 1295 0.50 0.03 0.15 1.47
## 1296 0.20 0.00 0.12 1.47
## 1297 0.72 0.02 0.33 1.47
## 1298 0.19 0.89 0.10 1.46
## 1299 0.38 0.00 0.06 1.46
## 1300 0.40 0.02 0.12 1.46
## 1301 0.46 0.04 0.15 1.46
## 1302 0.56 0.00 0.19 1.46
## 1303 0.83 0.00 0.17 1.46
## 1304 0.55 0.00 0.10 1.46
## 1305 0.48 0.02 0.12 1.46
## 1306 0.37 0.10 0.04 1.46
## 1307 0.08 0.00 0.02 1.46
## 1308 0.55 0.00 0.10 1.46
## 1309 0.24 0.25 0.04 1.46
## 1310 0.59 0.03 0.21 1.46
## 1311 0.40 0.00 0.11 1.46
## 1312 0.65 0.06 0.28 1.46
## 1313 0.20 0.04 0.05 1.46
## 1314 0.58 0.00 0.35 1.46
## 1315 0.75 0.07 0.12 1.46
## 1316 0.47 0.54 0.07 1.45
## 1317 0.44 0.00 0.12 1.45
## 1318 0.46 0.00 0.13 1.45
## 1319 0.49 0.01 0.21 1.45
## 1320 0.55 0.00 0.19 1.45
## 1321 1.13 0.00 0.32 1.45
## 1322 0.35 0.46 0.10 1.45
## 1323 0.76 0.00 0.16 1.45
## 1324 0.00 1.44 0.01 1.45
## 1325 0.00 1.45 0.00 1.45
## 1326 0.00 1.45 0.00 1.45
## 1327 0.00 1.44 0.01 1.45
## 1328 0.17 0.03 0.01 1.45
## 1329 0.34 0.00 0.13 1.45
## 1330 0.08 1.24 0.02 1.45
## 1331 0.05 0.00 0.02 1.45
## 1332 0.90 0.00 0.18 1.45
## 1333 0.53 0.00 0.13 1.44
## 1334 1.08 0.00 0.32 1.44
## 1335 0.42 0.00 0.28 1.44
## 1336 0.77 0.00 0.19 1.44
## 1337 0.07 1.09 0.02 1.44
## 1338 0.79 0.08 0.23 1.44
## 1339 0.38 0.00 0.13 1.44
## 1340 0.40 0.00 0.12 1.44
## 1341 0.07 0.02 0.11 1.44
## 1342 0.74 0.05 0.31 1.44
## 1343 0.32 0.00 0.09 1.44
## 1344 0.50 0.00 0.21 1.44
## 1345 0.08 0.00 0.19 1.44
## 1346 0.54 0.00 0.09 1.43
## 1347 0.37 0.00 0.11 1.43
## 1348 0.39 0.00 0.13 1.43
## 1349 0.46 0.00 0.13 1.43
## 1350 0.48 0.00 0.14 1.43
## 1351 0.23 0.35 0.03 1.43
## 1352 0.00 1.39 0.03 1.43
## 1353 0.54 0.00 0.09 1.43
## 1354 0.04 1.30 0.01 1.42
## 1355 0.54 0.00 0.18 1.42
## 1356 0.41 0.02 0.19 1.42
## 1357 0.05 0.00 0.02 1.42
## 1358 0.22 0.22 0.10 1.42
## 1359 0.08 0.00 0.19 1.42
## 1360 0.57 0.00 0.14 1.42
## 1361 0.12 0.71 0.02 1.42
## 1362 0.00 1.30 0.00 1.42
## 1363 0.40 0.00 0.13 1.42
## 1364 0.38 0.35 0.05 1.42
## 1365 0.21 1.18 0.03 1.42
## 1366 0.64 0.06 0.25 1.41
## 1367 0.51 0.00 0.32 1.41
## 1368 0.63 0.00 0.14 1.41
## 1369 0.34 0.00 0.13 1.41
## 1370 0.28 0.00 0.04 1.41
## 1371 0.34 0.00 0.11 1.41
## 1372 0.15 0.00 0.19 1.41
## 1373 0.37 0.03 0.05 1.41
## 1374 0.45 0.32 0.28 1.41
## 1375 0.31 0.13 0.10 1.41
## 1376 0.34 0.00 0.05 1.41
## 1377 0.47 0.77 0.17 1.41
## 1378 0.17 0.00 0.05 1.41
## 1379 0.54 0.00 0.18 1.41
## 1380 0.47 0.00 0.12 1.40
## 1381 0.28 0.00 0.05 1.40
## 1382 0.08 0.03 0.93 1.40
## 1383 0.20 0.00 0.05 1.40
## 1384 0.70 0.01 0.27 1.40
## 1385 0.52 0.08 0.06 1.40
## 1386 0.00 1.39 0.01 1.40
## 1387 0.86 0.00 0.16 1.40
## 1388 1.05 0.02 0.30 1.40
## 1389 0.53 0.00 0.09 1.39
## 1390 0.66 0.02 0.22 1.39
## 1391 0.42 0.54 0.10 1.39
## 1392 0.02 0.00 0.09 1.39
## 1393 0.60 0.07 0.23 1.39
## 1394 0.16 0.00 0.03 1.39
## 1395 0.17 0.15 0.02 1.39
## 1396 0.18 0.91 0.06 1.39
## 1397 0.38 0.00 0.13 1.39
## 1398 0.62 0.00 0.26 1.39
## 1399 0.48 0.02 0.12 1.39
## 1400 0.37 0.00 0.05 1.38
## 1401 0.56 0.00 0.33 1.38
## 1402 0.18 0.59 0.02 1.38
## 1403 0.32 0.49 0.07 1.38
## 1404 0.38 0.02 0.11 1.38
## 1405 0.54 0.00 0.07 1.38
## 1406 0.34 0.38 0.21 1.38
## 1407 0.57 0.15 0.22 1.38
## 1408 0.53 0.00 0.13 1.38
## 1409 0.04 0.00 0.09 1.38
## 1410 0.43 0.01 0.13 1.38
## 1411 0.53 0.00 0.18 1.38
## 1412 0.58 0.00 0.15 1.38
## 1413 0.01 0.00 0.76 1.37
## 1414 0.62 0.06 0.23 1.37
## 1415 0.70 0.16 0.26 1.37
## 1416 0.52 0.00 0.09 1.37
## 1417 0.78 0.01 0.09 1.37
## 1418 0.67 0.02 0.26 1.37
## 1419 0.50 0.01 0.13 1.37
## 1420 0.33 0.00 0.05 1.37
## 1421 0.60 0.00 0.22 1.37
## 1422 0.00 1.37 0.00 1.37
## 1423 0.27 0.02 0.22 1.36
## 1424 0.45 0.00 0.06 1.36
## 1425 0.66 0.00 0.07 1.36
## 1426 0.58 0.01 0.15 1.36
## 1427 0.04 0.00 1.09 1.36
## 1428 0.08 1.00 0.01 1.36
## 1429 0.00 1.36 0.00 1.36
## 1430 0.08 0.00 0.01 1.36
## 1431 0.51 0.28 0.09 1.36
## 1432 0.42 0.00 0.11 1.36
## 1433 0.52 0.00 0.17 1.36
## 1434 0.47 0.00 0.13 1.36
## 1435 0.29 0.11 0.14 1.35
## 1436 0.00 1.26 0.09 1.35
## 1437 0.76 0.08 0.27 1.35
## 1438 0.03 0.00 0.03 1.35
## 1439 0.73 0.02 0.37 1.35
## 1440 0.01 0.06 0.09 1.35
## 1441 0.76 0.00 0.39 1.35
## 1442 0.57 0.05 0.14 1.35
## 1443 0.51 0.05 0.13 1.35
## 1444 0.36 0.05 0.18 1.35
## 1445 0.21 0.00 0.13 1.35
## 1446 0.05 1.06 0.02 1.35
## 1447 0.58 0.00 0.07 1.35
## 1448 0.34 0.08 0.13 1.35
## 1449 0.45 0.04 0.21 1.35
## 1450 0.04 1.03 0.04 1.35
## 1451 0.50 0.02 0.12 1.35
## 1452 0.04 1.07 0.09 1.35
## 1453 1.04 0.00 0.31 1.35
## 1454 0.89 0.01 0.14 1.35
## 1455 0.37 0.13 0.17 1.35
## 1456 0.21 0.01 0.18 1.34
## 1457 0.07 0.43 0.08 1.34
## 1458 0.04 0.10 0.11 1.34
## 1459 0.27 0.00 0.04 1.34
## 1460 0.43 0.00 0.06 1.34
## 1461 0.22 0.24 0.04 1.34
## 1462 0.05 0.05 0.01 1.34
## 1463 0.51 0.00 0.17 1.34
## 1464 0.02 0.00 0.00 1.34
## 1465 0.06 0.00 0.18 1.34
## 1466 0.50 0.01 0.21 1.33
## 1467 0.05 0.00 0.02 1.33
## 1468 0.42 0.00 0.11 1.33
## 1469 0.59 0.06 0.21 1.33
## 1470 0.36 0.00 0.11 1.33
## 1471 0.31 0.01 0.12 1.33
## 1472 0.35 0.01 0.05 1.33
## 1473 0.24 0.00 0.02 1.33
## 1474 0.38 0.01 0.05 1.33
## 1475 0.35 0.00 0.06 1.33
## 1476 0.50 0.00 0.09 1.33
## 1477 0.35 0.07 0.04 1.33
## 1478 0.31 0.00 0.11 1.33
## 1479 0.40 0.32 0.18 1.33
## 1480 0.51 0.00 0.17 1.33
## 1481 0.48 0.00 0.13 1.33
## 1482 0.17 0.58 0.06 1.33
## 1483 0.50 0.01 0.10 1.32
## 1484 0.38 0.02 0.24 1.32
## 1485 0.42 0.00 0.19 1.32
## 1486 0.36 0.40 0.17 1.32
## 1487 0.13 0.00 1.18 1.32
## 1488 0.43 0.18 0.19 1.32
## 1489 0.52 0.00 0.11 1.32
## 1490 1.16 0.02 0.11 1.32
## 1491 0.16 0.40 0.03 1.32
## 1492 0.08 0.00 0.18 1.32
## 1493 0.50 0.00 0.09 1.32
## 1494 0.04 0.96 0.01 1.32
## 1495 0.30 0.09 0.16 1.32
## 1496 0.50 0.00 0.09 1.32
## 1497 0.44 0.04 0.12 1.32
## 1498 0.45 0.00 0.11 1.32
## 1499 0.46 0.00 0.28 1.32
## 1500 0.50 0.00 0.09 1.31
## 1501 0.50 0.00 0.17 1.31
## 1502 0.23 0.00 0.11 1.31
## 1503 0.42 0.05 0.13 1.31
## 1504 0.35 0.00 0.12 1.31
## 1505 0.00 0.00 0.09 1.31
## 1506 0.45 0.00 0.07 1.31
## 1507 0.67 0.00 0.07 1.31
## 1508 0.38 0.00 0.12 1.31
## 1509 0.07 0.00 0.02 1.31
## 1510 0.50 0.00 0.17 1.31
## 1511 0.49 0.00 0.13 1.31
## 1512 0.04 0.06 0.09 1.31
## 1513 0.43 0.00 0.04 1.31
## 1514 0.08 0.00 0.01 1.30
## 1515 0.35 0.00 0.02 1.30
## 1516 0.57 0.06 0.21 1.30
## 1517 0.04 0.02 0.17 1.30
## 1518 0.44 0.09 0.21 1.30
## 1519 0.02 0.00 1.02 1.30
## 1520 0.48 0.00 0.13 1.30
## 1521 0.20 0.00 0.05 1.30
## 1522 0.00 1.29 0.01 1.30
## 1523 0.40 0.00 0.11 1.30
## 1524 0.38 0.28 0.08 1.30
## 1525 0.64 0.02 0.10 1.30
## 1526 0.66 0.02 0.15 1.29
## 1527 0.47 0.11 0.10 1.29
## 1528 0.02 0.85 0.03 1.29
## 1529 0.92 0.00 0.25 1.29
## 1530 0.27 0.45 0.04 1.29
## 1531 0.17 0.02 0.10 1.29
## 1532 0.44 0.00 0.12 1.29
## 1533 0.34 0.00 0.02 1.29
## 1534 0.49 0.00 0.16 1.29
## 1535 0.14 0.00 0.10 1.29
## 1536 0.40 0.00 0.12 1.29
## 1537 0.20 0.24 0.13 1.29
## 1538 0.05 0.00 0.01 1.29
## 1539 0.49 0.00 0.16 1.28
## 1540 0.45 0.01 0.11 1.28
## 1541 0.59 0.00 0.14 1.28
## 1542 0.46 0.17 0.20 1.28
## 1543 0.00 1.28 0.00 1.28
## 1544 0.56 0.00 0.11 1.28
## 1545 0.14 0.00 0.04 1.28
## 1546 0.45 0.00 0.11 1.28
## 1547 0.16 0.00 0.04 1.28
## 1548 0.49 0.00 0.16 1.28
## 1549 0.35 0.36 0.07 1.28
## 1550 0.49 0.00 0.16 1.28
## 1551 0.56 0.05 0.22 1.27
## 1552 0.40 0.21 0.08 1.27
## 1553 0.05 0.00 0.00 1.27
## 1554 0.03 0.00 0.52 1.27
## 1555 0.48 0.00 0.08 1.27
## 1556 0.30 0.47 0.06 1.27
## 1557 0.08 0.00 0.01 1.27
## 1558 0.16 0.00 0.11 1.27
## 1559 0.40 0.00 0.12 1.27
## 1560 0.37 0.00 0.05 1.27
## 1561 0.16 0.41 0.02 1.27
## 1562 0.38 0.00 0.12 1.27
## 1563 0.20 0.00 0.11 1.27
## 1564 0.38 0.26 0.13 1.27
## 1565 0.73 0.00 0.15 1.27
## 1566 0.30 0.06 0.03 1.27
## 1567 0.48 0.00 0.16 1.27
## 1568 0.26 0.53 0.08 1.27
## 1569 0.00 1.27 0.00 1.27
## 1570 0.57 0.00 0.14 1.26
## 1571 0.02 1.12 0.01 1.26
## 1572 1.01 0.00 0.25 1.26
## 1573 0.03 1.10 0.08 1.26
## 1574 0.05 0.62 0.05 1.26
## 1575 0.42 0.13 0.10 1.26
## 1576 0.52 0.03 0.21 1.26
## 1577 1.15 0.00 0.11 1.26
## 1578 1.13 0.01 0.10 1.26
## 1579 0.62 0.00 0.14 1.26
## 1580 0.22 0.00 0.04 1.26
## 1581 0.51 0.00 0.11 1.26
## 1582 0.68 0.00 0.12 1.26
## 1583 0.17 0.02 0.13 1.25
## 1584 0.47 0.00 0.08 1.25
## 1585 0.00 0.01 0.75 1.25
## 1586 0.07 0.00 0.01 1.25
## 1587 0.53 0.03 0.22 1.25
## 1588 0.00 1.25 0.00 1.25
## 1589 0.00 1.25 0.00 1.25
## 1590 0.13 0.10 0.04 1.25
## 1591 0.53 0.01 0.23 1.25
## 1592 0.19 0.31 0.03 1.25
## 1593 0.04 0.03 0.16 1.25
## 1594 0.05 0.00 0.00 1.25
## 1595 0.48 0.00 0.16 1.25
## 1596 0.56 0.00 0.17 1.25
## 1597 0.16 0.00 0.04 1.25
## 1598 0.03 0.22 0.14 1.24
## 1599 0.48 0.00 0.16 1.24
## 1600 0.03 0.00 0.09 1.24
## 1601 0.19 0.67 0.09 1.24
## 1602 0.04 0.00 0.10 1.24
## 1603 0.41 0.00 0.19 1.24
## 1604 0.48 0.05 0.28 1.24
## 1605 0.44 0.00 0.06 1.24
## 1606 0.47 0.00 0.11 1.24
## 1607 0.19 0.75 0.06 1.24
## 1608 0.00 0.00 0.55 1.24
## 1609 0.22 0.43 0.03 1.24
## 1610 0.38 0.00 0.04 1.24
## 1611 0.55 0.00 0.13 1.23
## 1612 0.47 0.00 0.16 1.23
## 1613 0.64 0.07 0.22 1.23
## 1614 0.20 0.07 0.04 1.23
## 1615 0.57 0.00 0.07 1.23
## 1616 0.47 0.00 0.16 1.23
## 1617 0.47 0.00 0.08 1.23
## 1618 1.02 0.00 0.13 1.23
## 1619 0.14 0.00 0.10 1.23
## 1620 0.70 0.03 0.25 1.23
## 1621 0.17 0.75 0.02 1.23
## 1622 0.33 0.00 0.02 1.23
## 1623 0.47 0.00 0.08 1.23
## 1624 0.06 0.62 0.01 1.23
## 1625 0.27 0.12 0.04 1.23
## 1626 0.41 0.21 0.17 1.23
## 1627 0.11 0.70 0.02 1.23
## 1628 0.06 0.01 0.11 1.23
## 1629 0.08 0.00 0.23 1.23
## 1630 0.38 0.00 0.12 1.23
## 1631 0.63 0.00 0.10 1.23
## 1632 0.64 0.00 0.14 1.23
## 1633 0.53 0.00 0.20 1.22
## 1634 0.47 0.15 0.18 1.22
## 1635 0.16 0.46 0.03 1.22
## 1636 0.07 1.00 0.02 1.22
## 1637 0.30 0.12 0.04 1.22
## 1638 0.31 0.08 0.04 1.22
## 1639 0.08 0.85 0.02 1.22
## 1640 0.46 0.01 0.15 1.22
## 1641 0.75 0.11 0.25 1.22
## 1642 0.29 0.00 0.21 1.22
## 1643 0.05 0.00 0.03 1.22
## 1644 0.00 1.14 0.08 1.22
## 1645 0.27 0.27 0.07 1.22
## 1646 0.46 0.00 0.08 1.22
## 1647 0.19 0.00 0.05 1.22
## 1648 0.46 0.00 0.08 1.22
## 1649 0.46 0.01 0.15 1.22
## 1650 0.46 0.00 0.16 1.22
## 1651 0.44 0.14 0.09 1.22
## 1652 0.04 0.00 0.16 1.21
## 1653 0.24 0.00 0.04 1.21
## 1654 0.40 0.00 0.04 1.21
## 1655 0.70 0.01 0.37 1.21
## 1656 0.14 0.00 0.04 1.21
## 1657 0.43 0.00 0.12 1.21
## 1658 0.17 0.35 0.03 1.21
## 1659 0.00 1.20 0.01 1.21
## 1660 0.48 0.01 0.06 1.21
## 1661 0.49 0.28 0.10 1.21
## 1662 0.48 0.01 0.03 1.21
## 1663 0.32 0.00 0.02 1.21
## 1664 0.46 0.00 0.08 1.21
## 1665 0.65 0.00 0.32 1.21
## 1666 0.88 0.31 0.00 1.20
## 1667 0.46 0.00 0.15 1.20
## 1668 0.49 0.00 0.20 1.20
## 1669 0.04 0.00 0.16 1.20
## 1670 0.13 0.56 0.03 1.20
## 1671 0.59 0.00 0.10 1.20
## 1672 0.31 0.00 0.12 1.20
## 1673 0.37 0.01 0.11 1.20
## 1674 0.60 0.00 0.19 1.20
## 1675 0.00 1.20 0.00 1.20
## 1676 0.00 1.20 0.00 1.20
## 1677 0.00 1.20 0.00 1.20
## 1678 0.05 0.00 0.02 1.20
## 1679 0.39 0.36 0.04 1.20
## 1680 0.43 0.01 0.04 1.20
## 1681 0.46 0.00 0.15 1.20
## 1682 0.03 0.36 0.07 1.20
## 1683 0.17 0.42 0.06 1.20
## 1684 0.24 0.86 0.09 1.20
## 1685 0.49 0.00 0.21 1.19
## 1686 0.35 0.38 0.09 1.19
## 1687 0.45 0.00 0.08 1.19
## 1688 0.36 0.19 0.09 1.19
## 1689 0.47 0.00 0.28 1.19
## 1690 0.32 0.00 0.02 1.19
## 1691 0.84 0.11 0.15 1.19
## 1692 0.23 0.00 0.04 1.19
## 1693 0.64 0.27 0.10 1.19
## 1694 0.04 0.00 0.16 1.19
## 1695 0.13 0.04 0.01 1.19
## 1696 0.14 0.35 0.02 1.19
## 1697 0.16 0.00 0.04 1.19
## 1698 0.38 0.00 0.05 1.19
## 1699 0.66 0.00 0.12 1.19
## 1700 0.27 0.01 0.04 1.19
## 1701 0.24 0.29 0.02 1.19
## 1702 0.14 0.00 0.22 1.19
## 1703 0.31 0.33 0.08 1.19
## 1704 0.20 0.00 0.08 1.19
## 1705 0.45 0.00 0.08 1.18
## 1706 0.07 0.00 0.01 1.18
## 1707 0.25 0.36 0.10 1.18
## 1708 0.49 0.00 0.29 1.18
## 1709 0.00 1.08 0.00 1.18
## 1710 0.24 0.38 0.04 1.18
## 1711 0.18 0.44 0.06 1.18
## 1712 0.31 0.00 0.02 1.18
## 1713 0.46 0.02 0.17 1.18
## 1714 0.49 0.01 0.20 1.18
## 1715 0.15 0.00 0.08 1.18
## 1716 0.07 0.04 0.66 1.18
## 1717 0.14 0.52 0.02 1.18
## 1718 1.06 0.00 0.09 1.17
## 1719 0.44 0.00 0.08 1.17
## 1720 0.37 0.00 0.10 1.17
## 1721 0.26 0.02 0.15 1.17
## 1722 0.04 0.00 0.16 1.17
## 1723 0.45 0.00 0.15 1.17
## 1724 0.31 0.15 0.11 1.17
## 1725 0.49 0.01 0.12 1.17
## 1726 0.47 0.01 0.10 1.17
## 1727 0.10 0.39 0.00 1.17
## 1728 0.64 0.04 0.18 1.17
## 1729 0.38 0.02 0.03 1.17
## 1730 0.00 1.17 0.00 1.17
## 1731 0.45 0.00 0.15 1.17
## 1732 0.44 0.00 0.08 1.17
## 1733 0.11 0.83 0.08 1.17
## 1734 0.36 0.00 0.05 1.17
## 1735 0.95 0.00 0.22 1.17
## 1736 0.44 0.00 0.08 1.17
## 1737 0.51 0.01 0.13 1.17
## 1738 0.23 0.00 0.11 1.17
## 1739 0.25 0.21 0.02 1.17
## 1740 0.52 0.02 0.20 1.16
## 1741 0.28 0.00 0.10 1.16
## 1742 0.45 0.00 0.14 1.16
## 1743 0.52 0.01 0.25 1.16
## 1744 0.25 0.30 0.16 1.16
## 1745 0.04 0.00 0.16 1.16
## 1746 0.44 0.00 0.15 1.16
## 1747 0.58 0.00 0.13 1.16
## 1748 0.27 0.43 0.08 1.16
## 1749 0.39 0.00 0.11 1.16
## 1750 0.44 0.00 0.15 1.16
## 1751 0.28 0.07 0.02 1.16
## 1752 0.08 0.50 0.01 1.16
## 1753 0.27 0.00 0.05 1.16
## 1754 0.16 0.77 0.02 1.16
## 1755 0.44 0.00 0.08 1.16
## 1756 0.39 0.02 0.25 1.16
## 1757 0.51 0.00 0.12 1.16
## 1758 0.38 0.09 0.17 1.16
## 1759 0.28 0.00 0.05 1.16
## 1760 0.68 0.01 0.32 1.16
## 1761 0.54 0.00 0.10 1.16
## 1762 1.14 0.00 0.01 1.15
## 1763 0.46 0.00 0.17 1.15
## 1764 0.44 0.00 0.15 1.15
## 1765 0.33 0.09 0.16 1.15
## 1766 0.44 0.00 0.15 1.15
## 1767 0.07 0.00 0.01 1.15
## 1768 0.46 0.06 0.18 1.15
## 1769 0.35 0.01 0.11 1.15
## 1770 1.12 0.00 0.03 1.15
## 1771 0.20 0.41 0.03 1.15
## 1772 0.00 1.15 0.00 1.15
## 1773 0.00 1.15 0.00 1.15
## 1774 0.52 0.00 0.13 1.15
## 1775 0.22 0.05 0.12 1.15
## 1776 0.16 0.46 0.03 1.15
## 1777 0.51 0.00 0.19 1.15
## 1778 0.00 1.15 0.00 1.15
## 1779 0.44 0.00 0.15 1.15
## 1780 0.43 0.00 0.07 1.15
## 1781 0.00 1.07 0.07 1.15
## 1782 0.26 0.35 0.07 1.14
## 1783 0.43 0.00 0.07 1.14
## 1784 0.34 0.25 0.11 1.14
## 1785 0.03 0.20 0.13 1.14
## 1786 0.17 0.65 0.07 1.14
## 1787 0.03 0.76 0.04 1.14
## 1788 0.04 0.00 0.16 1.14
## 1789 0.59 0.02 0.22 1.14
## 1790 0.75 0.00 0.14 1.14
## 1791 0.23 0.00 0.02 1.14
## 1792 0.16 0.25 0.03 1.14
## 1793 0.17 0.48 0.02 1.14
## 1794 0.23 0.47 0.03 1.14
## 1795 0.37 0.15 0.04 1.14
## 1796 0.38 0.00 0.05 1.14
## 1797 0.30 0.00 0.02 1.14
## 1798 0.51 0.00 0.62 1.14
## 1799 0.37 0.00 0.11 1.14
## 1800 0.10 0.88 0.03 1.14
## 1801 0.39 0.01 0.03 1.14
## 1802 0.10 0.00 0.03 1.13
## 1803 0.41 0.06 0.16 1.13
## 1804 0.43 0.00 0.09 1.13
## 1805 0.00 1.06 0.07 1.13
## 1806 0.30 0.00 0.02 1.13
## 1807 0.37 0.37 0.06 1.13
## 1808 0.12 0.00 0.02 1.13
## 1809 0.56 0.00 0.19 1.13
## 1810 0.05 0.84 0.01 1.13
## 1811 0.43 0.00 0.07 1.13
## 1812 0.39 0.00 0.10 1.13
## 1813 0.56 0.04 0.19 1.13
## 1814 0.21 0.62 0.08 1.13
## 1815 0.30 0.00 0.02 1.13
## 1816 0.30 0.00 0.15 1.13
## 1817 0.30 0.01 0.09 1.12
## 1818 0.06 0.00 0.01 1.12
## 1819 0.43 0.00 0.14 1.12
## 1820 0.24 0.30 0.02 1.12
## 1821 0.37 0.02 0.10 1.12
## 1822 0.33 0.28 0.15 1.12
## 1823 0.37 0.10 0.16 1.12
## 1824 0.20 0.01 0.08 1.12
## 1825 0.40 0.00 0.10 1.12
## 1826 0.00 0.01 0.08 1.12
## 1827 0.40 0.00 0.05 1.12
## 1828 0.06 0.63 0.02 1.12
## 1829 0.30 0.00 0.54 1.12
## 1830 1.12 0.00 0.00 1.12
## 1831 0.26 0.00 0.04 1.12
## 1832 0.23 0.00 0.04 1.11
## 1833 0.58 0.04 0.17 1.11
## 1834 0.37 0.00 0.11 1.11
## 1835 0.57 0.03 0.20 1.11
## 1836 0.04 0.00 0.15 1.11
## 1837 0.40 0.00 0.08 1.11
## 1838 0.06 0.00 0.35 1.11
## 1839 0.38 0.00 0.05 1.11
## 1840 0.07 0.70 0.01 1.11
## 1841 0.00 1.10 0.01 1.11
## 1842 0.14 0.00 0.03 1.11
## 1843 0.46 0.00 0.12 1.11
## 1844 0.31 0.29 0.06 1.11
## 1845 0.13 0.73 0.07 1.11
## 1846 0.35 0.00 0.23 1.11
## 1847 0.42 0.00 0.17 1.11
## 1848 0.40 0.00 0.17 1.10
## 1849 0.06 0.00 0.01 1.10
## 1850 0.53 0.01 0.12 1.10
## 1851 0.33 0.17 0.08 1.10
## 1852 0.06 0.00 0.01 1.10
## 1853 0.42 0.00 0.07 1.10
## 1854 0.53 0.00 0.21 1.10
## 1855 0.52 0.00 0.12 1.10
## 1856 0.46 0.01 0.18 1.10
## 1857 0.00 1.10 0.00 1.10
## 1858 0.00 1.10 0.00 1.10
## 1859 0.00 1.10 0.00 1.10
## 1860 0.00 1.10 0.00 1.10
## 1861 0.33 0.29 0.03 1.10
## 1862 0.12 0.45 0.02 1.10
## 1863 0.09 0.00 0.09 1.10
## 1864 0.40 0.04 0.13 1.10
## 1865 0.75 0.00 0.23 1.10
## 1866 0.84 0.00 0.25 1.10
## 1867 0.21 0.31 0.04 1.10
## 1868 0.33 0.01 0.22 1.10
## 1869 0.10 0.72 0.02 1.10
## 1870 0.22 0.45 0.12 1.10
## 1871 0.41 0.00 0.25 1.09
## 1872 0.36 0.00 0.10 1.09
## 1873 0.55 0.00 0.31 1.09
## 1874 0.04 0.84 0.16 1.09
## 1875 0.17 0.01 0.09 1.09
## 1876 0.29 0.00 0.02 1.09
## 1877 0.52 0.08 0.20 1.09
## 1878 0.05 0.00 0.02 1.09
## 1879 0.00 1.07 0.02 1.09
## 1880 0.18 0.00 0.16 1.09
## 1881 0.04 0.00 0.08 1.09
## 1882 0.02 0.00 0.05 1.09
## 1883 0.97 0.00 0.11 1.09
## 1884 0.03 0.01 0.15 1.09
## 1885 0.37 0.00 0.11 1.09
## 1886 0.42 0.00 0.14 1.09
## 1887 0.00 1.02 0.07 1.09
## 1888 0.28 0.04 0.13 1.09
## 1889 0.54 0.00 0.11 1.09
## 1890 0.52 0.00 0.22 1.09
## 1891 0.47 0.09 0.09 1.09
## 1892 0.41 0.00 0.07 1.09
## 1893 0.26 0.00 0.09 1.09
## 1894 0.41 0.00 0.14 1.08
## 1895 0.41 0.03 0.18 1.08
## 1896 0.41 0.00 0.14 1.08
## 1897 0.64 0.00 0.08 1.08
## 1898 0.12 0.00 0.09 1.08
## 1899 0.41 0.00 0.14 1.08
## 1900 0.43 0.00 0.11 1.08
## 1901 0.32 0.20 0.09 1.08
## 1902 0.00 0.00 0.06 1.08
## 1903 0.50 0.03 0.28 1.08
## 1904 0.69 0.00 0.12 1.08
## 1905 0.59 0.00 0.22 1.08
## 1906 0.06 0.00 0.01 1.08
## 1907 0.43 0.01 0.11 1.08
## 1908 0.34 0.00 0.10 1.08
## 1909 0.59 0.01 0.21 1.08
## 1910 0.40 0.13 0.08 1.08
## 1911 0.30 0.00 0.11 1.08
## 1912 0.41 0.00 0.07 1.08
## 1913 0.29 0.00 0.02 1.08
## 1914 0.29 0.00 0.02 1.08
## 1915 0.18 0.19 0.03 1.08
## 1916 0.35 0.09 0.16 1.08
## 1917 0.18 0.03 0.07 1.08
## 1918 0.00 0.00 0.06 1.07
## 1919 0.00 1.00 0.07 1.07
## 1920 0.03 0.00 0.15 1.07
## 1921 0.32 0.00 0.10 1.07
## 1922 0.39 0.02 0.09 1.07
## 1923 0.40 0.03 0.11 1.07
## 1924 0.12 0.77 0.02 1.07
## 1925 0.98 0.00 0.09 1.07
## 1926 0.01 0.00 0.54 1.07
## 1927 0.90 0.04 0.05 1.07
## 1928 0.06 0.21 0.07 1.07
## 1929 0.40 0.00 0.07 1.07
## 1930 0.15 0.13 0.05 1.07
## 1931 0.44 0.00 0.20 1.07
## 1932 0.64 0.05 0.25 1.07
## 1933 0.63 0.00 0.34 1.07
## 1934 0.30 0.00 0.10 1.07
## 1935 0.12 0.71 0.07 1.07
## 1936 0.42 0.00 0.10 1.07
## 1937 0.40 0.00 0.07 1.07
## 1938 0.40 0.00 0.07 1.06
## 1939 0.04 0.00 0.14 1.06
## 1940 0.40 0.00 0.11 1.06
## 1941 0.41 0.00 0.14 1.06
## 1942 0.74 0.00 0.10 1.06
## 1943 0.29 0.01 0.10 1.06
## 1944 0.67 0.00 0.23 1.06
## 1945 0.02 0.01 0.08 1.06
## 1946 0.00 0.99 0.07 1.06
## 1947 0.65 0.00 0.13 1.06
## 1948 0.41 0.00 0.14 1.06
## 1949 0.50 0.05 0.19 1.06
## 1950 0.30 0.01 0.10 1.06
## 1951 0.81 0.00 0.08 1.06
## 1952 0.41 0.00 0.14 1.06
## 1953 0.44 0.00 0.18 1.06
## 1954 0.04 0.00 0.01 1.06
## 1955 0.05 0.00 0.01 1.06
## 1956 0.40 0.00 0.11 1.06
## 1957 0.01 0.00 0.08 1.06
## 1958 0.02 0.00 0.00 1.06
## 1959 0.41 0.10 0.16 1.06
## 1960 0.28 0.00 0.02 1.06
## 1961 0.59 0.03 0.22 1.06
## 1962 0.40 0.00 0.14 1.06
## 1963 0.39 0.00 0.17 1.06
## 1964 0.06 0.64 0.04 1.06
## 1965 0.38 0.00 0.09 1.05
## 1966 0.05 0.00 0.01 1.05
## 1967 0.11 0.00 0.13 1.05
## 1968 0.54 0.00 0.08 1.05
## 1969 0.47 0.00 0.18 1.05
## 1970 0.05 0.00 0.01 1.05
## 1971 0.66 0.00 0.12 1.05
## 1972 0.00 1.05 0.00 1.05
## 1973 0.00 0.92 0.13 1.05
## 1974 0.00 1.05 0.00 1.05
## 1975 0.00 1.04 0.01 1.05
## 1976 0.34 0.03 0.13 1.05
## 1977 0.40 0.00 0.13 1.05
## 1978 0.48 0.12 0.15 1.05
## 1979 0.26 0.00 0.01 1.05
## 1980 0.11 0.00 0.03 1.05
## 1981 0.49 0.00 0.11 1.05
## 1982 0.38 0.01 0.11 1.05
## 1983 0.51 0.00 0.02 1.05
## 1984 0.49 0.00 0.11 1.05
## 1985 0.32 0.00 0.10 1.05
## 1986 0.13 0.66 0.07 1.05
## 1987 0.06 0.37 0.04 1.05
## 1988 0.40 0.00 0.11 1.05
## 1989 0.47 0.00 0.11 1.04
## 1990 0.40 0.00 0.13 1.04
## 1991 0.40 0.00 0.07 1.04
## 1992 0.37 0.26 0.09 1.04
## 1993 0.37 0.00 0.09 1.04
## 1994 0.06 0.83 0.07 1.04
## 1995 0.39 0.00 0.07 1.04
## 1996 0.35 0.02 0.10 1.04
## 1997 0.30 0.22 0.07 1.04
## 1998 0.12 0.45 0.03 1.04
## 1999 0.03 0.00 0.14 1.04
## 2000 0.35 0.01 0.09 1.04
## 2001 0.16 0.37 0.12 1.04
## 2002 0.20 0.31 0.03 1.04
## 2003 0.10 0.00 0.03 1.04
## 2004 0.33 0.00 0.09 1.04
## 2005 0.69 0.02 0.15 1.04
## 2006 0.46 0.00 0.05 1.04
## 2007 0.06 0.41 0.05 1.04
## 2008 0.34 0.00 0.09 1.04
## 2009 0.27 0.00 0.09 1.04
## 2010 0.48 0.02 0.19 1.04
## 2011 0.58 0.00 0.30 1.04
## 2012 0.34 0.00 0.22 1.04
## 2013 0.40 0.01 0.17 1.04
## 2014 0.03 0.00 0.14 1.03
## 2015 0.33 0.01 0.14 1.03
## 2016 0.02 0.00 0.08 1.03
## 2017 0.51 0.01 0.18 1.03
## 2018 0.23 0.00 0.08 1.03
## 2019 0.39 0.00 0.13 1.03
## 2020 0.31 0.00 0.04 1.03
## 2021 0.00 0.85 0.00 1.03
## 2022 0.47 0.00 0.11 1.03
## 2023 0.07 0.00 0.00 1.03
## 2024 0.01 0.00 0.08 1.03
## 2025 0.12 0.51 0.02 1.03
## 2026 0.32 0.01 0.08 1.02
## 2027 0.59 0.01 0.11 1.02
## 2028 0.46 0.00 0.11 1.02
## 2029 0.05 0.02 0.08 1.02
## 2030 0.36 0.05 0.08 1.02
## 2031 0.26 0.01 0.03 1.02
## 2032 0.40 0.00 0.11 1.02
## 2033 0.21 0.45 0.08 1.02
## 2034 0.12 0.49 0.02 1.02
## 2035 0.40 0.00 0.11 1.02
## 2036 0.39 0.00 0.07 1.02
## 2037 0.04 0.22 0.06 1.02
## 2038 0.03 0.00 0.03 1.02
## 2039 0.40 0.00 0.17 1.02
## 2040 0.39 0.00 0.13 1.02
## 2041 0.38 0.00 0.07 1.01
## 2042 0.28 0.10 0.30 1.01
## 2043 0.35 0.02 0.10 1.01
## 2044 0.36 0.03 0.21 1.01
## 2045 0.46 0.01 0.09 1.01
## 2046 0.22 0.05 0.10 1.01
## 2047 0.12 0.00 0.02 1.01
## 2048 0.93 0.00 0.08 1.01
## 2049 0.44 0.00 0.09 1.01
## 2050 0.00 1.01 0.00 1.01
## 2051 0.08 0.74 0.07 1.01
## 2052 0.48 0.02 0.18 1.01
## 2053 0.53 0.00 0.20 1.01
## 2054 0.61 0.00 0.18 1.01
## 2055 0.00 0.00 0.07 1.00
## 2056 0.38 0.00 0.13 1.00
## 2057 0.19 0.46 0.07 1.00
## 2058 0.76 0.03 0.09 1.00
## 2059 0.24 0.38 0.08 1.00
## 2060 0.14 0.21 0.00 1.00
## 2061 0.15 0.19 0.01 1.00
## 2062 0.10 0.47 0.02 1.00
## 2063 0.25 0.09 0.03 1.00
## 2064 0.00 1.00 0.00 1.00
## 2065 0.18 0.03 0.00 1.00
## 2066 0.33 0.02 0.15 1.00
## 2067 0.21 0.00 0.07 1.00
## 2068 0.90 0.02 0.00 1.00
## 2069 0.38 0.00 0.07 1.00
## 2070 0.38 0.00 0.07 1.00
## 2071 0.49 0.04 0.22 1.00
## 2072 0.38 0.00 0.07 1.00
## 2073 0.10 0.74 0.03 1.00
## 2074 0.04 0.01 0.08 1.00
## 2075 0.27 0.05 0.15 1.00
## 2076 0.38 0.00 0.17 1.00
## 2077 0.04 0.00 0.06 1.00
## 2078 0.35 0.00 0.16 1.00
## 2079 0.28 0.00 0.08 1.00
## 2080 0.78 0.00 0.04 1.00
## 2081 0.38 0.00 0.07 1.00
## 2082 0.28 0.00 0.08 0.99
## 2083 0.07 0.39 0.05 0.99
## 2084 0.21 0.00 0.04 0.99
## 2085 0.20 0.00 0.03 0.99
## 2086 0.31 0.00 0.10 0.99
## 2087 0.39 0.00 0.09 0.99
## 2088 0.34 0.01 0.08 0.99
## 2089 0.31 0.12 0.19 0.99
## 2090 0.00 0.00 0.06 0.99
## 2091 0.46 0.00 0.17 0.99
## 2092 0.30 0.00 0.09 0.99
## 2093 0.30 0.00 0.09 0.99
## 2094 0.38 0.00 0.06 0.99
## 2095 0.52 0.04 0.09 0.99
## 2096 0.05 0.00 0.07 0.99
## 2097 0.28 0.00 0.19 0.99
## 2098 0.23 0.38 0.08 0.99
## 2099 0.15 0.00 0.11 0.99
## 2100 0.50 0.00 0.11 0.99
## 2101 0.65 0.00 0.11 0.99
## 2102 0.20 0.00 0.03 0.99
## 2103 0.80 0.00 0.18 0.99
## 2104 0.88 0.00 0.08 0.99
## 2105 0.05 0.00 0.08 0.98
## 2106 0.53 0.19 0.25 0.98
## 2107 0.62 0.00 0.14 0.98
## 2108 0.26 0.16 0.08 0.98
## 2109 0.19 0.00 0.07 0.98
## 2110 0.19 0.28 0.02 0.98
## 2111 0.46 0.00 0.17 0.98
## 2112 0.13 0.21 0.02 0.98
## 2113 0.04 0.00 0.01 0.98
## 2114 0.06 0.00 0.01 0.98
## 2115 0.23 0.38 0.08 0.98
## 2116 0.10 0.27 0.05 0.98
## 2117 0.38 0.00 0.17 0.98
## 2118 0.54 0.01 0.18 0.98
## 2119 0.39 0.06 0.15 0.98
## 2120 0.44 0.00 0.08 0.98
## 2121 0.92 0.00 0.05 0.98
## 2122 0.41 0.06 0.18 0.98
## 2123 0.43 0.51 0.01 0.98
## 2124 0.05 0.00 0.10 0.98
## 2125 0.00 0.00 0.10 0.98
## 2126 0.27 0.00 0.09 0.98
## 2127 0.02 0.86 0.01 0.98
## 2128 0.32 0.15 0.14 0.97
## 2129 0.01 0.00 0.08 0.97
## 2130 0.37 0.00 0.10 0.97
## 2131 0.21 0.00 0.03 0.97
## 2132 0.44 0.00 0.13 0.97
## 2133 0.02 0.00 0.08 0.97
## 2134 0.18 0.29 0.01 0.97
## 2135 0.14 0.63 0.05 0.97
## 2136 0.35 0.00 0.10 0.97
## 2137 0.33 0.00 0.08 0.97
## 2138 0.37 0.00 0.12 0.97
## 2139 0.03 0.03 0.13 0.97
## 2140 0.10 0.00 0.10 0.97
## 2141 0.60 0.00 0.04 0.97
## 2142 0.37 0.00 0.08 0.97
## 2143 0.00 0.97 0.00 0.97
## 2144 0.05 0.00 0.01 0.97
## 2145 0.19 0.00 0.03 0.97
## 2146 0.45 0.00 0.16 0.97
## 2147 0.31 0.28 0.16 0.97
## 2148 0.37 0.00 0.06 0.97
## 2149 0.07 0.00 0.07 0.96
## 2150 0.25 0.26 0.07 0.96
## 2151 0.36 0.00 0.06 0.96
## 2152 0.28 0.04 0.14 0.96
## 2153 0.00 0.90 0.06 0.96
## 2154 0.17 0.00 0.07 0.96
## 2155 0.00 0.96 0.00 0.96
## 2156 0.49 0.00 0.10 0.96
## 2157 0.44 0.00 0.22 0.96
## 2158 0.22 0.00 0.02 0.96
## 2159 0.06 0.57 0.01 0.96
## 2160 0.33 0.00 0.09 0.96
## 2161 0.34 0.20 0.13 0.96
## 2162 0.37 0.00 0.12 0.96
## 2163 0.00 0.96 0.00 0.96
## 2164 0.54 0.00 0.11 0.96
## 2165 0.33 0.09 0.12 0.96
## 2166 0.00 0.53 0.03 0.96
## 2167 0.28 0.22 0.09 0.96
## 2168 0.15 0.00 0.04 0.96
## 2169 0.56 0.00 0.15 0.96
## 2170 0.36 0.13 0.07 0.96
## 2171 0.33 0.15 0.15 0.96
## 2172 0.40 0.00 0.08 0.95
## 2173 0.04 0.00 0.04 0.95
## 2174 0.36 0.00 0.12 0.95
## 2175 0.03 0.00 0.13 0.95
## 2176 0.45 0.00 0.14 0.95
## 2177 0.19 0.00 0.03 0.95
## 2178 0.30 0.00 0.08 0.95
## 2179 0.22 0.00 0.09 0.95
## 2180 0.51 0.00 0.17 0.95
## 2181 0.39 0.00 0.10 0.95
## 2182 0.17 0.46 0.06 0.95
## 2183 0.21 0.41 0.07 0.95
## 2184 0.25 0.00 0.02 0.95
## 2185 0.36 0.00 0.06 0.95
## 2186 0.28 0.00 0.13 0.95
## 2187 0.40 0.00 0.16 0.95
## 2188 0.43 0.00 0.10 0.95
## 2189 0.41 0.05 0.15 0.95
## 2190 0.31 0.01 0.13 0.95
## 2191 0.24 0.00 0.08 0.95
## 2192 0.17 0.00 0.08 0.95
## 2193 0.38 0.00 0.08 0.95
## 2194 0.43 0.18 0.09 0.95
## 2195 0.03 0.00 0.13 0.94
## 2196 0.50 0.00 0.17 0.94
## 2197 0.71 0.01 0.21 0.94
## 2198 0.27 0.13 0.07 0.94
## 2199 0.19 0.00 0.03 0.94
## 2200 0.17 0.00 0.08 0.94
## 2201 0.36 0.00 0.06 0.94
## 2202 0.04 0.00 0.07 0.94
## 2203 0.53 0.00 0.13 0.94
## 2204 0.36 0.00 0.12 0.94
## 2205 0.29 0.33 0.05 0.94
## 2206 0.36 0.02 0.08 0.94
## 2207 0.26 0.09 0.08 0.94
## 2208 0.03 0.00 0.13 0.94
## 2209 0.20 0.00 0.03 0.94
## 2210 0.07 0.71 0.06 0.94
## 2211 0.00 0.00 0.07 0.94
## 2212 0.35 0.00 0.06 0.94
## 2213 0.30 0.08 0.08 0.94
## 2214 0.03 0.04 0.12 0.94
## 2215 0.33 0.00 0.04 0.94
## 2216 0.06 0.63 0.05 0.94
## 2217 0.36 0.00 0.12 0.94
## 2218 0.03 0.00 0.13 0.94
## 2219 0.36 0.00 0.12 0.93
## 2220 0.45 0.02 0.10 0.93
## 2221 0.09 0.00 0.06 0.93
## 2222 0.58 0.00 0.20 0.93
## 2223 0.25 0.00 0.02 0.93
## 2224 0.30 0.00 0.04 0.93
## 2225 0.41 0.00 0.11 0.93
## 2226 0.52 0.02 0.11 0.93
## 2227 0.16 0.36 0.08 0.93
## 2228 0.42 0.02 0.14 0.93
## 2229 0.32 0.02 0.10 0.93
## 2230 0.44 0.00 0.15 0.93
## 2231 0.01 0.00 0.07 0.93
## 2232 0.25 0.00 0.02 0.93
## 2233 0.05 0.00 0.01 0.93
## 2234 0.09 0.32 0.01 0.93
## 2235 0.06 0.42 0.00 0.93
## 2236 0.20 0.00 0.01 0.93
## 2237 0.25 0.00 0.02 0.93
## 2238 0.03 0.00 0.13 0.93
## 2239 0.31 0.00 0.08 0.93
## 2240 0.19 0.00 0.03 0.93
## 2241 0.34 0.00 0.15 0.93
## 2242 0.00 0.93 0.00 0.93
## 2243 0.22 0.16 0.07 0.93
## 2244 0.35 0.00 0.06 0.93
## 2245 0.35 0.00 0.12 0.92
## 2246 0.35 0.00 0.12 0.92
## 2247 0.33 0.21 0.08 0.92
## 2248 0.35 0.00 0.06 0.92
## 2249 0.00 0.00 0.06 0.92
## 2250 0.35 0.00 0.06 0.92
## 2251 0.65 0.00 0.10 0.92
## 2252 0.28 0.00 0.12 0.92
## 2253 0.21 0.00 0.16 0.92
## 2254 0.26 0.00 0.08 0.92
## 2255 0.20 0.02 0.07 0.92
## 2256 0.00 0.00 0.05 0.92
## 2257 0.35 0.00 0.06 0.92
## 2258 0.32 0.00 0.09 0.92
## 2259 0.27 0.00 0.02 0.92
## 2260 0.09 0.43 0.01 0.92
## 2261 0.83 0.00 0.08 0.92
## 2262 0.20 0.53 0.03 0.92
## 2263 0.33 0.01 0.08 0.92
## 2264 0.39 0.00 0.15 0.92
## 2265 0.14 0.46 0.06 0.92
## 2266 0.39 0.12 0.14 0.92
## 2267 0.00 0.00 0.06 0.92
## 2268 0.18 0.00 0.03 0.92
## 2269 0.35 0.00 0.12 0.92
## 2270 0.08 0.66 0.06 0.92
## 2271 0.27 0.11 0.09 0.92
## 2272 0.08 0.00 0.17 0.92
## 2273 0.46 0.05 0.17 0.92
## 2274 0.40 0.04 0.15 0.91
## 2275 0.00 0.00 0.07 0.91
## 2276 0.35 0.00 0.12 0.91
## 2277 0.43 0.00 0.16 0.91
## 2278 0.17 0.29 0.05 0.91
## 2279 0.24 0.01 0.09 0.91
## 2280 0.35 0.00 0.12 0.91
## 2281 0.27 0.21 0.09 0.91
## 2282 0.30 0.00 0.13 0.91
## 2283 0.80 0.02 0.07 0.91
## 2284 0.17 0.00 0.01 0.91
## 2285 0.26 0.00 0.12 0.91
## 2286 0.38 0.00 0.08 0.91
## 2287 0.11 0.00 0.04 0.91
## 2288 0.15 0.00 0.08 0.91
## 2289 0.26 0.00 0.08 0.91
## 2290 0.00 0.91 0.00 0.91
## 2291 0.26 0.00 0.04 0.91
## 2292 0.34 0.00 0.14 0.91
## 2293 0.28 0.00 0.07 0.91
## 2294 0.37 0.00 0.15 0.91
## 2295 0.35 0.00 0.12 0.90
## 2296 0.00 0.77 0.01 0.90
## 2297 0.00 0.90 0.00 0.90
## 2298 0.35 0.00 0.12 0.90
## 2299 0.12 0.04 0.08 0.90
## 2300 0.03 0.00 0.12 0.90
## 2301 0.48 0.00 0.14 0.90
## 2302 0.29 0.15 0.08 0.90
## 2303 0.34 0.00 0.06 0.90
## 2304 0.49 0.00 0.10 0.90
## 2305 0.43 0.03 0.18 0.90
## 2306 0.34 0.00 0.06 0.90
## 2307 0.13 0.55 0.05 0.90
## 2308 0.43 0.01 0.05 0.90
## 2309 0.36 0.05 0.22 0.90
## 2310 0.26 0.00 0.12 0.90
## 2311 0.29 0.00 0.09 0.90
## 2312 0.05 0.00 0.01 0.90
## 2313 0.03 0.01 0.12 0.90
## 2314 0.22 0.00 0.03 0.90
## 2315 0.37 0.01 0.10 0.90
## 2316 0.48 0.00 0.09 0.90
## 2317 0.33 0.00 0.14 0.90
## 2318 0.52 0.00 0.09 0.90
## 2319 0.00 0.00 0.06 0.90
## 2320 0.32 0.01 0.15 0.90
## 2321 0.24 0.00 0.04 0.90
## 2322 0.05 0.00 0.04 0.90
## 2323 0.34 0.00 0.11 0.90
## 2324 0.10 0.00 0.06 0.90
## 2325 0.24 0.00 0.03 0.89
## 2326 0.38 0.01 0.16 0.89
## 2327 0.28 0.00 0.18 0.89
## 2328 0.01 0.00 0.07 0.89
## 2329 0.03 0.00 0.12 0.89
## 2330 0.42 0.01 0.14 0.89
## 2331 0.22 0.05 0.02 0.89
## 2332 0.29 0.01 0.09 0.89
## 2333 0.03 0.00 0.12 0.89
## 2334 0.17 0.24 0.02 0.89
## 2335 0.19 0.00 0.10 0.89
## 2336 0.16 0.30 0.02 0.89
## 2337 0.00 0.89 0.00 0.89
## 2338 0.18 0.00 0.02 0.89
## 2339 0.43 0.00 0.10 0.89
## 2340 0.11 0.56 0.06 0.89
## 2341 0.63 0.00 0.11 0.89
## 2342 0.34 0.00 0.11 0.89
## 2343 0.47 0.00 0.14 0.89
## 2344 0.13 0.46 0.08 0.89
## 2345 0.36 0.04 0.07 0.89
## 2346 0.59 0.01 0.10 0.89
## 2347 0.00 0.01 0.07 0.89
## 2348 0.79 0.00 0.09 0.89
## 2349 0.24 0.21 0.06 0.89
## 2350 0.25 0.01 0.07 0.89
## 2351 0.21 0.00 0.08 0.89
## 2352 0.34 0.00 0.06 0.89
## 2353 0.68 0.00 0.20 0.89
## 2354 0.00 0.89 0.00 0.89
## 2355 0.30 0.09 0.06 0.88
## 2356 0.36 0.00 0.08 0.88
## 2357 0.41 0.01 0.08 0.88
## 2358 0.79 0.00 0.08 0.88
## 2359 0.82 0.00 0.06 0.88
## 2360 0.20 0.00 0.07 0.88
## 2361 0.21 0.00 0.08 0.88
## 2362 0.10 0.00 0.06 0.88
## 2363 0.22 0.30 0.05 0.88
## 2364 0.34 0.00 0.11 0.88
## 2365 0.06 0.00 0.50 0.88
## 2366 0.22 0.12 0.07 0.88
## 2367 0.33 0.00 0.06 0.88
## 2368 0.38 0.00 0.07 0.88
## 2369 0.26 0.12 0.17 0.88
## 2370 0.28 0.01 0.08 0.88
## 2371 0.33 0.13 0.14 0.88
## 2372 0.33 0.00 0.11 0.88
## 2373 0.44 0.01 0.09 0.88
## 2374 0.11 0.62 0.06 0.88
## 2375 0.19 0.00 0.03 0.87
## 2376 0.33 0.00 0.06 0.87
## 2377 0.33 0.00 0.06 0.87
## 2378 0.11 0.00 0.06 0.87
## 2379 0.40 0.00 0.09 0.87
## 2380 0.00 0.87 0.00 0.87
## 2381 0.11 0.00 0.06 0.87
## 2382 0.29 0.01 0.09 0.87
## 2383 0.24 0.00 0.03 0.87
## 2384 0.40 0.02 0.16 0.87
## 2385 0.29 0.09 0.06 0.87
## 2386 0.03 0.00 0.12 0.87
## 2387 0.19 0.00 0.07 0.87
## 2388 0.00 0.00 0.06 0.87
## 2389 0.30 0.09 0.11 0.87
## 2390 0.33 0.00 0.06 0.87
## 2391 0.54 0.01 0.18 0.87
## 2392 0.31 0.02 0.09 0.87
## 2393 0.03 0.00 0.12 0.87
## 2394 0.29 0.00 0.12 0.87
## 2395 0.33 0.00 0.06 0.87
## 2396 0.44 0.00 0.23 0.87
## 2397 0.31 0.00 0.09 0.87
## 2398 0.03 0.00 0.12 0.87
## 2399 0.20 0.00 0.08 0.87
## 2400 0.17 0.00 0.07 0.87
## 2401 0.37 0.00 0.02 0.87
## 2402 0.33 0.00 0.11 0.87
## 2403 0.20 0.30 0.06 0.87
## 2404 0.52 0.00 0.23 0.87
## 2405 0.09 0.64 0.03 0.87
## 2406 0.32 0.00 0.08 0.87
## 2407 0.05 0.00 0.01 0.87
## 2408 0.15 0.45 0.07 0.87
## 2409 0.59 0.00 0.18 0.87
## 2410 0.00 0.86 0.00 0.86
## 2411 0.63 0.00 0.11 0.86
## 2412 0.72 0.12 0.01 0.86
## 2413 0.37 0.01 0.14 0.86
## 2414 0.37 0.00 0.15 0.86
## 2415 0.06 0.21 0.05 0.86
## 2416 0.45 0.01 0.15 0.86
## 2417 0.33 0.00 0.11 0.86
## 2418 0.00 0.86 0.00 0.86
## 2419 0.33 0.00 0.06 0.86
## 2420 0.04 0.00 0.01 0.86
## 2421 0.32 0.00 0.06 0.86
## 2422 0.34 0.18 0.12 0.86
## 2423 0.26 0.00 0.08 0.86
## 2424 0.00 0.20 0.05 0.86
## 2425 0.43 0.02 0.09 0.86
## 2426 0.13 0.51 0.04 0.86
## 2427 0.16 0.08 0.10 0.86
## 2428 0.43 0.00 0.07 0.85
## 2429 0.26 0.01 0.12 0.85
## 2430 0.65 0.00 0.11 0.85
## 2431 0.32 0.00 0.06 0.85
## 2432 0.31 0.00 0.08 0.85
## 2433 0.01 0.00 0.07 0.85
## 2434 0.00 0.00 0.07 0.85
## 2435 0.32 0.00 0.07 0.85
## 2436 0.09 0.57 0.06 0.85
## 2437 0.18 0.00 0.03 0.85
## 2438 0.27 0.01 0.12 0.85
## 2439 0.04 0.00 0.06 0.85
## 2440 0.07 0.37 0.01 0.85
## 2441 0.47 0.00 0.10 0.85
## 2442 0.32 0.00 0.06 0.85
## 2443 0.06 0.00 0.09 0.85
## 2444 0.35 0.00 0.14 0.85
## 2445 0.25 0.00 0.08 0.85
## 2446 0.00 0.00 0.53 0.85
## 2447 0.32 0.00 0.06 0.85
## 2448 0.32 0.00 0.11 0.85
## 2449 0.10 0.44 0.04 0.85
## 2450 0.25 0.20 0.08 0.85
## 2451 0.25 0.00 0.07 0.85
## 2452 0.29 0.02 0.07 0.85
## 2453 0.37 0.03 0.16 0.84
## 2454 0.17 0.00 0.02 0.84
## 2455 0.11 0.13 0.05 0.84
## 2456 0.34 0.00 0.13 0.84
## 2457 0.21 0.11 0.10 0.84
## 2458 0.00 0.00 0.16 0.84
## 2459 0.01 0.01 0.07 0.84
## 2460 0.28 0.14 0.06 0.84
## 2461 0.30 0.00 0.09 0.84
## 2462 0.17 0.00 0.02 0.84
## 2463 0.00 0.00 0.06 0.84
## 2464 0.27 0.05 0.12 0.84
## 2465 0.32 0.00 0.11 0.84
## 2466 0.03 0.06 0.06 0.84
## 2467 0.00 0.52 0.00 0.84
## 2468 0.22 0.10 0.10 0.84
## 2469 0.32 0.00 0.05 0.84
## 2470 0.25 0.00 0.07 0.84
## 2471 0.32 0.00 0.11 0.84
## 2472 0.32 0.03 0.14 0.84
## 2473 0.16 0.39 0.05 0.84
## 2474 0.32 0.00 0.11 0.84
## 2475 0.22 0.00 0.01 0.84
## 2476 0.48 0.04 0.19 0.84
## 2477 0.33 0.05 0.14 0.84
## 2478 0.00 0.00 0.74 0.84
## 2479 0.38 0.01 0.08 0.84
## 2480 0.32 0.00 0.05 0.84
## 2481 0.31 0.00 0.08 0.83
## 2482 0.15 0.40 0.05 0.83
## 2483 0.19 0.34 0.06 0.83
## 2484 0.37 0.00 0.09 0.83
## 2485 0.03 0.00 0.04 0.83
## 2486 0.22 0.00 0.01 0.83
## 2487 0.21 0.01 0.19 0.83
## 2488 0.21 0.28 0.07 0.83
## 2489 0.18 0.01 0.03 0.83
## 2490 0.20 0.00 0.06 0.83
## 2491 0.00 0.83 0.00 0.83
## 2492 0.31 0.00 0.05 0.83
## 2493 0.26 0.12 0.05 0.83
## 2494 0.00 0.00 0.05 0.83
## 2495 0.03 0.00 0.11 0.83
## 2496 0.00 0.00 0.06 0.83
## 2497 0.17 0.00 0.07 0.83
## 2498 0.32 0.00 0.11 0.83
## 2499 0.00 0.00 0.06 0.83
## 2500 0.37 0.00 0.14 0.83
## 2501 0.20 0.11 0.09 0.83
## 2502 0.31 0.00 0.05 0.83
## 2503 0.31 0.00 0.05 0.83
## 2504 0.34 0.09 0.07 0.82
## 2505 0.22 0.00 0.03 0.82
## 2506 0.02 0.00 0.09 0.82
## 2507 0.21 0.00 0.15 0.82
## 2508 0.17 0.00 0.02 0.82
## 2509 0.03 0.00 0.11 0.82
## 2510 0.30 0.00 0.08 0.82
## 2511 0.12 0.00 0.06 0.82
## 2512 0.26 0.08 0.13 0.82
## 2513 0.11 0.00 0.03 0.82
## 2514 0.10 0.28 0.02 0.82
## 2515 0.19 0.00 0.01 0.82
## 2516 0.11 0.00 0.02 0.82
## 2517 0.05 0.00 0.01 0.82
## 2518 0.41 0.00 0.22 0.82
## 2519 0.28 0.19 0.12 0.82
## 2520 0.19 0.14 0.06 0.82
## 2521 0.31 0.00 0.10 0.82
## 2522 0.35 0.00 0.14 0.82
## 2523 0.28 0.00 0.07 0.82
## 2524 0.11 0.00 0.15 0.82
## 2525 0.33 0.01 0.09 0.82
## 2526 0.33 0.00 0.09 0.82
## 2527 0.04 0.36 0.08 0.82
## 2528 0.40 0.00 0.13 0.82
## 2529 0.26 0.00 0.08 0.82
## 2530 0.13 0.00 0.07 0.82
## 2531 0.07 0.00 0.07 0.82
## 2532 0.00 0.81 0.00 0.81
## 2533 0.03 0.00 0.06 0.81
## 2534 0.31 0.00 0.10 0.81
## 2535 0.00 0.81 0.00 0.81
## 2536 0.25 0.07 0.17 0.81
## 2537 0.04 0.66 0.05 0.81
## 2538 0.00 0.81 0.00 0.81
## 2539 0.31 0.00 0.05 0.81
## 2540 0.00 0.00 0.05 0.81
## 2541 0.16 0.00 0.02 0.81
## 2542 0.00 0.76 0.05 0.81
## 2543 0.35 0.00 0.13 0.81
## 2544 0.05 0.63 0.05 0.81
## 2545 0.00 0.81 0.00 0.81
## 2546 0.58 0.03 0.08 0.81
## 2547 0.12 0.00 0.01 0.81
## 2548 0.08 0.27 0.01 0.81
## 2549 0.31 0.00 0.10 0.81
## 2550 0.35 0.00 0.13 0.81
## 2551 0.00 0.81 0.00 0.81
## 2552 0.40 0.00 0.09 0.81
## 2553 0.26 0.30 0.04 0.81
## 2554 0.31 0.00 0.05 0.81
## 2555 0.30 0.01 0.07 0.81
## 2556 0.00 0.00 0.06 0.81
## 2557 0.21 0.00 0.07 0.81
## 2558 0.00 0.75 0.05 0.81
## 2559 0.27 0.09 0.09 0.81
## 2560 0.03 0.00 0.11 0.81
## 2561 0.21 0.00 0.07 0.81
## 2562 0.00 0.00 0.06 0.80
## 2563 0.25 0.02 0.07 0.80
## 2564 0.33 0.00 0.07 0.80
## 2565 0.30 0.00 0.05 0.80
## 2566 0.02 0.74 0.01 0.80
## 2567 0.16 0.00 0.02 0.80
## 2568 0.50 0.00 0.11 0.80
## 2569 0.30 0.00 0.05 0.80
## 2570 0.31 0.00 0.10 0.80
## 2571 0.39 0.00 0.22 0.80
## 2572 0.30 0.00 0.05 0.80
## 2573 0.37 0.00 0.07 0.80
## 2574 0.33 0.20 0.18 0.80
## 2575 0.25 0.00 0.07 0.80
## 2576 0.35 0.00 0.07 0.80
## 2577 0.35 0.00 0.13 0.80
## 2578 0.19 0.03 0.13 0.80
## 2579 0.29 0.00 0.08 0.80
## 2580 0.46 0.00 0.25 0.80
## 2581 0.28 0.00 0.04 0.80
## 2582 0.24 0.07 0.06 0.80
## 2583 0.28 0.00 0.07 0.80
## 2584 0.32 0.22 0.12 0.80
## 2585 0.01 0.00 0.06 0.80
## 2586 0.00 0.75 0.05 0.80
## 2587 0.33 0.26 0.17 0.80
## 2588 0.09 0.00 0.02 0.80
## 2589 0.19 0.00 0.06 0.80
## 2590 0.22 0.00 0.07 0.80
## 2591 0.22 0.13 0.06 0.80
## 2592 0.00 0.80 0.00 0.80
## 2593 0.00 0.80 0.00 0.80
## 2594 0.36 0.04 0.14 0.80
## 2595 0.24 0.01 0.08 0.79
## 2596 0.30 0.29 0.16 0.79
## 2597 0.04 0.00 0.01 0.79
## 2598 0.02 0.00 0.11 0.79
## 2599 0.25 0.03 0.11 0.79
## 2600 0.34 0.00 0.08 0.79
## 2601 0.00 0.00 0.18 0.79
## 2602 0.00 0.74 0.05 0.79
## 2603 0.03 0.30 0.04 0.79
## 2604 0.16 0.00 0.02 0.79
## 2605 0.00 0.74 0.05 0.79
## 2606 0.51 0.00 0.11 0.79
## 2607 0.30 0.00 0.05 0.79
## 2608 0.25 0.00 0.12 0.79
## 2609 0.11 0.00 0.07 0.79
## 2610 0.15 0.00 0.01 0.79
## 2611 0.07 0.32 0.01 0.79
## 2612 0.20 0.21 0.06 0.79
## 2613 0.03 0.02 0.10 0.79
## 2614 0.22 0.23 0.07 0.79
## 2615 0.00 0.79 0.00 0.79
## 2616 0.21 0.08 0.07 0.79
## 2617 0.27 0.01 0.07 0.79
## 2618 0.02 0.00 0.06 0.79
## 2619 0.03 0.00 0.01 0.79
## 2620 0.52 0.00 0.11 0.79
## 2621 0.30 0.03 0.08 0.79
## 2622 0.19 0.01 0.10 0.79
## 2623 0.03 0.00 0.11 0.79
## 2624 0.49 0.00 0.05 0.79
## 2625 0.32 0.17 0.07 0.79
## 2626 0.27 0.01 0.07 0.79
## 2627 0.20 0.27 0.05 0.79
## 2628 0.48 0.25 0.06 0.78
## 2629 0.05 0.01 0.06 0.78
## 2630 0.04 0.00 0.01 0.78
## 2631 0.56 0.00 0.10 0.78
## 2632 0.21 0.00 0.01 0.78
## 2633 0.04 0.11 0.06 0.78
## 2634 0.77 0.00 0.00 0.78
## 2635 0.30 0.00 0.05 0.78
## 2636 0.00 0.00 0.61 0.78
## 2637 0.30 0.00 0.07 0.78
## 2638 0.00 0.00 0.06 0.78
## 2639 0.69 0.00 0.09 0.78
## 2640 0.30 0.00 0.05 0.78
## 2641 0.00 0.00 0.06 0.78
## 2642 0.29 0.00 0.05 0.78
## 2643 0.30 0.12 0.07 0.78
## 2644 0.42 0.13 0.10 0.78
## 2645 0.43 0.00 0.24 0.78
## 2646 0.24 0.00 0.16 0.78
## 2647 0.19 0.00 0.06 0.78
## 2648 0.15 0.03 0.06 0.78
## 2649 0.02 0.00 0.11 0.78
## 2650 0.33 0.01 0.20 0.78
## 2651 0.29 0.00 0.07 0.78
## 2652 0.00 0.78 0.00 0.78
## 2653 0.05 0.00 0.01 0.78
## 2654 0.16 0.00 0.02 0.78
## 2655 0.36 0.00 0.09 0.78
## 2656 0.29 0.00 0.05 0.78
## 2657 0.35 0.00 0.08 0.78
## 2658 0.40 0.00 0.09 0.77
## 2659 0.23 0.00 0.07 0.77
## 2660 0.02 0.03 0.06 0.77
## 2661 0.05 0.00 0.01 0.77
## 2662 0.29 0.00 0.05 0.77
## 2663 0.29 0.00 0.05 0.77
## 2664 0.05 0.00 0.05 0.77
## 2665 0.04 0.00 0.01 0.77
## 2666 0.32 0.03 0.19 0.77
## 2667 0.31 0.00 0.12 0.77
## 2668 0.14 0.32 0.10 0.77
## 2669 0.02 0.00 0.10 0.77
## 2670 0.04 0.00 0.01 0.77
## 2671 0.29 0.00 0.05 0.77
## 2672 0.19 0.11 0.10 0.77
## 2673 0.04 0.00 0.01 0.77
## 2674 0.22 0.00 0.02 0.77
## 2675 0.00 0.77 0.00 0.77
## 2676 0.20 0.00 0.01 0.77
## 2677 0.10 0.00 0.06 0.77
## 2678 0.27 0.00 0.06 0.77
## 2679 0.00 0.00 0.06 0.77
## 2680 0.29 0.00 0.10 0.77
## 2681 0.29 0.00 0.10 0.77
## 2682 0.14 0.38 0.04 0.77
## 2683 0.17 0.14 0.01 0.77
## 2684 0.29 0.00 0.10 0.77
## 2685 0.08 0.56 0.03 0.77
## 2686 0.29 0.00 0.10 0.76
## 2687 0.04 0.00 0.36 0.76
## 2688 0.12 0.42 0.05 0.76
## 2689 0.40 0.01 0.14 0.76
## 2690 0.47 0.00 0.08 0.76
## 2691 0.37 0.03 0.07 0.76
## 2692 0.38 0.00 0.03 0.76
## 2693 0.02 0.00 0.10 0.76
## 2694 0.29 0.00 0.10 0.76
## 2695 0.11 0.43 0.05 0.76
## 2696 0.18 0.00 0.12 0.76
## 2697 0.00 0.71 0.05 0.76
## 2698 0.24 0.08 0.06 0.76
## 2699 0.24 0.07 0.10 0.76
## 2700 0.32 0.00 0.11 0.76
## 2701 0.01 0.00 0.06 0.76
## 2702 0.43 0.11 0.13 0.76
## 2703 0.39 0.00 0.08 0.76
## 2704 0.26 0.00 0.12 0.76
## 2705 0.00 0.76 0.00 0.76
## 2706 0.16 0.00 0.01 0.76
## 2707 0.00 0.76 0.00 0.76
## 2708 0.03 0.62 0.02 0.76
## 2709 0.29 0.00 0.10 0.76
## 2710 0.29 0.00 0.36 0.76
## 2711 0.04 0.00 0.05 0.76
## 2712 0.31 0.01 0.08 0.76
## 2713 0.48 0.00 0.14 0.76
## 2714 0.12 0.00 0.03 0.76
## 2715 0.15 0.30 0.04 0.76
## 2716 0.20 0.00 0.01 0.76
## 2717 0.46 0.00 0.06 0.76
## 2718 0.24 0.13 0.08 0.76
## 2719 0.38 0.01 0.21 0.76
## 2720 0.32 0.01 0.13 0.76
## 2721 0.20 0.01 0.06 0.76
## 2722 0.02 0.07 0.09 0.76
## 2723 0.29 0.00 0.10 0.76
## 2724 0.39 0.00 0.09 0.76
## 2725 0.44 0.00 0.08 0.76
## 2726 0.38 0.06 0.14 0.76
## 2727 0.09 0.02 0.05 0.76
## 2728 0.00 0.76 0.00 0.76
## 2729 0.53 0.00 0.11 0.76
## 2730 0.21 0.01 0.07 0.75
## 2731 0.03 0.00 0.06 0.75
## 2732 0.00 0.00 0.54 0.75
## 2733 0.21 0.00 0.14 0.75
## 2734 0.24 0.00 0.11 0.75
## 2735 0.21 0.20 0.05 0.75
## 2736 0.39 0.00 0.19 0.75
## 2737 0.19 0.00 0.09 0.75
## 2738 0.22 0.01 0.11 0.75
## 2739 0.17 0.00 0.07 0.75
## 2740 0.21 0.01 0.07 0.75
## 2741 0.28 0.00 0.11 0.75
## 2742 0.29 0.00 0.10 0.75
## 2743 0.11 0.00 0.01 0.75
## 2744 0.26 0.00 0.06 0.75
## 2745 0.24 0.13 0.08 0.75
## 2746 0.28 0.02 0.12 0.75
## 2747 0.19 0.23 0.05 0.75
## 2748 0.00 0.00 0.06 0.75
## 2749 0.29 0.00 0.18 0.75
## 2750 0.24 0.00 0.03 0.75
## 2751 0.18 0.19 0.05 0.75
## 2752 0.32 0.00 0.13 0.75
## 2753 0.26 0.00 0.07 0.75
## 2754 0.31 0.01 0.12 0.75
## 2755 0.17 0.30 0.06 0.75
## 2756 0.02 0.00 0.10 0.75
## 2757 0.28 0.00 0.07 0.75
## 2758 0.22 0.01 0.06 0.75
## 2759 0.43 0.01 0.11 0.75
## 2760 0.16 0.00 0.09 0.75
## 2761 0.37 0.00 0.08 0.75
## 2762 0.14 0.00 0.05 0.75
## 2763 0.16 0.22 0.07 0.74
## 2764 0.00 0.74 0.00 0.74
## 2765 0.28 0.00 0.10 0.74
## 2766 0.22 0.24 0.09 0.74
## 2767 0.28 0.00 0.10 0.74
## 2768 0.19 0.00 0.14 0.74
## 2769 0.30 0.02 0.06 0.74
## 2770 0.27 0.00 0.06 0.74
## 2771 0.01 0.00 0.06 0.74
## 2772 0.30 0.25 0.04 0.74
## 2773 0.16 0.15 0.01 0.74
## 2774 0.32 0.01 0.12 0.74
## 2775 0.35 0.02 0.06 0.74
## 2776 0.37 0.02 0.13 0.74
## 2777 0.00 0.00 0.05 0.74
## 2778 0.00 0.00 0.05 0.74
## 2779 0.10 0.00 0.03 0.74
## 2780 0.45 0.00 0.13 0.74
## 2781 0.20 0.00 0.01 0.74
## 2782 0.28 0.00 0.09 0.74
## 2783 0.30 0.00 0.08 0.74
## 2784 0.28 0.00 0.05 0.74
## 2785 0.25 0.14 0.08 0.74
## 2786 0.12 0.00 0.03 0.74
## 2787 0.06 0.50 0.02 0.74
## 2788 0.41 0.00 0.15 0.74
## 2789 0.38 0.00 0.14 0.74
## 2790 0.12 0.24 0.07 0.74
## 2791 0.11 0.30 0.02 0.74
## 2792 0.01 0.25 0.04 0.74
## 2793 0.16 0.22 0.08 0.73
## 2794 0.05 0.00 0.06 0.73
## 2795 0.09 0.46 0.05 0.73
## 2796 0.00 0.73 0.00 0.73
## 2797 0.15 0.17 0.01 0.73
## 2798 0.41 0.00 0.09 0.73
## 2799 0.00 0.73 0.00 0.73
## 2800 0.17 0.00 0.01 0.73
## 2801 0.51 0.01 0.09 0.73
## 2802 0.04 0.00 0.06 0.73
## 2803 0.00 0.32 0.04 0.73
## 2804 0.28 0.00 0.05 0.73
## 2805 0.00 0.73 0.00 0.73
## 2806 0.16 0.00 0.03 0.73
## 2807 0.04 0.00 0.01 0.73
## 2808 0.07 0.00 0.05 0.73
## 2809 0.34 0.00 0.07 0.73
## 2810 0.01 0.00 0.05 0.73
## 2811 0.41 0.01 0.08 0.73
## 2812 0.00 0.00 0.06 0.73
## 2813 0.00 0.73 0.00 0.73
## 2814 0.16 0.00 0.03 0.73
## 2815 0.02 0.17 0.08 0.73
## 2816 0.19 0.00 0.01 0.73
## 2817 0.14 0.02 0.09 0.73
## 2818 0.32 0.00 0.08 0.73
## 2819 0.28 0.00 0.09 0.73
## 2820 0.15 0.00 0.06 0.73
## 2821 0.31 0.00 0.08 0.73
## 2822 0.28 0.00 0.06 0.72
## 2823 0.02 0.53 0.01 0.72
## 2824 0.15 0.00 0.02 0.72
## 2825 0.36 0.00 0.10 0.72
## 2826 0.30 0.00 0.07 0.72
## 2827 0.19 0.00 0.01 0.72
## 2828 0.02 0.00 0.10 0.72
## 2829 0.46 0.00 0.08 0.72
## 2830 0.00 0.72 0.00 0.72
## 2831 0.22 0.08 0.10 0.72
## 2832 0.00 0.67 0.05 0.72
## 2833 0.27 0.00 0.05 0.72
## 2834 0.02 0.01 0.10 0.72
## 2835 0.17 0.00 0.03 0.72
## 2836 0.02 0.00 0.10 0.72
## 2837 0.27 0.00 0.05 0.72
## 2838 0.00 0.70 0.02 0.72
## 2839 0.30 0.00 0.07 0.72
## 2840 0.00 0.00 0.05 0.72
## 2841 0.27 0.00 0.05 0.72
## 2842 0.31 0.00 0.06 0.72
## 2843 0.28 0.00 0.09 0.72
## 2844 0.04 0.00 0.01 0.72
## 2845 0.38 0.02 0.13 0.72
## 2846 0.31 0.00 0.18 0.72
## 2847 0.04 0.00 0.06 0.72
## 2848 0.19 0.00 0.01 0.72
## 2849 0.39 0.00 0.08 0.72
## 2850 0.00 0.00 0.05 0.72
## 2851 0.19 0.22 0.04 0.72
## 2852 0.04 0.61 0.01 0.72
## 2853 0.15 0.20 0.07 0.72
## 2854 0.27 0.00 0.05 0.72
## 2855 0.50 0.00 0.09 0.72
## 2856 0.69 0.00 0.03 0.72
## 2857 0.53 0.00 0.00 0.71
## 2858 0.24 0.00 0.03 0.71
## 2859 0.02 0.00 0.03 0.71
## 2860 0.01 0.50 0.02 0.71
## 2861 0.00 0.00 0.05 0.71
## 2862 0.23 0.00 0.06 0.71
## 2863 0.13 0.37 0.06 0.71
## 2864 0.27 0.00 0.09 0.71
## 2865 0.40 0.00 0.14 0.71
## 2866 0.15 0.29 0.05 0.71
## 2867 0.08 0.41 0.04 0.71
## 2868 0.27 0.00 0.09 0.71
## 2869 0.07 0.27 0.04 0.71
## 2870 0.04 0.00 0.07 0.71
## 2871 0.14 0.00 0.02 0.71
## 2872 0.27 0.00 0.05 0.71
## 2873 0.20 0.00 0.02 0.71
## 2874 0.27 0.00 0.09 0.71
## 2875 0.00 0.00 0.06 0.71
## 2876 0.25 0.06 0.11 0.71
## 2877 0.13 0.07 0.02 0.71
## 2878 0.22 0.00 0.07 0.71
## 2879 0.00 0.00 0.05 0.71
## 2880 0.14 0.00 0.02 0.71
## 2881 0.19 0.00 0.01 0.71
## 2882 0.27 0.00 0.09 0.71
## 2883 0.00 0.71 0.00 0.71
## 2884 0.18 0.00 0.01 0.71
## 2885 0.13 0.00 0.01 0.71
## 2886 0.09 0.17 0.06 0.71
## 2887 0.37 0.00 0.19 0.71
## 2888 0.00 0.71 0.00 0.71
## 2889 0.05 0.44 0.02 0.71
## 2890 0.60 0.00 0.10 0.71
## 2891 0.10 0.41 0.05 0.71
## 2892 0.31 0.00 0.17 0.71
## 2893 0.27 0.00 0.05 0.71
## 2894 0.27 0.00 0.05 0.71
## 2895 0.26 0.01 0.06 0.71
## 2896 0.23 0.00 0.07 0.71
## 2897 0.15 0.00 0.03 0.71
## 2898 0.00 0.00 0.05 0.71
## 2899 0.14 0.00 0.07 0.71
## 2900 0.29 0.00 0.11 0.71
## 2901 0.21 0.00 0.14 0.71
## 2902 0.39 0.01 0.16 0.71
## 2903 0.50 0.00 0.15 0.70
## 2904 0.10 0.00 0.05 0.70
## 2905 0.14 0.00 0.02 0.70
## 2906 0.18 0.12 0.06 0.70
## 2907 0.00 0.70 0.00 0.70
## 2908 0.27 0.00 0.05 0.70
## 2909 0.31 0.00 0.07 0.70
## 2910 0.16 0.00 0.02 0.70
## 2911 0.00 0.00 0.05 0.70
## 2912 0.27 0.00 0.09 0.70
## 2913 0.10 0.00 0.06 0.70
## 2914 0.14 0.00 0.02 0.70
## 2915 0.19 0.00 0.01 0.70
## 2916 0.27 0.00 0.09 0.70
## 2917 0.27 0.00 0.05 0.70
## 2918 0.19 0.00 0.03 0.70
## 2919 0.30 0.00 0.12 0.70
## 2920 0.25 0.00 0.06 0.70
## 2921 0.25 0.00 0.06 0.70
## 2922 0.36 0.01 0.13 0.70
## 2923 0.03 0.58 0.05 0.70
## 2924 0.19 0.00 0.01 0.70
## 2925 0.25 0.00 0.07 0.70
## 2926 0.20 0.00 0.06 0.70
## 2927 0.01 0.12 0.05 0.70
## 2928 0.27 0.00 0.09 0.70
## 2929 0.26 0.00 0.10 0.70
## 2930 0.40 0.00 0.16 0.70
## 2931 0.26 0.00 0.05 0.70
## 2932 0.27 0.00 0.09 0.70
## 2933 0.13 0.36 0.04 0.70
## 2934 0.18 0.22 0.08 0.70
## 2935 0.27 0.00 0.09 0.70
## 2936 0.26 0.00 0.06 0.70
## 2937 0.00 0.00 0.05 0.70
## 2938 0.14 0.17 0.01 0.70
## 2939 0.00 0.70 0.00 0.70
## 2940 0.18 0.00 0.01 0.70
## 2941 0.04 0.00 0.01 0.69
## 2942 0.26 0.00 0.06 0.69
## 2943 0.31 0.05 0.05 0.69
## 2944 0.21 0.00 0.06 0.69
## 2945 0.01 0.26 0.17 0.69
## 2946 0.17 0.00 0.05 0.69
## 2947 0.10 0.00 0.06 0.69
## 2948 0.32 0.00 0.07 0.69
## 2949 0.26 0.00 0.05 0.69
## 2950 0.13 0.00 0.02 0.69
## 2951 0.33 0.00 0.11 0.69
## 2952 0.02 0.00 0.09 0.69
## 2953 0.00 0.00 0.05 0.69
## 2954 0.33 0.00 0.12 0.69
## 2955 0.18 0.00 0.01 0.69
## 2956 0.00 0.69 0.00 0.69
## 2957 0.00 0.69 0.00 0.69
## 2958 0.14 0.00 0.02 0.69
## 2959 0.26 0.00 0.05 0.69
## 2960 0.09 0.01 0.07 0.69
## 2961 0.20 0.42 0.07 0.69
## 2962 0.38 0.00 0.10 0.69
## 2963 0.14 0.00 0.02 0.69
## 2964 0.36 0.00 0.13 0.69
## 2965 0.14 0.00 0.02 0.69
## 2966 0.61 0.02 0.04 0.69
## 2967 0.08 0.00 0.06 0.69
## 2968 0.20 0.18 0.06 0.69
## 2969 0.35 0.00 0.06 0.69
## 2970 0.32 0.00 0.10 0.69
## 2971 0.26 0.00 0.09 0.68
## 2972 0.18 0.00 0.01 0.68
## 2973 0.23 0.00 0.06 0.68
## 2974 0.00 0.33 0.02 0.68
## 2975 0.03 0.00 0.05 0.68
## 2976 0.26 0.00 0.04 0.68
## 2977 0.13 0.18 0.04 0.68
## 2978 0.04 0.00 0.02 0.68
## 2979 0.25 0.00 0.11 0.68
## 2980 0.36 0.00 0.11 0.68
## 2981 0.29 0.02 0.12 0.68
## 2982 0.02 0.00 0.03 0.68
## 2983 0.26 0.00 0.04 0.68
## 2984 0.33 0.03 0.06 0.68
## 2985 0.14 0.00 0.02 0.68
## 2986 0.02 0.00 0.09 0.68
## 2987 0.11 0.28 0.08 0.68
## 2988 0.30 0.04 0.12 0.68
## 2989 0.00 0.34 0.02 0.68
## 2990 0.11 0.00 0.03 0.68
## 2991 0.33 0.00 0.13 0.68
## 2992 0.23 0.00 0.06 0.68
## 2993 0.17 0.22 0.04 0.68
## 2994 0.10 0.38 0.04 0.68
## 2995 0.33 0.00 0.06 0.68
## 2996 0.01 0.00 0.05 0.68
## 2997 0.38 0.00 0.01 0.68
## 2998 0.43 0.00 0.05 0.68
## 2999 0.04 0.04 0.05 0.68
## 3000 0.15 0.00 0.02 0.68
## 3001 0.22 0.11 0.07 0.68
## 3002 0.59 0.00 0.09 0.68
## 3003 0.18 0.20 0.06 0.68
## 3004 0.04 0.00 0.04 0.68
## 3005 0.22 0.01 0.10 0.68
## 3006 0.26 0.00 0.09 0.68
## 3007 0.52 0.00 0.02 0.67
## 3008 0.24 0.00 0.11 0.67
## 3009 0.01 0.42 0.02 0.67
## 3010 0.16 0.00 0.02 0.67
## 3011 0.17 0.00 0.05 0.67
## 3012 0.21 0.11 0.09 0.67
## 3013 0.34 0.00 0.13 0.67
## 3014 0.25 0.00 0.04 0.67
## 3015 0.22 0.00 0.06 0.67
## 3016 0.25 0.00 0.04 0.67
## 3017 0.22 0.00 0.10 0.67
## 3018 0.18 0.00 0.03 0.67
## 3019 0.28 0.00 0.06 0.67
## 3020 0.13 0.00 0.05 0.67
## 3021 0.00 0.67 0.00 0.67
## 3022 0.25 0.00 0.04 0.67
## 3023 0.17 0.00 0.02 0.67
## 3024 0.17 0.23 0.06 0.67
## 3025 0.32 0.00 0.07 0.67
## 3026 0.00 0.67 0.00 0.67
## 3027 0.42 0.00 0.05 0.67
## 3028 0.36 0.00 0.14 0.67
## 3029 0.31 0.01 0.11 0.67
## 3030 0.28 0.00 0.16 0.67
## 3031 0.16 0.00 0.07 0.67
## 3032 0.13 0.31 0.04 0.67
## 3033 0.66 0.00 0.01 0.67
## 3034 0.18 0.01 0.05 0.67
## 3035 0.30 0.00 0.08 0.67
## 3036 0.33 0.00 0.11 0.67
## 3037 0.41 0.00 0.08 0.67
## 3038 0.21 0.01 0.05 0.67
## 3039 0.29 0.01 0.07 0.67
## 3040 0.06 0.00 0.05 0.67
## 3041 0.64 0.00 0.02 0.67
## 3042 0.25 0.00 0.09 0.67
## 3043 0.20 0.00 0.14 0.67
## 3044 0.58 0.00 0.09 0.67
## 3045 0.03 0.00 0.01 0.67
## 3046 0.05 0.25 0.04 0.67
## 3047 0.11 0.00 0.05 0.67
## 3048 0.26 0.05 0.11 0.67
## 3049 0.53 0.00 0.12 0.67
## 3050 0.18 0.00 0.01 0.67
## 3051 0.00 0.66 0.00 0.66
## 3052 0.25 0.00 0.04 0.66
## 3053 0.15 0.00 0.02 0.66
## 3054 0.24 0.01 0.10 0.66
## 3055 0.23 0.03 0.06 0.66
## 3056 0.02 0.00 0.09 0.66
## 3057 0.25 0.00 0.08 0.66
## 3058 0.01 0.13 0.26 0.66
## 3059 0.25 0.00 0.04 0.66
## 3060 0.25 0.00 0.04 0.66
## 3061 0.25 0.00 0.08 0.66
## 3062 0.16 0.00 0.02 0.66
## 3063 0.02 0.00 0.09 0.66
## 3064 0.10 0.00 0.06 0.66
## 3065 0.00 0.66 0.00 0.66
## 3066 0.13 0.00 0.02 0.66
## 3067 0.00 0.66 0.00 0.66
## 3068 0.00 0.64 0.02 0.66
## 3069 0.18 0.00 0.01 0.66
## 3070 0.38 0.00 0.14 0.66
## 3071 0.24 0.00 0.07 0.66
## 3072 0.25 0.00 0.08 0.66
## 3073 0.25 0.00 0.04 0.66
## 3074 0.52 0.00 0.12 0.66
## 3075 0.03 0.55 0.02 0.66
## 3076 0.02 0.33 0.03 0.66
## 3077 0.25 0.00 0.14 0.66
## 3078 0.20 0.00 0.03 0.66
## 3079 0.22 0.00 0.10 0.66
## 3080 0.04 0.00 0.01 0.66
## 3081 0.35 0.00 0.16 0.66
## 3082 0.14 0.19 0.04 0.66
## 3083 0.17 0.00 0.01 0.66
## 3084 0.13 0.30 0.05 0.66
## 3085 0.00 0.62 0.00 0.66
## 3086 0.17 0.00 0.01 0.66
## 3087 0.08 0.41 0.04 0.66
## 3088 0.14 0.00 0.02 0.66
## 3089 0.08 0.00 0.08 0.66
## 3090 0.27 0.00 0.16 0.66
## 3091 0.00 0.66 0.00 0.66
## 3092 0.44 0.03 0.09 0.66
## 3093 0.25 0.00 0.07 0.66
## 3094 0.25 0.00 0.04 0.66
## 3095 0.22 0.00 0.06 0.65
## 3096 0.22 0.00 0.10 0.65
## 3097 0.00 0.00 0.41 0.65
## 3098 0.22 0.01 0.10 0.65
## 3099 0.25 0.00 0.05 0.65
## 3100 0.23 0.00 0.07 0.65
## 3101 0.14 0.29 0.05 0.65
## 3102 0.11 0.12 0.02 0.65
## 3103 0.25 0.00 0.08 0.65
## 3104 0.22 0.00 0.14 0.65
## 3105 0.09 0.30 0.01 0.65
## 3106 0.28 0.00 0.07 0.65
## 3107 0.25 0.00 0.08 0.65
## 3108 0.04 0.00 0.05 0.65
## 3109 0.17 0.00 0.01 0.65
## 3110 0.01 0.58 0.04 0.65
## 3111 0.14 0.00 0.06 0.65
## 3112 0.00 0.00 0.07 0.65
## 3113 0.20 0.00 0.06 0.65
## 3114 0.17 0.00 0.01 0.65
## 3115 0.03 0.27 0.03 0.65
## 3116 0.25 0.00 0.04 0.65
## 3117 0.15 0.26 0.05 0.65
## 3118 0.50 0.00 0.15 0.65
## 3119 0.04 0.00 0.01 0.65
## 3120 0.25 0.00 0.08 0.65
## 3121 0.02 0.00 0.09 0.65
## 3122 0.05 0.00 0.60 0.65
## 3123 0.24 0.00 0.04 0.65
## 3124 0.18 0.00 0.12 0.65
## 3125 0.11 0.00 0.05 0.65
## 3126 0.15 0.20 0.07 0.65
## 3127 0.14 0.22 0.09 0.65
## 3128 0.00 0.65 0.00 0.65
## 3129 0.23 0.05 0.10 0.65
## 3130 0.20 0.00 0.06 0.65
## 3131 0.00 0.65 0.00 0.65
## 3132 0.04 0.40 0.03 0.65
## 3133 0.39 0.00 0.09 0.64
## 3134 0.00 0.00 0.05 0.64
## 3135 0.07 0.00 0.44 0.64
## 3136 0.17 0.00 0.01 0.64
## 3137 0.24 0.00 0.05 0.64
## 3138 0.25 0.00 0.08 0.64
## 3139 0.25 0.00 0.15 0.64
## 3140 0.31 0.00 0.13 0.64
## 3141 0.25 0.00 0.08 0.64
## 3142 0.35 0.01 0.12 0.64
## 3143 0.15 0.00 0.02 0.64
## 3144 0.09 0.01 0.05 0.64
## 3145 0.02 0.00 0.09 0.64
## 3146 0.04 0.00 0.07 0.64
## 3147 0.17 0.07 0.09 0.64
## 3148 0.23 0.00 0.05 0.64
## 3149 0.35 0.00 0.06 0.64
## 3150 0.29 0.00 0.10 0.64
## 3151 0.19 0.00 0.02 0.64
## 3152 0.24 0.00 0.08 0.64
## 3153 0.32 0.00 0.07 0.64
## 3154 0.04 0.00 0.03 0.64
## 3155 0.33 0.00 0.09 0.64
## 3156 0.04 0.00 0.05 0.64
## 3157 0.15 0.00 0.01 0.64
## 3158 0.10 0.04 0.05 0.64
## 3159 0.22 0.00 0.02 0.64
## 3160 0.17 0.00 0.01 0.64
## 3161 0.21 0.00 0.06 0.64
## 3162 0.33 0.00 0.01 0.64
## 3163 0.12 0.34 0.04 0.64
## 3164 0.20 0.20 0.07 0.64
## 3165 0.17 0.00 0.06 0.64
## 3166 0.43 0.00 0.14 0.64
## 3167 0.17 0.00 0.01 0.64
## 3168 0.20 0.09 0.10 0.64
## 3169 0.17 0.00 0.01 0.64
## 3170 0.09 0.27 0.05 0.64
## 3171 0.28 0.00 0.11 0.64
## 3172 0.24 0.00 0.08 0.64
## 3173 0.32 0.00 0.10 0.64
## 3174 0.42 0.00 0.14 0.64
## 3175 0.04 0.00 0.01 0.64
## 3176 0.03 0.00 0.01 0.64
## 3177 0.02 0.01 0.05 0.64
## 3178 0.12 0.00 0.05 0.64
## 3179 0.26 0.11 0.06 0.64
## 3180 0.10 0.04 0.05 0.64
## 3181 0.24 0.00 0.08 0.64
## 3182 0.33 0.01 0.10 0.64
## 3183 0.00 0.00 0.04 0.64
## 3184 0.21 0.01 0.06 0.63
## 3185 0.02 0.00 0.09 0.63
## 3186 0.24 0.00 0.04 0.63
## 3187 0.12 0.00 0.44 0.63
## 3188 0.16 0.00 0.06 0.63
## 3189 0.45 0.03 0.15 0.63
## 3190 0.34 0.00 0.07 0.63
## 3191 0.19 0.00 0.03 0.63
## 3192 0.24 0.00 0.04 0.63
## 3193 0.40 0.00 0.04 0.63
## 3194 0.14 0.00 0.06 0.63
## 3195 0.00 0.63 0.00 0.63
## 3196 0.02 0.00 0.09 0.63
## 3197 0.23 0.01 0.10 0.63
## 3198 0.17 0.00 0.01 0.63
## 3199 0.23 0.00 0.09 0.63
## 3200 0.24 0.00 0.10 0.63
## 3201 0.09 0.00 0.09 0.63
## 3202 0.00 0.63 0.00 0.63
## 3203 0.35 0.00 0.07 0.63
## 3204 0.13 0.00 0.01 0.63
## 3205 0.05 0.25 0.01 0.63
## 3206 0.09 0.00 0.04 0.63
## 3207 0.20 0.00 0.05 0.63
## 3208 0.19 0.00 0.06 0.63
## 3209 0.00 0.00 0.05 0.63
## 3210 0.00 0.63 0.00 0.63
## 3211 0.21 0.00 0.09 0.63
## 3212 0.05 0.00 0.04 0.63
## 3213 0.29 0.01 0.10 0.63
## 3214 0.09 0.38 0.03 0.63
## 3215 0.05 0.00 0.14 0.63
## 3216 0.04 0.00 0.01 0.63
## 3217 0.23 0.00 0.06 0.63
## 3218 0.13 0.00 0.06 0.63
## 3219 0.23 0.00 0.00 0.63
## 3220 0.34 0.00 0.05 0.63
## 3221 0.25 0.00 0.06 0.63
## 3222 0.00 0.63 0.00 0.63
## 3223 0.37 0.00 0.06 0.63
## 3224 0.20 0.16 0.05 0.63
## 3225 0.24 0.00 0.08 0.63
## 3226 0.06 0.34 0.04 0.63
## 3227 0.00 0.59 0.04 0.63
## 3228 0.17 0.00 0.05 0.63
## 3229 0.03 0.15 0.34 0.63
## 3230 0.24 0.00 0.04 0.63
## 3231 0.16 0.00 0.05 0.63
## 3232 0.22 0.00 0.06 0.63
## 3233 0.27 0.01 0.11 0.63
## 3234 0.29 0.00 0.07 0.63
## 3235 0.24 0.00 0.04 0.63
## 3236 0.13 0.00 0.02 0.63
## 3237 0.00 0.32 0.00 0.62
## 3238 0.00 0.62 0.00 0.62
## 3239 0.22 0.00 0.03 0.62
## 3240 0.20 0.00 0.03 0.62
## 3241 0.24 0.00 0.04 0.62
## 3242 0.26 0.00 0.06 0.62
## 3243 0.22 0.11 0.09 0.62
## 3244 0.13 0.29 0.04 0.62
## 3245 0.24 0.00 0.04 0.62
## 3246 0.23 0.08 0.09 0.62
## 3247 0.13 0.00 0.02 0.62
## 3248 0.42 0.00 0.05 0.62
## 3249 0.03 0.00 0.01 0.62
## 3250 0.13 0.00 0.02 0.62
## 3251 0.28 0.00 0.06 0.62
## 3252 0.23 0.22 0.08 0.62
## 3253 0.20 0.00 0.06 0.62
## 3254 0.24 0.00 0.08 0.62
## 3255 0.20 0.07 0.09 0.62
## 3256 0.04 0.57 0.01 0.62
## 3257 0.21 0.00 0.06 0.62
## 3258 0.10 0.12 0.02 0.62
## 3259 0.22 0.00 0.03 0.62
## 3260 0.20 0.00 0.02 0.62
## 3261 0.34 0.02 0.09 0.62
## 3262 0.23 0.00 0.04 0.62
## 3263 0.00 0.00 0.04 0.62
## 3264 0.24 0.00 0.08 0.62
## 3265 0.01 0.00 0.04 0.62
## 3266 0.14 0.27 0.06 0.62
## 3267 0.03 0.00 0.01 0.62
## 3268 0.18 0.09 0.08 0.62
## 3269 0.23 0.00 0.14 0.62
## 3270 0.14 0.23 0.04 0.62
## 3271 0.24 0.00 0.08 0.62
## 3272 0.00 0.62 0.00 0.62
## 3273 0.12 0.00 0.02 0.62
## 3274 0.17 0.00 0.11 0.62
## 3275 0.00 0.62 0.00 0.62
## 3276 0.00 0.62 0.00 0.62
## 3277 0.26 0.00 0.07 0.62
## 3278 0.03 0.00 0.00 0.62
## 3279 0.00 0.62 0.00 0.62
## 3280 0.00 0.62 0.00 0.62
## 3281 0.02 0.00 0.00 0.62
## 3282 0.00 0.58 0.04 0.62
## 3283 0.57 0.04 0.00 0.61
## 3284 0.13 0.11 0.04 0.61
## 3285 0.00 0.00 0.05 0.61
## 3286 0.04 0.00 0.57 0.61
## 3287 0.15 0.00 0.11 0.61
## 3288 0.29 0.01 0.11 0.61
## 3289 0.13 0.00 0.02 0.61
## 3290 0.02 0.57 0.01 0.61
## 3291 0.11 0.34 0.05 0.61
## 3292 0.18 0.00 0.05 0.61
## 3293 0.16 0.00 0.01 0.61
## 3294 0.23 0.00 0.08 0.61
## 3295 0.16 0.00 0.01 0.61
## 3296 0.21 0.00 0.05 0.61
## 3297 0.10 0.00 0.05 0.61
## 3298 0.23 0.00 0.05 0.61
## 3299 0.07 0.00 0.04 0.61
## 3300 0.16 0.00 0.01 0.61
## 3301 0.23 0.00 0.08 0.61
## 3302 0.00 0.00 0.03 0.61
## 3303 0.00 0.61 0.00 0.61
## 3304 0.44 0.00 0.07 0.61
## 3305 0.17 0.14 0.05 0.61
## 3306 0.23 0.00 0.04 0.61
## 3307 0.07 0.42 0.03 0.61
## 3308 0.24 0.00 0.06 0.61
## 3309 0.21 0.00 0.03 0.61
## 3310 0.23 0.00 0.04 0.61
## 3311 0.09 0.01 0.04 0.61
## 3312 0.27 0.00 0.15 0.61
## 3313 0.00 0.00 0.05 0.61
## 3314 0.03 0.21 0.03 0.61
## 3315 0.00 0.00 0.05 0.61
## 3316 0.00 0.00 0.05 0.61
## 3317 0.23 0.00 0.06 0.61
## 3318 0.10 0.22 0.01 0.61
## 3319 0.16 0.00 0.01 0.61
## 3320 0.23 0.00 0.04 0.61
## 3321 0.16 0.00 0.01 0.61
## 3322 0.16 0.00 0.01 0.61
## 3323 0.12 0.00 0.02 0.61
## 3324 0.21 0.00 0.06 0.61
## 3325 0.16 0.01 0.06 0.61
## 3326 0.16 0.00 0.01 0.61
## 3327 0.02 0.00 0.00 0.61
## 3328 0.05 0.00 0.05 0.61
## 3329 0.16 0.00 0.01 0.61
## 3330 0.20 0.00 0.06 0.61
## 3331 0.02 0.00 0.08 0.61
## 3332 0.24 0.00 0.06 0.61
## 3333 0.24 0.00 0.06 0.61
## 3334 0.14 0.33 0.02 0.60
## 3335 0.16 0.00 0.01 0.60
## 3336 0.11 0.25 0.06 0.60
## 3337 0.16 0.00 0.01 0.60
## 3338 0.02 0.00 0.08 0.60
## 3339 0.10 0.09 0.02 0.60
## 3340 0.23 0.00 0.08 0.60
## 3341 0.16 0.00 0.02 0.60
## 3342 0.00 0.60 0.00 0.60
## 3343 0.25 0.00 0.06 0.60
## 3344 0.02 0.00 0.08 0.60
## 3345 0.19 0.00 0.05 0.60
## 3346 0.22 0.00 0.05 0.60
## 3347 0.28 0.00 0.07 0.60
## 3348 0.19 0.20 0.04 0.60
## 3349 0.15 0.00 0.08 0.60
## 3350 0.22 0.03 0.05 0.60
## 3351 0.25 0.04 0.09 0.60
## 3352 0.37 0.00 0.10 0.60
## 3353 0.14 0.21 0.04 0.60
## 3354 0.18 0.00 0.29 0.60
## 3355 0.23 0.00 0.08 0.60
## 3356 0.24 0.00 0.14 0.60
## 3357 0.02 0.00 0.08 0.60
## 3358 0.00 0.60 0.00 0.60
## 3359 0.23 0.00 0.08 0.60
## 3360 0.21 0.00 0.05 0.60
## 3361 0.08 0.14 0.01 0.60
## 3362 0.26 0.23 0.02 0.60
## 3363 0.15 0.00 0.06 0.60
## 3364 0.23 0.00 0.08 0.60
## 3365 0.23 0.00 0.04 0.60
## 3366 0.00 0.56 0.04 0.60
## 3367 0.00 0.56 0.04 0.60
## 3368 0.03 0.03 0.05 0.60
## 3369 0.25 0.00 0.11 0.60
## 3370 0.28 0.00 0.06 0.60
## 3371 0.23 0.00 0.04 0.60
## 3372 0.01 0.00 0.04 0.60
## 3373 0.00 0.60 0.00 0.60
## 3374 0.13 0.00 0.07 0.60
## 3375 0.16 0.00 0.05 0.60
## 3376 0.20 0.00 0.06 0.60
## 3377 0.24 0.00 0.10 0.60
## 3378 0.23 0.00 0.08 0.60
## 3379 0.22 0.00 0.06 0.60
## 3380 0.22 0.00 0.09 0.60
## 3381 0.00 0.60 0.00 0.60
## 3382 0.00 0.31 0.02 0.60
## 3383 0.53 0.00 0.06 0.59
## 3384 0.23 0.00 0.08 0.59
## 3385 0.35 0.00 0.11 0.59
## 3386 0.46 0.00 0.07 0.59
## 3387 0.38 0.00 0.07 0.59
## 3388 0.00 0.59 0.00 0.59
## 3389 0.00 0.00 0.03 0.59
## 3390 0.00 0.56 0.04 0.59
## 3391 0.34 0.00 0.10 0.59
## 3392 0.22 0.00 0.04 0.59
## 3393 0.22 0.00 0.04 0.59
## 3394 0.12 0.00 0.02 0.59
## 3395 0.11 0.23 0.03 0.59
## 3396 0.22 0.00 0.06 0.59
## 3397 0.28 0.05 0.10 0.59
## 3398 0.22 0.00 0.04 0.59
## 3399 0.31 0.00 0.09 0.59
## 3400 0.00 0.55 0.04 0.59
## 3401 0.23 0.00 0.08 0.59
## 3402 0.00 0.59 0.00 0.59
## 3403 0.24 0.00 0.14 0.59
## 3404 0.03 0.00 0.01 0.59
## 3405 0.28 0.00 0.07 0.59
## 3406 0.17 0.16 0.06 0.59
## 3407 0.13 0.00 0.02 0.59
## 3408 0.12 0.00 0.02 0.59
## 3409 0.03 0.00 0.01 0.59
## 3410 0.00 0.00 0.04 0.59
## 3411 0.02 0.00 0.04 0.59
## 3412 0.03 0.00 0.04 0.59
## 3413 0.11 0.00 0.01 0.59
## 3414 0.11 0.00 0.01 0.59
## 3415 0.21 0.00 0.05 0.59
## 3416 0.08 0.14 0.02 0.59
## 3417 0.00 0.59 0.00 0.59
## 3418 0.14 0.02 0.04 0.59
## 3419 0.16 0.00 0.07 0.59
## 3420 0.09 0.42 0.03 0.59
## 3421 0.22 0.01 0.23 0.59
## 3422 0.00 0.01 0.03 0.59
## 3423 0.04 0.00 0.05 0.59
## 3424 0.18 0.00 0.05 0.59
## 3425 0.22 0.00 0.04 0.59
## 3426 0.34 0.00 0.07 0.59
## 3427 0.22 0.00 0.08 0.59
## 3428 0.02 0.13 0.04 0.59
## 3429 0.22 0.08 0.08 0.59
## 3430 0.14 0.00 0.10 0.59
## 3431 0.25 0.00 0.09 0.59
## 3432 0.21 0.00 0.09 0.59
## 3433 0.13 0.11 0.01 0.59
## 3434 0.22 0.00 0.07 0.59
## 3435 0.37 0.00 0.07 0.59
## 3436 0.00 0.59 0.00 0.59
## 3437 0.22 0.00 0.10 0.59
## 3438 0.17 0.14 0.06 0.58
## 3439 0.37 0.00 0.07 0.58
## 3440 0.01 0.00 0.04 0.58
## 3441 0.22 0.00 0.07 0.58
## 3442 0.23 0.00 0.06 0.58
## 3443 0.25 0.00 0.05 0.58
## 3444 0.00 0.55 0.04 0.58
## 3445 0.19 0.07 0.04 0.58
## 3446 0.02 0.00 0.04 0.58
## 3447 0.18 0.00 0.10 0.58
## 3448 0.03 0.00 0.01 0.58
## 3449 0.04 0.47 0.01 0.58
## 3450 0.02 0.00 0.08 0.58
## 3451 0.03 0.17 0.03 0.58
## 3452 0.31 0.00 0.07 0.58
## 3453 0.18 0.00 0.05 0.58
## 3454 0.18 0.00 0.39 0.58
## 3455 0.22 0.02 0.04 0.58
## 3456 0.29 0.00 0.07 0.58
## 3457 0.22 0.00 0.05 0.58
## 3458 0.30 0.00 0.07 0.58
## 3459 0.00 0.00 0.04 0.58
## 3460 0.19 0.02 0.06 0.58
## 3461 0.22 0.00 0.04 0.58
## 3462 0.26 0.00 0.05 0.58
## 3463 0.22 0.00 0.07 0.58
## 3464 0.15 0.00 0.05 0.58
## 3465 0.06 0.22 0.03 0.58
## 3466 0.39 0.00 0.03 0.58
## 3467 0.40 0.00 0.04 0.58
## 3468 0.30 0.19 0.03 0.58
## 3469 0.22 0.00 0.07 0.58
## 3470 0.22 0.00 0.07 0.58
## 3471 0.16 0.16 0.04 0.58
## 3472 0.00 0.54 0.04 0.58
## 3473 0.22 0.00 0.03 0.58
## 3474 0.22 0.00 0.07 0.58
## 3475 0.22 0.00 0.04 0.58
## 3476 0.15 0.00 0.01 0.58
## 3477 0.00 0.31 0.02 0.58
## 3478 0.02 0.50 0.01 0.58
## 3479 0.00 0.00 0.04 0.58
## 3480 0.22 0.00 0.07 0.58
## 3481 0.22 0.00 0.04 0.58
## 3482 0.00 0.58 0.00 0.58
## 3483 0.00 0.00 0.04 0.58
## 3484 0.27 0.00 0.09 0.58
## 3485 0.05 0.26 0.03 0.58
## 3486 0.00 0.58 0.00 0.58
## 3487 0.09 0.00 0.06 0.58
## 3488 0.11 0.14 0.06 0.58
## 3489 0.10 0.06 0.06 0.58
## 3490 0.22 0.00 0.04 0.58
## 3491 0.12 0.00 0.02 0.58
## 3492 0.00 0.00 0.04 0.58
## 3493 0.22 0.00 0.07 0.58
## 3494 0.02 0.00 0.08 0.58
## 3495 0.12 0.00 0.07 0.58
## 3496 0.41 0.01 0.06 0.58
## 3497 0.02 0.00 0.04 0.58
## 3498 0.22 0.00 0.04 0.58
## 3499 0.17 0.02 0.05 0.58
## 3500 0.02 0.00 0.00 0.58
## 3501 0.53 0.00 0.04 0.58
## 3502 0.02 0.00 0.03 0.58
## 3503 0.22 0.00 0.07 0.58
## 3504 0.37 0.00 0.12 0.57
## 3505 0.00 0.27 0.02 0.57
## 3506 0.16 0.13 0.04 0.57
## 3507 0.23 0.00 0.06 0.57
## 3508 0.04 0.00 0.04 0.57
## 3509 0.00 0.00 0.04 0.57
## 3510 0.24 0.00 0.02 0.57
## 3511 0.22 0.00 0.07 0.57
## 3512 0.15 0.00 0.01 0.57
## 3513 0.28 0.00 0.06 0.57
## 3514 0.00 0.57 0.00 0.57
## 3515 0.15 0.00 0.05 0.57
## 3516 0.24 0.00 0.06 0.57
## 3517 0.00 0.54 0.04 0.57
## 3518 0.15 0.00 0.01 0.57
## 3519 0.24 0.01 0.09 0.57
## 3520 0.00 0.00 0.04 0.57
## 3521 0.08 0.35 0.04 0.57
## 3522 0.02 0.00 0.33 0.57
## 3523 0.23 0.00 0.13 0.57
## 3524 0.27 0.00 0.06 0.57
## 3525 0.11 0.00 0.02 0.57
## 3526 0.17 0.04 0.05 0.57
## 3527 0.45 0.00 0.11 0.57
## 3528 0.01 0.00 0.04 0.57
## 3529 0.02 0.00 0.08 0.57
## 3530 0.15 0.00 0.04 0.57
## 3531 0.02 0.00 0.04 0.57
## 3532 0.12 0.03 0.07 0.57
## 3533 0.00 0.57 0.00 0.57
## 3534 0.08 0.00 0.00 0.57
## 3535 0.01 0.00 0.04 0.57
## 3536 0.12 0.29 0.07 0.57
## 3537 0.25 0.00 0.05 0.57
## 3538 0.12 0.00 0.02 0.57
## 3539 0.08 0.35 0.03 0.57
## 3540 0.20 0.00 0.05 0.57
## 3541 0.03 0.00 0.04 0.57
## 3542 0.22 0.00 0.07 0.57
## 3543 0.02 0.00 0.08 0.57
## 3544 0.11 0.02 0.02 0.57
## 3545 0.00 0.57 0.00 0.57
## 3546 0.10 0.00 0.02 0.57
## 3547 0.25 0.04 0.09 0.57
## 3548 0.00 0.57 0.00 0.57
## 3549 0.22 0.00 0.06 0.57
## 3550 0.16 0.00 0.02 0.57
## 3551 0.15 0.17 0.05 0.57
## 3552 0.21 0.00 0.04 0.57
## 3553 0.22 0.00 0.07 0.57
## 3554 0.19 0.00 0.09 0.57
## 3555 0.12 0.00 0.05 0.57
## 3556 0.31 0.00 0.06 0.57
## 3557 0.40 0.00 0.07 0.57
## 3558 0.22 0.05 0.09 0.57
## 3559 0.28 0.00 0.05 0.56
## 3560 0.08 0.34 0.04 0.56
## 3561 0.11 0.00 0.02 0.56
## 3562 0.18 0.09 0.06 0.56
## 3563 0.04 0.24 0.03 0.56
## 3564 0.15 0.00 0.01 0.56
## 3565 0.15 0.00 0.01 0.56
## 3566 0.22 0.00 0.07 0.56
## 3567 0.15 0.00 0.01 0.56
## 3568 0.22 0.00 0.07 0.56
## 3569 0.11 0.13 0.01 0.56
## 3570 0.14 0.00 0.02 0.56
## 3571 0.22 0.00 0.07 0.56
## 3572 0.21 0.00 0.04 0.56
## 3573 0.21 0.00 0.07 0.56
## 3574 0.08 0.00 0.07 0.56
## 3575 0.15 0.00 0.01 0.56
## 3576 0.21 0.00 0.07 0.56
## 3577 0.05 0.22 0.03 0.56
## 3578 0.21 0.00 0.07 0.56
## 3579 0.21 0.00 0.04 0.56
## 3580 0.19 0.00 0.05 0.56
## 3581 0.21 0.00 0.07 0.56
## 3582 0.15 0.00 0.02 0.56
## 3583 0.22 0.00 0.06 0.56
## 3584 0.21 0.00 0.07 0.56
## 3585 0.15 0.00 0.01 0.56
## 3586 0.11 0.00 0.02 0.56
## 3587 0.21 0.00 0.04 0.56
## 3588 0.11 0.00 0.04 0.56
## 3589 0.02 0.00 0.04 0.56
## 3590 0.11 0.00 0.02 0.56
## 3591 0.09 0.07 0.01 0.56
## 3592 0.02 0.45 0.00 0.56
## 3593 0.21 0.00 0.07 0.56
## 3594 0.14 0.12 0.04 0.56
## 3595 0.12 0.26 0.04 0.56
## 3596 0.08 0.00 0.04 0.56
## 3597 0.09 0.27 0.06 0.56
## 3598 0.15 0.01 0.05 0.56
## 3599 0.35 0.00 0.07 0.56
## 3600 0.00 0.56 0.00 0.56
## 3601 0.21 0.00 0.07 0.56
## 3602 0.23 0.00 0.06 0.56
## 3603 0.21 0.00 0.07 0.56
## 3604 0.15 0.00 0.01 0.56
## 3605 0.15 0.00 0.01 0.56
## 3606 0.15 0.00 0.02 0.56
## 3607 0.18 0.00 0.05 0.56
## 3608 0.24 0.00 0.14 0.56
## 3609 0.21 0.00 0.07 0.56
## 3610 0.00 0.56 0.00 0.56
## 3611 0.02 0.00 0.04 0.56
## 3612 0.02 0.00 0.02 0.56
## 3613 0.00 0.56 0.00 0.56
## 3614 0.23 0.00 0.04 0.56
## 3615 0.04 0.00 0.04 0.56
## 3616 0.09 0.22 0.06 0.56
## 3617 0.23 0.00 0.06 0.56
## 3618 0.26 0.00 0.06 0.56
## 3619 0.21 0.00 0.07 0.56
## 3620 0.02 0.14 0.03 0.56
## 3621 0.02 0.00 0.03 0.56
## 3622 0.00 0.00 0.04 0.56
## 3623 0.21 0.00 0.07 0.56
## 3624 0.36 0.00 0.02 0.56
## 3625 0.12 0.00 0.01 0.56
## 3626 0.08 0.02 0.06 0.56
## 3627 0.14 0.00 0.05 0.56
## 3628 0.18 0.06 0.04 0.55
## 3629 0.20 0.14 0.07 0.55
## 3630 0.21 0.00 0.04 0.55
## 3631 0.11 0.00 0.04 0.55
## 3632 0.16 0.00 0.05 0.55
## 3633 0.21 0.00 0.07 0.55
## 3634 0.01 0.15 0.06 0.55
## 3635 0.13 0.00 0.08 0.55
## 3636 0.11 0.00 0.02 0.55
## 3637 0.00 0.55 0.00 0.55
## 3638 0.28 0.00 0.05 0.55
## 3639 0.22 0.00 0.09 0.55
## 3640 0.13 0.00 0.02 0.55
## 3641 0.00 0.52 0.04 0.55
## 3642 0.00 0.55 0.00 0.55
## 3643 0.17 0.00 0.07 0.55
## 3644 0.03 0.00 0.01 0.55
## 3645 0.21 0.00 0.04 0.55
## 3646 0.00 0.00 0.04 0.55
## 3647 0.21 0.00 0.04 0.55
## 3648 0.00 0.55 0.00 0.55
## 3649 0.00 0.55 0.00 0.55
## 3650 0.16 0.12 0.05 0.55
## 3651 0.21 0.00 0.07 0.55
## 3652 0.15 0.04 0.07 0.55
## 3653 0.16 0.03 0.05 0.55
## 3654 0.04 0.00 0.04 0.55
## 3655 0.27 0.00 0.10 0.55
## 3656 0.22 0.00 0.00 0.55
## 3657 0.33 0.00 0.05 0.55
## 3658 0.00 0.55 0.00 0.55
## 3659 0.01 0.00 0.05 0.55
## 3660 0.00 0.00 0.04 0.55
## 3661 0.00 0.00 0.04 0.55
## 3662 0.18 0.00 0.02 0.55
## 3663 0.08 0.24 0.01 0.55
## 3664 0.21 0.00 0.04 0.55
## 3665 0.25 0.02 0.09 0.55
## 3666 0.21 0.00 0.04 0.55
## 3667 0.00 0.51 0.04 0.55
## 3668 0.00 0.55 0.00 0.55
## 3669 0.13 0.00 0.02 0.55
## 3670 0.00 0.55 0.00 0.55
## 3671 0.21 0.07 0.08 0.55
## 3672 0.15 0.00 0.01 0.55
## 3673 0.00 0.55 0.00 0.55
## 3674 0.19 0.00 0.05 0.55
## 3675 0.00 0.21 0.03 0.55
## 3676 0.02 0.00 0.04 0.55
## 3677 0.15 0.00 0.01 0.55
## 3678 0.05 0.36 0.02 0.55
## 3679 0.20 0.02 0.04 0.55
## 3680 0.14 0.00 0.02 0.55
## 3681 0.02 0.00 0.07 0.55
## 3682 0.24 0.03 0.05 0.55
## 3683 0.00 0.00 0.04 0.55
## 3684 0.21 0.00 0.07 0.55
## 3685 0.21 0.00 0.04 0.55
## 3686 0.12 0.00 0.02 0.55
## 3687 0.08 0.13 0.07 0.55
## 3688 0.32 0.00 0.10 0.54
## 3689 0.00 0.00 0.19 0.54
## 3690 0.06 0.00 0.48 0.54
## 3691 0.02 0.00 0.04 0.54
## 3692 0.03 0.01 0.05 0.54
## 3693 0.12 0.00 0.02 0.54
## 3694 0.35 0.00 0.04 0.54
## 3695 0.00 0.54 0.00 0.54
## 3696 0.00 0.54 0.00 0.54
## 3697 0.03 0.08 0.04 0.54
## 3698 0.17 0.04 0.05 0.54
## 3699 0.40 0.00 0.07 0.54
## 3700 0.11 0.00 0.02 0.54
## 3701 0.27 0.02 0.14 0.54
## 3702 0.21 0.00 0.07 0.54
## 3703 0.08 0.03 0.04 0.54
## 3704 0.33 0.01 0.11 0.54
## 3705 0.20 0.00 0.08 0.54
## 3706 0.11 0.25 0.04 0.54
## 3707 0.14 0.00 0.01 0.54
## 3708 0.30 0.00 0.09 0.54
## 3709 0.14 0.38 0.02 0.54
## 3710 0.00 0.54 0.00 0.54
## 3711 0.21 0.00 0.05 0.54
## 3712 0.24 0.10 0.07 0.54
## 3713 0.23 0.00 0.06 0.54
## 3714 0.21 0.00 0.07 0.54
## 3715 0.09 0.00 0.04 0.54
## 3716 0.10 0.00 0.02 0.54
## 3717 0.03 0.00 0.01 0.54
## 3718 0.10 0.00 0.01 0.54
## 3719 0.39 0.00 0.03 0.54
## 3720 0.00 0.54 0.00 0.54
## 3721 0.10 0.01 0.04 0.54
## 3722 0.13 0.13 0.06 0.54
## 3723 0.06 0.35 0.04 0.54
## 3724 0.08 0.16 0.01 0.54
## 3725 0.00 0.54 0.00 0.54
## 3726 0.23 0.00 0.06 0.54
## 3727 0.00 0.50 0.04 0.54
## 3728 0.10 0.00 0.04 0.54
## 3729 0.16 0.18 0.09 0.54
## 3730 0.21 0.00 0.05 0.54
## 3731 0.00 0.00 0.03 0.54
## 3732 0.03 0.15 0.03 0.54
## 3733 0.29 0.01 0.11 0.54
## 3734 0.23 0.00 0.09 0.54
## 3735 0.14 0.00 0.01 0.54
## 3736 0.17 0.00 0.05 0.54
## 3737 0.11 0.00 0.01 0.54
## 3738 0.14 0.00 0.05 0.54
## 3739 0.06 0.00 0.02 0.54
## 3740 0.08 0.00 0.04 0.54
## 3741 0.01 0.10 0.04 0.54
## 3742 0.00 0.54 0.00 0.54
## 3743 0.21 0.00 0.07 0.54
## 3744 0.05 0.48 0.00 0.54
## 3745 0.02 0.00 0.07 0.54
## 3746 0.20 0.00 0.04 0.54
## 3747 0.32 0.00 0.08 0.54
## 3748 0.17 0.00 0.04 0.54
## 3749 0.03 0.00 0.01 0.54
## 3750 0.01 0.48 0.00 0.54
## 3751 0.20 0.00 0.07 0.54
## 3752 0.20 0.00 0.07 0.54
## 3753 0.05 0.24 0.03 0.54
## 3754 0.11 0.00 0.01 0.54
## 3755 0.20 0.00 0.07 0.54
## 3756 0.37 0.00 0.04 0.54
## 3757 0.00 0.53 0.00 0.53
## 3758 0.27 0.00 0.05 0.53
## 3759 0.20 0.00 0.07 0.53
## 3760 0.05 0.38 0.03 0.53
## 3761 0.02 0.00 0.07 0.53
## 3762 0.00 0.00 0.04 0.53
## 3763 0.20 0.00 0.07 0.53
## 3764 0.07 0.17 0.05 0.53
## 3765 0.07 0.27 0.05 0.53
## 3766 0.20 0.00 0.07 0.53
## 3767 0.14 0.00 0.01 0.53
## 3768 0.02 0.00 0.07 0.53
## 3769 0.20 0.00 0.03 0.53
## 3770 0.20 0.00 0.07 0.53
## 3771 0.11 0.00 0.02 0.53
## 3772 0.00 0.33 0.02 0.53
## 3773 0.21 0.00 0.06 0.53
## 3774 0.20 0.00 0.07 0.53
## 3775 0.20 0.00 0.03 0.53
## 3776 0.20 0.00 0.07 0.53
## 3777 0.11 0.00 0.02 0.53
## 3778 0.20 0.00 0.03 0.53
## 3779 0.19 0.02 0.04 0.53
## 3780 0.10 0.00 0.04 0.53
## 3781 0.00 0.53 0.00 0.53
## 3782 0.00 0.53 0.00 0.53
## 3783 0.00 0.53 0.00 0.53
## 3784 0.17 0.00 0.02 0.53
## 3785 0.32 0.00 0.12 0.53
## 3786 0.14 0.12 0.04 0.53
## 3787 0.19 0.00 0.01 0.53
## 3788 0.26 0.02 0.14 0.53
## 3789 0.19 0.00 0.02 0.53
## 3790 0.28 0.00 0.09 0.53
## 3791 0.20 0.00 0.07 0.53
## 3792 0.19 0.00 0.03 0.53
## 3793 0.20 0.00 0.07 0.53
## 3794 0.27 0.02 0.05 0.53
## 3795 0.09 0.00 0.01 0.53
## 3796 0.00 0.00 0.04 0.53
## 3797 0.10 0.00 0.08 0.53
## 3798 0.11 0.00 0.01 0.53
## 3799 0.21 0.00 0.05 0.53
## 3800 0.00 0.00 0.03 0.53
## 3801 0.00 0.49 0.03 0.53
## 3802 0.20 0.01 0.08 0.53
## 3803 0.15 0.00 0.05 0.53
## 3804 0.20 0.00 0.05 0.53
## 3805 0.26 0.00 0.10 0.53
## 3806 0.00 0.00 0.04 0.53
## 3807 0.29 0.00 0.16 0.53
## 3808 0.20 0.00 0.07 0.53
## 3809 0.11 0.00 0.01 0.53
## 3810 0.20 0.00 0.07 0.53
## 3811 0.02 0.00 0.07 0.53
## 3812 0.20 0.00 0.13 0.53
## 3813 0.00 0.53 0.00 0.53
## 3814 0.01 0.00 0.04 0.53
## 3815 0.17 0.00 0.08 0.53
## 3816 0.03 0.16 0.03 0.53
## 3817 0.13 0.00 0.05 0.53
## 3818 0.16 0.04 0.10 0.53
## 3819 0.03 0.00 0.00 0.53
## 3820 0.03 0.00 0.00 0.53
## 3821 0.00 0.49 0.03 0.53
## 3822 0.20 0.00 0.07 0.53
## 3823 0.09 0.19 0.01 0.52
## 3824 0.00 0.52 0.00 0.52
## 3825 0.01 0.00 0.04 0.52
## 3826 0.20 0.00 0.03 0.52
## 3827 0.01 0.02 0.04 0.52
## 3828 0.00 0.52 0.00 0.52
## 3829 0.11 0.00 0.04 0.52
## 3830 0.37 0.00 0.07 0.52
## 3831 0.04 0.00 0.04 0.52
## 3832 0.02 0.00 0.05 0.52
## 3833 0.00 0.00 0.39 0.52
## 3834 0.20 0.00 0.03 0.52
## 3835 0.00 0.00 0.04 0.52
## 3836 0.20 0.00 0.03 0.52
## 3837 0.04 0.00 0.04 0.52
## 3838 0.14 0.16 0.05 0.52
## 3839 0.20 0.00 0.07 0.52
## 3840 0.11 0.00 0.02 0.52
## 3841 0.08 0.22 0.04 0.52
## 3842 0.00 0.02 0.04 0.52
## 3843 0.12 0.00 0.06 0.52
## 3844 0.20 0.00 0.03 0.52
## 3845 0.07 0.16 0.01 0.52
## 3846 0.20 0.00 0.03 0.52
## 3847 0.07 0.28 0.02 0.52
## 3848 0.08 0.28 0.03 0.52
## 3849 0.29 0.00 0.06 0.52
## 3850 0.24 0.00 0.05 0.52
## 3851 0.15 0.01 0.10 0.52
## 3852 0.32 0.00 0.11 0.52
## 3853 0.02 0.00 0.03 0.52
## 3854 0.21 0.00 0.09 0.52
## 3855 0.13 0.18 0.04 0.52
## 3856 0.00 0.52 0.00 0.52
## 3857 0.19 0.02 0.06 0.52
## 3858 0.04 0.00 0.04 0.52
## 3859 0.20 0.00 0.07 0.52
## 3860 0.12 0.00 0.02 0.52
## 3861 0.14 0.00 0.01 0.52
## 3862 0.04 0.08 0.04 0.52
## 3863 0.00 0.01 0.04 0.52
## 3864 0.20 0.00 0.07 0.52
## 3865 0.07 0.31 0.03 0.52
## 3866 0.00 0.52 0.00 0.52
## 3867 0.20 0.00 0.07 0.52
## 3868 0.14 0.00 0.01 0.52
## 3869 0.14 0.00 0.01 0.52
## 3870 0.00 0.00 0.04 0.52
## 3871 0.11 0.20 0.03 0.52
## 3872 0.05 0.00 0.00 0.52
## 3873 0.12 0.00 0.05 0.52
## 3874 0.11 0.00 0.02 0.52
## 3875 0.19 0.00 0.03 0.52
## 3876 0.20 0.00 0.07 0.52
## 3877 0.02 0.00 0.04 0.51
## 3878 0.10 0.25 0.03 0.51
## 3879 0.46 0.00 0.06 0.51
## 3880 0.17 0.01 0.04 0.51
## 3881 0.03 0.00 0.01 0.51
## 3882 0.20 0.00 0.07 0.51
## 3883 0.13 0.00 0.04 0.51
## 3884 0.07 0.27 0.05 0.51
## 3885 0.25 0.00 0.09 0.51
## 3886 0.05 0.35 0.03 0.51
## 3887 0.12 0.00 0.04 0.51
## 3888 0.20 0.00 0.07 0.51
## 3889 0.29 0.00 0.04 0.51
## 3890 0.18 0.00 0.04 0.51
## 3891 0.20 0.07 0.12 0.51
## 3892 0.21 0.00 0.05 0.51
## 3893 0.23 0.02 0.09 0.51
## 3894 0.27 0.06 0.05 0.51
## 3895 0.21 0.00 0.05 0.51
## 3896 0.00 0.51 0.00 0.51
## 3897 0.10 0.00 0.01 0.51
## 3898 0.00 0.51 0.00 0.51
## 3899 0.20 0.00 0.07 0.51
## 3900 0.19 0.00 0.03 0.51
## 3901 0.00 0.00 0.04 0.51
## 3902 0.01 0.00 0.04 0.51
## 3903 0.03 0.17 0.03 0.51
## 3904 0.01 0.30 0.02 0.51
## 3905 0.14 0.00 0.01 0.51
## 3906 0.09 0.02 0.04 0.51
## 3907 0.09 0.00 0.01 0.51
## 3908 0.00 0.51 0.00 0.51
## 3909 0.26 0.22 0.02 0.51
## 3910 0.00 0.00 0.04 0.51
## 3911 0.13 0.00 0.05 0.51
## 3912 0.19 0.00 0.08 0.51
## 3913 0.02 0.00 0.04 0.51
## 3914 0.23 0.00 0.09 0.51
## 3915 0.04 0.00 0.02 0.51
## 3916 0.00 0.48 0.03 0.51
## 3917 0.14 0.00 0.01 0.51
## 3918 0.03 0.00 0.04 0.51
## 3919 0.12 0.20 0.04 0.51
## 3920 0.22 0.02 0.09 0.51
## 3921 0.04 0.11 0.04 0.51
## 3922 0.28 0.00 0.15 0.51
## 3923 0.16 0.00 0.05 0.51
## 3924 0.02 0.30 0.02 0.51
## 3925 0.03 0.07 0.04 0.51
## 3926 0.02 0.00 0.07 0.51
## 3927 0.21 0.00 0.12 0.51
## 3928 0.19 0.01 0.04 0.51
## 3929 0.01 0.00 0.03 0.51
## 3930 0.11 0.00 0.02 0.51
## 3931 0.19 0.00 0.06 0.51
## 3932 0.00 0.51 0.00 0.51
## 3933 0.05 0.00 0.04 0.51
## 3934 0.24 0.00 0.08 0.51
## 3935 0.42 0.00 0.09 0.51
## 3936 0.13 0.00 0.01 0.51
## 3937 0.19 0.00 0.06 0.51
## 3938 0.01 0.00 0.04 0.51
## 3939 0.11 0.00 0.02 0.51
## 3940 0.19 0.00 0.06 0.51
## 3941 0.03 0.00 0.01 0.51
## 3942 0.17 0.05 0.06 0.51
## 3943 0.17 0.00 0.05 0.51
## 3944 0.25 0.02 0.09 0.51
## 3945 0.19 0.00 0.06 0.51
## 3946 0.33 0.00 0.06 0.51
## 3947 0.19 0.00 0.03 0.51
## 3948 0.13 0.00 0.01 0.50
## 3949 0.35 0.00 0.06 0.50
## 3950 0.01 0.00 0.04 0.50
## 3951 0.02 0.00 0.07 0.50
## 3952 0.19 0.00 0.06 0.50
## 3953 0.21 0.01 0.05 0.50
## 3954 0.03 0.00 0.01 0.50
## 3955 0.15 0.04 0.04 0.50
## 3956 0.34 0.00 0.07 0.50
## 3957 0.12 0.00 0.07 0.50
## 3958 0.06 0.00 0.02 0.50
## 3959 0.12 0.11 0.05 0.50
## 3960 0.00 0.50 0.00 0.50
## 3961 0.02 0.32 0.02 0.50
## 3962 0.10 0.00 0.01 0.50
## 3963 0.19 0.00 0.03 0.50
## 3964 0.19 0.00 0.06 0.50
## 3965 0.19 0.00 0.06 0.50
## 3966 0.19 0.00 0.06 0.50
## 3967 0.03 0.00 0.01 0.50
## 3968 0.19 0.00 0.06 0.50
## 3969 0.19 0.00 0.06 0.50
## 3970 0.19 0.00 0.04 0.50
## 3971 0.26 0.00 0.04 0.50
## 3972 0.12 0.00 0.04 0.50
## 3973 0.03 0.00 0.04 0.50
## 3974 0.07 0.18 0.02 0.50
## 3975 0.11 0.07 0.05 0.50
## 3976 0.00 0.00 0.04 0.50
## 3977 0.09 0.00 0.01 0.50
## 3978 0.01 0.00 0.04 0.50
## 3979 0.19 0.00 0.06 0.50
## 3980 0.05 0.31 0.01 0.50
## 3981 0.04 0.17 0.02 0.50
## 3982 0.00 0.50 0.00 0.50
## 3983 0.18 0.00 0.05 0.50
## 3984 0.01 0.00 0.04 0.50
## 3985 0.02 0.03 0.04 0.50
## 3986 0.19 0.00 0.03 0.50
## 3987 0.10 0.08 0.02 0.50
## 3988 0.07 0.29 0.03 0.50
## 3989 0.25 0.01 0.13 0.50
## 3990 0.19 0.00 0.06 0.50
## 3991 0.22 0.00 0.08 0.50
## 3992 0.19 0.00 0.06 0.50
## 3993 0.16 0.00 0.04 0.50
## 3994 0.02 0.00 0.07 0.50
## 3995 0.00 0.00 0.03 0.50
## 3996 0.24 0.00 0.04 0.50
## 3997 0.00 0.00 0.04 0.50
## 3998 0.08 0.28 0.03 0.50
## 3999 0.17 0.00 0.05 0.50
## 4000 0.16 0.00 0.05 0.50
## 4001 0.10 0.00 0.01 0.50
## 4002 0.19 0.00 0.06 0.50
## 4003 0.00 0.50 0.00 0.50
## 4004 0.07 0.32 0.03 0.50
## 4005 0.19 0.00 0.06 0.50
## 4006 0.13 0.00 0.01 0.50
## 4007 0.00 0.50 0.00 0.50
## 4008 0.00 0.46 0.03 0.50
## 4009 0.02 0.00 0.07 0.50
## 4010 0.01 0.00 0.07 0.50
## 4011 0.20 0.00 0.08 0.50
## 4012 0.19 0.00 0.06 0.50
## 4013 0.20 0.01 0.04 0.50
## 4014 0.03 0.00 0.01 0.50
## 4015 0.19 0.00 0.06 0.50
## 4016 0.03 0.00 0.01 0.50
## 4017 0.03 0.00 0.01 0.50
## 4018 0.15 0.12 0.03 0.50
## 4019 0.00 0.00 0.04 0.49
## 4020 0.12 0.03 0.04 0.49
## 4021 0.17 0.13 0.03 0.49
## 4022 0.15 0.05 0.04 0.49
## 4023 0.02 0.00 0.04 0.49
## 4024 0.13 0.00 0.01 0.49
## 4025 0.20 0.00 0.08 0.49
## 4026 0.03 0.00 0.01 0.49
## 4027 0.00 0.49 0.00 0.49
## 4028 0.29 0.00 0.11 0.49
## 4029 0.01 0.00 0.07 0.49
## 4030 0.23 0.01 0.05 0.49
## 4031 0.13 0.02 0.04 0.49
## 4032 0.10 0.00 0.01 0.49
## 4033 0.15 0.07 0.03 0.49
## 4034 0.13 0.00 0.01 0.49
## 4035 0.13 0.00 0.02 0.49
## 4036 0.00 0.00 0.03 0.49
## 4037 0.00 0.00 0.04 0.49
## 4038 0.13 0.00 0.01 0.49
## 4039 0.10 0.24 0.03 0.49
## 4040 0.31 0.00 0.06 0.49
## 4041 0.00 0.49 0.00 0.49
## 4042 0.00 0.49 0.00 0.49
## 4043 0.11 0.00 0.02 0.49
## 4044 0.20 0.00 0.05 0.49
## 4045 0.12 0.16 0.03 0.49
## 4046 0.30 0.00 0.03 0.49
## 4047 0.18 0.03 0.05 0.49
## 4048 0.02 0.02 0.03 0.49
## 4049 0.23 0.00 0.07 0.49
## 4050 0.17 0.00 0.04 0.49
## 4051 0.00 0.49 0.00 0.49
## 4052 0.26 0.09 0.07 0.49
## 4053 0.19 0.00 0.06 0.49
## 4054 0.15 0.00 0.33 0.49
## 4055 0.19 0.00 0.06 0.49
## 4056 0.04 0.04 0.04 0.49
## 4057 0.17 0.00 0.04 0.49
## 4058 0.00 0.49 0.00 0.49
## 4059 0.30 0.00 0.05 0.49
## 4060 0.00 0.46 0.03 0.49
## 4061 0.01 0.00 0.22 0.49
## 4062 0.47 0.00 0.02 0.49
## 4063 0.45 0.00 0.03 0.49
## 4064 0.09 0.02 0.01 0.49
## 4065 0.19 0.00 0.06 0.49
## 4066 0.31 0.02 0.08 0.49
## 4067 0.11 0.00 0.02 0.49
## 4068 0.00 0.00 0.03 0.49
## 4069 0.18 0.00 0.03 0.49
## 4070 0.35 0.00 0.06 0.49
## 4071 0.16 0.02 0.04 0.49
## 4072 0.00 0.49 0.00 0.49
## 4073 0.10 0.05 0.03 0.49
## 4074 0.05 0.35 0.02 0.49
## 4075 0.00 0.49 0.00 0.49
## 4076 0.02 0.00 0.04 0.49
## 4077 0.45 0.00 0.03 0.49
## 4078 0.23 0.07 0.07 0.49
## 4079 0.06 0.00 0.04 0.49
## 4080 0.01 0.00 0.04 0.49
## 4081 0.21 0.01 0.08 0.49
## 4082 0.25 0.00 0.11 0.48
## 4083 0.02 0.00 0.04 0.48
## 4084 0.11 0.01 0.04 0.48
## 4085 0.48 0.00 0.00 0.48
## 4086 0.02 0.00 0.07 0.48
## 4087 0.18 0.05 0.09 0.48
## 4088 0.01 0.29 0.02 0.48
## 4089 0.13 0.00 0.01 0.48
## 4090 0.27 0.00 0.06 0.48
## 4091 0.03 0.00 0.04 0.48
## 4092 0.14 0.17 0.03 0.48
## 4093 0.13 0.00 0.01 0.48
## 4094 0.00 0.45 0.03 0.48
## 4095 0.11 0.00 0.02 0.48
## 4096 0.19 0.01 0.05 0.48
## 4097 0.03 0.00 0.01 0.48
## 4098 0.00 0.48 0.00 0.48
## 4099 0.17 0.00 0.05 0.48
## 4100 0.20 0.01 0.05 0.48
## 4101 0.24 0.00 0.05 0.48
## 4102 0.18 0.00 0.06 0.48
## 4103 0.02 0.00 0.07 0.48
## 4104 0.18 0.00 0.03 0.48
## 4105 0.03 0.00 0.04 0.48
## 4106 0.00 0.00 0.04 0.48
## 4107 0.18 0.00 0.03 0.48
## 4108 0.36 0.00 0.04 0.48
## 4109 0.15 0.00 0.10 0.48
## 4110 0.07 0.13 0.03 0.48
## 4111 0.21 0.00 0.05 0.48
## 4112 0.24 0.03 0.12 0.48
## 4113 0.18 0.00 0.06 0.48
## 4114 0.01 0.00 0.03 0.48
## 4115 0.04 0.00 0.00 0.48
## 4116 0.06 0.11 0.06 0.48
## 4117 0.02 0.00 0.07 0.48
## 4118 0.18 0.00 0.06 0.48
## 4119 0.26 0.00 0.04 0.48
## 4120 0.07 0.00 0.00 0.48
## 4121 0.18 0.00 0.03 0.48
## 4122 0.11 0.06 0.05 0.48
## 4123 0.43 0.00 0.05 0.48
## 4124 0.18 0.00 0.06 0.48
## 4125 0.24 0.00 0.05 0.48
## 4126 0.18 0.00 0.04 0.48
## 4127 0.25 0.01 0.05 0.48
## 4128 0.00 0.00 0.03 0.48
## 4129 0.01 0.07 0.02 0.48
## 4130 0.18 0.00 0.03 0.48
## 4131 0.02 0.00 0.04 0.48
## 4132 0.13 0.00 0.01 0.48
## 4133 0.01 0.31 0.02 0.48
## 4134 0.28 0.00 0.06 0.48
## 4135 0.06 0.27 0.02 0.48
## 4136 0.19 0.01 0.04 0.48
## 4137 0.11 0.00 0.02 0.48
## 4138 0.27 0.01 0.00 0.48
## 4139 0.05 0.00 0.24 0.48
## 4140 0.03 0.00 0.00 0.48
## 4141 0.40 0.00 0.01 0.48
## 4142 0.03 0.04 0.04 0.48
## 4143 0.18 0.00 0.06 0.48
## 4144 0.09 0.00 0.04 0.48
## 4145 0.27 0.00 0.06 0.48
## 4146 0.48 0.00 0.00 0.48
## 4147 0.11 0.19 0.04 0.47
## 4148 0.02 0.00 0.01 0.47
## 4149 0.16 0.04 0.03 0.47
## 4150 0.02 0.00 0.00 0.47
## 4151 0.11 0.18 0.03 0.47
## 4152 0.03 0.00 0.00 0.47
## 4153 0.16 0.01 0.07 0.47
## 4154 0.17 0.01 0.05 0.47
## 4155 0.18 0.00 0.06 0.47
## 4156 0.10 0.03 0.03 0.47
## 4157 0.02 0.00 0.06 0.47
## 4158 0.23 0.00 0.05 0.47
## 4159 0.01 0.00 0.04 0.47
## 4160 0.10 0.00 0.04 0.47
## 4161 0.00 0.47 0.00 0.47
## 4162 0.18 0.00 0.03 0.47
## 4163 0.04 0.03 0.04 0.47
## 4164 0.16 0.09 0.08 0.47
## 4165 0.17 0.00 0.08 0.47
## 4166 0.18 0.00 0.03 0.47
## 4167 0.18 0.00 0.06 0.47
## 4168 0.16 0.04 0.06 0.47
## 4169 0.28 0.00 0.04 0.47
## 4170 0.13 0.00 0.04 0.47
## 4171 0.00 0.47 0.00 0.47
## 4172 0.04 0.38 0.01 0.47
## 4173 0.01 0.00 0.04 0.47
## 4174 0.21 0.00 0.04 0.47
## 4175 0.00 0.46 0.01 0.47
## 4176 0.03 0.39 0.01 0.47
## 4177 0.18 0.00 0.06 0.47
## 4178 0.02 0.00 0.04 0.47
## 4179 0.30 0.05 0.12 0.47
## 4180 0.30 0.01 0.12 0.47
## 4181 0.45 0.00 0.02 0.47
## 4182 0.22 0.02 0.12 0.47
## 4183 0.00 0.47 0.00 0.47
## 4184 0.02 0.00 0.04 0.47
## 4185 0.25 0.00 0.08 0.47
## 4186 0.18 0.00 0.06 0.47
## 4187 0.06 0.08 0.05 0.47
## 4188 0.17 0.00 0.01 0.47
## 4189 0.08 0.00 0.01 0.47
## 4190 0.00 0.44 0.03 0.47
## 4191 0.08 0.00 0.01 0.47
## 4192 0.09 0.00 0.04 0.47
## 4193 0.29 0.00 0.18 0.47
## 4194 0.03 0.10 0.03 0.47
## 4195 0.02 0.00 0.00 0.47
## 4196 0.13 0.01 0.04 0.47
## 4197 0.13 0.00 0.04 0.47
## 4198 0.18 0.00 0.06 0.47
## 4199 0.10 0.00 0.02 0.47
## 4200 0.00 0.00 0.04 0.47
## 4201 0.05 0.00 0.05 0.47
## 4202 0.33 0.00 0.10 0.47
## 4203 0.18 0.00 0.03 0.47
## 4204 0.00 0.00 0.04 0.47
## 4205 0.00 0.00 0.03 0.47
## 4206 0.00 0.47 0.00 0.47
## 4207 0.00 0.47 0.00 0.47
## 4208 0.38 0.00 0.09 0.47
## 4209 0.03 0.00 0.17 0.47
## 4210 0.18 0.00 0.06 0.47
## 4211 0.07 0.00 0.04 0.47
## 4212 0.12 0.00 0.01 0.47
## 4213 0.01 0.00 0.06 0.47
## 4214 0.01 0.46 0.00 0.47
## 4215 0.18 0.00 0.03 0.47
## 4216 0.41 0.00 0.06 0.47
## 4217 0.12 0.00 0.01 0.47
## 4218 0.15 0.00 0.07 0.47
## 4219 0.00 0.22 0.02 0.47
## 4220 0.01 0.00 0.03 0.47
## 4221 0.18 0.00 0.06 0.47
## 4222 0.09 0.00 0.01 0.47
## 4223 0.08 0.07 0.01 0.47
## 4224 0.01 0.00 0.00 0.47
## 4225 0.18 0.00 0.06 0.46
## 4226 0.18 0.00 0.06 0.46
## 4227 0.15 0.00 0.05 0.46
## 4228 0.12 0.00 0.01 0.46
## 4229 0.06 0.00 0.05 0.46
## 4230 0.09 0.12 0.01 0.46
## 4231 0.11 0.00 0.02 0.46
## 4232 0.12 0.00 0.01 0.46
## 4233 0.03 0.00 0.00 0.46
## 4234 0.00 0.00 0.03 0.46
## 4235 0.17 0.00 0.03 0.46
## 4236 0.03 0.00 0.04 0.46
## 4237 0.17 0.01 0.07 0.46
## 4238 0.12 0.00 0.01 0.46
## 4239 0.15 0.06 0.05 0.46
## 4240 0.12 0.00 0.09 0.46
## 4241 0.00 0.46 0.00 0.46
## 4242 0.10 0.20 0.03 0.46
## 4243 0.00 0.46 0.00 0.46
## 4244 0.12 0.00 0.01 0.46
## 4245 0.29 0.00 0.05 0.46
## 4246 0.25 0.00 0.09 0.46
## 4247 0.12 0.00 0.01 0.46
## 4248 0.03 0.21 0.02 0.46
## 4249 0.03 0.02 0.04 0.46
## 4250 0.04 0.00 0.05 0.46
## 4251 0.16 0.00 0.04 0.46
## 4252 0.18 0.00 0.06 0.46
## 4253 0.01 0.00 0.06 0.46
## 4254 0.06 0.00 0.04 0.46
## 4255 0.09 0.00 0.04 0.46
## 4256 0.01 0.00 0.06 0.46
## 4257 0.12 0.00 0.01 0.46
## 4258 0.19 0.00 0.08 0.46
## 4259 0.17 0.00 0.03 0.46
## 4260 0.14 0.00 0.09 0.46
## 4261 0.00 0.00 0.03 0.46
## 4262 0.16 0.24 0.01 0.46
## 4263 0.17 0.00 0.03 0.46
## 4264 0.16 0.00 0.04 0.46
## 4265 0.01 0.00 0.06 0.46
## 4266 0.25 0.03 0.09 0.46
## 4267 0.12 0.00 0.04 0.46
## 4268 0.03 0.00 0.00 0.46
## 4269 0.18 0.00 0.06 0.46
## 4270 0.18 0.00 0.06 0.46
## 4271 0.12 0.00 0.01 0.46
## 4272 0.12 0.00 0.01 0.46
## 4273 0.19 0.00 0.07 0.46
## 4274 0.28 0.00 0.07 0.46
## 4275 0.01 0.12 0.03 0.46
## 4276 0.00 0.00 0.03 0.46
## 4277 0.09 0.00 0.04 0.46
## 4278 0.16 0.00 0.04 0.46
## 4279 0.05 0.00 0.03 0.46
## 4280 0.17 0.00 0.06 0.46
## 4281 0.00 0.46 0.00 0.46
## 4282 0.23 0.00 0.05 0.46
## 4283 0.24 0.00 0.12 0.46
## 4284 0.18 0.00 0.04 0.46
## 4285 0.12 0.00 0.04 0.46
## 4286 0.17 0.00 0.03 0.46
## 4287 0.13 0.00 0.04 0.46
## 4288 0.10 0.23 0.05 0.46
## 4289 0.17 0.00 0.03 0.46
## 4290 0.17 0.00 0.06 0.46
## 4291 0.38 0.01 0.06 0.46
## 4292 0.00 0.00 0.04 0.46
## 4293 0.17 0.00 0.05 0.46
## 4294 0.00 0.46 0.00 0.46
## 4295 0.11 0.17 0.04 0.46
## 4296 0.23 0.00 0.04 0.46
## 4297 0.00 0.45 0.01 0.46
## 4298 0.11 0.07 0.05 0.46
## 4299 0.00 0.00 0.03 0.46
## 4300 0.05 0.34 0.01 0.46
## 4301 0.20 0.00 0.04 0.46
## 4302 0.08 0.00 0.02 0.46
## 4303 0.00 0.00 0.03 0.46
## 4304 0.17 0.00 0.03 0.46
## 4305 0.02 0.01 0.04 0.46
## 4306 0.16 0.03 0.07 0.46
## 4307 0.35 0.00 0.10 0.46
## 4308 0.10 0.15 0.07 0.46
## 4309 0.00 0.45 0.00 0.45
## 4310 0.15 0.00 0.04 0.45
## 4311 0.03 0.38 0.02 0.45
## 4312 0.12 0.00 0.01 0.45
## 4313 0.13 0.09 0.08 0.45
## 4314 0.17 0.00 0.03 0.45
## 4315 0.21 0.00 0.04 0.45
## 4316 0.00 0.00 0.03 0.45
## 4317 0.00 0.45 0.00 0.45
## 4318 0.25 0.01 0.08 0.45
## 4319 0.00 0.45 0.00 0.45
## 4320 0.09 0.02 0.01 0.45
## 4321 0.06 0.00 0.03 0.45
## 4322 0.10 0.00 0.02 0.45
## 4323 0.00 0.45 0.00 0.45
## 4324 0.00 0.00 0.03 0.45
## 4325 0.06 0.16 0.01 0.45
## 4326 0.37 0.00 0.05 0.45
## 4327 0.17 0.00 0.06 0.45
## 4328 0.16 0.02 0.07 0.45
## 4329 0.03 0.00 0.03 0.45
## 4330 0.21 0.07 0.03 0.45
## 4331 0.11 0.00 0.02 0.45
## 4332 0.01 0.00 0.03 0.45
## 4333 0.01 0.00 0.06 0.45
## 4334 0.26 0.00 0.05 0.45
## 4335 0.00 0.00 0.03 0.45
## 4336 0.03 0.00 0.03 0.45
## 4337 0.11 0.00 0.04 0.45
## 4338 0.03 0.00 0.00 0.45
## 4339 0.17 0.00 0.03 0.45
## 4340 0.17 0.00 0.06 0.45
## 4341 0.00 0.42 0.03 0.45
## 4342 0.28 0.00 0.05 0.45
## 4343 0.17 0.00 0.06 0.45
## 4344 0.15 0.00 0.04 0.45
## 4345 0.10 0.00 0.02 0.45
## 4346 0.02 0.00 0.03 0.45
## 4347 0.02 0.00 0.00 0.45
## 4348 0.13 0.00 0.06 0.45
## 4349 0.11 0.01 0.04 0.45
## 4350 0.01 0.00 0.03 0.45
## 4351 0.21 0.00 0.07 0.45
## 4352 0.00 0.00 0.03 0.45
## 4353 0.18 0.15 0.05 0.45
## 4354 0.17 0.00 0.03 0.45
## 4355 0.14 0.00 0.04 0.45
## 4356 0.26 0.05 0.05 0.45
## 4357 0.12 0.00 0.01 0.45
## 4358 0.26 0.00 0.08 0.45
## 4359 0.00 0.45 0.00 0.45
## 4360 0.02 0.32 0.01 0.45
## 4361 0.00 0.45 0.00 0.45
## 4362 0.22 0.10 0.05 0.45
## 4363 0.17 0.00 0.06 0.45
## 4364 0.00 0.45 0.00 0.45
## 4365 0.08 0.00 0.01 0.45
## 4366 0.08 0.00 0.01 0.45
## 4367 0.13 0.07 0.06 0.45
## 4368 0.14 0.00 0.04 0.45
## 4369 0.33 0.00 0.03 0.45
## 4370 0.01 0.00 0.03 0.45
## 4371 0.00 0.00 0.03 0.45
## 4372 0.12 0.00 0.01 0.45
## 4373 0.03 0.00 0.20 0.45
## 4374 0.00 0.42 0.03 0.45
## 4375 0.19 0.00 0.05 0.45
## 4376 0.14 0.01 0.04 0.45
## 4377 0.12 0.00 0.01 0.45
## 4378 0.24 0.00 0.05 0.45
## 4379 0.02 0.00 0.00 0.45
## 4380 0.00 0.42 0.03 0.45
## 4381 0.16 0.00 0.04 0.45
## 4382 0.06 0.00 0.39 0.45
## 4383 0.13 0.06 0.08 0.45
## 4384 0.00 0.42 0.03 0.45
## 4385 0.02 0.00 0.34 0.45
## 4386 0.02 0.00 0.03 0.45
## 4387 0.03 0.36 0.01 0.45
## 4388 0.05 0.00 0.05 0.45
## 4389 0.17 0.00 0.03 0.45
## 4390 0.10 0.00 0.02 0.45
## 4391 0.04 0.00 0.03 0.45
## 4392 0.26 0.00 0.14 0.45
## 4393 0.09 0.00 0.01 0.45
## 4394 0.02 0.00 0.00 0.45
## 4395 0.09 0.00 0.01 0.45
## 4396 0.00 0.31 0.01 0.45
## 4397 0.07 0.00 0.01 0.45
## 4398 0.17 0.00 0.03 0.45
## 4399 0.17 0.00 0.06 0.45
## 4400 0.09 0.19 0.03 0.45
## 4401 0.16 0.13 0.03 0.45
## 4402 0.22 0.00 0.05 0.45
## 4403 0.03 0.00 0.00 0.45
## 4404 0.17 0.00 0.06 0.45
## 4405 0.12 0.00 0.01 0.45
## 4406 0.22 0.00 0.12 0.45
## 4407 0.16 0.00 0.04 0.45
## 4408 0.00 0.00 0.03 0.45
## 4409 0.11 0.00 0.04 0.45
## 4410 0.17 0.00 0.06 0.44
## 4411 0.15 0.00 0.08 0.44
## 4412 0.01 0.00 0.06 0.44
## 4413 0.01 0.00 0.06 0.44
## 4414 0.33 0.02 0.03 0.44
## 4415 0.02 0.00 0.00 0.44
## 4416 0.17 0.00 0.06 0.44
## 4417 0.01 0.00 0.06 0.44
## 4418 0.21 0.00 0.04 0.44
## 4419 0.11 0.00 0.04 0.44
## 4420 0.17 0.00 0.06 0.44
## 4421 0.21 0.00 0.04 0.44
## 4422 0.17 0.00 0.06 0.44
## 4423 0.12 0.00 0.02 0.44
## 4424 0.00 0.00 0.03 0.44
## 4425 0.13 0.00 0.04 0.44
## 4426 0.20 0.03 0.08 0.44
## 4427 0.01 0.02 0.00 0.44
## 4428 0.17 0.00 0.06 0.44
## 4429 0.10 0.00 0.02 0.44
## 4430 0.13 0.01 0.04 0.44
## 4431 0.15 0.00 0.04 0.44
## 4432 0.00 0.41 0.03 0.44
## 4433 0.08 0.00 0.01 0.44
## 4434 0.01 0.00 0.06 0.44
## 4435 0.20 0.00 0.05 0.44
## 4436 0.15 0.00 0.04 0.44
## 4437 0.10 0.00 0.02 0.44
## 4438 0.00 0.43 0.01 0.44
## 4439 0.17 0.00 0.03 0.44
## 4440 0.22 0.00 0.04 0.44
## 4441 0.05 0.30 0.03 0.44
## 4442 0.10 0.11 0.05 0.44
## 4443 0.12 0.00 0.04 0.44
## 4444 0.10 0.00 0.02 0.44
## 4445 0.29 0.00 0.05 0.44
## 4446 0.01 0.00 0.03 0.44
## 4447 0.04 0.01 0.04 0.44
## 4448 0.00 0.44 0.00 0.44
## 4449 0.17 0.00 0.03 0.44
## 4450 0.17 0.00 0.03 0.44
## 4451 0.00 0.44 0.00 0.44
## 4452 0.03 0.15 0.10 0.44
## 4453 0.08 0.00 0.01 0.44
## 4454 0.14 0.06 0.04 0.44
## 4455 0.00 0.00 0.03 0.44
## 4456 0.18 0.00 0.07 0.44
## 4457 0.09 0.00 0.01 0.44
## 4458 0.00 0.44 0.00 0.44
## 4459 0.17 0.00 0.03 0.44
## 4460 0.00 0.00 0.03 0.44
## 4461 0.00 0.00 0.03 0.44
## 4462 0.07 0.12 0.06 0.44
## 4463 0.08 0.00 0.02 0.44
## 4464 0.00 0.44 0.00 0.44
## 4465 0.17 0.00 0.03 0.44
## 4466 0.00 0.43 0.01 0.44
## 4467 0.14 0.00 0.04 0.44
## 4468 0.09 0.00 0.01 0.44
## 4469 0.12 0.00 0.01 0.44
## 4470 0.03 0.00 0.00 0.44
## 4471 0.00 0.44 0.00 0.44
## 4472 0.00 0.00 0.02 0.44
## 4473 0.14 0.00 0.04 0.44
## 4474 0.12 0.00 0.06 0.44
## 4475 0.09 0.00 0.01 0.44
## 4476 0.12 0.00 0.01 0.44
## 4477 0.11 0.01 0.03 0.44
## 4478 0.09 0.00 0.01 0.44
## 4479 0.12 0.00 0.01 0.44
## 4480 0.01 0.00 0.06 0.44
## 4481 0.06 0.00 0.38 0.44
## 4482 0.00 0.44 0.00 0.44
## 4483 0.00 0.00 0.03 0.44
## 4484 0.00 0.44 0.00 0.44
## 4485 0.00 0.44 0.00 0.44
## 4486 0.17 0.00 0.06 0.44
## 4487 0.00 0.00 0.03 0.44
## 4488 0.01 0.00 0.06 0.44
## 4489 0.09 0.08 0.07 0.44
## 4490 0.00 0.26 0.01 0.44
## 4491 0.07 0.00 0.02 0.44
## 4492 0.00 0.00 0.03 0.44
## 4493 0.10 0.07 0.01 0.43
## 4494 0.18 0.00 0.07 0.43
## 4495 0.13 0.06 0.03 0.43
## 4496 0.01 0.00 0.03 0.43
## 4497 0.17 0.00 0.06 0.43
## 4498 0.02 0.00 0.00 0.43
## 4499 0.12 0.00 0.01 0.43
## 4500 0.00 0.00 0.26 0.43
## 4501 0.16 0.00 0.03 0.43
## 4502 0.09 0.00 0.02 0.43
## 4503 0.12 0.00 0.01 0.43
## 4504 0.36 0.00 0.06 0.43
## 4505 0.01 0.00 0.06 0.43
## 4506 0.21 0.01 0.08 0.43
## 4507 0.00 0.00 0.03 0.43
## 4508 0.00 0.43 0.00 0.43
## 4509 0.02 0.00 0.02 0.43
## 4510 0.18 0.00 0.04 0.43
## 4511 0.04 0.00 0.04 0.43
## 4512 0.03 0.00 0.03 0.43
## 4513 0.17 0.00 0.06 0.43
## 4514 0.09 0.14 0.03 0.43
## 4515 0.16 0.00 0.03 0.43
## 4516 0.20 0.00 0.07 0.43
## 4517 0.17 0.00 0.06 0.43
## 4518 0.02 0.00 0.00 0.43
## 4519 0.17 0.00 0.06 0.43
## 4520 0.03 0.10 0.02 0.43
## 4521 0.11 0.00 0.01 0.43
## 4522 0.07 0.17 0.01 0.43
## 4523 0.00 0.43 0.00 0.43
## 4524 0.15 0.01 0.04 0.43
## 4525 0.07 0.21 0.03 0.43
## 4526 0.19 0.00 0.04 0.43
## 4527 0.11 0.00 0.01 0.43
## 4528 0.04 0.00 0.24 0.43
## 4529 0.16 0.00 0.06 0.43
## 4530 0.15 0.00 0.04 0.43
## 4531 0.05 0.00 0.03 0.43
## 4532 0.14 0.00 0.01 0.43
## 4533 0.06 0.07 0.06 0.43
## 4534 0.22 0.00 0.06 0.43
## 4535 0.01 0.00 0.03 0.43
## 4536 0.03 0.04 0.03 0.43
## 4537 0.00 0.00 0.02 0.43
## 4538 0.01 0.00 0.06 0.43
## 4539 0.38 0.00 0.05 0.43
## 4540 0.16 0.00 0.05 0.43
## 4541 0.07 0.24 0.03 0.43
## 4542 0.00 0.03 0.03 0.43
## 4543 0.07 0.25 0.02 0.43
## 4544 0.08 0.09 0.05 0.43
## 4545 0.19 0.00 0.08 0.43
## 4546 0.01 0.23 0.02 0.43
## 4547 0.16 0.00 0.05 0.43
## 4548 0.05 0.29 0.02 0.43
## 4549 0.34 0.00 0.07 0.43
## 4550 0.17 0.00 0.04 0.43
## 4551 0.09 0.00 0.01 0.43
## 4552 0.00 0.00 0.03 0.43
## 4553 0.01 0.00 0.03 0.43
## 4554 0.11 0.00 0.01 0.43
## 4555 0.18 0.00 0.03 0.43
## 4556 0.10 0.00 0.05 0.43
## 4557 0.08 0.00 0.01 0.43
## 4558 0.02 0.00 0.03 0.43
## 4559 0.00 0.00 0.03 0.43
## 4560 0.14 0.00 0.04 0.43
## 4561 0.16 0.00 0.05 0.43
## 4562 0.16 0.00 0.03 0.43
## 4563 0.17 0.00 0.07 0.43
## 4564 0.16 0.00 0.05 0.43
## 4565 0.17 0.00 0.10 0.43
## 4566 0.20 0.00 0.12 0.43
## 4567 0.00 0.00 0.03 0.42
## 4568 0.00 0.42 0.00 0.42
## 4569 0.00 0.42 0.00 0.42
## 4570 0.09 0.00 0.01 0.42
## 4571 0.16 0.00 0.04 0.42
## 4572 0.19 0.00 0.11 0.42
## 4573 0.02 0.16 0.02 0.42
## 4574 0.16 0.00 0.05 0.42
## 4575 0.05 0.22 0.01 0.42
## 4576 0.13 0.00 0.06 0.42
## 4577 0.01 0.00 0.06 0.42
## 4578 0.16 0.00 0.05 0.42
## 4579 0.09 0.00 0.01 0.42
## 4580 0.10 0.00 0.01 0.42
## 4581 0.15 0.00 0.04 0.42
## 4582 0.16 0.00 0.05 0.42
## 4583 0.16 0.00 0.03 0.42
## 4584 0.00 0.42 0.00 0.42
## 4585 0.16 0.00 0.03 0.42
## 4586 0.13 0.04 0.04 0.42
## 4587 0.08 0.00 0.01 0.42
## 4588 0.23 0.00 0.04 0.42
## 4589 0.00 0.41 0.01 0.42
## 4590 0.00 0.00 0.03 0.42
## 4591 0.04 0.01 0.04 0.42
## 4592 0.20 0.10 0.11 0.42
## 4593 0.16 0.00 0.03 0.42
## 4594 0.16 0.00 0.05 0.42
## 4595 0.16 0.00 0.03 0.42
## 4596 0.01 0.16 0.03 0.42
## 4597 0.19 0.00 0.04 0.42
## 4598 0.01 0.00 0.03 0.42
## 4599 0.00 0.00 0.00 0.42
## 4600 0.16 0.00 0.03 0.42
## 4601 0.00 0.42 0.00 0.42
## 4602 0.09 0.00 0.02 0.42
## 4603 0.11 0.00 0.01 0.42
## 4604 0.16 0.00 0.05 0.42
## 4605 0.16 0.00 0.05 0.42
## 4606 0.16 0.00 0.05 0.42
## 4607 0.03 0.04 0.03 0.42
## 4608 0.01 0.00 0.06 0.42
## 4609 0.17 0.03 0.04 0.42
## 4610 0.11 0.00 0.01 0.42
## 4611 0.02 0.00 0.03 0.42
## 4612 0.11 0.00 0.01 0.42
## 4613 0.16 0.00 0.03 0.42
## 4614 0.00 0.00 0.03 0.42
## 4615 0.00 0.39 0.03 0.42
## 4616 0.00 0.00 0.03 0.42
## 4617 0.00 0.42 0.00 0.42
## 4618 0.05 0.00 0.02 0.42
## 4619 0.00 0.42 0.00 0.42
## 4620 0.08 0.12 0.03 0.42
## 4621 0.16 0.00 0.05 0.42
## 4622 0.06 0.00 0.00 0.42
## 4623 0.07 0.00 0.00 0.42
## 4624 0.07 0.00 0.00 0.42
## 4625 0.00 0.39 0.03 0.42
## 4626 0.07 0.00 0.00 0.42
## 4627 0.08 0.00 0.01 0.42
## 4628 0.16 0.00 0.07 0.42
## 4629 0.25 0.02 0.06 0.42
## 4630 0.01 0.00 0.06 0.42
## 4631 0.15 0.00 0.03 0.42
## 4632 0.09 0.00 0.02 0.42
## 4633 0.08 0.00 0.01 0.42
## 4634 0.03 0.00 0.03 0.42
## 4635 0.00 0.42 0.00 0.42
## 4636 0.11 0.00 0.01 0.42
## 4637 0.16 0.00 0.05 0.42
## 4638 0.00 0.42 0.00 0.42
## 4639 0.08 0.00 0.01 0.42
## 4640 0.00 0.00 0.03 0.42
## 4641 0.16 0.00 0.05 0.42
## 4642 0.03 0.00 0.03 0.42
## 4643 0.03 0.00 0.03 0.42
## 4644 0.10 0.16 0.03 0.42
## 4645 0.00 0.00 0.03 0.42
## 4646 0.16 0.00 0.05 0.42
## 4647 0.08 0.00 0.01 0.42
## 4648 0.14 0.05 0.05 0.42
## 4649 0.12 0.03 0.05 0.42
## 4650 0.05 0.13 0.02 0.42
## 4651 0.02 0.35 0.03 0.42
## 4652 0.11 0.00 0.01 0.42
## 4653 0.09 0.00 0.01 0.42
## 4654 0.17 0.03 0.04 0.42
## 4655 0.09 0.00 0.01 0.42
## 4656 0.13 0.00 0.08 0.42
## 4657 0.00 0.00 0.03 0.42
## 4658 0.11 0.09 0.03 0.42
## 4659 0.12 0.11 0.03 0.42
## 4660 0.21 0.00 0.08 0.42
## 4661 0.00 0.25 0.01 0.42
## 4662 0.18 0.00 0.07 0.42
## 4663 0.09 0.00 0.01 0.42
## 4664 0.28 0.00 0.14 0.42
## 4665 0.16 0.00 0.05 0.42
## 4666 0.12 0.10 0.03 0.42
## 4667 0.11 0.12 0.03 0.42
## 4668 0.16 0.00 0.05 0.42
## 4669 0.09 0.04 0.07 0.42
## 4670 0.16 0.00 0.05 0.42
## 4671 0.00 0.42 0.00 0.42
## 4672 0.05 0.06 0.04 0.42
## 4673 0.10 0.00 0.02 0.42
## 4674 0.02 0.00 0.03 0.41
## 4675 0.16 0.00 0.05 0.41
## 4676 0.12 0.11 0.04 0.41
## 4677 0.12 0.00 0.04 0.41
## 4678 0.00 0.41 0.00 0.41
## 4679 0.16 0.00 0.05 0.41
## 4680 0.11 0.00 0.01 0.41
## 4681 0.16 0.00 0.05 0.41
## 4682 0.11 0.00 0.01 0.41
## 4683 0.07 0.15 0.06 0.41
## 4684 0.12 0.00 0.05 0.41
## 4685 0.00 0.00 0.00 0.41
## 4686 0.21 0.05 0.11 0.41
## 4687 0.00 0.41 0.00 0.41
## 4688 0.16 0.00 0.03 0.41
## 4689 0.01 0.00 0.06 0.41
## 4690 0.39 0.00 0.02 0.41
## 4691 0.01 0.00 0.03 0.41
## 4692 0.16 0.00 0.05 0.41
## 4693 0.16 0.00 0.03 0.41
## 4694 0.13 0.00 0.02 0.41
## 4695 0.00 0.41 0.00 0.41
## 4696 0.16 0.00 0.03 0.41
## 4697 0.16 0.00 0.03 0.41
## 4698 0.00 0.39 0.03 0.41
## 4699 0.17 0.02 0.06 0.41
## 4700 0.00 0.41 0.00 0.41
## 4701 0.10 0.00 0.03 0.41
## 4702 0.15 0.00 0.09 0.41
## 4703 0.19 0.00 0.04 0.41
## 4704 0.22 0.00 0.05 0.41
## 4705 0.16 0.00 0.04 0.41
## 4706 0.16 0.00 0.05 0.41
## 4707 0.00 0.41 0.00 0.41
## 4708 0.03 0.04 0.03 0.41
## 4709 0.08 0.09 0.04 0.41
## 4710 0.16 0.00 0.05 0.41
## 4711 0.08 0.00 0.06 0.41
## 4712 0.00 0.41 0.00 0.41
## 4713 0.01 0.00 0.06 0.41
## 4714 0.10 0.00 0.04 0.41
## 4715 0.03 0.00 0.03 0.41
## 4716 0.00 0.00 0.04 0.41
## 4717 0.16 0.00 0.03 0.41
## 4718 0.23 0.00 0.09 0.41
## 4719 0.00 0.41 0.00 0.41
## 4720 0.10 0.00 0.07 0.41
## 4721 0.02 0.00 0.03 0.41
## 4722 0.00 0.41 0.00 0.41
## 4723 0.03 0.00 0.03 0.41
## 4724 0.07 0.00 0.06 0.41
## 4725 0.08 0.00 0.03 0.41
## 4726 0.16 0.00 0.03 0.41
## 4727 0.14 0.00 0.04 0.41
## 4728 0.00 0.41 0.00 0.41
## 4729 0.02 0.25 0.04 0.41
## 4730 0.07 0.00 0.00 0.41
## 4731 0.27 0.00 0.06 0.41
## 4732 0.16 0.00 0.05 0.41
## 4733 0.26 0.00 0.09 0.41
## 4734 0.16 0.00 0.05 0.41
## 4735 0.09 0.16 0.03 0.41
## 4736 0.00 0.00 0.02 0.41
## 4737 0.19 0.00 0.04 0.41
## 4738 0.13 0.00 0.04 0.41
## 4739 0.00 0.38 0.03 0.41
## 4740 0.15 0.00 0.07 0.41
## 4741 0.23 0.00 0.04 0.41
## 4742 0.11 0.00 0.04 0.41
## 4743 0.18 0.00 0.07 0.41
## 4744 0.06 0.00 0.20 0.41
## 4745 0.10 0.08 0.03 0.41
## 4746 0.12 0.04 0.03 0.41
## 4747 0.02 0.01 0.03 0.41
## 4748 0.08 0.19 0.03 0.41
## 4749 0.16 0.00 0.05 0.41
## 4750 0.08 0.00 0.01 0.41
## 4751 0.01 0.00 0.03 0.41
## 4752 0.01 0.00 0.06 0.41
## 4753 0.00 0.41 0.00 0.41
## 4754 0.15 0.00 0.03 0.41
## 4755 0.10 0.12 0.03 0.41
## 4756 0.01 0.00 0.06 0.41
## 4757 0.00 0.40 0.01 0.41
## 4758 0.02 0.00 0.03 0.41
## 4759 0.16 0.00 0.04 0.41
## 4760 0.04 0.00 0.03 0.41
## 4761 0.12 0.00 0.06 0.41
## 4762 0.09 0.00 0.03 0.41
## 4763 0.17 0.00 0.06 0.41
## 4764 0.00 0.41 0.00 0.41
## 4765 0.02 0.00 0.16 0.41
## 4766 0.00 0.41 0.00 0.41
## 4767 0.01 0.00 0.06 0.41
## 4768 0.00 0.41 0.00 0.41
## 4769 0.16 0.00 0.05 0.41
## 4770 0.13 0.00 0.04 0.41
## 4771 0.11 0.00 0.04 0.41
## 4772 0.15 0.00 0.03 0.41
## 4773 0.01 0.00 0.06 0.41
## 4774 0.31 0.00 0.07 0.41
## 4775 0.12 0.06 0.05 0.41
## 4776 0.18 0.00 0.04 0.41
## 4777 0.00 0.00 0.03 0.41
## 4778 0.15 0.00 0.05 0.41
## 4779 0.15 0.00 0.03 0.40
## 4780 0.15 0.00 0.03 0.40
## 4781 0.02 0.00 0.00 0.40
## 4782 0.26 0.00 0.07 0.40
## 4783 0.13 0.26 0.01 0.40
## 4784 0.01 0.00 0.03 0.40
## 4785 0.02 0.00 0.00 0.40
## 4786 0.20 0.00 0.04 0.40
## 4787 0.06 0.16 0.06 0.40
## 4788 0.03 0.01 0.03 0.40
## 4789 0.08 0.00 0.01 0.40
## 4790 0.04 0.01 0.04 0.40
## 4791 0.20 0.00 0.08 0.40
## 4792 0.19 0.00 0.04 0.40
## 4793 0.00 0.40 0.00 0.40
## 4794 0.21 0.00 0.08 0.40
## 4795 0.00 0.40 0.00 0.40
## 4796 0.01 0.00 0.05 0.40
## 4797 0.15 0.00 0.05 0.40
## 4798 0.15 0.00 0.05 0.40
## 4799 0.00 0.00 0.03 0.40
## 4800 0.00 0.40 0.00 0.40
## 4801 0.20 0.02 0.08 0.40
## 4802 0.02 0.00 0.00 0.40
## 4803 0.15 0.00 0.05 0.40
## 4804 0.08 0.00 0.01 0.40
## 4805 0.03 0.04 0.03 0.40
## 4806 0.01 0.09 0.03 0.40
## 4807 0.00 0.40 0.00 0.40
## 4808 0.01 0.00 0.03 0.40
## 4809 0.15 0.00 0.05 0.40
## 4810 0.11 0.00 0.01 0.40
## 4811 0.00 0.38 0.03 0.40
## 4812 0.07 0.07 0.01 0.40
## 4813 0.15 0.00 0.03 0.40
## 4814 0.08 0.00 0.01 0.40
## 4815 0.08 0.00 0.04 0.40
## 4816 0.00 0.40 0.00 0.40
## 4817 0.06 0.00 0.03 0.40
## 4818 0.03 0.00 0.03 0.40
## 4819 0.08 0.08 0.03 0.40
## 4820 0.00 0.00 0.03 0.40
## 4821 0.14 0.00 0.04 0.40
## 4822 0.00 0.40 0.00 0.40
## 4823 0.15 0.00 0.03 0.40
## 4824 0.19 0.00 0.07 0.40
## 4825 0.01 0.00 0.27 0.40
## 4826 0.00 0.40 0.00 0.40
## 4827 0.07 0.00 0.00 0.40
## 4828 0.07 0.00 0.00 0.40
## 4829 0.03 0.00 0.00 0.40
## 4830 0.07 0.00 0.00 0.40
## 4831 0.15 0.00 0.05 0.40
## 4832 0.01 0.00 0.05 0.40
## 4833 0.15 0.00 0.03 0.40
## 4834 0.10 0.00 0.03 0.40
## 4835 0.30 0.00 0.04 0.40
## 4836 0.15 0.00 0.05 0.40
## 4837 0.01 0.00 0.05 0.40
## 4838 0.17 0.00 0.04 0.40
## 4839 0.15 0.00 0.05 0.40
## 4840 0.17 0.00 0.06 0.40
## 4841 0.11 0.00 0.01 0.40
## 4842 0.01 0.00 0.00 0.40
## 4843 0.07 0.00 0.01 0.40
## 4844 0.08 0.00 0.01 0.40
## 4845 0.14 0.00 0.04 0.40
## 4846 0.14 0.00 0.02 0.40
## 4847 0.15 0.00 0.03 0.40
## 4848 0.00 0.39 0.01 0.40
## 4849 0.11 0.00 0.01 0.40
## 4850 0.03 0.00 0.03 0.40
## 4851 0.05 0.00 0.03 0.40
## 4852 0.16 0.00 0.04 0.40
## 4853 0.14 0.04 0.03 0.40
## 4854 0.23 0.00 0.05 0.40
## 4855 0.15 0.00 0.03 0.40
## 4856 0.00 0.40 0.00 0.40
## 4857 0.12 0.01 0.03 0.40
## 4858 0.16 0.00 0.07 0.40
## 4859 0.15 0.00 0.06 0.40
## 4860 0.08 0.00 0.01 0.40
## 4861 0.03 0.00 0.02 0.40
## 4862 0.00 0.37 0.03 0.40
## 4863 0.04 0.24 0.02 0.40
## 4864 0.15 0.00 0.05 0.40
## 4865 0.15 0.00 0.03 0.40
## 4866 0.15 0.00 0.05 0.40
## 4867 0.12 0.00 0.06 0.40
## 4868 0.32 0.00 0.07 0.40
## 4869 0.00 0.40 0.00 0.40
## 4870 0.08 0.00 0.01 0.40
## 4871 0.10 0.00 0.03 0.40
## 4872 0.00 0.00 0.03 0.40
## 4873 0.19 0.00 0.03 0.40
## 4874 0.06 0.01 0.03 0.40
## 4875 0.00 0.40 0.00 0.40
## 4876 0.13 0.00 0.04 0.40
## 4877 0.01 0.00 0.05 0.40
## 4878 0.15 0.00 0.05 0.39
## 4879 0.15 0.00 0.07 0.39
## 4880 0.15 0.00 0.05 0.39
## 4881 0.11 0.00 0.02 0.39
## 4882 0.23 0.01 0.09 0.39
## 4883 0.17 0.00 0.03 0.39
## 4884 0.15 0.01 0.05 0.39
## 4885 0.18 0.00 0.06 0.39
## 4886 0.01 0.00 0.00 0.39
## 4887 0.00 0.00 0.03 0.39
## 4888 0.14 0.03 0.06 0.39
## 4889 0.18 0.00 0.07 0.39
## 4890 0.01 0.00 0.03 0.39
## 4891 0.00 0.00 0.03 0.39
## 4892 0.00 0.39 0.00 0.39
## 4893 0.15 0.00 0.03 0.39
## 4894 0.15 0.00 0.03 0.39
## 4895 0.02 0.00 0.00 0.39
## 4896 0.00 0.39 0.00 0.39
## 4897 0.10 0.00 0.01 0.39
## 4898 0.02 0.00 0.03 0.39
## 4899 0.01 0.01 0.05 0.39
## 4900 0.17 0.00 0.09 0.39
## 4901 0.08 0.00 0.01 0.39
## 4902 0.14 0.04 0.04 0.39
## 4903 0.00 0.39 0.00 0.39
## 4904 0.00 0.00 0.00 0.39
## 4905 0.26 0.00 0.05 0.39
## 4906 0.00 0.00 0.03 0.39
## 4907 0.12 0.00 0.03 0.39
## 4908 0.07 0.03 0.06 0.39
## 4909 0.02 0.00 0.00 0.39
## 4910 0.00 0.00 0.03 0.39
## 4911 0.05 0.16 0.04 0.39
## 4912 0.15 0.00 0.03 0.39
## 4913 0.00 0.00 0.03 0.39
## 4914 0.08 0.00 0.01 0.39
## 4915 0.16 0.00 0.05 0.39
## 4916 0.01 0.03 0.05 0.39
## 4917 0.00 0.37 0.03 0.39
## 4918 0.04 0.15 0.02 0.39
## 4919 0.17 0.01 0.04 0.39
## 4920 0.19 0.00 0.06 0.39
## 4921 0.13 0.00 0.04 0.39
## 4922 0.17 0.00 0.03 0.39
## 4923 0.02 0.00 0.03 0.39
## 4924 0.17 0.00 0.04 0.39
## 4925 0.06 0.05 0.03 0.39
## 4926 0.00 0.39 0.00 0.39
## 4927 0.32 0.00 0.07 0.39
## 4928 0.08 0.00 0.01 0.39
## 4929 0.01 0.00 0.07 0.39
## 4930 0.10 0.00 0.01 0.39
## 4931 0.03 0.00 0.00 0.39
## 4932 0.00 0.34 0.05 0.39
## 4933 0.07 0.00 0.00 0.39
## 4934 0.07 0.00 0.00 0.39
## 4935 0.14 0.00 0.06 0.39
## 4936 0.06 0.09 0.01 0.39
## 4937 0.32 0.00 0.07 0.39
## 4938 0.15 0.00 0.05 0.39
## 4939 0.00 0.00 0.03 0.39
## 4940 0.13 0.06 0.04 0.39
## 4941 0.15 0.00 0.05 0.39
## 4942 0.00 0.00 0.02 0.39
## 4943 0.12 0.00 0.04 0.39
## 4944 0.14 0.00 0.03 0.39
## 4945 0.00 0.39 0.00 0.39
## 4946 0.15 0.00 0.05 0.39
## 4947 0.02 0.00 0.04 0.39
## 4948 0.11 0.00 0.04 0.39
## 4949 0.24 0.00 0.08 0.39
## 4950 0.02 0.00 0.03 0.39
## 4951 0.15 0.00 0.05 0.39
## 4952 0.15 0.00 0.07 0.39
## 4953 0.00 0.39 0.00 0.39
## 4954 0.13 0.00 0.03 0.39
## 4955 0.00 0.39 0.00 0.39
## 4956 0.01 0.00 0.03 0.39
## 4957 0.01 0.00 0.03 0.39
## 4958 0.10 0.00 0.01 0.39
## 4959 0.15 0.00 0.05 0.39
## 4960 0.00 0.00 0.04 0.39
## 4961 0.00 0.39 0.00 0.39
## 4962 0.15 0.00 0.05 0.39
## 4963 0.08 0.00 0.01 0.39
## 4964 0.09 0.00 0.03 0.39
## 4965 0.00 0.00 0.03 0.39
## 4966 0.15 0.00 0.05 0.39
## 4967 0.15 0.00 0.05 0.39
## 4968 0.02 0.00 0.00 0.39
## 4969 0.00 0.36 0.03 0.39
## 4970 0.05 0.20 0.01 0.39
## 4971 0.08 0.01 0.03 0.39
## 4972 0.15 0.00 0.04 0.39
## 4973 0.36 0.00 0.02 0.39
## 4974 0.10 0.00 0.01 0.39
## 4975 0.00 0.00 0.00 0.38
## 4976 0.17 0.03 0.06 0.38
## 4977 0.15 0.00 0.05 0.38
## 4978 0.04 0.28 0.01 0.38
## 4979 0.00 0.20 0.01 0.38
## 4980 0.15 0.00 0.03 0.38
## 4981 0.23 0.00 0.07 0.38
## 4982 0.00 0.38 0.00 0.38
## 4983 0.05 0.25 0.02 0.38
## 4984 0.00 0.38 0.00 0.38
## 4985 0.15 0.00 0.03 0.38
## 4986 0.05 0.12 0.05 0.38
## 4987 0.00 0.36 0.03 0.38
## 4988 0.11 0.00 0.04 0.38
## 4989 0.08 0.00 0.01 0.38
## 4990 0.15 0.00 0.05 0.38
## 4991 0.00 0.00 0.03 0.38
## 4992 0.12 0.06 0.03 0.38
## 4993 0.00 0.38 0.00 0.38
## 4994 0.18 0.00 0.03 0.38
## 4995 0.07 0.00 0.04 0.38
## 4996 0.35 0.00 0.03 0.38
## 4997 0.01 0.37 0.00 0.38
## 4998 0.17 0.00 0.07 0.38
## 4999 0.10 0.00 0.01 0.38
## 5000 0.04 0.19 0.03 0.38
## 5001 0.15 0.00 0.05 0.38
## 5002 0.08 0.00 0.01 0.38
## 5003 0.12 0.00 0.03 0.38
## 5004 0.00 0.31 0.01 0.38
## 5005 0.00 0.38 0.00 0.38
## 5006 0.10 0.00 0.01 0.38
## 5007 0.00 0.00 0.28 0.38
## 5008 0.15 0.00 0.05 0.38
## 5009 0.05 0.00 0.04 0.38
## 5010 0.00 0.38 0.00 0.38
## 5011 0.23 0.00 0.04 0.38
## 5012 0.00 0.00 0.03 0.38
## 5013 0.08 0.00 0.01 0.38
## 5014 0.11 0.00 0.06 0.38
## 5015 0.08 0.17 0.03 0.38
## 5016 0.20 0.00 0.03 0.38
## 5017 0.22 0.00 0.04 0.38
## 5018 0.14 0.00 0.02 0.38
## 5019 0.00 0.36 0.02 0.38
## 5020 0.15 0.00 0.05 0.38
## 5021 0.15 0.00 0.05 0.38
## 5022 0.00 0.38 0.00 0.38
## 5023 0.08 0.00 0.01 0.38
## 5024 0.15 0.00 0.05 0.38
## 5025 0.15 0.02 0.06 0.38
## 5026 0.10 0.00 0.01 0.38
## 5027 0.11 0.10 0.02 0.38
## 5028 0.15 0.00 0.05 0.38
## 5029 0.03 0.00 0.03 0.38
## 5030 0.04 0.00 0.04 0.38
## 5031 0.00 0.36 0.02 0.38
## 5032 0.05 0.25 0.02 0.38
## 5033 0.15 0.00 0.05 0.38
## 5034 0.00 0.38 0.00 0.38
## 5035 0.21 0.00 0.04 0.38
## 5036 0.15 0.00 0.05 0.38
## 5037 0.01 0.00 0.05 0.38
## 5038 0.00 0.00 0.17 0.38
## 5039 0.02 0.00 0.02 0.38
## 5040 0.15 0.01 0.06 0.38
## 5041 0.12 0.00 0.07 0.38
## 5042 0.23 0.00 0.04 0.38
## 5043 0.00 0.38 0.00 0.38
## 5044 0.14 0.00 0.02 0.38
## 5045 0.20 0.00 0.04 0.38
## 5046 0.08 0.00 0.01 0.38
## 5047 0.01 0.00 0.05 0.38
## 5048 0.14 0.00 0.02 0.38
## 5049 0.00 0.38 0.00 0.38
## 5050 0.15 0.00 0.09 0.38
## 5051 0.06 0.07 0.01 0.38
## 5052 0.00 0.38 0.00 0.38
## 5053 0.05 0.20 0.01 0.38
## 5054 0.14 0.00 0.02 0.38
## 5055 0.14 0.00 0.02 0.38
## 5056 0.09 0.00 0.03 0.38
## 5057 0.29 0.01 0.05 0.38
## 5058 0.16 0.00 0.06 0.38
## 5059 0.13 0.00 0.06 0.38
## 5060 0.00 0.00 0.26 0.38
## 5061 0.03 0.00 0.03 0.38
## 5062 0.02 0.00 0.00 0.38
## 5063 0.00 0.00 0.03 0.38
## 5064 0.12 0.00 0.03 0.38
## 5065 0.02 0.00 0.00 0.38
## 5066 0.00 0.00 0.02 0.38
## 5067 0.05 0.25 0.03 0.38
## 5068 0.14 0.00 0.05 0.38
## 5069 0.08 0.00 0.01 0.38
## 5070 0.00 0.38 0.00 0.38
## 5071 0.07 0.00 0.07 0.38
## 5072 0.20 0.00 0.06 0.38
## 5073 0.01 0.00 0.03 0.38
## 5074 0.13 0.11 0.02 0.38
## 5075 0.01 0.06 0.02 0.38
## 5076 0.02 0.21 0.01 0.38
## 5077 0.03 0.00 0.03 0.38
## 5078 0.17 0.00 0.06 0.38
## 5079 0.16 0.00 0.10 0.38
## 5080 0.08 0.00 0.01 0.38
## 5081 0.03 0.00 0.03 0.38
## 5082 0.00 0.00 0.03 0.37
## 5083 0.02 0.00 0.00 0.37
## 5084 0.00 0.00 0.03 0.37
## 5085 0.07 0.19 0.02 0.37
## 5086 0.00 0.00 0.03 0.37
## 5087 0.12 0.00 0.04 0.37
## 5088 0.19 0.00 0.07 0.37
## 5089 0.03 0.13 0.02 0.37
## 5090 0.17 0.00 0.07 0.37
## 5091 0.03 0.00 0.03 0.37
## 5092 0.00 0.35 0.02 0.37
## 5093 0.00 0.00 0.02 0.37
## 5094 0.21 0.00 0.04 0.37
## 5095 0.00 0.00 0.21 0.37
## 5096 0.07 0.00 0.01 0.37
## 5097 0.15 0.03 0.06 0.37
## 5098 0.12 0.04 0.04 0.37
## 5099 0.08 0.00 0.01 0.37
## 5100 0.00 0.00 0.03 0.37
## 5101 0.00 0.00 0.03 0.37
## 5102 0.06 0.21 0.02 0.37
## 5103 0.14 0.00 0.05 0.37
## 5104 0.17 0.00 0.04 0.37
## 5105 0.14 0.00 0.03 0.37
## 5106 0.00 0.37 0.00 0.37
## 5107 0.01 0.00 0.03 0.37
## 5108 0.13 0.00 0.03 0.37
## 5109 0.07 0.00 0.01 0.37
## 5110 0.14 0.00 0.05 0.37
## 5111 0.14 0.00 0.05 0.37
## 5112 0.18 0.01 0.10 0.37
## 5113 0.14 0.00 0.05 0.37
## 5114 0.14 0.00 0.05 0.37
## 5115 0.00 0.00 0.03 0.37
## 5116 0.00 0.37 0.00 0.37
## 5117 0.00 0.37 0.00 0.37
## 5118 0.13 0.00 0.03 0.37
## 5119 0.18 0.00 0.06 0.37
## 5120 0.01 0.00 0.05 0.37
## 5121 0.00 0.35 0.02 0.37
## 5122 0.12 0.01 0.03 0.37
## 5123 0.20 0.00 0.11 0.37
## 5124 0.00 0.00 0.02 0.37
## 5125 0.00 0.32 0.05 0.37
## 5126 0.06 0.00 0.00 0.37
## 5127 0.06 0.00 0.00 0.37
## 5128 0.02 0.00 0.00 0.37
## 5129 0.07 0.00 0.01 0.37
## 5130 0.19 0.02 0.10 0.37
## 5131 0.17 0.00 0.06 0.37
## 5132 0.17 0.00 0.10 0.37
## 5133 0.33 0.00 0.03 0.37
## 5134 0.07 0.00 0.01 0.37
## 5135 0.00 0.37 0.00 0.37
## 5136 0.10 0.00 0.01 0.37
## 5137 0.17 0.01 0.07 0.37
## 5138 0.15 0.00 0.04 0.37
## 5139 0.00 0.36 0.01 0.37
## 5140 0.18 0.02 0.06 0.37
## 5141 0.00 0.00 0.03 0.37
## 5142 0.00 0.00 0.03 0.37
## 5143 0.00 0.37 0.00 0.37
## 5144 0.13 0.02 0.04 0.37
## 5145 0.00 0.00 0.00 0.37
## 5146 0.08 0.15 0.02 0.37
## 5147 0.01 0.02 0.03 0.37
## 5148 0.00 0.37 0.00 0.37
## 5149 0.07 0.18 0.02 0.37
## 5150 0.00 0.00 0.03 0.37
## 5151 0.22 0.00 0.03 0.37
## 5152 0.21 0.00 0.07 0.37
## 5153 0.00 0.37 0.00 0.37
## 5154 0.19 0.00 0.07 0.37
## 5155 0.00 0.37 0.00 0.37
## 5156 0.12 0.00 0.05 0.37
## 5157 0.13 0.00 0.06 0.37
## 5158 0.05 0.00 0.07 0.37
## 5159 0.32 0.00 0.04 0.37
## 5160 0.01 0.00 0.05 0.37
## 5161 0.00 0.00 0.03 0.37
## 5162 0.02 0.00 0.03 0.36
## 5163 0.04 0.00 0.01 0.36
## 5164 0.08 0.00 0.03 0.36
## 5165 0.00 0.00 0.03 0.36
## 5166 0.07 0.00 0.01 0.36
## 5167 0.00 0.36 0.00 0.36
## 5168 0.06 0.21 0.02 0.36
## 5169 0.00 0.36 0.00 0.36
## 5170 0.09 0.01 0.03 0.36
## 5171 0.14 0.00 0.05 0.36
## 5172 0.02 0.00 0.03 0.36
## 5173 0.17 0.05 0.05 0.36
## 5174 0.00 0.36 0.00 0.36
## 5175 0.00 0.36 0.00 0.36
## 5176 0.00 0.36 0.00 0.36
## 5177 0.14 0.00 0.05 0.36
## 5178 0.14 0.00 0.05 0.36
## 5179 0.14 0.00 0.05 0.36
## 5180 0.00 0.36 0.00 0.36
## 5181 0.01 0.16 0.02 0.36
## 5182 0.19 0.00 0.10 0.36
## 5183 0.16 0.00 0.03 0.36
## 5184 0.13 0.00 0.03 0.36
## 5185 0.09 0.01 0.05 0.36
## 5186 0.09 0.14 0.03 0.36
## 5187 0.14 0.00 0.05 0.36
## 5188 0.09 0.00 0.03 0.36
## 5189 0.08 0.04 0.03 0.36
## 5190 0.14 0.00 0.02 0.36
## 5191 0.03 0.27 0.02 0.36
## 5192 0.10 0.00 0.01 0.36
## 5193 0.11 0.08 0.04 0.36
## 5194 0.00 0.00 0.03 0.36
## 5195 0.00 0.34 0.02 0.36
## 5196 0.10 0.00 0.01 0.36
## 5197 0.13 0.00 0.03 0.36
## 5198 0.05 0.00 0.03 0.36
## 5199 0.01 0.00 0.03 0.36
## 5200 0.13 0.00 0.03 0.36
## 5201 0.00 0.36 0.00 0.36
## 5202 0.14 0.00 0.02 0.36
## 5203 0.14 0.00 0.05 0.36
## 5204 0.08 0.00 0.01 0.36
## 5205 0.10 0.00 0.01 0.36
## 5206 0.02 0.23 0.04 0.36
## 5207 0.06 0.00 0.00 0.36
## 5208 0.06 0.00 0.00 0.36
## 5209 0.02 0.16 0.05 0.36
## 5210 0.00 0.00 0.03 0.36
## 5211 0.14 0.00 0.02 0.36
## 5212 0.11 0.00 0.05 0.36
## 5213 0.10 0.00 0.01 0.36
## 5214 0.00 0.00 0.03 0.36
## 5215 0.08 0.00 0.01 0.36
## 5216 0.20 0.00 0.04 0.36
## 5217 0.00 0.35 0.01 0.36
## 5218 0.00 0.36 0.00 0.36
## 5219 0.09 0.01 0.03 0.36
## 5220 0.14 0.00 0.02 0.36
## 5221 0.03 0.00 0.02 0.36
## 5222 0.00 0.00 0.03 0.36
## 5223 0.06 0.00 0.03 0.36
## 5224 0.08 0.00 0.01 0.36
## 5225 0.00 0.00 0.02 0.36
## 5226 0.00 0.36 0.00 0.36
## 5227 0.10 0.00 0.03 0.36
## 5228 0.25 0.00 0.04 0.36
## 5229 0.14 0.00 0.05 0.36
## 5230 0.00 0.36 0.00 0.36
## 5231 0.12 0.00 0.06 0.36
## 5232 0.17 0.00 0.07 0.36
## 5233 0.00 0.36 0.00 0.36
## 5234 0.09 0.00 0.03 0.36
## 5235 0.14 0.00 0.05 0.36
## 5236 0.14 0.00 0.05 0.36
## 5237 0.00 0.33 0.02 0.36
## 5238 0.00 0.36 0.00 0.36
## 5239 0.32 0.00 0.03 0.36
## 5240 0.00 0.35 0.01 0.36
## 5241 0.25 0.00 0.05 0.36
## 5242 0.01 0.00 0.02 0.36
## 5243 0.25 0.00 0.05 0.36
## 5244 0.11 0.00 0.05 0.36
## 5245 0.31 0.00 0.05 0.36
## 5246 0.00 0.33 0.02 0.36
## 5247 0.02 0.00 0.00 0.36
## 5248 0.04 0.00 0.02 0.36
## 5249 0.08 0.00 0.01 0.36
## 5250 0.10 0.00 0.03 0.36
## 5251 0.00 0.36 0.00 0.36
## 5252 0.13 0.00 0.02 0.36
## 5253 0.00 0.36 0.00 0.36
## 5254 0.06 0.00 0.04 0.36
## 5255 0.02 0.11 0.02 0.36
## 5256 0.14 0.00 0.05 0.36
## 5257 0.07 0.00 0.05 0.36
## 5258 0.14 0.00 0.05 0.36
## 5259 0.26 0.00 0.09 0.36
## 5260 0.00 0.36 0.00 0.36
## 5261 0.00 0.00 0.02 0.36
## 5262 0.04 0.23 0.02 0.36
## 5263 0.10 0.00 0.01 0.36
## 5264 0.16 0.00 0.04 0.35
## 5265 0.01 0.00 0.03 0.35
## 5266 0.13 0.00 0.02 0.35
## 5267 0.02 0.03 0.03 0.35
## 5268 0.09 0.00 0.01 0.35
## 5269 0.09 0.00 0.03 0.35
## 5270 0.14 0.00 0.05 0.35
## 5271 0.07 0.00 0.01 0.35
## 5272 0.06 0.19 0.02 0.35
## 5273 0.00 0.35 0.00 0.35
## 5274 0.18 0.00 0.07 0.35
## 5275 0.03 0.08 0.02 0.35
## 5276 0.14 0.00 0.05 0.35
## 5277 0.07 0.00 0.03 0.35
## 5278 0.00 0.35 0.00 0.35
## 5279 0.20 0.00 0.07 0.35
## 5280 0.00 0.35 0.00 0.35
## 5281 0.16 0.00 0.06 0.35
## 5282 0.12 0.01 0.03 0.35
## 5283 0.13 0.00 0.05 0.35
## 5284 0.09 0.00 0.01 0.35
## 5285 0.08 0.00 0.01 0.35
## 5286 0.18 0.00 0.04 0.35
## 5287 0.00 0.35 0.00 0.35
## 5288 0.04 0.23 0.01 0.35
## 5289 0.10 0.07 0.03 0.35
## 5290 0.01 0.30 0.00 0.35
## 5291 0.15 0.00 0.04 0.35
## 5292 0.00 0.35 0.00 0.35
## 5293 0.11 0.05 0.04 0.35
## 5294 0.13 0.00 0.04 0.35
## 5295 0.02 0.28 0.02 0.35
## 5296 0.09 0.00 0.01 0.35
## 5297 0.00 0.35 0.00 0.35
## 5298 0.08 0.04 0.04 0.35
## 5299 0.02 0.00 0.02 0.35
## 5300 0.03 0.00 0.03 0.35
## 5301 0.18 0.00 0.04 0.35
## 5302 0.10 0.00 0.03 0.35
## 5303 0.05 0.14 0.01 0.35
## 5304 0.00 0.09 0.02 0.35
## 5305 0.00 0.29 0.06 0.35
## 5306 0.19 0.03 0.07 0.35
## 5307 0.17 0.00 0.06 0.35
## 5308 0.14 0.00 0.03 0.35
## 5309 0.10 0.00 0.03 0.35
## 5310 0.13 0.00 0.04 0.35
## 5311 0.07 0.00 0.01 0.35
## 5312 0.09 0.00 0.01 0.35
## 5313 0.00 0.00 0.02 0.35
## 5314 0.13 0.00 0.04 0.35
## 5315 0.13 0.00 0.02 0.35
## 5316 0.08 0.00 0.01 0.35
## 5317 0.14 0.00 0.03 0.35
## 5318 0.16 0.01 0.06 0.35
## 5319 0.13 0.00 0.04 0.35
## 5320 0.13 0.00 0.04 0.35
## 5321 0.07 0.16 0.02 0.35
## 5322 0.20 0.00 0.04 0.35
## 5323 0.05 0.14 0.03 0.35
## 5324 0.07 0.00 0.04 0.35
## 5325 0.13 0.00 0.04 0.35
## 5326 0.00 0.32 0.02 0.35
## 5327 0.13 0.00 0.04 0.35
## 5328 0.13 0.00 0.04 0.35
## 5329 0.13 0.00 0.04 0.35
## 5330 0.07 0.00 0.01 0.35
## 5331 0.00 0.00 0.03 0.35
## 5332 0.13 0.00 0.04 0.35
## 5333 0.20 0.00 0.05 0.35
## 5334 0.00 0.35 0.00 0.35
## 5335 0.13 0.00 0.02 0.35
## 5336 0.08 0.15 0.03 0.35
## 5337 0.01 0.00 0.03 0.35
## 5338 0.13 0.00 0.02 0.35
## 5339 0.00 0.35 0.00 0.35
## 5340 0.13 0.00 0.04 0.35
## 5341 0.14 0.00 0.03 0.35
## 5342 0.00 0.00 0.03 0.35
## 5343 0.21 0.00 0.08 0.35
## 5344 0.07 0.00 0.01 0.35
## 5345 0.07 0.15 0.04 0.35
## 5346 0.13 0.00 0.06 0.35
## 5347 0.13 0.00 0.04 0.35
## 5348 0.01 0.01 0.03 0.35
## 5349 0.23 0.00 0.03 0.35
## 5350 0.00 0.32 0.02 0.34
## 5351 0.00 0.00 0.02 0.34
## 5352 0.09 0.00 0.01 0.34
## 5353 0.00 0.34 0.00 0.34
## 5354 0.15 0.00 0.08 0.34
## 5355 0.09 0.00 0.01 0.34
## 5356 0.13 0.00 0.04 0.34
## 5357 0.09 0.12 0.03 0.34
## 5358 0.00 0.34 0.00 0.34
## 5359 0.13 0.00 0.02 0.34
## 5360 0.03 0.09 0.02 0.34
## 5361 0.15 0.00 0.06 0.34
## 5362 0.04 0.20 0.01 0.34
## 5363 0.07 0.00 0.03 0.34
## 5364 0.00 0.00 0.03 0.34
## 5365 0.03 0.00 0.03 0.34
## 5366 0.02 0.02 0.03 0.34
## 5367 0.02 0.00 0.00 0.34
## 5368 0.09 0.00 0.01 0.34
## 5369 0.06 0.19 0.02 0.34
## 5370 0.16 0.00 0.03 0.34
## 5371 0.16 0.00 0.03 0.34
## 5372 0.13 0.00 0.04 0.34
## 5373 0.00 0.34 0.00 0.34
## 5374 0.12 0.00 0.03 0.34
## 5375 0.03 0.00 0.25 0.34
## 5376 0.09 0.00 0.01 0.34
## 5377 0.00 0.09 0.02 0.34
## 5378 0.13 0.00 0.02 0.34
## 5379 0.13 0.00 0.04 0.34
## 5380 0.07 0.00 0.01 0.34
## 5381 0.13 0.00 0.04 0.34
## 5382 0.02 0.00 0.00 0.34
## 5383 0.02 0.00 0.00 0.34
## 5384 0.15 0.00 0.03 0.34
## 5385 0.03 0.00 0.03 0.34
## 5386 0.03 0.00 0.02 0.34
## 5387 0.07 0.00 0.01 0.34
## 5388 0.03 0.15 0.02 0.34
## 5389 0.11 0.00 0.01 0.34
## 5390 0.02 0.00 0.00 0.34
## 5391 0.17 0.00 0.04 0.34
## 5392 0.01 0.00 0.03 0.34
## 5393 0.11 0.03 0.05 0.34
## 5394 0.00 0.34 0.00 0.34
## 5395 0.06 0.00 0.00 0.34
## 5396 0.02 0.00 0.00 0.34
## 5397 0.13 0.00 0.06 0.34
## 5398 0.09 0.00 0.03 0.34
## 5399 0.13 0.00 0.02 0.34
## 5400 0.03 0.00 0.03 0.34
## 5401 0.02 0.00 0.00 0.34
## 5402 0.34 0.00 0.00 0.34
## 5403 0.13 0.00 0.04 0.34
## 5404 0.15 0.00 0.05 0.34
## 5405 0.07 0.00 0.01 0.34
## 5406 0.00 0.34 0.00 0.34
## 5407 0.03 0.23 0.02 0.34
## 5408 0.01 0.00 0.02 0.34
## 5409 0.00 0.00 0.02 0.34
## 5410 0.18 0.00 0.03 0.34
## 5411 0.01 0.03 0.02 0.34
## 5412 0.02 0.16 0.02 0.34
## 5413 0.02 0.00 0.03 0.34
## 5414 0.13 0.00 0.02 0.34
## 5415 0.21 0.00 0.04 0.34
## 5416 0.07 0.00 0.01 0.34
## 5417 0.15 0.00 0.03 0.34
## 5418 0.00 0.00 0.02 0.34
## 5419 0.02 0.00 0.03 0.34
## 5420 0.13 0.00 0.03 0.34
## 5421 0.09 0.00 0.01 0.34
## 5422 0.17 0.00 0.05 0.34
## 5423 0.07 0.00 0.01 0.34
## 5424 0.10 0.00 0.03 0.34
## 5425 0.02 0.00 0.22 0.34
## 5426 0.25 0.00 0.08 0.34
## 5427 0.00 0.34 0.00 0.34
## 5428 0.00 0.02 0.03 0.34
## 5429 0.02 0.00 0.03 0.34
## 5430 0.12 0.00 0.05 0.34
## 5431 0.03 0.25 0.01 0.34
## 5432 0.04 0.00 0.02 0.34
## 5433 0.13 0.00 0.02 0.34
## 5434 0.13 0.00 0.04 0.34
## 5435 0.01 0.00 0.03 0.34
## 5436 0.14 0.00 0.03 0.34
## 5437 0.07 0.00 0.01 0.34
## 5438 0.18 0.00 0.04 0.34
## 5439 0.13 0.00 0.04 0.34
## 5440 0.00 0.33 0.00 0.33
## 5441 0.15 0.07 0.05 0.33
## 5442 0.14 0.02 0.03 0.33
## 5443 0.11 0.00 0.01 0.33
## 5444 0.13 0.00 0.03 0.33
## 5445 0.14 0.00 0.04 0.33
## 5446 0.04 0.21 0.02 0.33
## 5447 0.10 0.08 0.03 0.33
## 5448 0.08 0.14 0.03 0.33
## 5449 0.07 0.01 0.03 0.33
## 5450 0.13 0.00 0.04 0.33
## 5451 0.09 0.00 0.01 0.33
## 5452 0.04 0.22 0.02 0.33
## 5453 0.29 0.00 0.04 0.33
## 5454 0.00 0.18 0.01 0.33
## 5455 0.01 0.02 0.03 0.33
## 5456 0.12 0.00 0.08 0.33
## 5457 0.18 0.00 0.03 0.33
## 5458 0.13 0.00 0.02 0.33
## 5459 0.00 0.33 0.00 0.33
## 5460 0.00 0.00 0.02 0.33
## 5461 0.15 0.00 0.03 0.33
## 5462 0.15 0.00 0.05 0.33
## 5463 0.14 0.00 0.05 0.33
## 5464 0.30 0.00 0.03 0.33
## 5465 0.05 0.00 0.03 0.33
## 5466 0.09 0.00 0.05 0.33
## 5467 0.07 0.00 0.01 0.33
## 5468 0.01 0.16 0.01 0.33
## 5469 0.07 0.00 0.01 0.33
## 5470 0.07 0.00 0.01 0.33
## 5471 0.02 0.00 0.03 0.33
## 5472 0.00 0.00 0.02 0.33
## 5473 0.00 0.00 0.02 0.33
## 5474 0.10 0.08 0.03 0.33
## 5475 0.07 0.00 0.01 0.33
## 5476 0.13 0.06 0.03 0.33
## 5477 0.00 0.00 0.03 0.33
## 5478 0.13 0.00 0.04 0.33
## 5479 0.07 0.00 0.01 0.33
## 5480 0.00 0.10 0.02 0.33
## 5481 0.00 0.00 0.03 0.33
## 5482 0.00 0.31 0.02 0.33
## 5483 0.13 0.08 0.04 0.33
## 5484 0.07 0.00 0.01 0.33
## 5485 0.25 0.00 0.08 0.33
## 5486 0.15 0.00 0.04 0.33
## 5487 0.13 0.00 0.04 0.33
## 5488 0.09 0.00 0.01 0.33
## 5489 0.09 0.00 0.03 0.33
## 5490 0.13 0.00 0.04 0.33
## 5491 0.00 0.31 0.02 0.33
## 5492 0.13 0.00 0.05 0.33
## 5493 0.08 0.00 0.03 0.33
## 5494 0.00 0.33 0.00 0.33
## 5495 0.00 0.33 0.00 0.33
## 5496 0.13 0.00 0.03 0.33
## 5497 0.00 0.03 0.03 0.33
## 5498 0.00 0.00 0.03 0.33
## 5499 0.13 0.00 0.04 0.33
## 5500 0.18 0.00 0.05 0.33
## 5501 0.13 0.00 0.04 0.33
## 5502 0.06 0.09 0.01 0.33
## 5503 0.11 0.06 0.05 0.33
## 5504 0.03 0.00 0.16 0.33
## 5505 0.06 0.00 0.01 0.33
## 5506 0.09 0.00 0.01 0.33
## 5507 0.04 0.23 0.01 0.33
## 5508 0.18 0.00 0.06 0.33
## 5509 0.00 0.29 0.04 0.33
## 5510 0.06 0.00 0.00 0.33
## 5511 0.00 0.33 0.00 0.33
## 5512 0.12 0.01 0.03 0.33
## 5513 0.12 0.00 0.02 0.33
## 5514 0.07 0.15 0.02 0.33
## 5515 0.04 0.00 0.03 0.33
## 5516 0.04 0.00 0.02 0.33
## 5517 0.08 0.12 0.03 0.33
## 5518 0.00 0.33 0.00 0.33
## 5519 0.00 0.00 0.02 0.33
## 5520 0.12 0.00 0.05 0.33
## 5521 0.07 0.00 0.01 0.33
## 5522 0.01 0.08 0.02 0.33
## 5523 0.14 0.00 0.08 0.33
## 5524 0.28 0.00 0.03 0.33
## 5525 0.13 0.00 0.04 0.33
## 5526 0.13 0.00 0.04 0.33
## 5527 0.01 0.00 0.03 0.33
## 5528 0.16 0.00 0.09 0.33
## 5529 0.15 0.00 0.06 0.33
## 5530 0.07 0.00 0.01 0.33
## 5531 0.03 0.00 0.02 0.33
## 5532 0.00 0.00 0.02 0.33
## 5533 0.10 0.00 0.03 0.33
## 5534 0.00 0.31 0.02 0.33
## 5535 0.09 0.00 0.01 0.33
## 5536 0.00 0.33 0.00 0.33
## 5537 0.17 0.00 0.04 0.33
## 5538 0.12 0.00 0.02 0.33
## 5539 0.09 0.00 0.01 0.33
## 5540 0.17 0.00 0.06 0.33
## 5541 0.00 0.32 0.01 0.33
## 5542 0.00 0.33 0.00 0.33
## 5543 0.12 0.00 0.03 0.33
## 5544 0.11 0.00 0.03 0.33
## 5545 0.08 0.00 0.03 0.33
## 5546 0.07 0.00 0.01 0.33
## 5547 0.00 0.33 0.00 0.33
## 5548 0.16 0.00 0.03 0.33
## 5549 0.04 0.08 0.02 0.33
## 5550 0.00 0.31 0.02 0.33
## 5551 0.01 0.00 0.03 0.33
## 5552 0.11 0.04 0.02 0.33
## 5553 0.16 0.01 0.06 0.33
## 5554 0.05 0.05 0.03 0.33
## 5555 0.03 0.16 0.02 0.33
## 5556 0.00 0.33 0.00 0.33
## 5557 0.11 0.00 0.03 0.33
## 5558 0.07 0.00 0.01 0.33
## 5559 0.08 0.10 0.03 0.33
## 5560 0.02 0.00 0.00 0.33
## 5561 0.00 0.19 0.01 0.33
## 5562 0.15 0.00 0.07 0.33
## 5563 0.07 0.00 0.01 0.33
## 5564 0.00 0.00 0.02 0.33
## 5565 0.02 0.00 0.00 0.33
## 5566 0.09 0.00 0.03 0.33
## 5567 0.00 0.00 0.02 0.33
## 5568 0.04 0.16 0.01 0.33
## 5569 0.01 0.08 0.02 0.33
## 5570 0.00 0.30 0.02 0.33
## 5571 0.07 0.00 0.01 0.33
## 5572 0.12 0.00 0.04 0.33
## 5573 0.10 0.01 0.07 0.33
## 5574 0.15 0.00 0.05 0.33
## 5575 0.05 0.00 0.03 0.33
## 5576 0.14 0.00 0.03 0.32
## 5577 0.00 0.00 0.03 0.32
## 5578 0.06 0.20 0.02 0.32
## 5579 0.01 0.00 0.00 0.32
## 5580 0.09 0.00 0.01 0.32
## 5581 0.12 0.00 0.04 0.32
## 5582 0.00 0.32 0.00 0.32
## 5583 0.16 0.00 0.04 0.32
## 5584 0.12 0.00 0.04 0.32
## 5585 0.12 0.00 0.02 0.32
## 5586 0.08 0.16 0.03 0.32
## 5587 0.04 0.02 0.03 0.32
## 5588 0.14 0.00 0.06 0.32
## 5589 0.00 0.00 0.03 0.32
## 5590 0.11 0.00 0.03 0.32
## 5591 0.00 0.00 0.02 0.32
## 5592 0.08 0.03 0.02 0.32
## 5593 0.01 0.12 0.01 0.32
## 5594 0.02 0.00 0.00 0.32
## 5595 0.00 0.32 0.00 0.32
## 5596 0.11 0.00 0.03 0.32
## 5597 0.04 0.10 0.03 0.32
## 5598 0.12 0.00 0.04 0.32
## 5599 0.02 0.15 0.02 0.32
## 5600 0.12 0.00 0.02 0.32
## 5601 0.03 0.00 0.01 0.32
## 5602 0.15 0.00 0.06 0.32
## 5603 0.00 0.30 0.02 0.32
## 5604 0.13 0.00 0.08 0.32
## 5605 0.08 0.00 0.03 0.32
## 5606 0.00 0.00 0.02 0.32
## 5607 0.27 0.00 0.05 0.32
## 5608 0.02 0.00 0.03 0.32
## 5609 0.13 0.00 0.03 0.32
## 5610 0.03 0.00 0.03 0.32
## 5611 0.00 0.00 0.02 0.32
## 5612 0.04 0.21 0.02 0.32
## 5613 0.12 0.00 0.02 0.32
## 5614 0.16 0.02 0.05 0.32
## 5615 0.02 0.00 0.03 0.32
## 5616 0.07 0.12 0.02 0.32
## 5617 0.14 0.00 0.03 0.32
## 5618 0.00 0.32 0.00 0.32
## 5619 0.06 0.15 0.02 0.32
## 5620 0.26 0.00 0.06 0.32
## 5621 0.12 0.00 0.04 0.32
## 5622 0.24 0.00 0.05 0.32
## 5623 0.11 0.00 0.03 0.32
## 5624 0.00 0.00 0.02 0.32
## 5625 0.12 0.00 0.04 0.32
## 5626 0.05 0.00 0.02 0.32
## 5627 0.00 0.00 0.02 0.32
## 5628 0.14 0.00 0.03 0.32
## 5629 0.06 0.00 0.01 0.32
## 5630 0.12 0.00 0.04 0.32
## 5631 0.04 0.13 0.00 0.32
## 5632 0.12 0.00 0.02 0.32
## 5633 0.00 0.32 0.00 0.32
## 5634 0.24 0.00 0.05 0.32
## 5635 0.08 0.00 0.01 0.32
## 5636 0.12 0.00 0.02 0.32
## 5637 0.28 0.00 0.04 0.32
## 5638 0.12 0.00 0.02 0.32
## 5639 0.02 0.00 0.03 0.32
## 5640 0.12 0.00 0.04 0.32
## 5641 0.12 0.00 0.02 0.32
## 5642 0.03 0.00 0.03 0.32
## 5643 0.12 0.00 0.04 0.32
## 5644 0.30 0.00 0.02 0.32
## 5645 0.00 0.32 0.00 0.32
## 5646 0.00 0.32 0.00 0.32
## 5647 0.00 0.30 0.02 0.32
## 5648 0.08 0.00 0.01 0.32
## 5649 0.12 0.00 0.04 0.32
## 5650 0.00 0.00 0.03 0.32
## 5651 0.08 0.00 0.01 0.32
## 5652 0.00 0.32 0.00 0.32
## 5653 0.12 0.00 0.03 0.32
## 5654 0.12 0.00 0.04 0.32
## 5655 0.12 0.00 0.04 0.32
## 5656 0.15 0.00 0.03 0.32
## 5657 0.08 0.00 0.01 0.32
## 5658 0.02 0.00 0.00 0.32
## 5659 0.02 0.00 0.00 0.32
## 5660 0.12 0.00 0.02 0.32
## 5661 0.00 0.32 0.00 0.32
## 5662 0.14 0.02 0.06 0.32
## 5663 0.18 0.00 0.10 0.32
## 5664 0.07 0.00 0.01 0.32
## 5665 0.02 0.00 0.02 0.32
## 5666 0.00 0.32 0.00 0.32
## 5667 0.00 0.32 0.00 0.32
## 5668 0.00 0.32 0.00 0.32
## 5669 0.08 0.00 0.01 0.32
## 5670 0.12 0.00 0.04 0.32
## 5671 0.00 0.30 0.02 0.32
## 5672 0.00 0.30 0.02 0.32
## 5673 0.00 0.32 0.00 0.32
## 5674 0.07 0.00 0.01 0.32
## 5675 0.08 0.00 0.01 0.32
## 5676 0.00 0.00 0.28 0.32
## 5677 0.01 0.00 0.02 0.32
## 5678 0.00 0.00 0.02 0.32
## 5679 0.07 0.00 0.01 0.32
## 5680 0.12 0.00 0.04 0.32
## 5681 0.01 0.00 0.02 0.32
## 5682 0.00 0.32 0.00 0.32
## 5683 0.12 0.00 0.02 0.32
## 5684 0.06 0.16 0.02 0.32
## 5685 0.15 0.00 0.09 0.32
## 5686 0.06 0.03 0.02 0.32
## 5687 0.04 0.02 0.02 0.32
## 5688 0.12 0.00 0.04 0.32
## 5689 0.02 0.00 0.20 0.32
## 5690 0.12 0.00 0.06 0.32
## 5691 0.00 0.32 0.00 0.32
## 5692 0.04 0.00 0.03 0.32
## 5693 0.04 0.08 0.02 0.32
## 5694 0.00 0.32 0.00 0.32
## 5695 0.08 0.00 0.01 0.32
## 5696 0.12 0.00 0.02 0.32
## 5697 0.17 0.00 0.05 0.32
## 5698 0.00 0.32 0.00 0.32
## 5699 0.17 0.00 0.05 0.32
## 5700 0.11 0.00 0.03 0.31
## 5701 0.14 0.00 0.05 0.31
## 5702 0.19 0.00 0.04 0.31
## 5703 0.18 0.00 0.03 0.31
## 5704 0.12 0.00 0.02 0.31
## 5705 0.00 0.31 0.00 0.31
## 5706 0.07 0.00 0.01 0.31
## 5707 0.00 0.00 0.02 0.31
## 5708 0.12 0.00 0.02 0.31
## 5709 0.00 0.00 0.02 0.31
## 5710 0.04 0.00 0.02 0.31
## 5711 0.00 0.31 0.00 0.31
## 5712 0.00 0.01 0.02 0.31
## 5713 0.08 0.00 0.01 0.31
## 5714 0.15 0.00 0.06 0.31
## 5715 0.00 0.31 0.00 0.31
## 5716 0.15 0.06 0.03 0.31
## 5717 0.00 0.31 0.00 0.31
## 5718 0.00 0.31 0.00 0.31
## 5719 0.12 0.00 0.02 0.31
## 5720 0.01 0.00 0.02 0.31
## 5721 0.01 0.01 0.02 0.31
## 5722 0.07 0.00 0.01 0.31
## 5723 0.12 0.00 0.04 0.31
## 5724 0.01 0.00 0.02 0.31
## 5725 0.03 0.00 0.03 0.31
## 5726 0.04 0.10 0.02 0.31
## 5727 0.00 0.31 0.00 0.31
## 5728 0.10 0.00 0.03 0.31
## 5729 0.00 0.00 0.02 0.31
## 5730 0.19 0.03 0.04 0.31
## 5731 0.12 0.00 0.04 0.31
## 5732 0.12 0.00 0.02 0.31
## 5733 0.07 0.00 0.01 0.31
## 5734 0.07 0.00 0.01 0.31
## 5735 0.07 0.00 0.01 0.31
## 5736 0.01 0.00 0.02 0.31
## 5737 0.07 0.13 0.02 0.31
## 5738 0.12 0.00 0.02 0.31
## 5739 0.00 0.00 0.02 0.31
## 5740 0.13 0.00 0.03 0.31
## 5741 0.09 0.00 0.03 0.31
## 5742 0.20 0.00 0.03 0.31
## 5743 0.06 0.16 0.02 0.31
## 5744 0.00 0.31 0.00 0.31
## 5745 0.00 0.00 0.02 0.31
## 5746 0.00 0.31 0.00 0.31
## 5747 0.12 0.00 0.02 0.31
## 5748 0.07 0.00 0.01 0.31
## 5749 0.08 0.00 0.01 0.31
## 5750 0.00 0.29 0.02 0.31
## 5751 0.01 0.00 0.03 0.31
## 5752 0.00 0.00 0.02 0.31
## 5753 0.04 0.17 0.03 0.31
## 5754 0.00 0.26 0.05 0.31
## 5755 0.02 0.13 0.10 0.31
## 5756 0.06 0.00 0.00 0.31
## 5757 0.06 0.00 0.00 0.31
## 5758 0.06 0.00 0.00 0.31
## 5759 0.00 0.26 0.05 0.31
## 5760 0.29 0.00 0.02 0.31
## 5761 0.00 0.00 0.00 0.31
## 5762 0.05 0.00 0.02 0.31
## 5763 0.10 0.00 0.03 0.31
## 5764 0.00 0.31 0.00 0.31
## 5765 0.00 0.00 0.02 0.31
## 5766 0.10 0.00 0.03 0.31
## 5767 0.00 0.31 0.00 0.31
## 5768 0.00 0.00 0.02 0.31
## 5769 0.04 0.00 0.03 0.31
## 5770 0.07 0.00 0.01 0.31
## 5771 0.02 0.09 0.02 0.31
## 5772 0.08 0.00 0.01 0.31
## 5773 0.11 0.02 0.02 0.31
## 5774 0.02 0.00 0.00 0.31
## 5775 0.12 0.00 0.04 0.31
## 5776 0.04 0.00 0.03 0.31
## 5777 0.00 0.00 0.02 0.31
## 5778 0.12 0.00 0.04 0.31
## 5779 0.00 0.31 0.00 0.31
## 5780 0.00 0.00 0.02 0.31
## 5781 0.05 0.00 0.02 0.31
## 5782 0.00 0.00 0.02 0.31
## 5783 0.12 0.00 0.02 0.31
## 5784 0.05 0.00 0.01 0.31
## 5785 0.00 0.29 0.02 0.31
## 5786 0.00 0.00 0.02 0.31
## 5787 0.13 0.00 0.04 0.31
## 5788 0.06 0.00 0.01 0.31
## 5789 0.00 0.31 0.00 0.31
## 5790 0.12 0.00 0.05 0.31
## 5791 0.17 0.00 0.03 0.31
## 5792 0.12 0.00 0.02 0.31
## 5793 0.12 0.00 0.04 0.31
## 5794 0.00 0.00 0.02 0.31
## 5795 0.07 0.04 0.03 0.31
## 5796 0.12 0.00 0.04 0.31
## 5797 0.12 0.00 0.02 0.31
## 5798 0.12 0.00 0.04 0.31
## 5799 0.02 0.00 0.00 0.31
## 5800 0.00 0.31 0.00 0.31
## 5801 0.02 0.00 0.00 0.31
## 5802 0.12 0.00 0.04 0.31
## 5803 0.12 0.00 0.02 0.31
## 5804 0.05 0.14 0.04 0.31
## 5805 0.01 0.10 0.02 0.31
## 5806 0.04 0.00 0.02 0.31
## 5807 0.00 0.00 0.02 0.31
## 5808 0.06 0.00 0.02 0.31
## 5809 0.12 0.00 0.02 0.31
## 5810 0.06 0.00 0.03 0.31
## 5811 0.13 0.01 0.08 0.31
## 5812 0.07 0.00 0.01 0.31
## 5813 0.12 0.00 0.02 0.31
## 5814 0.00 0.30 0.01 0.31
## 5815 0.12 0.00 0.02 0.31
## 5816 0.12 0.00 0.04 0.31
## 5817 0.00 0.31 0.00 0.31
## 5818 0.00 0.31 0.00 0.31
## 5819 0.12 0.00 0.04 0.31
## 5820 0.10 0.00 0.03 0.31
## 5821 0.01 0.00 0.02 0.30
## 5822 0.08 0.07 0.02 0.30
## 5823 0.08 0.00 0.01 0.30
## 5824 0.00 0.00 0.02 0.30
## 5825 0.07 0.00 0.01 0.30
## 5826 0.08 0.00 0.01 0.30
## 5827 0.12 0.06 0.05 0.30
## 5828 0.13 0.00 0.03 0.30
## 5829 0.00 0.30 0.00 0.30
## 5830 0.00 0.30 0.00 0.30
## 5831 0.12 0.00 0.02 0.30
## 5832 0.00 0.30 0.00 0.30
## 5833 0.04 0.00 0.02 0.30
## 5834 0.08 0.00 0.01 0.30
## 5835 0.12 0.00 0.02 0.30
## 5836 0.00 0.30 0.00 0.30
## 5837 0.03 0.00 0.03 0.30
## 5838 0.04 0.01 0.03 0.30
## 5839 0.02 0.00 0.02 0.30
## 5840 0.12 0.00 0.07 0.30
## 5841 0.00 0.08 0.02 0.30
## 5842 0.25 0.00 0.05 0.30
## 5843 0.03 0.21 0.02 0.30
## 5844 0.12 0.00 0.04 0.30
## 5845 0.04 0.00 0.02 0.30
## 5846 0.06 0.00 0.01 0.30
## 5847 0.08 0.00 0.01 0.30
## 5848 0.12 0.00 0.04 0.30
## 5849 0.10 0.00 0.03 0.30
## 5850 0.00 0.00 0.02 0.30
## 5851 0.00 0.30 0.00 0.30
## 5852 0.09 0.00 0.03 0.30
## 5853 0.08 0.00 0.01 0.30
## 5854 0.12 0.00 0.04 0.30
## 5855 0.00 0.30 0.00 0.30
## 5856 0.00 0.30 0.01 0.30
## 5857 0.00 0.30 0.00 0.30
## 5858 0.11 0.00 0.02 0.30
## 5859 0.16 0.00 0.08 0.30
## 5860 0.12 0.00 0.04 0.30
## 5861 0.23 0.00 0.06 0.30
## 5862 0.11 0.00 0.02 0.30
## 5863 0.00 0.30 0.00 0.30
## 5864 0.02 0.00 0.02 0.30
## 5865 0.03 0.00 0.02 0.30
## 5866 0.00 0.00 0.02 0.30
## 5867 0.00 0.30 0.00 0.30
## 5868 0.00 0.19 0.02 0.30
## 5869 0.00 0.30 0.00 0.30
## 5870 0.24 0.00 0.05 0.30
## 5871 0.06 0.07 0.04 0.30
## 5872 0.07 0.07 0.02 0.30
## 5873 0.13 0.00 0.05 0.30
## 5874 0.00 0.00 0.02 0.30
## 5875 0.06 0.06 0.02 0.30
## 5876 0.01 0.00 0.02 0.30
## 5877 0.11 0.06 0.04 0.30
## 5878 0.05 0.17 0.03 0.30
## 5879 0.02 0.20 0.01 0.30
## 5880 0.04 0.19 0.01 0.30
## 5881 0.00 0.30 0.00 0.30
## 5882 0.00 0.30 0.00 0.30
## 5883 0.16 0.05 0.04 0.30
## 5884 0.11 0.00 0.04 0.30
## 5885 0.00 0.08 0.01 0.30
## 5886 0.06 0.00 0.00 0.30
## 5887 0.06 0.00 0.00 0.30
## 5888 0.00 0.30 0.00 0.30
## 5889 0.08 0.00 0.01 0.30
## 5890 0.12 0.00 0.03 0.30
## 5891 0.04 0.00 0.02 0.30
## 5892 0.08 0.00 0.05 0.30
## 5893 0.00 0.28 0.02 0.30
## 5894 0.00 0.30 0.00 0.30
## 5895 0.11 0.00 0.04 0.30
## 5896 0.08 0.00 0.01 0.30
## 5897 0.00 0.30 0.00 0.30
## 5898 0.03 0.05 0.02 0.30
## 5899 0.03 0.11 0.03 0.30
## 5900 0.11 0.00 0.02 0.30
## 5901 0.23 0.00 0.05 0.30
## 5902 0.06 0.00 0.01 0.30
## 5903 0.11 0.00 0.04 0.30
## 5904 0.07 0.10 0.03 0.30
## 5905 0.00 0.30 0.00 0.30
## 5906 0.04 0.00 0.02 0.30
## 5907 0.12 0.00 0.03 0.30
## 5908 0.02 0.14 0.01 0.30
## 5909 0.00 0.30 0.00 0.30
## 5910 0.05 0.15 0.02 0.30
## 5911 0.02 0.00 0.02 0.30
## 5912 0.27 0.00 0.03 0.30
## 5913 0.00 0.00 0.02 0.30
## 5914 0.00 0.00 0.02 0.30
## 5915 0.19 0.00 0.03 0.30
## 5916 0.11 0.00 0.04 0.30
## 5917 0.00 0.00 0.03 0.30
## 5918 0.01 0.00 0.02 0.30
## 5919 0.07 0.00 0.02 0.30
## 5920 0.24 0.00 0.05 0.30
## 5921 0.00 0.30 0.00 0.30
## 5922 0.00 0.30 0.00 0.30
## 5923 0.07 0.14 0.02 0.30
## 5924 0.13 0.00 0.05 0.30
## 5925 0.11 0.00 0.04 0.30
## 5926 0.00 0.00 0.02 0.30
## 5927 0.00 0.30 0.00 0.30
## 5928 0.14 0.00 0.03 0.30
## 5929 0.01 0.00 0.27 0.30
## 5930 0.00 0.30 0.00 0.30
## 5931 0.09 0.00 0.03 0.30
## 5932 0.00 0.29 0.01 0.30
## 5933 0.00 0.10 0.02 0.30
## 5934 0.00 0.00 0.00 0.30
## 5935 0.00 0.30 0.00 0.30
## 5936 0.10 0.01 0.05 0.30
## 5937 0.08 0.00 0.01 0.30
## 5938 0.08 0.00 0.01 0.30
## 5939 0.07 0.00 0.04 0.30
## 5940 0.11 0.00 0.02 0.30
## 5941 0.10 0.00 0.03 0.30
## 5942 0.00 0.02 0.02 0.30
## 5943 0.00 0.30 0.00 0.30
## 5944 0.06 0.00 0.01 0.30
## 5945 0.00 0.30 0.00 0.30
## 5946 0.11 0.00 0.04 0.30
## 5947 0.06 0.00 0.01 0.30
## 5948 0.01 0.12 0.01 0.30
## 5949 0.14 0.00 0.03 0.30
## 5950 0.26 0.00 0.01 0.30
## 5951 0.06 0.00 0.02 0.30
## 5952 0.03 0.00 0.02 0.30
## 5953 0.06 0.00 0.01 0.30
## 5954 0.13 0.00 0.03 0.30
## 5955 0.06 0.00 0.01 0.30
## 5956 0.00 0.00 0.02 0.29
## 5957 0.02 0.00 0.00 0.29
## 5958 0.00 0.00 0.02 0.29
## 5959 0.11 0.00 0.04 0.29
## 5960 0.01 0.00 0.03 0.29
## 5961 0.07 0.11 0.03 0.29
## 5962 0.06 0.00 0.02 0.29
## 5963 0.14 0.00 0.03 0.29
## 5964 0.10 0.04 0.02 0.29
## 5965 0.01 0.00 0.02 0.29
## 5966 0.01 0.00 0.03 0.29
## 5967 0.21 0.00 0.04 0.29
## 5968 0.10 0.00 0.03 0.29
## 5969 0.08 0.00 0.01 0.29
## 5970 0.00 0.29 0.01 0.29
## 5971 0.02 0.00 0.03 0.29
## 5972 0.12 0.12 0.04 0.29
## 5973 0.00 0.29 0.00 0.29
## 5974 0.09 0.00 0.03 0.29
## 5975 0.00 0.04 0.02 0.29
## 5976 0.06 0.00 0.01 0.29
## 5977 0.16 0.02 0.05 0.29
## 5978 0.08 0.07 0.03 0.29
## 5979 0.11 0.00 0.02 0.29
## 5980 0.02 0.25 0.01 0.29
## 5981 0.07 0.00 0.03 0.29
## 5982 0.00 0.29 0.00 0.29
## 5983 0.03 0.00 0.02 0.29
## 5984 0.10 0.17 0.02 0.29
## 5985 0.03 0.00 0.15 0.29
## 5986 0.14 0.01 0.05 0.29
## 5987 0.06 0.00 0.01 0.29
## 5988 0.11 0.00 0.04 0.29
## 5989 0.22 0.05 0.00 0.29
## 5990 0.11 0.00 0.06 0.29
## 5991 0.02 0.22 0.02 0.29
## 5992 0.00 0.27 0.02 0.29
## 5993 0.16 0.00 0.05 0.29
## 5994 0.00 0.00 0.02 0.29
## 5995 0.12 0.00 0.03 0.29
## 5996 0.00 0.29 0.00 0.29
## 5997 0.00 0.14 0.01 0.29
## 5998 0.11 0.00 0.02 0.29
## 5999 0.00 0.27 0.02 0.29
## 6000 0.10 0.03 0.03 0.29
## 6001 0.10 0.00 0.02 0.29
## 6002 0.11 0.00 0.04 0.29
## 6003 0.00 0.29 0.00 0.29
## 6004 0.03 0.00 0.02 0.29
## 6005 0.13 0.01 0.03 0.29
## 6006 0.00 0.28 0.01 0.29
## 6007 0.05 0.03 0.03 0.29
## 6008 0.02 0.00 0.00 0.29
## 6009 0.00 0.00 0.02 0.29
## 6010 0.06 0.00 0.01 0.29
## 6011 0.04 0.00 0.02 0.29
## 6012 0.08 0.00 0.02 0.29
## 6013 0.05 0.15 0.03 0.29
## 6014 0.00 0.28 0.01 0.29
## 6015 0.12 0.00 0.05 0.29
## 6016 0.11 0.00 0.03 0.29
## 6017 0.11 0.00 0.04 0.29
## 6018 0.13 0.00 0.03 0.29
## 6019 0.11 0.00 0.04 0.29
## 6020 0.01 0.10 0.04 0.29
## 6021 0.20 0.00 0.03 0.29
## 6022 0.02 0.00 0.00 0.29
## 6023 0.00 0.29 0.00 0.29
## 6024 0.06 0.00 0.00 0.29
## 6025 0.06 0.00 0.00 0.29
## 6026 0.06 0.00 0.00 0.29
## 6027 0.06 0.00 0.00 0.29
## 6028 0.05 0.02 0.00 0.29
## 6029 0.06 0.00 0.00 0.29
## 6030 0.06 0.00 0.00 0.29
## 6031 0.06 0.00 0.00 0.29
## 6032 0.03 0.14 0.02 0.29
## 6033 0.23 0.00 0.06 0.29
## 6034 0.25 0.00 0.04 0.29
## 6035 0.08 0.00 0.01 0.29
## 6036 0.11 0.00 0.04 0.29
## 6037 0.04 0.00 0.02 0.29
## 6038 0.11 0.00 0.04 0.29
## 6039 0.07 0.05 0.02 0.29
## 6040 0.06 0.00 0.01 0.29
## 6041 0.10 0.00 0.02 0.29
## 6042 0.09 0.00 0.02 0.29
## 6043 0.06 0.00 0.01 0.29
## 6044 0.09 0.00 0.03 0.29
## 6045 0.00 0.29 0.00 0.29
## 6046 0.06 0.00 0.01 0.29
## 6047 0.00 0.27 0.02 0.29
## 6048 0.06 0.00 0.01 0.29
## 6049 0.15 0.01 0.03 0.29
## 6050 0.09 0.19 0.01 0.29
## 6051 0.06 0.00 0.01 0.29
## 6052 0.11 0.00 0.02 0.29
## 6053 0.13 0.00 0.03 0.29
## 6054 0.00 0.29 0.00 0.29
## 6055 0.17 0.00 0.03 0.29
## 6056 0.00 0.00 0.02 0.29
## 6057 0.00 0.00 0.02 0.29
## 6058 0.11 0.00 0.04 0.29
## 6059 0.00 0.29 0.00 0.29
## 6060 0.05 0.15 0.02 0.29
## 6061 0.05 0.16 0.02 0.29
## 6062 0.00 0.00 0.02 0.29
## 6063 0.10 0.01 0.02 0.29
## 6064 0.00 0.10 0.02 0.29
## 6065 0.12 0.00 0.05 0.29
## 6066 0.00 0.00 0.02 0.29
## 6067 0.15 0.00 0.02 0.29
## 6068 0.01 0.00 0.02 0.29
## 6069 0.11 0.00 0.02 0.29
## 6070 0.00 0.00 0.02 0.29
## 6071 0.00 0.29 0.00 0.29
## 6072 0.15 0.00 0.03 0.29
## 6073 0.11 0.00 0.04 0.29
## 6074 0.00 0.14 0.02 0.29
## 6075 0.11 0.00 0.02 0.29
## 6076 0.00 0.29 0.00 0.29
## 6077 0.02 0.21 0.02 0.29
## 6078 0.11 0.00 0.04 0.29
## 6079 0.00 0.29 0.00 0.29
## 6080 0.11 0.00 0.04 0.29
## 6081 0.00 0.00 0.02 0.29
## 6082 0.11 0.00 0.02 0.29
## 6083 0.12 0.00 0.03 0.29
## 6084 0.00 0.00 0.02 0.29
## 6085 0.00 0.29 0.00 0.29
## 6086 0.00 0.27 0.02 0.29
## 6087 0.00 0.00 0.02 0.29
## 6088 0.12 0.00 0.02 0.29
## 6089 0.00 0.29 0.00 0.29
## 6090 0.00 0.29 0.00 0.29
## 6091 0.07 0.08 0.03 0.29
## 6092 0.12 0.00 0.05 0.29
## 6093 0.06 0.00 0.01 0.29
## 6094 0.00 0.22 0.01 0.29
## 6095 0.00 0.00 0.02 0.29
## 6096 0.06 0.00 0.01 0.29
## 6097 0.11 0.00 0.02 0.29
## 6098 0.00 0.00 0.02 0.29
## 6099 0.00 0.29 0.00 0.29
## 6100 0.00 0.00 0.02 0.29
## 6101 0.08 0.00 0.01 0.29
## 6102 0.03 0.17 0.01 0.29
## 6103 0.10 0.00 0.05 0.29
## 6104 0.18 0.00 0.03 0.29
## 6105 0.00 0.00 0.02 0.28
## 6106 0.21 0.00 0.04 0.28
## 6107 0.14 0.00 0.03 0.28
## 6108 0.11 0.00 0.04 0.28
## 6109 0.11 0.00 0.04 0.28
## 6110 0.06 0.05 0.02 0.28
## 6111 0.11 0.00 0.02 0.28
## 6112 0.00 0.28 0.00 0.28
## 6113 0.08 0.00 0.01 0.28
## 6114 0.08 0.00 0.01 0.28
## 6115 0.00 0.00 0.02 0.28
## 6116 0.00 0.28 0.00 0.28
## 6117 0.01 0.00 0.02 0.28
## 6118 0.00 0.28 0.00 0.28
## 6119 0.11 0.00 0.02 0.28
## 6120 0.11 0.00 0.02 0.28
## 6121 0.06 0.00 0.01 0.28
## 6122 0.10 0.00 0.03 0.28
## 6123 0.07 0.10 0.02 0.28
## 6124 0.02 0.00 0.02 0.28
## 6125 0.08 0.07 0.04 0.28
## 6126 0.11 0.00 0.04 0.28
## 6127 0.06 0.00 0.01 0.28
## 6128 0.08 0.00 0.01 0.28
## 6129 0.08 0.00 0.01 0.28
## 6130 0.11 0.00 0.04 0.28
## 6131 0.07 0.00 0.04 0.28
## 6132 0.00 0.28 0.00 0.28
## 6133 0.06 0.00 0.01 0.28
## 6134 0.00 0.28 0.00 0.28
## 6135 0.08 0.00 0.01 0.28
## 6136 0.17 0.09 0.02 0.28
## 6137 0.16 0.09 0.03 0.28
## 6138 0.00 0.01 0.02 0.28
## 6139 0.06 0.00 0.01 0.28
## 6140 0.00 0.28 0.00 0.28
## 6141 0.01 0.00 0.02 0.28
## 6142 0.11 0.00 0.03 0.28
## 6143 0.08 0.00 0.01 0.28
## 6144 0.02 0.00 0.02 0.28
## 6145 0.00 0.28 0.01 0.28
## 6146 0.02 0.00 0.00 0.28
## 6147 0.11 0.00 0.04 0.28
## 6148 0.01 0.00 0.00 0.28
## 6149 0.10 0.00 0.03 0.28
## 6150 0.12 0.00 0.02 0.28
## 6151 0.11 0.00 0.02 0.28
## 6152 0.12 0.02 0.05 0.28
## 6153 0.11 0.00 0.04 0.28
## 6154 0.05 0.00 0.01 0.28
## 6155 0.06 0.00 0.01 0.28
## 6156 0.00 0.28 0.00 0.28
## 6157 0.02 0.12 0.01 0.28
## 6158 0.06 0.00 0.03 0.28
## 6159 0.07 0.00 0.01 0.28
## 6160 0.06 0.00 0.05 0.28
## 6161 0.00 0.28 0.00 0.28
## 6162 0.00 0.28 0.00 0.28
## 6163 0.00 0.28 0.00 0.28
## 6164 0.11 0.00 0.04 0.28
## 6165 0.00 0.28 0.00 0.28
## 6166 0.00 0.28 0.00 0.28
## 6167 0.02 0.00 0.14 0.28
## 6168 0.07 0.00 0.01 0.28
## 6169 0.00 0.00 0.02 0.28
## 6170 0.23 0.00 0.05 0.28
## 6171 0.11 0.00 0.04 0.28
## 6172 0.00 0.00 0.02 0.28
## 6173 0.11 0.01 0.05 0.28
## 6174 0.11 0.00 0.04 0.28
## 6175 0.06 0.00 0.01 0.28
## 6176 0.14 0.00 0.05 0.28
## 6177 0.11 0.00 0.04 0.28
## 6178 0.00 0.00 0.02 0.28
## 6179 0.00 0.00 0.02 0.28
## 6180 0.07 0.00 0.01 0.28
## 6181 0.10 0.03 0.03 0.28
## 6182 0.12 0.00 0.02 0.28
## 6183 0.00 0.00 0.02 0.28
## 6184 0.10 0.00 0.03 0.28
## 6185 0.08 0.00 0.02 0.28
## 6186 0.11 0.00 0.04 0.28
## 6187 0.03 0.03 0.02 0.28
## 6188 0.07 0.00 0.01 0.28
## 6189 0.06 0.10 0.02 0.28
## 6190 0.11 0.00 0.04 0.28
## 6191 0.12 0.01 0.03 0.28
## 6192 0.11 0.00 0.04 0.28
## 6193 0.01 0.23 0.01 0.28
## 6194 0.06 0.00 0.01 0.28
## 6195 0.09 0.04 0.04 0.28
## 6196 0.06 0.00 0.01 0.28
## 6197 0.11 0.00 0.02 0.28
## 6198 0.07 0.00 0.01 0.28
## 6199 0.00 0.28 0.00 0.28
## 6200 0.11 0.00 0.05 0.28
## 6201 0.06 0.00 0.01 0.28
## 6202 0.06 0.00 0.01 0.28
## 6203 0.02 0.00 0.02 0.28
## 6204 0.00 0.28 0.00 0.28
## 6205 0.13 0.00 0.03 0.28
## 6206 0.21 0.03 0.03 0.28
## 6207 0.11 0.00 0.04 0.28
## 6208 0.22 0.00 0.05 0.28
## 6209 0.11 0.00 0.04 0.28
## 6210 0.11 0.00 0.04 0.28
## 6211 0.03 0.12 0.04 0.28
## 6212 0.06 0.00 0.01 0.28
## 6213 0.01 0.00 0.02 0.28
## 6214 0.11 0.00 0.04 0.28
## 6215 0.01 0.00 0.02 0.28
## 6216 0.02 0.00 0.03 0.28
## 6217 0.04 0.17 0.01 0.28
## 6218 0.00 0.28 0.00 0.28
## 6219 0.04 0.17 0.02 0.28
## 6220 0.00 0.00 0.02 0.28
## 6221 0.11 0.00 0.02 0.28
## 6222 0.09 0.00 0.04 0.28
## 6223 0.00 0.28 0.00 0.28
## 6224 0.06 0.00 0.01 0.28
## 6225 0.10 0.00 0.03 0.28
## 6226 0.01 0.00 0.16 0.28
## 6227 0.00 0.28 0.00 0.28
## 6228 0.11 0.00 0.02 0.28
## 6229 0.00 0.00 0.02 0.28
## 6230 0.00 0.28 0.00 0.28
## 6231 0.11 0.00 0.04 0.28
## 6232 0.00 0.27 0.01 0.28
## 6233 0.00 0.28 0.00 0.28
## 6234 0.00 0.26 0.02 0.28
## 6235 0.01 0.00 0.02 0.28
## 6236 0.16 0.00 0.03 0.28
## 6237 0.06 0.00 0.01 0.28
## 6238 0.00 0.00 0.02 0.28
## 6239 0.00 0.00 0.02 0.28
## 6240 0.10 0.02 0.04 0.28
## 6241 0.10 0.00 0.02 0.28
## 6242 0.11 0.00 0.04 0.28
## 6243 0.06 0.00 0.01 0.28
## 6244 0.11 0.00 0.04 0.28
## 6245 0.11 0.00 0.04 0.28
## 6246 0.07 0.19 0.01 0.28
## 6247 0.04 0.00 0.02 0.28
## 6248 0.09 0.00 0.02 0.28
## 6249 0.00 0.27 0.01 0.28
## 6250 0.11 0.00 0.04 0.28
## 6251 0.07 0.00 0.00 0.28
## 6252 0.03 0.00 0.03 0.28
## 6253 0.19 0.00 0.05 0.28
## 6254 0.00 0.28 0.00 0.28
## 6255 0.04 0.15 0.02 0.28
## 6256 0.00 0.28 0.00 0.28
## 6257 0.00 0.28 0.00 0.28
## 6258 0.00 0.00 0.02 0.28
## 6259 0.07 0.18 0.03 0.28
## 6260 0.10 0.00 0.05 0.28
## 6261 0.00 0.28 0.00 0.28
## 6262 0.00 0.20 0.01 0.27
## 6263 0.11 0.00 0.04 0.27
## 6264 0.00 0.27 0.00 0.27
## 6265 0.10 0.00 0.04 0.27
## 6266 0.02 0.00 0.00 0.27
## 6267 0.20 0.00 0.02 0.27
## 6268 0.00 0.00 0.02 0.27
## 6269 0.06 0.00 0.01 0.27
## 6270 0.06 0.00 0.03 0.27
## 6271 0.00 0.26 0.02 0.27
## 6272 0.06 0.00 0.01 0.27
## 6273 0.00 0.27 0.01 0.27
## 6274 0.07 0.00 0.00 0.27
## 6275 0.00 0.26 0.02 0.27
## 6276 0.06 0.11 0.02 0.27
## 6277 0.07 0.00 0.00 0.27
## 6278 0.11 0.00 0.03 0.27
## 6279 0.01 0.00 0.02 0.27
## 6280 0.00 0.27 0.00 0.27
## 6281 0.10 0.00 0.02 0.27
## 6282 0.06 0.00 0.01 0.27
## 6283 0.10 0.00 0.03 0.27
## 6284 0.01 0.00 0.00 0.27
## 6285 0.00 0.00 0.02 0.27
## 6286 0.01 0.00 0.17 0.27
## 6287 0.01 0.15 0.01 0.27
## 6288 0.10 0.00 0.02 0.27
## 6289 0.02 0.22 0.02 0.27
## 6290 0.10 0.00 0.02 0.27
## 6291 0.10 0.00 0.02 0.27
## 6292 0.12 0.02 0.04 0.27
## 6293 0.12 0.00 0.03 0.27
## 6294 0.00 0.19 0.01 0.27
## 6295 0.03 0.11 0.01 0.27
## 6296 0.00 0.10 0.01 0.27
## 6297 0.01 0.00 0.00 0.27
## 6298 0.17 0.00 0.09 0.27
## 6299 0.16 0.00 0.02 0.27
## 6300 0.10 0.00 0.03 0.27
## 6301 0.10 0.00 0.02 0.27
## 6302 0.00 0.27 0.00 0.27
## 6303 0.00 0.27 0.00 0.27
## 6304 0.10 0.00 0.02 0.27
## 6305 0.10 0.00 0.03 0.27
## 6306 0.05 0.00 0.01 0.27
## 6307 0.00 0.27 0.00 0.27
## 6308 0.10 0.00 0.02 0.27
## 6309 0.00 0.27 0.00 0.27
## 6310 0.07 0.12 0.01 0.27
## 6311 0.10 0.00 0.03 0.27
## 6312 0.07 0.00 0.00 0.27
## 6313 0.10 0.00 0.03 0.27
## 6314 0.04 0.00 0.04 0.27
## 6315 0.01 0.00 0.02 0.27
## 6316 0.01 0.00 0.02 0.27
## 6317 0.02 0.00 0.00 0.27
## 6318 0.02 0.00 0.00 0.27
## 6319 0.01 0.00 0.14 0.27
## 6320 0.11 0.00 0.06 0.27
## 6321 0.16 0.00 0.05 0.27
## 6322 0.08 0.00 0.01 0.27
## 6323 0.00 0.27 0.00 0.27
## 6324 0.10 0.00 0.03 0.27
## 6325 0.07 0.00 0.00 0.27
## 6326 0.08 0.06 0.04 0.27
## 6327 0.05 0.00 0.01 0.27
## 6328 0.15 0.00 0.03 0.27
## 6329 0.05 0.00 0.01 0.27
## 6330 0.00 0.27 0.00 0.27
## 6331 0.00 0.26 0.01 0.27
## 6332 0.07 0.00 0.00 0.27
## 6333 0.00 0.27 0.00 0.27
## 6334 0.10 0.00 0.03 0.27
## 6335 0.14 0.00 0.05 0.27
## 6336 0.06 0.00 0.01 0.27
## 6337 0.01 0.00 0.02 0.27
## 6338 0.10 0.00 0.03 0.27
## 6339 0.04 0.00 0.03 0.27
## 6340 0.06 0.00 0.01 0.27
## 6341 0.00 0.00 0.02 0.27
## 6342 0.13 0.00 0.04 0.27
## 6343 0.02 0.00 0.00 0.27
## 6344 0.00 0.27 0.00 0.27
## 6345 0.02 0.00 0.00 0.27
## 6346 0.08 0.00 0.01 0.27
## 6347 0.05 0.00 0.00 0.27
## 6348 0.11 0.00 0.03 0.27
## 6349 0.10 0.00 0.03 0.27
## 6350 0.00 0.27 0.00 0.27
## 6351 0.01 0.25 0.01 0.27
## 6352 0.10 0.00 0.03 0.27
## 6353 0.12 0.00 0.03 0.27
## 6354 0.19 0.00 0.04 0.27
## 6355 0.10 0.00 0.03 0.27
## 6356 0.06 0.00 0.01 0.27
## 6357 0.07 0.00 0.00 0.27
## 6358 0.05 0.14 0.02 0.27
## 6359 0.12 0.00 0.02 0.27
## 6360 0.04 0.00 0.00 0.27
## 6361 0.00 0.00 0.02 0.27
## 6362 0.00 0.16 0.01 0.27
## 6363 0.12 0.00 0.02 0.27
## 6364 0.00 0.27 0.00 0.27
## 6365 0.03 0.00 0.03 0.27
## 6366 0.11 0.02 0.02 0.27
## 6367 0.00 0.00 0.02 0.27
## 6368 0.00 0.00 0.02 0.27
## 6369 0.00 0.27 0.00 0.27
## 6370 0.00 0.12 0.01 0.27
## 6371 0.00 0.26 0.01 0.27
## 6372 0.10 0.00 0.03 0.27
## 6373 0.05 0.00 0.01 0.27
## 6374 0.08 0.00 0.02 0.27
## 6375 0.06 0.00 0.01 0.27
## 6376 0.09 0.00 0.03 0.27
## 6377 0.10 0.00 0.02 0.27
## 6378 0.00 0.00 0.02 0.27
## 6379 0.00 0.00 0.02 0.27
## 6380 0.00 0.27 0.00 0.27
## 6381 0.21 0.01 0.04 0.27
## 6382 0.07 0.00 0.00 0.27
## 6383 0.00 0.00 0.02 0.27
## 6384 0.02 0.00 0.02 0.27
## 6385 0.03 0.00 0.02 0.27
## 6386 0.01 0.00 0.02 0.27
## 6387 0.10 0.00 0.02 0.27
## 6388 0.10 0.00 0.03 0.27
## 6389 0.11 0.00 0.08 0.27
## 6390 0.00 0.25 0.02 0.27
## 6391 0.00 0.27 0.00 0.27
## 6392 0.05 0.00 0.01 0.27
## 6393 0.00 0.00 0.02 0.27
## 6394 0.09 0.00 0.02 0.27
## 6395 0.08 0.00 0.00 0.27
## 6396 0.00 0.27 0.00 0.27
## 6397 0.00 0.00 0.02 0.27
## 6398 0.10 0.00 0.03 0.27
## 6399 0.00 0.00 0.02 0.27
## 6400 0.10 0.00 0.02 0.27
## 6401 0.06 0.00 0.02 0.27
## 6402 0.00 0.00 0.02 0.27
## 6403 0.00 0.00 0.02 0.27
## 6404 0.10 0.00 0.02 0.27
## 6405 0.06 0.00 0.01 0.27
## 6406 0.00 0.00 0.02 0.27
## 6407 0.14 0.00 0.04 0.27
## 6408 0.09 0.00 0.02 0.27
## 6409 0.05 0.00 0.02 0.27
## 6410 0.00 0.00 0.02 0.27
## 6411 0.04 0.14 0.02 0.27
## 6412 0.11 0.00 0.05 0.27
## 6413 0.10 0.00 0.02 0.27
## 6414 0.00 0.27 0.00 0.27
## 6415 0.00 0.00 0.02 0.27
## 6416 0.10 0.00 0.03 0.27
## 6417 0.10 0.00 0.03 0.27
## 6418 0.06 0.04 0.04 0.27
## 6419 0.00 0.00 0.02 0.27
## 6420 0.02 0.00 0.02 0.27
## 6421 0.10 0.00 0.03 0.27
## 6422 0.00 0.00 0.02 0.27
## 6423 0.07 0.11 0.03 0.27
## 6424 0.00 0.00 0.02 0.27
## 6425 0.00 0.27 0.00 0.27
## 6426 0.07 0.00 0.00 0.27
## 6427 0.09 0.00 0.02 0.27
## 6428 0.05 0.16 0.02 0.27
## 6429 0.00 0.00 0.02 0.27
## 6430 0.00 0.00 0.02 0.27
## 6431 0.00 0.00 0.02 0.27
## 6432 0.08 0.00 0.02 0.27
## 6433 0.10 0.00 0.03 0.27
## 6434 0.10 0.00 0.03 0.27
## 6435 0.04 0.14 0.02 0.27
## 6436 0.06 0.00 0.02 0.27
## 6437 0.04 0.09 0.03 0.27
## 6438 0.07 0.00 0.00 0.27
## 6439 0.06 0.00 0.01 0.27
## 6440 0.00 0.25 0.02 0.27
## 6441 0.00 0.01 0.02 0.26
## 6442 0.09 0.03 0.03 0.26
## 6443 0.00 0.00 0.02 0.26
## 6444 0.00 0.00 0.02 0.26
## 6445 0.07 0.00 0.00 0.26
## 6446 0.18 0.00 0.02 0.26
## 6447 0.01 0.00 0.02 0.26
## 6448 0.02 0.00 0.02 0.26
## 6449 0.04 0.00 0.02 0.26
## 6450 0.00 0.26 0.00 0.26
## 6451 0.00 0.26 0.00 0.26
## 6452 0.03 0.00 0.02 0.26
## 6453 0.00 0.26 0.00 0.26
## 6454 0.02 0.00 0.02 0.26
## 6455 0.10 0.00 0.03 0.26
## 6456 0.05 0.04 0.01 0.26
## 6457 0.00 0.25 0.02 0.26
## 6458 0.00 0.00 0.02 0.26
## 6459 0.06 0.11 0.02 0.26
## 6460 0.07 0.00 0.06 0.26
## 6461 0.00 0.26 0.00 0.26
## 6462 0.03 0.14 0.01 0.26
## 6463 0.10 0.00 0.02 0.26
## 6464 0.10 0.00 0.03 0.26
## 6465 0.10 0.00 0.03 0.26
## 6466 0.19 0.00 0.02 0.26
## 6467 0.18 0.00 0.04 0.26
## 6468 0.10 0.00 0.02 0.26
## 6469 0.00 0.26 0.00 0.26
## 6470 0.00 0.26 0.00 0.26
## 6471 0.10 0.00 0.03 0.26
## 6472 0.07 0.17 0.02 0.26
## 6473 0.07 0.00 0.00 0.26
## 6474 0.00 0.26 0.00 0.26
## 6475 0.06 0.00 0.04 0.26
## 6476 0.16 0.00 0.05 0.26
## 6477 0.02 0.00 0.16 0.26
## 6478 0.00 0.26 0.00 0.26
## 6479 0.00 0.00 0.02 0.26
## 6480 0.00 0.00 0.02 0.26
## 6481 0.00 0.26 0.00 0.26
## 6482 0.10 0.00 0.03 0.26
## 6483 0.03 0.00 0.02 0.26
## 6484 0.08 0.05 0.03 0.26
## 6485 0.00 0.00 0.02 0.26
## 6486 0.00 0.26 0.00 0.26
## 6487 0.07 0.00 0.00 0.26
## 6488 0.00 0.26 0.00 0.26
## 6489 0.00 0.00 0.00 0.26
## 6490 0.01 0.25 0.00 0.26
## 6491 0.07 0.00 0.00 0.26
## 6492 0.00 0.26 0.01 0.26
## 6493 0.07 0.00 0.00 0.26
## 6494 0.10 0.01 0.05 0.26
## 6495 0.10 0.00 0.02 0.26
## 6496 0.06 0.05 0.02 0.26
## 6497 0.20 0.00 0.06 0.26
## 6498 0.00 0.00 0.02 0.26
## 6499 0.05 0.00 0.01 0.26
## 6500 0.10 0.00 0.03 0.26
## 6501 0.00 0.26 0.00 0.26
## 6502 0.00 0.00 0.02 0.26
## 6503 0.00 0.00 0.02 0.26
## 6504 0.09 0.00 0.02 0.26
## 6505 0.24 0.00 0.02 0.26
## 6506 0.20 0.00 0.05 0.26
## 6507 0.00 0.26 0.00 0.26
## 6508 0.00 0.00 0.02 0.26
## 6509 0.10 0.00 0.02 0.26
## 6510 0.05 0.07 0.01 0.26
## 6511 0.00 0.25 0.01 0.26
## 6512 0.00 0.25 0.01 0.26
## 6513 0.00 0.00 0.02 0.26
## 6514 0.10 0.00 0.03 0.26
## 6515 0.05 0.00 0.03 0.26
## 6516 0.07 0.00 0.02 0.26
## 6517 0.01 0.14 0.01 0.26
## 6518 0.03 0.18 0.02 0.26
## 6519 0.00 0.26 0.00 0.26
## 6520 0.04 0.01 0.03 0.26
## 6521 0.00 0.26 0.00 0.26
## 6522 0.00 0.26 0.00 0.26
## 6523 0.05 0.00 0.00 0.26
## 6524 0.05 0.00 0.00 0.26
## 6525 0.05 0.00 0.00 0.26
## 6526 0.05 0.00 0.00 0.26
## 6527 0.10 0.00 0.03 0.26
## 6528 0.05 0.14 0.02 0.26
## 6529 0.10 0.00 0.03 0.26
## 6530 0.07 0.00 0.00 0.26
## 6531 0.00 0.10 0.03 0.26
## 6532 0.00 0.26 0.00 0.26
## 6533 0.10 0.00 0.06 0.26
## 6534 0.07 0.00 0.02 0.26
## 6535 0.06 0.00 0.01 0.26
## 6536 0.05 0.00 0.01 0.26
## 6537 0.14 0.00 0.02 0.26
## 6538 0.01 0.00 0.00 0.26
## 6539 0.01 0.00 0.13 0.26
## 6540 0.00 0.26 0.00 0.26
## 6541 0.03 0.00 0.03 0.26
## 6542 0.09 0.00 0.03 0.26
## 6543 0.06 0.00 0.01 0.26
## 6544 0.15 0.00 0.06 0.26
## 6545 0.08 0.00 0.02 0.26
## 6546 0.08 0.00 0.02 0.26
## 6547 0.10 0.00 0.02 0.26
## 6548 0.10 0.00 0.03 0.26
## 6549 0.05 0.00 0.01 0.26
## 6550 0.00 0.25 0.00 0.26
## 6551 0.00 0.00 0.02 0.26
## 6552 0.01 0.11 0.01 0.26
## 6553 0.00 0.26 0.00 0.26
## 6554 0.15 0.00 0.02 0.26
## 6555 0.04 0.11 0.01 0.26
## 6556 0.00 0.00 0.02 0.26
## 6557 0.03 0.00 0.02 0.26
## 6558 0.00 0.00 0.02 0.26
## 6559 0.00 0.26 0.00 0.26
## 6560 0.07 0.00 0.00 0.26
## 6561 0.00 0.26 0.00 0.26
## 6562 0.07 0.00 0.02 0.26
## 6563 0.07 0.00 0.00 0.26
## 6564 0.06 0.00 0.01 0.26
## 6565 0.15 0.00 0.08 0.26
## 6566 0.10 0.00 0.03 0.26
## 6567 0.10 0.00 0.02 0.26
## 6568 0.15 0.00 0.03 0.26
## 6569 0.00 0.26 0.00 0.26
## 6570 0.06 0.00 0.02 0.26
## 6571 0.11 0.00 0.05 0.26
## 6572 0.10 0.00 0.03 0.26
## 6573 0.03 0.06 0.02 0.26
## 6574 0.00 0.00 0.02 0.26
## 6575 0.06 0.00 0.01 0.26
## 6576 0.00 0.24 0.02 0.26
## 6577 0.00 0.26 0.00 0.26
## 6578 0.08 0.02 0.04 0.26
## 6579 0.05 0.00 0.01 0.26
## 6580 0.01 0.00 0.02 0.26
## 6581 0.07 0.00 0.00 0.26
## 6582 0.05 0.13 0.02 0.26
## 6583 0.00 0.26 0.00 0.26
## 6584 0.01 0.00 0.00 0.26
## 6585 0.01 0.00 0.02 0.26
## 6586 0.00 0.26 0.00 0.26
## 6587 0.00 0.26 0.00 0.26
## 6588 0.07 0.00 0.00 0.26
## 6589 0.11 0.10 0.01 0.26
## 6590 0.00 0.00 0.02 0.26
## 6591 0.05 0.00 0.01 0.26
## 6592 0.06 0.00 0.01 0.26
## 6593 0.21 0.00 0.05 0.26
## 6594 0.10 0.00 0.03 0.26
## 6595 0.21 0.00 0.04 0.26
## 6596 0.10 0.00 0.02 0.26
## 6597 0.13 0.00 0.03 0.26
## 6598 0.10 0.00 0.03 0.26
## 6599 0.25 0.00 0.00 0.26
## 6600 0.00 0.25 0.01 0.26
## 6601 0.06 0.04 0.00 0.26
## 6602 0.00 0.02 0.02 0.26
## 6603 0.10 0.00 0.03 0.26
## 6604 0.01 0.00 0.02 0.26
## 6605 0.00 0.26 0.00 0.26
## 6606 0.06 0.00 0.01 0.26
## 6607 0.05 0.00 0.01 0.26
## 6608 0.07 0.00 0.00 0.25
## 6609 0.05 0.00 0.01 0.25
## 6610 0.00 0.24 0.02 0.25
## 6611 0.06 0.00 0.03 0.25
## 6612 0.00 0.25 0.00 0.25
## 6613 0.01 0.00 0.02 0.25
## 6614 0.10 0.00 0.03 0.25
## 6615 0.01 0.00 0.02 0.25
## 6616 0.00 0.00 0.02 0.25
## 6617 0.10 0.00 0.02 0.25
## 6618 0.15 0.00 0.06 0.25
## 6619 0.12 0.00 0.04 0.25
## 6620 0.01 0.00 0.08 0.25
## 6621 0.04 0.06 0.01 0.25
## 6622 0.00 0.00 0.02 0.25
## 6623 0.10 0.00 0.03 0.25
## 6624 0.00 0.25 0.00 0.25
## 6625 0.10 0.00 0.04 0.25
## 6626 0.04 0.06 0.02 0.25
## 6627 0.09 0.03 0.02 0.25
## 6628 0.07 0.00 0.00 0.25
## 6629 0.00 0.00 0.02 0.25
## 6630 0.05 0.00 0.01 0.25
## 6631 0.04 0.10 0.03 0.25
## 6632 0.00 0.25 0.00 0.25
## 6633 0.00 0.25 0.00 0.25
## 6634 0.11 0.00 0.04 0.25
## 6635 0.05 0.00 0.01 0.25
## 6636 0.10 0.00 0.03 0.25
## 6637 0.05 0.00 0.01 0.25
## 6638 0.02 0.00 0.03 0.25
## 6639 0.10 0.00 0.02 0.25
## 6640 0.07 0.00 0.00 0.25
## 6641 0.00 0.25 0.00 0.25
## 6642 0.00 0.24 0.02 0.25
## 6643 0.05 0.00 0.01 0.25
## 6644 0.10 0.00 0.02 0.25
## 6645 0.01 0.00 0.02 0.25
## 6646 0.04 0.00 0.01 0.25
## 6647 0.10 0.00 0.02 0.25
## 6648 0.10 0.00 0.03 0.25
## 6649 0.07 0.00 0.00 0.25
## 6650 0.02 0.00 0.02 0.25
## 6651 0.09 0.00 0.02 0.25
## 6652 0.07 0.00 0.02 0.25
## 6653 0.07 0.00 0.03 0.25
## 6654 0.09 0.02 0.04 0.25
## 6655 0.10 0.00 0.03 0.25
## 6656 0.10 0.00 0.02 0.25
## 6657 0.14 0.00 0.02 0.25
## 6658 0.10 0.00 0.02 0.25
## 6659 0.01 0.00 0.02 0.25
## 6660 0.00 0.25 0.00 0.25
## 6661 0.10 0.00 0.04 0.25
## 6662 0.23 0.00 0.03 0.25
## 6663 0.05 0.00 0.01 0.25
## 6664 0.04 0.10 0.01 0.25
## 6665 0.05 0.00 0.01 0.25
## 6666 0.01 0.00 0.02 0.25
## 6667 0.05 0.00 0.01 0.25
## 6668 0.07 0.00 0.00 0.25
## 6669 0.00 0.00 0.00 0.25
## 6670 0.00 0.25 0.00 0.25
## 6671 0.10 0.00 0.03 0.25
## 6672 0.05 0.00 0.02 0.25
## 6673 0.13 0.00 0.06 0.25
## 6674 0.00 0.23 0.02 0.25
## 6675 0.02 0.00 0.02 0.25
## 6676 0.07 0.00 0.00 0.25
## 6677 0.05 0.00 0.01 0.25
## 6678 0.05 0.00 0.01 0.25
## 6679 0.09 0.00 0.02 0.25
## 6680 0.08 0.00 0.01 0.25
## 6681 0.00 0.00 0.02 0.25
## 6682 0.00 0.25 0.00 0.25
## 6683 0.02 0.00 0.02 0.25
## 6684 0.08 0.00 0.02 0.25
## 6685 0.04 0.05 0.00 0.25
## 6686 0.02 0.00 0.00 0.25
## 6687 0.05 0.00 0.00 0.25
## 6688 0.05 0.00 0.00 0.25
## 6689 0.05 0.00 0.00 0.25
## 6690 0.13 0.00 0.01 0.25
## 6691 0.05 0.00 0.00 0.25
## 6692 0.02 0.00 0.00 0.25
## 6693 0.05 0.00 0.00 0.25
## 6694 0.14 0.00 0.04 0.25
## 6695 0.21 0.00 0.04 0.25
## 6696 0.10 0.00 0.03 0.25
## 6697 0.05 0.00 0.01 0.25
## 6698 0.10 0.00 0.03 0.25
## 6699 0.00 0.23 0.02 0.25
## 6700 0.05 0.00 0.01 0.25
## 6701 0.09 0.00 0.02 0.25
## 6702 0.07 0.00 0.02 0.25
## 6703 0.10 0.00 0.03 0.25
## 6704 0.01 0.24 0.00 0.25
## 6705 0.00 0.25 0.00 0.25
## 6706 0.13 0.00 0.04 0.25
## 6707 0.00 0.25 0.00 0.25
## 6708 0.17 0.00 0.04 0.25
## 6709 0.05 0.00 0.02 0.25
## 6710 0.04 0.00 0.04 0.25
## 6711 0.02 0.10 0.01 0.25
## 6712 0.01 0.12 0.02 0.25
## 6713 0.03 0.18 0.01 0.25
## 6714 0.03 0.00 0.02 0.25
## 6715 0.09 0.00 0.02 0.25
## 6716 0.03 0.00 0.02 0.25
## 6717 0.07 0.00 0.00 0.25
## 6718 0.00 0.24 0.01 0.25
## 6719 0.08 0.00 0.03 0.25
## 6720 0.09 0.00 0.02 0.25
## 6721 0.04 0.00 0.02 0.25
## 6722 0.00 0.25 0.00 0.25
## 6723 0.05 0.03 0.02 0.25
## 6724 0.09 0.00 0.04 0.25
## 6725 0.00 0.25 0.00 0.25
## 6726 0.11 0.00 0.02 0.25
## 6727 0.09 0.00 0.03 0.25
## 6728 0.06 0.00 0.02 0.25
## 6729 0.01 0.00 0.00 0.25
## 6730 0.05 0.00 0.01 0.25
## 6731 0.09 0.00 0.02 0.25
## 6732 0.13 0.00 0.05 0.25
## 6733 0.01 0.03 0.02 0.25
## 6734 0.09 0.00 0.02 0.25
## 6735 0.00 0.00 0.02 0.25
## 6736 0.01 0.00 0.02 0.25
## 6737 0.09 0.00 0.03 0.25
## 6738 0.01 0.03 0.02 0.25
## 6739 0.09 0.00 0.03 0.25
## 6740 0.05 0.00 0.01 0.25
## 6741 0.09 0.00 0.03 0.25
## 6742 0.09 0.00 0.02 0.25
## 6743 0.04 0.00 0.03 0.25
## 6744 0.22 0.00 0.01 0.25
## 6745 0.09 0.00 0.02 0.25
## 6746 0.16 0.00 0.03 0.25
## 6747 0.00 0.25 0.00 0.25
## 6748 0.12 0.00 0.05 0.25
## 6749 0.04 0.00 0.03 0.25
## 6750 0.16 0.00 0.03 0.25
## 6751 0.09 0.00 0.02 0.25
## 6752 0.03 0.15 0.02 0.25
## 6753 0.05 0.00 0.01 0.25
## 6754 0.11 0.00 0.02 0.25
## 6755 0.09 0.00 0.03 0.25
## 6756 0.00 0.23 0.02 0.25
## 6757 0.01 0.00 0.02 0.25
## 6758 0.07 0.00 0.00 0.25
## 6759 0.00 0.00 0.02 0.25
## 6760 0.05 0.00 0.01 0.25
## 6761 0.07 0.00 0.00 0.25
## 6762 0.14 0.00 0.08 0.25
## 6763 0.01 0.00 0.02 0.25
## 6764 0.05 0.00 0.01 0.25
## 6765 0.19 0.00 0.02 0.25
## 6766 0.14 0.00 0.03 0.25
## 6767 0.04 0.10 0.01 0.25
## 6768 0.03 0.12 0.01 0.25
## 6769 0.09 0.00 0.03 0.25
## 6770 0.10 0.00 0.02 0.25
## 6771 0.09 0.00 0.03 0.24
## 6772 0.00 0.24 0.00 0.24
## 6773 0.09 0.00 0.03 0.24
## 6774 0.07 0.00 0.02 0.24
## 6775 0.06 0.00 0.00 0.24
## 6776 0.00 0.23 0.02 0.24
## 6777 0.01 0.00 0.02 0.24
## 6778 0.09 0.00 0.03 0.24
## 6779 0.10 0.00 0.02 0.24
## 6780 0.16 0.00 0.05 0.24
## 6781 0.00 0.12 0.01 0.24
## 6782 0.00 0.00 0.02 0.24
## 6783 0.02 0.00 0.02 0.24
## 6784 0.00 0.24 0.00 0.24
## 6785 0.09 0.00 0.02 0.24
## 6786 0.10 0.00 0.02 0.24
## 6787 0.03 0.16 0.02 0.24
## 6788 0.09 0.00 0.02 0.24
## 6789 0.00 0.00 0.02 0.24
## 6790 0.09 0.00 0.02 0.24
## 6791 0.06 0.00 0.02 0.24
## 6792 0.07 0.00 0.02 0.24
## 6793 0.00 0.00 0.02 0.24
## 6794 0.03 0.06 0.05 0.24
## 6795 0.10 0.00 0.03 0.24
## 6796 0.00 0.16 0.00 0.24
## 6797 0.02 0.00 0.02 0.24
## 6798 0.09 0.00 0.03 0.24
## 6799 0.00 0.23 0.02 0.24
## 6800 0.09 0.00 0.03 0.24
## 6801 0.06 0.08 0.01 0.24
## 6802 0.00 0.00 0.02 0.24
## 6803 0.05 0.00 0.01 0.24
## 6804 0.00 0.23 0.02 0.24
## 6805 0.09 0.00 0.03 0.24
## 6806 0.00 0.00 0.02 0.24
## 6807 0.19 0.00 0.04 0.24
## 6808 0.08 0.02 0.03 0.24
## 6809 0.00 0.24 0.00 0.24
## 6810 0.12 0.00 0.02 0.24
## 6811 0.09 0.00 0.03 0.24
## 6812 0.01 0.12 0.01 0.24
## 6813 0.05 0.00 0.01 0.24
## 6814 0.04 0.05 0.01 0.24
## 6815 0.06 0.00 0.00 0.24
## 6816 0.03 0.16 0.02 0.24
## 6817 0.09 0.00 0.02 0.24
## 6818 0.13 0.00 0.05 0.24
## 6819 0.09 0.00 0.02 0.24
## 6820 0.05 0.00 0.01 0.24
## 6821 0.00 0.18 0.01 0.24
## 6822 0.01 0.00 0.02 0.24
## 6823 0.07 0.00 0.02 0.24
## 6824 0.02 0.00 0.02 0.24
## 6825 0.01 0.00 0.02 0.24
## 6826 0.15 0.00 0.02 0.24
## 6827 0.12 0.00 0.02 0.24
## 6828 0.00 0.00 0.02 0.24
## 6829 0.00 0.18 0.01 0.24
## 6830 0.02 0.00 0.02 0.24
## 6831 0.05 0.00 0.01 0.24
## 6832 0.05 0.00 0.02 0.24
## 6833 0.04 0.01 0.03 0.24
## 6834 0.09 0.00 0.03 0.24
## 6835 0.05 0.01 0.04 0.24
## 6836 0.05 0.00 0.01 0.24
## 6837 0.09 0.00 0.05 0.24
## 6838 0.19 0.00 0.05 0.24
## 6839 0.05 0.00 0.01 0.24
## 6840 0.01 0.05 0.02 0.24
## 6841 0.00 0.00 0.02 0.24
## 6842 0.00 0.24 0.00 0.24
## 6843 0.00 0.24 0.00 0.24
## 6844 0.05 0.00 0.01 0.24
## 6845 0.06 0.00 0.02 0.24
## 6846 0.21 0.00 0.01 0.24
## 6847 0.00 0.24 0.00 0.24
## 6848 0.05 0.00 0.01 0.24
## 6849 0.00 0.06 0.01 0.24
## 6850 0.06 0.00 0.00 0.24
## 6851 0.05 0.00 0.02 0.24
## 6852 0.05 0.00 0.01 0.24
## 6853 0.00 0.00 0.02 0.24
## 6854 0.11 0.00 0.04 0.24
## 6855 0.00 0.24 0.00 0.24
## 6856 0.06 0.00 0.00 0.24
## 6857 0.09 0.00 0.03 0.24
## 6858 0.00 0.00 0.02 0.24
## 6859 0.09 0.00 0.03 0.24
## 6860 0.00 0.07 0.01 0.24
## 6861 0.05 0.00 0.01 0.24
## 6862 0.00 0.01 0.02 0.24
## 6863 0.02 0.00 0.02 0.24
## 6864 0.00 0.24 0.00 0.24
## 6865 0.03 0.00 0.03 0.24
## 6866 0.03 0.00 0.02 0.24
## 6867 0.01 0.00 0.00 0.24
## 6868 0.05 0.00 0.00 0.24
## 6869 0.05 0.00 0.00 0.24
## 6870 0.05 0.00 0.00 0.24
## 6871 0.05 0.00 0.00 0.24
## 6872 0.05 0.00 0.00 0.24
## 6873 0.05 0.00 0.00 0.24
## 6874 0.02 0.00 0.02 0.24
## 6875 0.09 0.00 0.03 0.24
## 6876 0.00 0.24 0.00 0.24
## 6877 0.10 0.00 0.02 0.24
## 6878 0.05 0.00 0.01 0.24
## 6879 0.09 0.00 0.02 0.24
## 6880 0.05 0.00 0.01 0.24
## 6881 0.23 0.00 0.01 0.24
## 6882 0.00 0.00 0.02 0.24
## 6883 0.06 0.00 0.00 0.24
## 6884 0.00 0.00 0.02 0.24
## 6885 0.00 0.00 0.02 0.24
## 6886 0.08 0.00 0.02 0.24
## 6887 0.00 0.23 0.01 0.24
## 6888 0.09 0.00 0.02 0.24
## 6889 0.00 0.24 0.00 0.24
## 6890 0.06 0.00 0.03 0.24
## 6891 0.13 0.00 0.02 0.24
## 6892 0.07 0.06 0.03 0.24
## 6893 0.05 0.00 0.01 0.24
## 6894 0.09 0.00 0.03 0.24
## 6895 0.14 0.00 0.02 0.24
## 6896 0.04 0.00 0.02 0.24
## 6897 0.01 0.00 0.00 0.24
## 6898 0.00 0.24 0.00 0.24
## 6899 0.05 0.00 0.02 0.24
## 6900 0.06 0.00 0.02 0.24
## 6901 0.08 0.06 0.02 0.24
## 6902 0.05 0.00 0.01 0.24
## 6903 0.09 0.00 0.02 0.24
## 6904 0.00 0.03 0.02 0.24
## 6905 0.14 0.00 0.03 0.24
## 6906 0.06 0.00 0.00 0.24
## 6907 0.06 0.00 0.00 0.24
## 6908 0.03 0.00 0.02 0.24
## 6909 0.24 0.00 0.00 0.24
## 6910 0.06 0.01 0.02 0.24
## 6911 0.10 0.00 0.02 0.24
## 6912 0.02 0.04 0.02 0.24
## 6913 0.09 0.00 0.03 0.24
## 6914 0.09 0.00 0.02 0.24
## 6915 0.09 0.00 0.03 0.24
## 6916 0.07 0.00 0.05 0.24
## 6917 0.00 0.00 0.02 0.24
## 6918 0.18 0.00 0.05 0.24
## 6919 0.14 0.01 0.05 0.24
## 6920 0.00 0.24 0.00 0.24
## 6921 0.10 0.00 0.02 0.24
## 6922 0.06 0.11 0.01 0.24
## 6923 0.09 0.00 0.02 0.24
## 6924 0.02 0.04 0.04 0.24
## 6925 0.06 0.00 0.02 0.24
## 6926 0.09 0.00 0.02 0.24
## 6927 0.00 0.00 0.02 0.24
## 6928 0.05 0.00 0.02 0.24
## 6929 0.10 0.00 0.05 0.24
## 6930 0.11 0.00 0.03 0.24
## 6931 0.21 0.00 0.02 0.24
## 6932 0.09 0.00 0.02 0.24
## 6933 0.05 0.00 0.02 0.24
## 6934 0.01 0.13 0.01 0.24
## 6935 0.05 0.00 0.01 0.24
## 6936 0.06 0.00 0.00 0.24
## 6937 0.00 0.24 0.00 0.24
## 6938 0.00 0.00 0.02 0.24
## 6939 0.09 0.00 0.02 0.24
## 6940 0.01 0.00 0.00 0.24
## 6941 0.01 0.00 0.00 0.24
## 6942 0.10 0.00 0.02 0.24
## 6943 0.05 0.00 0.02 0.24
## 6944 0.12 0.00 0.02 0.24
## 6945 0.00 0.13 0.01 0.24
## 6946 0.00 0.00 0.01 0.24
## 6947 0.06 0.00 0.04 0.24
## 6948 0.01 0.04 0.02 0.24
## 6949 0.09 0.01 0.04 0.24
## 6950 0.07 0.01 0.02 0.24
## 6951 0.06 0.00 0.02 0.24
## 6952 0.09 0.00 0.03 0.24
## 6953 0.08 0.00 0.04 0.23
## 6954 0.05 0.00 0.02 0.23
## 6955 0.03 0.00 0.02 0.23
## 6956 0.09 0.00 0.02 0.23
## 6957 0.00 0.00 0.02 0.23
## 6958 0.09 0.00 0.03 0.23
## 6959 0.09 0.00 0.03 0.23
## 6960 0.06 0.00 0.02 0.23
## 6961 0.00 0.23 0.00 0.23
## 6962 0.01 0.12 0.01 0.23
## 6963 0.00 0.23 0.00 0.23
## 6964 0.09 0.00 0.02 0.23
## 6965 0.21 0.00 0.02 0.23
## 6966 0.22 0.00 0.02 0.23
## 6967 0.12 0.00 0.03 0.23
## 6968 0.00 0.00 0.02 0.23
## 6969 0.09 0.00 0.03 0.23
## 6970 0.00 0.23 0.01 0.23
## 6971 0.05 0.00 0.01 0.23
## 6972 0.05 0.00 0.01 0.23
## 6973 0.11 0.00 0.05 0.23
## 6974 0.04 0.00 0.02 0.23
## 6975 0.05 0.00 0.01 0.23
## 6976 0.05 0.00 0.02 0.23
## 6977 0.09 0.11 0.03 0.23
## 6978 0.00 0.23 0.00 0.23
## 6979 0.01 0.06 0.01 0.23
## 6980 0.10 0.01 0.02 0.23
## 6981 0.05 0.00 0.02 0.23
## 6982 0.02 0.05 0.02 0.23
## 6983 0.00 0.00 0.02 0.23
## 6984 0.03 0.00 0.03 0.23
## 6985 0.00 0.23 0.00 0.23
## 6986 0.02 0.08 0.00 0.23
## 6987 0.06 0.00 0.04 0.23
## 6988 0.13 0.00 0.02 0.23
## 6989 0.02 0.00 0.02 0.23
## 6990 0.13 0.00 0.03 0.23
## 6991 0.05 0.00 0.01 0.23
## 6992 0.19 0.00 0.05 0.23
## 6993 0.09 0.00 0.03 0.23
## 6994 0.05 0.00 0.01 0.23
## 6995 0.00 0.23 0.00 0.23
## 6996 0.00 0.23 0.00 0.23
## 6997 0.07 0.00 0.03 0.23
## 6998 0.06 0.00 0.04 0.23
## 6999 0.09 0.00 0.03 0.23
## 7000 0.00 0.00 0.02 0.23
## 7001 0.00 0.00 0.02 0.23
## 7002 0.09 0.00 0.03 0.23
## 7003 0.00 0.23 0.00 0.23
## 7004 0.01 0.00 0.02 0.23
## 7005 0.00 0.23 0.00 0.23
## 7006 0.01 0.00 0.00 0.23
## 7007 0.01 0.00 0.02 0.23
## 7008 0.10 0.00 0.04 0.23
## 7009 0.05 0.00 0.01 0.23
## 7010 0.05 0.00 0.01 0.23
## 7011 0.02 0.00 0.02 0.23
## 7012 0.00 0.00 0.02 0.23
## 7013 0.10 0.00 0.02 0.23
## 7014 0.09 0.00 0.03 0.23
## 7015 0.00 0.23 0.00 0.23
## 7016 0.01 0.00 0.06 0.23
## 7017 0.05 0.00 0.01 0.23
## 7018 0.06 0.00 0.03 0.23
## 7019 0.09 0.00 0.03 0.23
## 7020 0.05 0.00 0.02 0.23
## 7021 0.09 0.00 0.02 0.23
## 7022 0.00 0.23 0.00 0.23
## 7023 0.00 0.23 0.00 0.23
## 7024 0.05 0.00 0.01 0.23
## 7025 0.00 0.00 0.02 0.23
## 7026 0.11 0.00 0.02 0.23
## 7027 0.02 0.00 0.02 0.23
## 7028 0.01 0.00 0.02 0.23
## 7029 0.02 0.00 0.02 0.23
## 7030 0.01 0.00 0.02 0.23
## 7031 0.09 0.00 0.02 0.23
## 7032 0.09 0.00 0.02 0.23
## 7033 0.00 0.00 0.02 0.23
## 7034 0.06 0.00 0.00 0.23
## 7035 0.16 0.00 0.07 0.23
## 7036 0.09 0.00 0.03 0.23
## 7037 0.09 0.00 0.02 0.23
## 7038 0.12 0.09 0.02 0.23
## 7039 0.03 0.18 0.01 0.23
## 7040 0.06 0.02 0.02 0.23
## 7041 0.08 0.00 0.02 0.23
## 7042 0.00 0.00 0.01 0.23
## 7043 0.06 0.00 0.00 0.23
## 7044 0.06 0.00 0.02 0.23
## 7045 0.05 0.00 0.03 0.23
## 7046 0.00 0.23 0.00 0.23
## 7047 0.09 0.00 0.02 0.23
## 7048 0.00 0.00 0.02 0.23
## 7049 0.13 0.00 0.02 0.23
## 7050 0.09 0.00 0.03 0.23
## 7051 0.22 0.00 0.01 0.23
## 7052 0.05 0.00 0.01 0.23
## 7053 0.07 0.00 0.03 0.23
## 7054 0.12 0.00 0.03 0.23
## 7055 0.09 0.00 0.03 0.23
## 7056 0.00 0.00 0.02 0.23
## 7057 0.06 0.00 0.00 0.23
## 7058 0.04 0.00 0.04 0.23
## 7059 0.02 0.00 0.02 0.23
## 7060 0.19 0.00 0.04 0.23
## 7061 0.00 0.23 0.00 0.23
## 7062 0.02 0.00 0.02 0.23
## 7063 0.01 0.00 0.02 0.23
## 7064 0.00 0.23 0.00 0.23
## 7065 0.01 0.00 0.02 0.23
## 7066 0.00 0.23 0.00 0.23
## 7067 0.00 0.23 0.00 0.23
## 7068 0.00 0.23 0.00 0.23
## 7069 0.09 0.00 0.03 0.23
## 7070 0.06 0.00 0.02 0.23
## 7071 0.00 0.13 0.01 0.23
## 7072 0.09 0.00 0.03 0.23
## 7073 0.14 0.00 0.07 0.23
## 7074 0.00 0.00 0.01 0.23
## 7075 0.00 0.23 0.00 0.23
## 7076 0.09 0.00 0.01 0.23
## 7077 0.06 0.00 0.00 0.23
## 7078 0.00 0.00 0.02 0.23
## 7079 0.00 0.23 0.00 0.23
## 7080 0.00 0.23 0.00 0.23
## 7081 0.01 0.07 0.01 0.23
## 7082 0.09 0.00 0.03 0.23
## 7083 0.06 0.00 0.00 0.23
## 7084 0.00 0.00 0.02 0.23
## 7085 0.00 0.23 0.00 0.23
## 7086 0.05 0.00 0.01 0.23
## 7087 0.00 0.23 0.00 0.23
## 7088 0.05 0.00 0.01 0.23
## 7089 0.10 0.03 0.02 0.23
## 7090 0.09 0.00 0.03 0.23
## 7091 0.05 0.10 0.02 0.23
## 7092 0.09 0.00 0.01 0.23
## 7093 0.00 0.23 0.00 0.23
## 7094 0.09 0.00 0.03 0.23
## 7095 0.00 0.23 0.00 0.23
## 7096 0.09 0.00 0.01 0.23
## 7097 0.00 0.21 0.01 0.23
## 7098 0.05 0.00 0.01 0.23
## 7099 0.09 0.00 0.03 0.23
## 7100 0.09 0.00 0.03 0.23
## 7101 0.03 0.00 0.02 0.23
## 7102 0.03 0.00 0.02 0.23
## 7103 0.04 0.12 0.01 0.23
## 7104 0.00 0.00 0.02 0.23
## 7105 0.04 0.12 0.01 0.23
## 7106 0.05 0.00 0.01 0.23
## 7107 0.00 0.12 0.01 0.23
## 7108 0.09 0.00 0.03 0.23
## 7109 0.01 0.04 0.02 0.23
## 7110 0.01 0.00 0.02 0.23
## 7111 0.00 0.00 0.02 0.23
## 7112 0.00 0.00 0.01 0.23
## 7113 0.09 0.00 0.03 0.23
## 7114 0.01 0.00 0.02 0.23
## 7115 0.09 0.00 0.03 0.23
## 7116 0.00 0.00 0.02 0.23
## 7117 0.09 0.00 0.03 0.23
## 7118 0.10 0.00 0.04 0.23
## 7119 0.07 0.00 0.02 0.23
## 7120 0.00 0.00 0.02 0.23
## 7121 0.00 0.23 0.00 0.23
## 7122 0.09 0.00 0.03 0.23
## 7123 0.00 0.00 0.01 0.23
## 7124 0.00 0.21 0.01 0.23
## 7125 0.05 0.09 0.03 0.23
## 7126 0.00 0.23 0.00 0.23
## 7127 0.09 0.00 0.03 0.23
## 7128 0.09 0.00 0.01 0.23
## 7129 0.09 0.00 0.03 0.23
## 7130 0.00 0.00 0.02 0.23
## 7131 0.00 0.23 0.00 0.23
## 7132 0.00 0.00 0.02 0.23
## 7133 0.00 0.00 0.02 0.23
## 7134 0.09 0.00 0.03 0.23
## 7135 0.09 0.00 0.03 0.22
## 7136 0.01 0.00 0.02 0.22
## 7137 0.01 0.00 0.02 0.22
## 7138 0.00 0.22 0.00 0.22
## 7139 0.00 0.00 0.12 0.22
## 7140 0.03 0.00 0.02 0.22
## 7141 0.05 0.00 0.01 0.22
## 7142 0.00 0.22 0.00 0.22
## 7143 0.09 0.00 0.03 0.22
## 7144 0.04 0.05 0.02 0.22
## 7145 0.06 0.00 0.00 0.22
## 7146 0.09 0.00 0.02 0.22
## 7147 0.00 0.22 0.00 0.22
## 7148 0.04 0.00 0.01 0.22
## 7149 0.01 0.00 0.00 0.22
## 7150 0.01 0.00 0.00 0.22
## 7151 0.01 0.00 0.00 0.22
## 7152 0.00 0.08 0.01 0.22
## 7153 0.03 0.00 0.02 0.22
## 7154 0.00 0.22 0.00 0.22
## 7155 0.06 0.00 0.03 0.22
## 7156 0.00 0.22 0.00 0.22
## 7157 0.00 0.00 0.01 0.22
## 7158 0.05 0.00 0.01 0.22
## 7159 0.09 0.00 0.03 0.22
## 7160 0.09 0.00 0.03 0.22
## 7161 0.00 0.22 0.00 0.22
## 7162 0.07 0.00 0.02 0.22
## 7163 0.00 0.00 0.01 0.22
## 7164 0.06 0.00 0.04 0.22
## 7165 0.00 0.22 0.00 0.22
## 7166 0.04 0.00 0.01 0.22
## 7167 0.01 0.00 0.02 0.22
## 7168 0.00 0.00 0.21 0.22
## 7169 0.00 0.00 0.02 0.22
## 7170 0.00 0.22 0.00 0.22
## 7171 0.04 0.06 0.00 0.22
## 7172 0.00 0.11 0.01 0.22
## 7173 0.09 0.00 0.03 0.22
## 7174 0.04 0.00 0.01 0.22
## 7175 0.06 0.00 0.00 0.22
## 7176 0.06 0.00 0.00 0.22
## 7177 0.00 0.00 0.02 0.22
## 7178 0.13 0.00 0.04 0.22
## 7179 0.00 0.07 0.01 0.22
## 7180 0.02 0.00 0.02 0.22
## 7181 0.08 0.01 0.04 0.22
## 7182 0.17 0.00 0.05 0.22
## 7183 0.04 0.10 0.02 0.22
## 7184 0.07 0.00 0.02 0.22
## 7185 0.01 0.00 0.00 0.22
## 7186 0.00 0.22 0.00 0.22
## 7187 0.08 0.00 0.01 0.22
## 7188 0.02 0.00 0.02 0.22
## 7189 0.08 0.00 0.01 0.22
## 7190 0.01 0.00 0.02 0.22
## 7191 0.02 0.17 0.01 0.22
## 7192 0.00 0.00 0.02 0.22
## 7193 0.06 0.08 0.02 0.22
## 7194 0.00 0.00 0.02 0.22
## 7195 0.00 0.22 0.00 0.22
## 7196 0.07 0.00 0.02 0.22
## 7197 0.01 0.00 0.01 0.22
## 7198 0.00 0.00 0.02 0.22
## 7199 0.06 0.00 0.00 0.22
## 7200 0.13 0.00 0.03 0.22
## 7201 0.10 0.00 0.04 0.22
## 7202 0.12 0.00 0.07 0.22
## 7203 0.13 0.02 0.04 0.22
## 7204 0.02 0.00 0.01 0.22
## 7205 0.01 0.00 0.02 0.22
## 7206 0.01 0.03 0.02 0.22
## 7207 0.08 0.00 0.01 0.22
## 7208 0.08 0.00 0.02 0.22
## 7209 0.06 0.00 0.00 0.22
## 7210 0.08 0.00 0.05 0.22
## 7211 0.04 0.12 0.02 0.22
## 7212 0.08 0.00 0.02 0.22
## 7213 0.10 0.00 0.04 0.22
## 7214 0.14 0.00 0.03 0.22
## 7215 0.06 0.00 0.00 0.22
## 7216 0.00 0.00 0.02 0.22
## 7217 0.09 0.00 0.04 0.22
## 7218 0.06 0.00 0.00 0.22
## 7219 0.10 0.00 0.02 0.22
## 7220 0.05 0.00 0.01 0.22
## 7221 0.00 0.22 0.00 0.22
## 7222 0.04 0.00 0.01 0.22
## 7223 0.09 0.00 0.02 0.22
## 7224 0.04 0.00 0.00 0.22
## 7225 0.03 0.05 0.00 0.22
## 7226 0.00 0.22 0.00 0.22
## 7227 0.04 0.00 0.00 0.22
## 7228 0.04 0.00 0.00 0.22
## 7229 0.00 0.22 0.00 0.22
## 7230 0.03 0.00 0.02 0.22
## 7231 0.04 0.00 0.01 0.22
## 7232 0.00 0.00 0.02 0.22
## 7233 0.00 0.00 0.01 0.22
## 7234 0.08 0.00 0.03 0.22
## 7235 0.18 0.00 0.01 0.22
## 7236 0.08 0.00 0.01 0.22
## 7237 0.00 0.17 0.00 0.22
## 7238 0.00 0.00 0.02 0.22
## 7239 0.02 0.03 0.02 0.22
## 7240 0.05 0.00 0.01 0.22
## 7241 0.09 0.00 0.02 0.22
## 7242 0.08 0.00 0.01 0.22
## 7243 0.03 0.00 0.02 0.22
## 7244 0.05 0.00 0.01 0.22
## 7245 0.07 0.00 0.02 0.22
## 7246 0.03 0.12 0.01 0.22
## 7247 0.00 0.22 0.00 0.22
## 7248 0.04 0.00 0.01 0.22
## 7249 0.08 0.00 0.03 0.22
## 7250 0.08 0.00 0.03 0.22
## 7251 0.00 0.22 0.00 0.22
## 7252 0.01 0.00 0.02 0.22
## 7253 0.06 0.07 0.01 0.22
## 7254 0.09 0.00 0.02 0.22
## 7255 0.08 0.00 0.04 0.22
## 7256 0.00 0.22 0.00 0.22
## 7257 0.04 0.00 0.01 0.22
## 7258 0.00 0.00 0.01 0.22
## 7259 0.08 0.00 0.04 0.22
## 7260 0.00 0.00 0.02 0.22
## 7261 0.01 0.00 0.10 0.22
## 7262 0.08 0.00 0.03 0.22
## 7263 0.00 0.22 0.00 0.22
## 7264 0.00 0.00 0.02 0.22
## 7265 0.01 0.00 0.02 0.22
## 7266 0.07 0.00 0.03 0.22
## 7267 0.08 0.00 0.03 0.22
## 7268 0.19 0.00 0.02 0.22
## 7269 0.04 0.06 0.01 0.22
## 7270 0.08 0.00 0.03 0.22
## 7271 0.06 0.00 0.00 0.22
## 7272 0.02 0.06 0.01 0.22
## 7273 0.00 0.00 0.02 0.22
## 7274 0.06 0.00 0.00 0.22
## 7275 0.00 0.13 0.01 0.22
## 7276 0.00 0.22 0.00 0.22
## 7277 0.08 0.00 0.03 0.22
## 7278 0.00 0.00 0.02 0.22
## 7279 0.00 0.22 0.00 0.22
## 7280 0.04 0.00 0.01 0.22
## 7281 0.10 0.00 0.04 0.22
## 7282 0.08 0.00 0.01 0.22
## 7283 0.00 0.22 0.00 0.22
## 7284 0.06 0.00 0.00 0.22
## 7285 0.00 0.00 0.02 0.22
## 7286 0.00 0.22 0.00 0.22
## 7287 0.08 0.00 0.01 0.22
## 7288 0.08 0.00 0.01 0.22
## 7289 0.06 0.06 0.03 0.22
## 7290 0.01 0.00 0.02 0.22
## 7291 0.05 0.01 0.02 0.22
## 7292 0.13 0.00 0.04 0.22
## 7293 0.05 0.00 0.03 0.22
## 7294 0.04 0.00 0.01 0.22
## 7295 0.00 0.22 0.00 0.22
## 7296 0.06 0.00 0.00 0.22
## 7297 0.20 0.00 0.01 0.22
## 7298 0.06 0.00 0.00 0.22
## 7299 0.04 0.00 0.01 0.22
## 7300 0.13 0.00 0.02 0.22
## 7301 0.01 0.00 0.02 0.22
## 7302 0.00 0.22 0.00 0.22
## 7303 0.07 0.00 0.03 0.22
## 7304 0.07 0.13 0.02 0.22
## 7305 0.08 0.00 0.03 0.22
## 7306 0.03 0.04 0.01 0.22
## 7307 0.19 0.00 0.02 0.22
## 7308 0.00 0.22 0.00 0.22
## 7309 0.02 0.02 0.02 0.22
## 7310 0.13 0.03 0.03 0.22
## 7311 0.04 0.05 0.01 0.22
## 7312 0.10 0.00 0.02 0.22
## 7313 0.08 0.00 0.01 0.21
## 7314 0.08 0.00 0.03 0.21
## 7315 0.00 0.08 0.01 0.21
## 7316 0.08 0.00 0.01 0.21
## 7317 0.03 0.06 0.03 0.21
## 7318 0.00 0.00 0.02 0.21
## 7319 NA NA NA NA
## 7320 0.08 0.00 0.03 0.21
## 7321 0.08 0.00 0.01 0.21
## 7322 0.16 0.00 0.05 0.21
## 7323 0.04 0.00 0.01 0.21
## 7324 0.08 0.00 0.03 0.21
## 7325 0.00 0.00 0.02 0.21
## 7326 0.08 0.00 0.03 0.21
## 7327 0.00 0.21 0.00 0.21
## 7328 0.04 0.00 0.02 0.21
## 7329 0.00 0.11 0.01 0.21
## 7330 0.00 0.21 0.00 0.21
## 7331 0.00 0.21 0.00 0.21
## 7332 0.02 0.15 0.01 0.21
## 7333 0.00 0.21 0.00 0.21
## 7334 0.19 0.00 0.03 0.21
## 7335 0.00 0.00 0.02 0.21
## 7336 0.08 0.03 0.02 0.21
## 7337 0.02 0.08 0.03 0.21
## 7338 0.08 0.00 0.03 0.21
## 7339 0.00 0.00 0.02 0.21
## 7340 0.07 0.00 0.02 0.21
## 7341 0.02 0.00 0.01 0.21
## 7342 0.04 0.00 0.01 0.21
## 7343 0.08 0.00 0.01 0.21
## 7344 0.07 0.00 0.04 0.21
## 7345 0.08 0.00 0.04 0.21
## 7346 0.08 0.00 0.03 0.21
## 7347 0.00 0.21 0.00 0.21
## 7348 0.08 0.00 0.03 0.21
## 7349 0.00 0.00 0.02 0.21
## 7350 0.00 0.21 0.00 0.21
## 7351 0.06 0.00 0.00 0.21
## 7352 0.08 0.00 0.03 0.21
## 7353 0.05 0.00 0.01 0.21
## 7354 0.00 0.21 0.00 0.21
## 7355 0.08 0.00 0.03 0.21
## 7356 0.01 0.00 0.02 0.21
## 7357 0.07 0.00 0.03 0.21
## 7358 0.01 0.00 0.02 0.21
## 7359 0.05 0.00 0.01 0.21
## 7360 0.06 0.00 0.02 0.21
## 7361 0.07 0.00 0.02 0.21
## 7362 0.00 0.00 0.02 0.21
## 7363 0.05 0.00 0.01 0.21
## 7364 0.05 0.00 0.01 0.21
## 7365 0.08 0.00 0.03 0.21
## 7366 0.12 0.00 0.02 0.21
## 7367 0.08 0.00 0.03 0.21
## 7368 0.00 0.00 0.02 0.21
## 7369 0.11 0.01 0.04 0.21
## 7370 0.01 0.00 0.00 0.21
## 7371 0.01 0.00 0.00 0.21
## 7372 0.01 0.00 0.00 0.21
## 7373 0.18 0.00 0.04 0.21
## 7374 0.03 0.07 0.01 0.21
## 7375 0.08 0.00 0.02 0.21
## 7376 0.03 0.00 0.01 0.21
## 7377 0.07 0.00 0.03 0.21
## 7378 0.01 0.00 0.02 0.21
## 7379 0.08 0.00 0.03 0.21
## 7380 0.08 0.00 0.03 0.21
## 7381 0.08 0.00 0.03 0.21
## 7382 0.00 0.21 0.01 0.21
## 7383 0.05 0.00 0.01 0.21
## 7384 0.00 0.20 0.01 0.21
## 7385 0.10 0.01 0.04 0.21
## 7386 0.00 0.21 0.00 0.21
## 7387 0.07 0.00 0.02 0.21
## 7388 0.03 0.08 0.01 0.21
## 7389 0.02 0.00 0.02 0.21
## 7390 0.01 0.00 0.02 0.21
## 7391 0.05 0.08 0.02 0.21
## 7392 0.08 0.00 0.01 0.21
## 7393 0.05 0.00 0.02 0.21
## 7394 0.05 0.00 0.01 0.21
## 7395 0.05 0.00 0.02 0.21
## 7396 0.01 0.00 0.02 0.21
## 7397 0.00 0.00 0.02 0.21
## 7398 0.00 0.21 0.00 0.21
## 7399 0.08 0.00 0.03 0.21
## 7400 0.04 0.00 0.01 0.21
## 7401 0.00 0.00 0.01 0.21
## 7402 0.00 0.00 0.01 0.21
## 7403 0.00 0.13 0.01 0.21
## 7404 0.08 0.00 0.03 0.21
## 7405 0.08 0.00 0.01 0.21
## 7406 0.07 0.03 0.02 0.21
## 7407 0.00 0.21 0.00 0.21
## 7408 0.05 0.00 0.01 0.21
## 7409 0.04 0.00 0.02 0.21
## 7410 0.00 0.00 0.02 0.21
## 7411 0.00 0.00 0.02 0.21
## 7412 0.04 0.00 0.00 0.21
## 7413 0.04 0.00 0.00 0.21
## 7414 0.04 0.00 0.00 0.21
## 7415 0.04 0.00 0.00 0.21
## 7416 0.04 0.00 0.00 0.21
## 7417 0.04 0.00 0.00 0.21
## 7418 0.07 0.00 0.02 0.21
## 7419 0.00 0.00 0.01 0.21
## 7420 0.00 0.20 0.01 0.21
## 7421 0.14 0.00 0.01 0.21
## 7422 0.00 0.21 0.00 0.21
## 7423 0.04 0.00 0.01 0.21
## 7424 0.15 0.01 0.05 0.21
## 7425 0.08 0.00 0.01 0.21
## 7426 0.08 0.00 0.01 0.21
## 7427 0.00 0.20 0.01 0.21
## 7428 0.00 0.20 0.01 0.21
## 7429 0.00 0.01 0.01 0.21
## 7430 0.05 0.02 0.02 0.21
## 7431 0.08 0.00 0.03 0.21
## 7432 0.04 0.00 0.01 0.21
## 7433 0.08 0.00 0.03 0.21
## 7434 0.08 0.00 0.03 0.21
## 7435 0.00 0.10 0.01 0.21
## 7436 0.04 0.00 0.01 0.21
## 7437 0.04 0.00 0.02 0.21
## 7438 0.00 0.21 0.00 0.21
## 7439 0.06 0.00 0.00 0.21
## 7440 0.04 0.07 0.01 0.21
## 7441 0.00 0.21 0.00 0.21
## 7442 0.04 0.03 0.01 0.21
## 7443 0.04 0.00 0.01 0.21
## 7444 0.07 0.00 0.02 0.21
## 7445 0.04 0.00 0.01 0.21
## 7446 0.01 0.00 0.01 0.21
## 7447 0.08 0.00 0.01 0.21
## 7448 0.08 0.00 0.03 0.21
## 7449 0.08 0.00 0.03 0.21
## 7450 0.00 0.00 0.02 0.21
## 7451 0.00 0.21 0.00 0.21
## 7452 0.08 0.00 0.01 0.21
## 7453 0.13 0.00 0.05 0.21
## 7454 0.12 0.00 0.05 0.21
## 7455 0.00 0.00 0.02 0.21
## 7456 0.00 0.00 0.01 0.21
## 7457 0.00 0.00 0.01 0.21
## 7458 0.00 0.21 0.00 0.21
## 7459 0.00 0.00 0.01 0.21
## 7460 0.08 0.00 0.03 0.21
## 7461 0.08 0.00 0.02 0.21
## 7462 0.00 0.00 0.02 0.21
## 7463 0.04 0.00 0.01 0.21
## 7464 0.07 0.00 0.03 0.21
## 7465 0.00 0.21 0.00 0.21
## 7466 0.00 0.00 0.02 0.21
## 7467 0.00 0.00 0.02 0.21
## 7468 0.00 0.19 0.01 0.21
## 7469 0.08 0.00 0.03 0.21
## 7470 0.00 0.21 0.00 0.21
## 7471 0.05 0.00 0.00 0.21
## 7472 0.00 0.21 0.00 0.21
## 7473 0.00 0.00 0.01 0.21
## 7474 0.03 0.08 0.00 0.21
## 7475 0.00 0.06 0.01 0.21
## 7476 0.04 0.00 0.01 0.21
## 7477 0.00 0.00 0.02 0.21
## 7478 0.03 0.12 0.01 0.21
## 7479 0.06 0.00 0.02 0.21
## 7480 0.04 0.00 0.01 0.21
## 7481 0.04 0.00 0.01 0.21
## 7482 0.00 0.21 0.00 0.21
## 7483 0.03 0.06 0.02 0.21
## 7484 0.08 0.00 0.02 0.21
## 7485 0.04 0.00 0.02 0.21
## 7486 0.00 0.21 0.00 0.21
## 7487 0.10 0.04 0.01 0.21
## 7488 0.08 0.00 0.01 0.21
## 7489 0.02 0.00 0.02 0.21
## 7490 0.04 0.00 0.01 0.21
## 7491 0.10 0.01 0.04 0.21
## 7492 0.00 0.21 0.00 0.21
## 7493 0.04 0.00 0.01 0.21
## 7494 0.05 0.00 0.00 0.21
## 7495 0.07 0.00 0.03 0.21
## 7496 0.00 0.00 0.02 0.20
## 7497 0.04 0.00 0.02 0.20
## 7498 0.06 0.11 0.02 0.20
## 7499 0.00 0.20 0.00 0.20
## 7500 0.00 0.00 0.01 0.20
## 7501 0.05 0.00 0.00 0.20
## 7502 0.00 0.00 0.01 0.20
## 7503 0.01 0.00 0.02 0.20
## 7504 0.05 0.00 0.00 0.20
## 7505 0.07 0.00 0.02 0.20
## 7506 0.00 0.20 0.00 0.20
## 7507 0.00 0.00 0.02 0.20
## 7508 0.00 0.00 0.01 0.20
## 7509 0.11 0.00 0.02 0.20
## 7510 0.02 0.00 0.02 0.20
## 7511 0.08 0.00 0.03 0.20
## 7512 0.03 0.00 0.01 0.20
## 7513 0.00 0.20 0.00 0.20
## 7514 0.08 0.00 0.03 0.20
## 7515 0.04 0.00 0.01 0.20
## 7516 0.02 0.00 0.02 0.20
## 7517 0.00 0.20 0.00 0.20
## 7518 0.08 0.00 0.02 0.20
## 7519 0.04 0.00 0.02 0.20
## 7520 0.00 0.20 0.00 0.20
## 7521 0.02 0.00 0.19 0.20
## 7522 0.09 0.00 0.03 0.20
## 7523 0.05 0.07 0.02 0.20
## 7524 0.04 0.00 0.01 0.20
## 7525 0.03 0.00 0.02 0.20
## 7526 0.00 0.14 0.01 0.20
## 7527 0.00 0.20 0.00 0.20
## 7528 0.04 0.02 0.01 0.20
## 7529 0.02 0.01 0.02 0.20
## 7530 0.17 0.00 0.03 0.20
## 7531 0.04 0.00 0.01 0.20
## 7532 0.00 0.20 0.00 0.20
## 7533 0.09 0.00 0.03 0.20
## 7534 0.05 0.00 0.00 0.20
## 7535 0.08 0.00 0.03 0.20
## 7536 0.00 0.20 0.00 0.20
## 7537 0.00 0.20 0.00 0.20
## 7538 0.05 0.09 0.02 0.20
## 7539 0.05 0.08 0.02 0.20
## 7540 0.19 0.00 0.01 0.20
## 7541 0.08 0.00 0.03 0.20
## 7542 0.08 0.00 0.03 0.20
## 7543 0.00 0.20 0.00 0.20
## 7544 0.05 0.10 0.02 0.20
## 7545 0.08 0.05 0.01 0.20
## 7546 0.20 0.00 0.00 0.20
## 7547 0.02 0.00 0.01 0.20
## 7548 0.00 0.00 0.02 0.20
## 7549 0.05 0.00 0.02 0.20
## 7550 0.19 0.00 0.01 0.20
## 7551 0.08 0.00 0.03 0.20
## 7552 0.04 0.00 0.01 0.20
## 7553 0.00 0.20 0.00 0.20
## 7554 0.00 0.20 0.00 0.20
## 7555 0.04 0.00 0.01 0.20
## 7556 0.03 0.03 0.02 0.20
## 7557 0.02 0.00 0.02 0.20
## 7558 0.04 0.08 0.02 0.20
## 7559 0.08 0.00 0.03 0.20
## 7560 0.03 0.00 0.02 0.20
## 7561 0.00 0.20 0.01 0.20
## 7562 0.08 0.00 0.02 0.20
## 7563 0.05 0.00 0.00 0.20
## 7564 0.07 0.02 0.02 0.20
## 7565 0.10 0.00 0.02 0.20
## 7566 0.15 0.00 0.05 0.20
## 7567 0.08 0.00 0.03 0.20
## 7568 0.02 0.00 0.01 0.20
## 7569 0.00 0.20 0.00 0.20
## 7570 0.03 0.16 0.01 0.20
## 7571 0.01 0.00 0.02 0.20
## 7572 0.05 0.00 0.00 0.20
## 7573 0.07 0.00 0.03 0.20
## 7574 0.00 0.00 0.02 0.20
## 7575 0.04 0.00 0.01 0.20
## 7576 0.04 0.00 0.04 0.20
## 7577 0.00 0.20 0.00 0.20
## 7578 0.06 0.00 0.02 0.20
## 7579 0.00 0.20 0.00 0.20
## 7580 0.04 0.00 0.01 0.20
## 7581 0.05 0.00 0.00 0.20
## 7582 0.00 0.20 0.00 0.20
## 7583 0.04 0.00 0.01 0.20
## 7584 0.00 0.20 0.00 0.20
## 7585 0.00 0.00 0.01 0.20
## 7586 0.04 0.00 0.01 0.20
## 7587 0.00 0.18 0.00 0.20
## 7588 0.08 0.00 0.03 0.20
## 7589 0.05 0.00 0.00 0.20
## 7590 0.04 0.09 0.01 0.20
## 7591 0.02 0.07 0.01 0.20
## 7592 0.08 0.00 0.03 0.20
## 7593 0.00 0.00 0.01 0.20
## 7594 0.00 0.00 0.01 0.20
## 7595 0.00 0.00 0.01 0.20
## 7596 0.07 0.02 0.02 0.20
## 7597 0.08 0.00 0.02 0.20
## 7598 0.08 0.00 0.01 0.20
## 7599 0.00 0.00 0.02 0.20
## 7600 0.05 0.00 0.03 0.20
## 7601 0.08 0.00 0.03 0.20
## 7602 0.04 0.01 0.02 0.20
## 7603 0.04 0.00 0.01 0.20
## 7604 0.08 0.00 0.01 0.20
## 7605 0.00 0.20 0.00 0.20
## 7606 0.04 0.04 0.02 0.20
## 7607 0.11 0.00 0.02 0.20
## 7608 0.09 0.00 0.02 0.20
## 7609 0.08 0.00 0.02 0.20
## 7610 0.04 0.00 0.01 0.20
## 7611 0.06 0.00 0.02 0.20
## 7612 0.12 0.00 0.02 0.20
## 7613 0.08 0.00 0.03 0.20
## 7614 0.04 0.00 0.01 0.20
## 7615 0.04 0.00 0.00 0.20
## 7616 0.00 0.17 0.03 0.20
## 7617 0.13 0.00 0.01 0.20
## 7618 0.02 0.05 0.00 0.20
## 7619 0.04 0.00 0.00 0.20
## 7620 0.04 0.00 0.00 0.20
## 7621 0.04 0.00 0.00 0.20
## 7622 0.04 0.00 0.00 0.20
## 7623 0.04 0.00 0.00 0.20
## 7624 0.00 0.20 0.00 0.20
## 7625 0.04 0.00 0.00 0.20
## 7626 0.00 0.00 0.02 0.20
## 7627 0.04 0.00 0.01 0.20
## 7628 0.00 0.20 0.00 0.20
## 7629 0.04 0.00 0.02 0.20
## 7630 0.00 0.03 0.01 0.20
## 7631 0.03 0.00 0.02 0.20
## 7632 0.00 0.00 0.02 0.20
## 7633 0.08 0.00 0.03 0.20
## 7634 0.00 0.20 0.00 0.20
## 7635 0.05 0.00 0.00 0.20
## 7636 0.08 0.00 0.03 0.20
## 7637 0.02 0.10 0.01 0.20
## 7638 0.00 0.19 0.01 0.20
## 7639 0.04 0.00 0.01 0.20
## 7640 0.17 0.00 0.03 0.20
## 7641 0.09 0.00 0.04 0.20
## 7642 0.10 0.00 0.03 0.20
## 7643 0.08 0.00 0.03 0.20
## 7644 0.04 0.00 0.01 0.20
## 7645 0.00 0.20 0.00 0.20
## 7646 0.02 0.02 0.02 0.20
## 7647 0.04 0.00 0.01 0.20
## 7648 0.00 0.20 0.00 0.20
## 7649 0.15 0.00 0.02 0.20
## 7650 0.00 0.20 0.00 0.20
## 7651 0.04 0.00 0.02 0.20
## 7652 0.11 0.01 0.03 0.20
## 7653 0.05 0.00 0.02 0.20
## 7654 0.08 0.00 0.03 0.20
## 7655 0.00 0.20 0.00 0.20
## 7656 0.01 0.16 0.01 0.20
## 7657 0.00 0.00 0.01 0.20
## 7658 0.06 0.00 0.02 0.20
## 7659 0.13 0.00 0.02 0.20
## 7660 0.04 0.00 0.01 0.20
## 7661 0.04 0.00 0.01 0.20
## 7662 0.00 0.20 0.00 0.20
## 7663 0.08 0.00 0.03 0.20
## 7664 0.20 0.00 0.00 0.20
## 7665 0.01 0.00 0.01 0.20
## 7666 0.08 0.05 0.03 0.20
## 7667 0.02 0.07 0.01 0.20
## 7668 0.08 0.00 0.03 0.20
## 7669 0.00 0.00 0.01 0.20
## 7670 0.04 0.00 0.01 0.20
## 7671 0.00 0.00 0.01 0.20
## 7672 0.00 0.20 0.00 0.20
## 7673 0.00 0.20 0.00 0.20
## 7674 0.04 0.00 0.01 0.20
## 7675 0.00 0.01 0.01 0.20
## 7676 0.06 0.00 0.02 0.20
## 7677 0.01 0.00 0.02 0.20
## 7678 0.00 0.20 0.00 0.20
## 7679 0.08 0.00 0.03 0.20
## 7680 0.00 0.00 0.01 0.20
## 7681 0.01 0.00 0.02 0.20
## 7682 0.07 0.00 0.01 0.20
## 7683 0.10 0.00 0.02 0.20
## 7684 0.01 0.00 0.02 0.20
## 7685 0.04 0.00 0.01 0.20
## 7686 0.00 0.09 0.01 0.20
## 7687 0.09 0.00 0.02 0.20
## 7688 0.08 0.00 0.03 0.20
## 7689 0.00 0.20 0.00 0.20
## 7690 0.00 0.00 0.01 0.20
## 7691 0.08 0.03 0.01 0.20
## 7692 0.00 0.00 0.01 0.20
## 7693 0.08 0.00 0.03 0.20
## 7694 0.00 0.00 0.01 0.20
## 7695 0.00 0.00 0.01 0.20
## 7696 0.05 0.00 0.00 0.20
## 7697 0.08 0.00 0.03 0.20
## 7698 0.00 0.20 0.00 0.20
## 7699 0.00 0.11 0.01 0.20
## 7700 0.00 0.20 0.00 0.20
## 7701 0.00 0.18 0.01 0.20
## 7702 0.00 0.00 0.01 0.20
## 7703 0.02 0.00 0.02 0.20
## 7704 0.05 0.00 0.00 0.20
## 7705 0.05 0.00 0.00 0.20
## 7706 0.01 0.00 0.02 0.20
## 7707 0.04 0.00 0.01 0.20
## 7708 0.04 0.00 0.01 0.20
## 7709 0.07 0.00 0.01 0.20
## 7710 0.05 0.00 0.00 0.20
## 7711 0.13 0.00 0.02 0.20
## 7712 0.03 0.00 0.02 0.20
## 7713 0.00 0.20 0.00 0.20
## 7714 0.00 0.20 0.00 0.20
## 7715 0.04 0.00 0.01 0.20
## 7716 0.00 0.00 0.02 0.20
## 7717 0.04 0.00 0.01 0.20
## 7718 0.05 0.00 0.01 0.20
## 7719 0.00 0.20 0.00 0.20
## 7720 0.03 0.00 0.01 0.20
## 7721 0.11 0.00 0.03 0.20
## 7722 0.00 0.05 0.02 0.20
## 7723 0.07 0.00 0.03 0.20
## 7724 0.00 0.03 0.01 0.20
## 7725 0.00 0.00 0.01 0.20
## 7726 0.07 0.00 0.03 0.20
## 7727 0.17 0.00 0.03 0.20
## 7728 0.00 0.00 0.01 0.20
## 7729 0.03 0.08 0.02 0.20
## 7730 0.12 0.00 0.03 0.20
## 7731 0.07 0.00 0.02 0.20
## 7732 0.05 0.05 0.02 0.20
## 7733 0.07 0.00 0.02 0.20
## 7734 0.05 0.00 0.00 0.20
## 7735 0.00 0.02 0.01 0.19
## 7736 0.13 0.00 0.04 0.19
## 7737 0.00 0.00 0.01 0.19
## 7738 0.00 0.00 0.01 0.19
## 7739 0.12 0.00 0.03 0.19
## 7740 0.04 0.00 0.01 0.19
## 7741 0.07 0.00 0.02 0.19
## 7742 0.05 0.00 0.00 0.19
## 7743 0.06 0.04 0.02 0.19
## 7744 0.03 0.00 0.02 0.19
## 7745 0.11 0.00 0.02 0.19
## 7746 0.00 0.18 0.01 0.19
## 7747 0.06 0.01 0.02 0.19
## 7748 0.08 0.00 0.04 0.19
## 7749 0.09 0.00 0.02 0.19
## 7750 0.07 0.00 0.03 0.19
## 7751 0.04 0.00 0.02 0.19
## 7752 0.07 0.00 0.02 0.19
## 7753 0.00 0.06 0.01 0.19
## 7754 0.00 0.00 0.01 0.19
## 7755 0.00 0.19 0.00 0.19
## 7756 0.03 0.08 0.01 0.19
## 7757 0.00 0.00 0.01 0.19
## 7758 0.00 0.19 0.00 0.19
## 7759 0.05 0.00 0.00 0.19
## 7760 0.01 0.00 0.01 0.19
## 7761 0.00 0.19 0.00 0.19
## 7762 0.17 0.00 0.02 0.19
## 7763 0.04 0.00 0.01 0.19
## 7764 NA NA NA NA
## 7765 0.02 0.00 0.02 0.19
## 7766 0.05 0.00 0.00 0.19
## 7767 0.00 0.19 0.00 0.19
## 7768 0.00 0.18 0.01 0.19
## 7769 0.13 0.00 0.01 0.19
## 7770 0.00 0.19 0.00 0.19
## 7771 0.04 0.04 0.01 0.19
## 7772 0.09 0.02 0.03 0.19
## 7773 0.04 0.00 0.01 0.19
## 7774 0.07 0.00 0.02 0.19
## 7775 0.06 0.00 0.03 0.19
## 7776 0.04 0.00 0.01 0.19
## 7777 0.00 0.00 0.01 0.19
## 7778 0.07 0.00 0.02 0.19
## 7779 0.02 0.05 0.01 0.19
## 7780 0.01 0.00 0.02 0.19
## 7781 0.01 0.00 0.01 0.19
## 7782 0.03 0.00 0.03 0.19
## 7783 0.00 0.19 0.00 0.19
## 7784 0.16 0.00 0.02 0.19
## 7785 0.00 0.19 0.00 0.19
## 7786 0.11 0.00 0.01 0.19
## 7787 0.11 0.00 0.02 0.19
## 7788 0.00 0.19 0.00 0.19
## 7789 0.01 0.00 0.01 0.19
## 7790 0.07 0.00 0.02 0.19
## 7791 0.00 0.19 0.00 0.19
## 7792 0.03 0.01 0.03 0.19
## 7793 0.02 0.00 0.02 0.19
## 7794 0.00 0.00 0.01 0.19
## 7795 0.00 0.19 0.00 0.19
## 7796 0.07 0.00 0.01 0.19
## 7797 0.00 0.04 0.02 0.19
## 7798 0.07 0.00 0.01 0.19
## 7799 0.15 0.00 0.04 0.19
## 7800 0.02 0.02 0.01 0.19
## 7801 0.06 0.01 0.03 0.19
## 7802 0.04 0.00 0.01 0.19
## 7803 0.09 0.00 0.02 0.19
## 7804 0.00 0.00 0.01 0.19
## 7805 0.10 0.00 0.03 0.19
## 7806 0.02 0.00 0.02 0.19
## 7807 0.00 0.00 0.01 0.19
## 7808 0.02 0.00 0.01 0.19
## 7809 0.01 0.00 0.01 0.19
## 7810 0.07 0.00 0.02 0.19
## 7811 0.07 0.00 0.02 0.19
## 7812 0.04 0.00 0.01 0.19
## 7813 0.00 0.19 0.00 0.19
## 7814 0.00 0.00 0.01 0.19
## 7815 0.03 0.00 0.01 0.19
## 7816 0.07 0.00 0.02 0.19
## 7817 0.00 0.19 0.00 0.19
## 7818 0.01 0.00 0.01 0.19
## 7819 0.07 0.00 0.02 0.19
## 7820 0.00 0.00 0.01 0.19
## 7821 0.02 0.00 0.01 0.19
## 7822 0.07 0.00 0.02 0.19
## 7823 0.05 0.00 0.00 0.19
## 7824 0.00 0.19 0.00 0.19
## 7825 0.00 0.19 0.00 0.19
## 7826 0.07 0.00 0.02 0.19
## 7827 0.13 0.00 0.03 0.19
## 7828 0.07 0.00 0.01 0.19
## 7829 0.00 0.18 0.01 0.19
## 7830 0.00 0.19 0.00 0.19
## 7831 0.07 0.02 0.02 0.19
## 7832 0.07 0.00 0.04 0.19
## 7833 0.07 0.00 0.02 0.19
## 7834 0.02 0.10 0.01 0.19
## 7835 0.03 0.00 0.01 0.19
## 7836 0.09 0.00 0.02 0.19
## 7837 0.01 0.16 0.00 0.19
## 7838 0.00 0.19 0.00 0.19
## 7839 0.07 0.00 0.02 0.19
## 7840 0.07 0.00 0.02 0.19
## 7841 0.07 0.00 0.01 0.19
## 7842 0.03 0.00 0.01 0.19
## 7843 0.07 0.00 0.02 0.19
## 7844 0.00 0.00 0.01 0.19
## 7845 0.03 0.00 0.02 0.19
## 7846 0.00 0.19 0.00 0.19
## 7847 0.05 0.00 0.00 0.19
## 7848 0.04 0.00 0.01 0.19
## 7849 0.00 0.19 0.00 0.19
## 7850 0.05 0.00 0.02 0.19
## 7851 0.07 0.00 0.02 0.19
## 7852 0.11 0.00 0.03 0.19
## 7853 0.00 0.00 0.01 0.19
## 7854 0.05 0.00 0.00 0.19
## 7855 0.04 0.00 0.01 0.19
## 7856 0.09 0.00 0.04 0.19
## 7857 0.03 0.00 0.01 0.19
## 7858 0.00 0.19 0.00 0.19
## 7859 0.02 0.06 0.03 0.19
## 7860 0.04 0.00 0.00 0.19
## 7861 0.04 0.00 0.00 0.19
## 7862 0.04 0.00 0.00 0.19
## 7863 0.00 0.16 0.03 0.19
## 7864 0.00 0.19 0.00 0.19
## 7865 0.04 0.00 0.00 0.19
## 7866 0.04 0.00 0.00 0.19
## 7867 0.00 0.19 0.00 0.19
## 7868 0.00 0.00 0.01 0.19
## 7869 0.00 0.19 0.00 0.19
## 7870 0.00 0.00 0.01 0.19
## 7871 0.04 0.00 0.01 0.19
## 7872 0.04 0.00 0.01 0.19
## 7873 0.06 0.00 0.02 0.19
## 7874 0.07 0.00 0.02 0.19
## 7875 0.07 0.00 0.02 0.19
## 7876 0.05 0.00 0.00 0.19
## 7877 0.00 0.19 0.00 0.19
## 7878 0.07 0.00 0.01 0.19
## 7879 0.06 0.01 0.02 0.19
## 7880 0.00 0.00 0.01 0.19
## 7881 0.00 0.19 0.00 0.19
## 7882 0.05 0.07 0.02 0.19
## 7883 0.00 0.00 0.01 0.19
## 7884 0.07 0.00 0.02 0.19
## 7885 0.05 0.00 0.00 0.19
## 7886 0.07 0.00 0.02 0.19
## 7887 0.01 0.12 0.01 0.19
## 7888 0.00 0.06 0.01 0.19
## 7889 0.00 0.19 0.00 0.19
## 7890 0.06 0.00 0.03 0.19
## 7891 0.05 0.00 0.03 0.19
## 7892 0.04 0.00 0.01 0.19
## 7893 0.16 0.00 0.03 0.19
## 7894 0.05 0.00 0.03 0.19
## 7895 0.03 0.00 0.01 0.19
## 7896 0.07 0.00 0.02 0.19
## 7897 0.07 0.00 0.02 0.19
## 7898 0.00 0.19 0.00 0.19
## 7899 0.07 0.00 0.02 0.19
## 7900 0.00 0.19 0.00 0.19
## 7901 0.07 0.00 0.02 0.19
## 7902 0.18 0.00 0.01 0.19
## 7903 0.12 0.00 0.02 0.19
## 7904 0.04 0.00 0.01 0.19
## 7905 0.01 0.00 0.00 0.19
## 7906 0.00 0.00 0.01 0.19
## 7907 0.00 0.00 0.01 0.19
## 7908 0.00 0.18 0.01 0.19
## 7909 0.00 0.00 0.01 0.19
## 7910 0.07 0.00 0.01 0.19
## 7911 0.00 0.19 0.00 0.19
## 7912 0.00 0.18 0.01 0.19
## 7913 0.04 0.00 0.01 0.19
## 7914 0.00 0.00 0.01 0.19
## 7915 0.00 0.19 0.00 0.19
## 7916 0.00 0.19 0.00 0.19
## 7917 0.01 0.02 0.01 0.19
## 7918 0.00 0.19 0.00 0.19
## 7919 0.00 0.00 0.08 0.19
## 7920 0.05 0.00 0.02 0.19
## 7921 0.07 0.00 0.01 0.19
## 7922 0.08 0.00 0.02 0.19
## 7923 0.01 0.00 0.01 0.19
## 7924 0.16 0.00 0.02 0.19
## 7925 0.00 0.19 0.00 0.19
## 7926 0.07 0.00 0.02 0.19
## 7927 0.01 0.00 0.01 0.19
## 7928 0.00 0.19 0.00 0.19
## 7929 0.07 0.00 0.02 0.19
## 7930 0.00 0.19 0.00 0.19
## 7931 0.15 0.00 0.04 0.19
## 7932 0.00 0.19 0.00 0.19
## 7933 0.00 0.19 0.00 0.19
## 7934 0.16 0.00 0.02 0.19
## 7935 0.00 0.00 0.01 0.19
## 7936 0.17 0.00 0.02 0.19
## 7937 0.00 0.19 0.00 0.19
## 7938 0.05 0.00 0.02 0.19
## 7939 0.16 0.00 0.03 0.19
## 7940 0.00 0.00 0.01 0.19
## 7941 0.00 0.19 0.00 0.19
## 7942 0.00 0.11 0.01 0.19
## 7943 0.00 0.00 0.01 0.19
## 7944 0.05 0.00 0.00 0.19
## 7945 0.05 0.03 0.01 0.19
## 7946 0.00 0.19 0.00 0.19
## 7947 0.03 0.00 0.02 0.19
## 7948 0.07 0.00 0.01 0.19
## 7949 0.00 0.00 0.01 0.19
## 7950 0.13 0.00 0.03 0.19
## 7951 0.00 0.19 0.00 0.19
## 7952 0.00 0.19 0.00 0.19
## 7953 0.00 0.19 0.00 0.19
## 7954 0.05 0.00 0.00 0.19
## 7955 0.07 0.00 0.02 0.19
## 7956 0.00 0.19 0.00 0.19
## 7957 0.05 0.00 0.00 0.19
## 7958 0.07 0.00 0.01 0.19
## 7959 0.00 0.06 0.01 0.19
## 7960 0.07 0.00 0.02 0.19
## 7961 0.00 0.00 0.01 0.19
## 7962 0.07 0.00 0.02 0.19
## 7963 0.00 0.19 0.00 0.19
## 7964 0.07 0.00 0.02 0.19
## 7965 0.05 0.00 0.00 0.19
## 7966 0.11 0.00 0.02 0.19
## 7967 0.03 0.03 0.01 0.19
## 7968 0.07 0.00 0.02 0.19
## 7969 0.02 0.00 0.01 0.19
## 7970 0.00 0.19 0.00 0.19
## 7971 0.00 0.19 0.00 0.19
## 7972 0.04 0.00 0.01 0.19
## 7973 0.00 0.00 0.02 0.19
## 7974 0.00 0.19 0.00 0.19
## 7975 0.04 0.00 0.01 0.19
## 7976 0.03 0.00 0.00 0.19
## 7977 0.00 0.19 0.00 0.19
## 7978 0.03 0.00 0.00 0.19
## 7979 0.07 0.01 0.01 0.19
## 7980 0.00 0.00 0.01 0.19
## 7981 0.00 0.00 0.01 0.19
## 7982 0.07 0.00 0.02 0.19
## 7983 0.00 0.19 0.00 0.19
## 7984 0.07 0.00 0.02 0.19
## 7985 0.00 0.11 0.01 0.19
## 7986 0.05 0.00 0.01 0.19
## 7987 0.02 0.00 0.01 0.19
## 7988 0.04 0.00 0.01 0.19
## 7989 0.00 0.00 0.01 0.19
## 7990 0.07 0.00 0.02 0.19
## 7991 0.03 0.00 0.01 0.19
## 7992 0.00 0.00 0.01 0.19
## 7993 0.04 0.00 0.03 0.19
## 7994 0.07 0.00 0.01 0.19
## 7995 0.00 0.19 0.00 0.19
## 7996 0.09 0.00 0.03 0.19
## 7997 0.11 0.00 0.03 0.18
## 7998 0.00 0.00 0.01 0.18
## 7999 0.07 0.00 0.02 0.18
## 8000 0.11 0.00 0.02 0.18
## 8001 0.06 0.00 0.02 0.18
## 8002 0.00 0.00 0.01 0.18
## 8003 0.09 0.00 0.02 0.18
## 8004 0.07 0.00 0.02 0.18
## 8005 0.05 0.00 0.00 0.18
## 8006 0.04 0.00 0.01 0.18
## 8007 0.00 0.00 0.01 0.18
## 8008 0.07 0.00 0.02 0.18
## 8009 0.04 0.00 0.01 0.18
## 8010 0.11 0.00 0.04 0.18
## 8011 0.04 0.00 0.01 0.18
## 8012 0.00 0.00 0.02 0.18
## 8013 0.07 0.00 0.02 0.18
## 8014 0.02 0.07 0.02 0.18
## 8015 0.01 0.00 0.01 0.18
## 8016 0.07 0.00 0.01 0.18
## 8017 0.00 0.00 0.01 0.18
## 8018 0.00 0.01 0.03 0.18
## 8019 0.04 0.00 0.01 0.18
## 8020 0.00 0.18 0.00 0.18
## 8021 0.03 0.11 0.01 0.18
## 8022 0.07 0.00 0.02 0.18
## 8023 0.02 0.00 0.01 0.18
## 8024 0.04 0.00 0.01 0.18
## 8025 0.02 0.05 0.01 0.18
## 8026 0.07 0.03 0.02 0.18
## 8027 0.00 0.18 0.00 0.18
## 8028 0.10 0.00 0.01 0.18
## 8029 0.00 0.18 0.00 0.18
## 8030 0.03 0.11 0.01 0.18
## 8031 0.06 0.00 0.02 0.18
## 8032 0.11 0.00 0.02 0.18
## 8033 0.07 0.00 0.01 0.18
## 8034 0.14 0.00 0.04 0.18
## 8035 0.05 0.00 0.00 0.18
## 8036 0.00 0.00 0.01 0.18
## 8037 0.01 0.00 0.02 0.18
## 8038 0.00 0.18 0.00 0.18
## 8039 0.07 0.00 0.02 0.18
## 8040 0.08 0.00 0.02 0.18
## 8041 0.15 0.00 0.04 0.18
## 8042 0.09 0.00 0.01 0.18
## 8043 0.04 0.00 0.01 0.18
## 8044 0.04 0.00 0.01 0.18
## 8045 0.00 0.02 0.01 0.18
## 8046 0.04 0.00 0.01 0.18
## 8047 0.07 0.00 0.01 0.18
## 8048 0.04 0.00 0.02 0.18
## 8049 0.07 0.00 0.02 0.18
## 8050 0.00 0.18 0.00 0.18
## 8051 0.00 0.18 0.00 0.18
## 8052 0.00 0.17 0.01 0.18
## 8053 0.07 0.00 0.02 0.18
## 8054 0.09 0.00 0.02 0.18
## 8055 0.05 0.00 0.00 0.18
## 8056 0.00 0.00 0.18 0.18
## 8057 0.10 0.00 0.03 0.18
## 8058 0.01 0.05 0.01 0.18
## 8059 0.00 0.18 0.00 0.18
## 8060 0.06 0.01 0.02 0.18
## 8061 0.00 0.00 0.05 0.18
## 8062 0.00 0.18 0.00 0.18
## 8063 0.02 0.00 0.01 0.18
## 8064 0.08 0.01 0.01 0.18
## 8065 0.04 0.00 0.00 0.18
## 8066 0.00 0.00 0.01 0.18
## 8067 0.16 0.00 0.02 0.18
## 8068 0.01 0.13 0.00 0.18
## 8069 0.01 0.00 0.01 0.18
## 8070 0.04 0.00 0.01 0.18
## 8071 0.16 0.00 0.02 0.18
## 8072 0.06 0.03 0.02 0.18
## 8073 0.12 0.00 0.02 0.18
## 8074 0.04 0.00 0.00 0.18
## 8075 0.03 0.05 0.03 0.18
## 8076 0.06 0.00 0.02 0.18
## 8077 0.00 0.18 0.00 0.18
## 8078 0.05 0.00 0.00 0.18
## 8079 0.00 0.18 0.00 0.18
## 8080 0.00 0.00 0.01 0.18
## 8081 0.03 0.00 0.01 0.18
## 8082 0.00 0.07 0.02 0.18
## 8083 0.00 0.18 0.00 0.18
## 8084 0.06 0.00 0.02 0.18
## 8085 0.00 0.07 0.03 0.18
## 8086 0.00 0.18 0.00 0.18
## 8087 0.00 0.00 0.01 0.18
## 8088 0.03 0.07 0.02 0.18
## 8089 0.04 0.00 0.01 0.18
## 8090 0.07 0.00 0.01 0.18
## 8091 0.00 0.00 0.01 0.18
## 8092 0.07 0.00 0.02 0.18
## 8093 0.07 0.00 0.02 0.18
## 8094 0.00 0.17 0.01 0.18
## 8095 0.14 0.00 0.04 0.18
## 8096 0.12 0.00 0.02 0.18
## 8097 0.04 0.00 0.01 0.18
## 8098 0.04 0.00 0.01 0.18
## 8099 0.04 0.00 0.00 0.18
## 8100 0.04 0.00 0.00 0.18
## 8101 0.00 0.18 0.00 0.18
## 8102 0.00 0.07 0.02 0.18
## 8103 0.04 0.00 0.00 0.18
## 8104 0.00 0.18 0.00 0.18
## 8105 0.04 0.00 0.02 0.18
## 8106 0.04 0.00 0.01 0.18
## 8107 0.10 0.00 0.03 0.18
## 8108 0.02 0.00 0.01 0.18
## 8109 0.15 0.00 0.02 0.18
## 8110 0.05 0.00 0.00 0.18
## 8111 0.02 0.00 0.02 0.18
## 8112 0.00 0.18 0.00 0.18
## 8113 0.07 0.00 0.02 0.18
## 8114 0.04 0.00 0.01 0.18
## 8115 0.06 0.00 0.02 0.18
## 8116 0.03 0.00 0.01 0.18
## 8117 0.08 0.00 0.03 0.18
## 8118 0.08 0.00 0.02 0.18
## 8119 0.00 0.18 0.00 0.18
## 8120 0.04 0.00 0.00 0.18
## 8121 0.00 0.00 0.01 0.18
## 8122 0.04 0.00 0.01 0.18
## 8123 0.16 0.00 0.02 0.18
## 8124 0.00 0.00 0.01 0.18
## 8125 0.00 0.18 0.00 0.18
## 8126 0.07 0.00 0.02 0.18
## 8127 0.07 0.00 0.01 0.18
## 8128 0.10 0.00 0.03 0.18
## 8129 0.05 0.00 0.00 0.18
## 8130 0.06 0.00 0.02 0.18
## 8131 0.09 0.00 0.03 0.18
## 8132 0.05 0.00 0.00 0.18
## 8133 0.07 0.00 0.02 0.18
## 8134 0.04 0.02 0.01 0.18
## 8135 0.13 0.00 0.01 0.18
## 8136 0.04 0.00 0.01 0.18
## 8137 0.00 0.00 0.01 0.18
## 8138 0.07 0.00 0.02 0.18
## 8139 0.10 0.00 0.01 0.18
## 8140 0.00 0.00 0.01 0.18
## 8141 0.02 0.10 0.01 0.18
## 8142 0.08 0.00 0.02 0.18
## 8143 0.04 0.00 0.00 0.18
## 8144 0.03 0.02 0.03 0.18
## 8145 0.09 0.00 0.02 0.18
## 8146 0.07 0.00 0.01 0.18
## 8147 0.00 0.18 0.00 0.18
## 8148 0.07 0.00 0.02 0.18
## 8149 0.00 0.00 0.01 0.18
## 8150 0.04 0.00 0.00 0.18
## 8151 0.00 0.00 0.01 0.18
## 8152 0.07 0.00 0.01 0.18
## 8153 0.07 0.00 0.02 0.18
## 8154 0.02 0.01 0.01 0.18
## 8155 0.07 0.00 0.01 0.18
## 8156 0.00 0.18 0.00 0.18
## 8157 0.07 0.00 0.02 0.18
## 8158 0.07 0.00 0.01 0.18
## 8159 0.04 0.08 0.02 0.18
## 8160 0.04 0.00 0.00 0.18
## 8161 0.04 0.08 0.01 0.18
## 8162 0.04 0.00 0.05 0.18
## 8163 0.05 0.00 0.00 0.18
## 8164 0.00 0.00 0.01 0.18
## 8165 0.03 0.10 0.01 0.18
## 8166 0.02 0.00 0.01 0.18
## 8167 0.00 0.18 0.00 0.18
## 8168 0.00 0.04 0.01 0.18
## 8169 0.00 0.18 0.00 0.18
## 8170 0.04 0.00 0.01 0.18
## 8171 0.05 0.00 0.00 0.18
## 8172 0.05 0.00 0.00 0.18
## 8173 0.00 0.18 0.00 0.18
## 8174 0.00 0.18 0.00 0.18
## 8175 0.00 0.18 0.00 0.18
## 8176 0.07 0.00 0.02 0.18
## 8177 0.09 0.00 0.02 0.18
## 8178 0.07 0.00 0.02 0.18
## 8179 0.00 0.00 0.01 0.18
## 8180 0.07 0.00 0.02 0.18
## 8181 0.05 0.00 0.01 0.18
## 8182 0.04 0.00 0.01 0.18
## 8183 0.00 0.00 0.01 0.18
## 8184 0.05 0.00 0.00 0.18
## 8185 0.00 0.00 0.01 0.18
## 8186 0.00 0.00 0.01 0.18
## 8187 0.13 0.00 0.03 0.18
## 8188 0.07 0.00 0.01 0.18
## 8189 0.07 0.00 0.01 0.18
## 8190 0.00 0.00 0.01 0.18
## 8191 0.13 0.00 0.01 0.18
## 8192 0.00 0.00 0.01 0.18
## 8193 0.05 0.00 0.00 0.18
## 8194 0.04 0.00 0.01 0.18
## 8195 0.05 0.00 0.00 0.18
## 8196 0.00 0.18 0.00 0.18
## 8197 0.00 0.18 0.00 0.18
## 8198 0.04 0.00 0.01 0.18
## 8199 0.04 0.00 0.01 0.18
## 8200 0.00 0.00 0.01 0.18
## 8201 0.03 0.00 0.02 0.18
## 8202 0.04 0.00 0.01 0.18
## 8203 0.02 0.00 0.01 0.18
## 8204 0.02 0.00 0.01 0.18
## 8205 0.07 0.00 0.02 0.18
## 8206 0.02 0.01 0.01 0.18
## 8207 0.02 0.07 0.02 0.17
## 8208 0.07 0.00 0.02 0.17
## 8209 0.04 0.00 0.02 0.17
## 8210 0.16 0.00 0.02 0.17
## 8211 0.07 0.00 0.02 0.17
## 8212 0.00 0.00 0.01 0.17
## 8213 0.07 0.00 0.02 0.17
## 8214 0.02 0.00 0.02 0.17
## 8215 0.08 0.08 0.01 0.17
## 8216 0.00 0.17 0.00 0.17
## 8217 0.05 0.00 0.03 0.17
## 8218 0.14 0.00 0.04 0.17
## 8219 0.09 0.00 0.02 0.17
## 8220 0.07 0.00 0.01 0.17
## 8221 0.10 0.00 0.04 0.17
## 8222 0.00 0.17 0.00 0.17
## 8223 0.07 0.00 0.02 0.17
## 8224 0.05 0.00 0.00 0.17
## 8225 0.02 0.06 0.03 0.17
## 8226 0.05 0.00 0.00 0.17
## 8227 0.04 0.00 0.02 0.17
## 8228 0.07 0.00 0.02 0.17
## 8229 0.03 0.00 0.00 0.17
## 8230 0.07 0.00 0.02 0.17
## 8231 0.03 0.00 0.00 0.17
## 8232 0.02 0.00 0.02 0.17
## 8233 0.04 0.00 0.03 0.17
## 8234 0.05 0.00 0.02 0.17
## 8235 0.00 0.00 0.01 0.17
## 8236 0.07 0.00 0.01 0.17
## 8237 0.02 0.06 0.01 0.17
## 8238 0.05 0.00 0.00 0.17
## 8239 0.00 0.17 0.00 0.17
## 8240 0.00 0.00 0.01 0.17
## 8241 0.03 0.00 0.00 0.17
## 8242 0.00 0.00 0.01 0.17
## 8243 0.00 0.17 0.00 0.17
## 8244 0.07 0.00 0.02 0.17
## 8245 0.07 0.01 0.03 0.17
## 8246 0.00 0.17 0.00 0.17
## 8247 0.03 0.00 0.00 0.17
## 8248 0.04 0.00 0.01 0.17
## 8249 0.00 0.16 0.01 0.17
## 8250 0.08 0.00 0.02 0.17
## 8251 0.00 0.00 0.01 0.17
## 8252 0.07 0.00 0.01 0.17
## 8253 0.00 0.00 0.01 0.17
## 8254 0.00 0.00 0.01 0.17
## 8255 0.00 0.17 0.00 0.17
## 8256 0.07 0.00 0.02 0.17
## 8257 0.03 0.00 0.02 0.17
## 8258 0.00 0.00 0.01 0.17
## 8259 0.00 0.00 0.01 0.17
## 8260 0.00 0.17 0.00 0.17
## 8261 0.03 0.00 0.00 0.17
## 8262 0.08 0.00 0.02 0.17
## 8263 0.01 0.00 0.01 0.17
## 8264 0.01 0.00 0.01 0.17
## 8265 0.03 0.00 0.00 0.17
## 8266 0.04 0.00 0.01 0.17
## 8267 0.06 0.00 0.03 0.17
## 8268 0.00 0.17 0.00 0.17
## 8269 0.07 0.00 0.02 0.17
## 8270 0.05 0.00 0.00 0.17
## 8271 0.07 0.00 0.02 0.17
## 8272 0.04 0.00 0.01 0.17
## 8273 0.07 0.00 0.02 0.17
## 8274 0.03 0.00 0.00 0.17
## 8275 0.03 0.00 0.01 0.17
## 8276 0.07 0.00 0.01 0.17
## 8277 0.00 0.17 0.00 0.17
## 8278 0.00 0.17 0.00 0.17
## 8279 0.00 0.17 0.00 0.17
## 8280 0.00 0.00 0.01 0.17
## 8281 0.04 0.04 0.03 0.17
## 8282 0.00 0.16 0.01 0.17
## 8283 0.00 0.16 0.01 0.17
## 8284 0.01 0.00 0.01 0.17
## 8285 0.04 0.00 0.01 0.17
## 8286 0.04 0.00 0.01 0.17
## 8287 0.08 0.00 0.04 0.17
## 8288 0.07 0.00 0.02 0.17
## 8289 0.07 0.00 0.02 0.17
## 8290 0.05 0.00 0.00 0.17
## 8291 0.00 0.00 0.01 0.17
## 8292 0.07 0.00 0.02 0.17
## 8293 0.07 0.00 0.02 0.17
## 8294 0.00 0.14 0.00 0.17
## 8295 0.12 0.00 0.03 0.17
## 8296 0.04 0.00 0.01 0.17
## 8297 0.07 0.00 0.02 0.17
## 8298 0.00 0.16 0.01 0.17
## 8299 0.04 0.00 0.02 0.17
## 8300 0.01 0.00 0.01 0.17
## 8301 0.07 0.04 0.01 0.17
## 8302 0.00 0.16 0.01 0.17
## 8303 0.07 0.00 0.02 0.17
## 8304 0.00 0.17 0.00 0.17
## 8305 0.00 0.17 0.00 0.17
## 8306 0.00 0.00 0.01 0.17
## 8307 0.00 0.17 0.00 0.17
## 8308 0.03 0.00 0.00 0.17
## 8309 0.05 0.00 0.00 0.17
## 8310 0.00 0.17 0.00 0.17
## 8311 0.00 0.00 0.01 0.17
## 8312 0.00 0.00 0.01 0.17
## 8313 0.07 0.00 0.03 0.17
## 8314 0.00 0.00 0.01 0.17
## 8315 0.04 0.00 0.01 0.17
## 8316 0.12 0.00 0.01 0.17
## 8317 0.02 0.00 0.02 0.17
## 8318 0.03 0.14 0.00 0.17
## 8319 0.00 0.17 0.00 0.17
## 8320 0.04 0.07 0.01 0.17
## 8321 0.00 0.00 0.01 0.17
## 8322 0.00 0.00 0.01 0.17
## 8323 0.12 0.00 0.02 0.17
## 8324 0.04 0.00 0.01 0.17
## 8325 0.15 0.00 0.02 0.17
## 8326 0.00 0.00 0.01 0.17
## 8327 0.03 0.00 0.01 0.17
## 8328 0.05 0.00 0.00 0.17
## 8329 0.07 0.00 0.02 0.17
## 8330 0.06 0.00 0.01 0.17
## 8331 0.05 0.00 0.00 0.17
## 8332 0.00 0.00 0.01 0.17
## 8333 0.00 0.00 0.01 0.17
## 8334 0.02 0.00 0.01 0.17
## 8335 0.07 0.00 0.02 0.17
## 8336 0.09 0.00 0.02 0.17
## 8337 0.00 0.17 0.00 0.17
## 8338 0.03 0.00 0.00 0.17
## 8339 0.01 0.11 0.00 0.17
## 8340 0.05 0.00 0.00 0.17
## 8341 0.04 0.00 0.01 0.17
## 8342 0.05 0.00 0.00 0.17
## 8343 0.01 0.00 0.01 0.17
## 8344 0.05 0.00 0.00 0.17
## 8345 0.03 0.06 0.02 0.17
## 8346 0.06 0.00 0.02 0.17
## 8347 0.00 0.17 0.00 0.17
## 8348 0.06 0.00 0.02 0.17
## 8349 0.00 0.17 0.00 0.17
## 8350 0.04 0.00 0.00 0.17
## 8351 0.12 0.00 0.03 0.17
## 8352 0.00 0.17 0.00 0.17
## 8353 0.02 0.12 0.01 0.17
## 8354 0.00 0.00 0.01 0.17
## 8355 0.04 0.00 0.03 0.17
## 8356 0.04 0.00 0.01 0.17
## 8357 0.00 0.00 0.01 0.17
## 8358 0.00 0.17 0.00 0.17
## 8359 0.00 0.16 0.00 0.17
## 8360 0.00 0.00 0.01 0.17
## 8361 0.04 0.06 0.01 0.17
## 8362 0.06 0.00 0.01 0.17
## 8363 0.06 0.00 0.02 0.17
## 8364 0.01 0.00 0.01 0.17
## 8365 0.06 0.00 0.02 0.17
## 8366 0.03 0.00 0.01 0.17
## 8367 0.00 0.00 0.01 0.17
## 8368 0.06 0.00 0.02 0.17
## 8369 0.04 0.00 0.00 0.17
## 8370 0.07 0.00 0.02 0.17
## 8371 0.02 0.03 0.01 0.17
## 8372 0.00 0.17 0.00 0.17
## 8373 0.06 0.00 0.02 0.17
## 8374 0.06 0.00 0.01 0.17
## 8375 0.03 0.09 0.01 0.17
## 8376 0.06 0.00 0.01 0.17
## 8377 0.00 0.17 0.00 0.17
## 8378 0.12 0.03 0.02 0.17
## 8379 0.03 0.00 0.00 0.17
## 8380 0.00 0.00 0.01 0.17
## 8381 0.05 0.00 0.01 0.17
## 8382 0.04 0.00 0.00 0.17
## 8383 0.00 0.17 0.00 0.17
## 8384 0.03 0.00 0.00 0.17
## 8385 0.00 0.16 0.01 0.17
## 8386 0.06 0.00 0.02 0.17
## 8387 0.04 0.00 0.01 0.17
## 8388 0.06 0.00 0.01 0.17
## 8389 0.06 0.00 0.01 0.17
## 8390 0.03 0.00 0.01 0.17
## 8391 0.04 0.00 0.01 0.17
## 8392 0.00 0.17 0.00 0.17
## 8393 0.06 0.00 0.01 0.17
## 8394 0.01 0.00 0.01 0.17
## 8395 0.06 0.02 0.02 0.17
## 8396 0.06 0.00 0.02 0.17
## 8397 0.02 0.12 0.00 0.17
## 8398 0.01 0.12 0.01 0.17
## 8399 0.06 0.00 0.01 0.17
## 8400 0.00 0.00 0.01 0.17
## 8401 0.00 0.17 0.00 0.17
## 8402 0.03 0.00 0.00 0.17
## 8403 0.16 0.00 0.01 0.17
## 8404 0.01 0.00 0.02 0.17
## 8405 0.00 0.17 0.00 0.17
## 8406 0.00 0.17 0.00 0.17
## 8407 0.07 0.00 0.02 0.17
## 8408 0.00 0.16 0.01 0.17
## 8409 0.06 0.00 0.02 0.17
## 8410 0.04 0.05 0.02 0.17
## 8411 0.02 0.00 0.02 0.17
## 8412 0.04 0.00 0.01 0.17
## 8413 0.01 0.05 0.01 0.17
## 8414 0.04 0.00 0.01 0.17
## 8415 0.07 0.02 0.02 0.17
## 8416 0.00 0.17 0.00 0.17
## 8417 0.02 0.04 0.00 0.17
## 8418 0.13 0.00 0.04 0.17
## 8419 0.03 0.00 0.01 0.17
## 8420 0.04 0.00 0.00 0.17
## 8421 0.04 0.00 0.00 0.17
## 8422 0.00 0.17 0.00 0.17
## 8423 0.00 0.00 0.01 0.17
## 8424 0.01 0.00 0.01 0.17
## 8425 0.00 0.17 0.00 0.17
## 8426 0.11 0.00 0.02 0.17
## 8427 0.00 0.17 0.00 0.17
## 8428 0.00 0.17 0.00 0.17
## 8429 0.07 0.00 0.01 0.17
## 8430 0.04 0.00 0.01 0.17
## 8431 0.00 0.17 0.00 0.17
## 8432 0.00 0.00 0.02 0.17
## 8433 0.01 0.00 0.01 0.17
## 8434 0.04 0.00 0.02 0.17
## 8435 0.06 0.00 0.02 0.17
## 8436 0.03 0.00 0.00 0.17
## 8437 0.04 0.00 0.01 0.17
## 8438 0.04 0.00 0.00 0.17
## 8439 0.02 0.03 0.01 0.17
## 8440 0.02 0.00 0.02 0.17
## 8441 0.06 0.00 0.02 0.17
## 8442 0.01 0.00 0.01 0.17
## 8443 0.00 0.17 0.00 0.17
## 8444 0.07 0.00 0.02 0.17
## 8445 0.00 0.17 0.00 0.17
## 8446 0.04 0.00 0.01 0.17
## 8447 0.00 0.17 0.00 0.17
## 8448 0.00 0.17 0.00 0.17
## 8449 0.00 0.08 0.02 0.17
## 8450 0.00 0.17 0.00 0.17
## 8451 0.00 0.15 0.00 0.17
## 8452 0.13 0.00 0.03 0.17
## 8453 0.02 0.02 0.01 0.17
## 8454 0.04 0.00 0.01 0.17
## 8455 0.04 0.08 0.01 0.17
## 8456 0.00 0.00 0.01 0.17
## 8457 0.01 0.00 0.02 0.17
## 8458 0.01 0.00 0.00 0.17
## 8459 0.01 0.00 0.00 0.17
## 8460 0.01 0.00 0.00 0.17
## 8461 0.00 0.16 0.00 0.17
## 8462 0.02 0.00 0.01 0.16
## 8463 0.03 0.06 0.02 0.16
## 8464 0.06 0.00 0.02 0.16
## 8465 0.00 0.16 0.00 0.16
## 8466 0.02 0.00 0.01 0.16
## 8467 0.00 0.00 0.03 0.16
## 8468 0.00 0.16 0.00 0.16
## 8469 0.06 0.00 0.02 0.16
## 8470 0.00 0.16 0.00 0.16
## 8471 0.06 0.00 0.02 0.16
## 8472 0.00 0.00 0.00 0.16
## 8473 0.04 0.00 0.00 0.16
## 8474 0.04 0.06 0.02 0.16
## 8475 0.00 0.00 0.01 0.16
## 8476 0.01 0.00 0.01 0.16
## 8477 0.06 0.00 0.01 0.16
## 8478 0.06 0.00 0.02 0.16
## 8479 0.02 0.00 0.02 0.16
## 8480 0.02 0.00 0.02 0.16
## 8481 0.08 0.00 0.02 0.16
## 8482 0.03 0.00 0.01 0.16
## 8483 0.06 0.00 0.02 0.16
## 8484 0.03 0.00 0.02 0.16
## 8485 0.00 0.03 0.01 0.16
## 8486 0.05 0.03 0.01 0.16
## 8487 0.06 0.00 0.02 0.16
## 8488 0.04 0.00 0.01 0.16
## 8489 0.05 0.03 0.02 0.16
## 8490 0.00 0.02 0.01 0.16
## 8491 0.00 0.16 0.00 0.16
## 8492 0.06 0.00 0.02 0.16
## 8493 0.14 0.00 0.02 0.16
## 8494 0.03 0.00 0.00 0.16
## 8495 0.00 0.04 0.01 0.16
## 8496 0.06 0.00 0.02 0.16
## 8497 0.00 0.15 0.01 0.16
## 8498 0.04 0.00 0.00 0.16
## 8499 0.06 0.00 0.02 0.16
## 8500 0.03 0.11 0.01 0.16
## 8501 0.04 0.00 0.00 0.16
## 8502 0.00 0.00 0.01 0.16
## 8503 0.01 0.00 0.01 0.16
## 8504 0.10 0.00 0.00 0.16
## 8505 0.04 0.00 0.01 0.16
## 8506 0.04 0.00 0.01 0.16
## 8507 0.06 0.00 0.02 0.16
## 8508 0.05 0.03 0.01 0.16
## 8509 0.00 0.00 0.01 0.16
## 8510 0.00 0.00 0.01 0.16
## 8511 0.00 0.16 0.00 0.16
## 8512 0.04 0.00 0.00 0.16
## 8513 0.00 0.16 0.00 0.16
## 8514 0.03 0.03 0.01 0.16
## 8515 0.06 0.00 0.01 0.16
## 8516 0.01 0.00 0.02 0.16
## 8517 0.04 0.00 0.00 0.16
## 8518 0.00 0.15 0.01 0.16
## 8519 0.03 0.00 0.00 0.16
## 8520 0.03 0.00 0.00 0.16
## 8521 0.00 0.16 0.00 0.16
## 8522 0.00 0.15 0.01 0.16
## 8523 0.06 0.00 0.01 0.16
## 8524 0.03 0.00 0.01 0.16
## 8525 0.02 0.00 0.02 0.16
## 8526 0.06 0.00 0.02 0.16
## 8527 0.00 0.00 0.01 0.16
## 8528 0.10 0.00 0.01 0.16
## 8529 0.04 0.03 0.02 0.16
## 8530 0.00 0.16 0.00 0.16
## 8531 0.00 0.16 0.00 0.16
## 8532 0.03 0.00 0.00 0.16
## 8533 0.03 0.00 0.01 0.16
## 8534 0.00 0.00 0.01 0.16
## 8535 0.02 0.00 0.01 0.16
## 8536 0.00 0.00 0.01 0.16
## 8537 0.03 0.00 0.01 0.16
## 8538 0.06 0.00 0.02 0.16
## 8539 0.06 0.00 0.02 0.16
## 8540 0.01 0.00 0.01 0.16
## 8541 0.00 0.00 0.01 0.16
## 8542 0.00 0.16 0.00 0.16
## 8543 0.06 0.00 0.02 0.16
## 8544 0.06 0.00 0.02 0.16
## 8545 0.02 0.00 0.02 0.16
## 8546 0.00 0.01 0.01 0.16
## 8547 0.06 0.00 0.02 0.16
## 8548 0.00 0.16 0.00 0.16
## 8549 0.00 0.00 0.01 0.16
## 8550 0.03 0.00 0.01 0.16
## 8551 0.06 0.00 0.02 0.16
## 8552 0.03 0.00 0.00 0.16
## 8553 0.00 0.16 0.00 0.16
## 8554 0.06 0.00 0.01 0.16
## 8555 0.00 0.00 0.01 0.16
## 8556 0.03 0.00 0.00 0.16
## 8557 0.02 0.00 0.01 0.16
## 8558 0.00 0.00 0.01 0.16
## 8559 0.00 0.16 0.00 0.16
## 8560 0.00 0.16 0.00 0.16
## 8561 0.06 0.00 0.02 0.16
## 8562 0.00 0.00 0.01 0.16
## 8563 0.04 0.00 0.00 0.16
## 8564 0.06 0.00 0.02 0.16
## 8565 0.00 0.16 0.00 0.16
## 8566 0.01 0.00 0.01 0.16
## 8567 0.06 0.00 0.02 0.16
## 8568 0.00 0.00 0.01 0.16
## 8569 0.03 0.00 0.00 0.16
## 8570 0.00 0.00 0.01 0.16
## 8571 0.01 0.03 0.01 0.16
## 8572 0.14 0.00 0.02 0.16
## 8573 0.07 0.00 0.01 0.16
## 8574 0.00 0.00 0.01 0.16
## 8575 0.00 0.00 0.01 0.16
## 8576 0.00 0.16 0.00 0.16
## 8577 0.00 0.00 0.01 0.16
## 8578 0.00 0.16 0.00 0.16
## 8579 0.05 0.00 0.02 0.16
## 8580 0.04 0.00 0.00 0.16
## 8581 0.00 0.15 0.01 0.16
## 8582 0.03 0.00 0.00 0.16
## 8583 0.03 0.00 0.00 0.16
## 8584 0.03 0.00 0.00 0.16
## 8585 0.00 0.12 0.04 0.16
## 8586 0.03 0.00 0.00 0.16
## 8587 0.03 0.00 0.00 0.16
## 8588 0.03 0.00 0.00 0.16
## 8589 0.03 0.00 0.00 0.16
## 8590 0.03 0.00 0.00 0.16
## 8591 0.03 0.00 0.00 0.16
## 8592 0.03 0.00 0.00 0.16
## 8593 0.00 0.12 0.04 0.16
## 8594 0.00 0.03 0.01 0.16
## 8595 0.15 0.00 0.01 0.16
## 8596 0.02 0.08 0.01 0.16
## 8597 0.00 0.16 0.00 0.16
## 8598 0.03 0.03 0.02 0.16
## 8599 0.15 0.00 0.01 0.16
## 8600 0.00 0.16 0.00 0.16
## 8601 0.06 0.00 0.02 0.16
## 8602 0.04 0.00 0.01 0.16
## 8603 0.00 0.16 0.00 0.16
## 8604 0.03 0.00 0.01 0.16
## 8605 0.01 0.00 0.01 0.16
## 8606 0.00 0.00 0.01 0.16
## 8607 0.00 0.00 0.01 0.16
## 8608 0.06 0.00 0.03 0.16
## 8609 0.01 0.00 0.01 0.16
## 8610 0.01 0.11 0.00 0.16
## 8611 0.10 0.02 0.04 0.16
## 8612 0.00 0.00 0.01 0.16
## 8613 0.05 0.02 0.03 0.16
## 8614 0.07 0.00 0.01 0.16
## 8615 0.06 0.00 0.02 0.16
## 8616 0.00 0.00 0.00 0.16
## 8617 0.07 0.00 0.02 0.16
## 8618 0.00 0.16 0.00 0.16
## 8619 0.05 0.00 0.01 0.16
## 8620 0.00 0.00 0.01 0.16
## 8621 0.00 0.00 0.01 0.16
## 8622 0.02 0.00 0.01 0.16
## 8623 0.01 0.00 0.01 0.16
## 8624 0.06 0.00 0.02 0.16
## 8625 0.00 0.00 0.01 0.16
## 8626 0.06 0.00 0.01 0.16
## 8627 0.00 0.00 0.01 0.16
## 8628 0.05 0.00 0.01 0.16
## 8629 0.06 0.00 0.01 0.16
## 8630 0.00 0.00 0.01 0.16
## 8631 0.02 0.00 0.01 0.16
## 8632 0.14 0.00 0.02 0.16
## 8633 0.00 0.09 0.01 0.16
## 8634 0.00 0.15 0.01 0.16
## 8635 0.00 0.16 0.00 0.16
## 8636 0.03 0.00 0.01 0.16
## 8637 0.02 0.02 0.01 0.16
## 8638 0.09 0.00 0.04 0.16
## 8639 0.03 0.04 0.00 0.16
## 8640 0.00 0.16 0.00 0.16
## 8641 0.03 0.00 0.02 0.16
## 8642 0.04 0.00 0.00 0.16
## 8643 0.00 0.15 0.01 0.16
## 8644 0.01 0.00 0.01 0.16
## 8645 0.00 0.15 0.00 0.16
## 8646 0.01 0.00 0.01 0.16
## 8647 0.07 0.00 0.01 0.16
## 8648 0.00 0.00 0.01 0.16
## 8649 0.04 0.00 0.01 0.16
## 8650 0.00 0.00 0.01 0.16
## 8651 0.00 0.16 0.00 0.16
## 8652 0.00 0.00 0.01 0.16
## 8653 0.13 0.00 0.03 0.16
## 8654 0.00 0.00 0.01 0.16
## 8655 0.09 0.00 0.03 0.16
## 8656 0.04 0.00 0.00 0.16
## 8657 0.03 0.08 0.01 0.16
## 8658 0.00 0.16 0.00 0.16
## 8659 0.00 0.15 0.01 0.16
## 8660 0.00 0.00 0.01 0.16
## 8661 0.06 0.00 0.01 0.16
## 8662 0.04 0.00 0.01 0.16
## 8663 0.01 0.13 0.01 0.16
## 8664 0.06 0.00 0.02 0.16
## 8665 0.00 0.01 0.01 0.16
## 8666 0.03 0.00 0.02 0.16
## 8667 0.00 0.00 0.01 0.16
## 8668 0.00 0.15 0.01 0.16
## 8669 0.00 0.16 0.00 0.16
## 8670 0.03 0.00 0.00 0.16
## 8671 0.01 0.00 0.01 0.16
## 8672 0.04 0.00 0.01 0.16
## 8673 0.00 0.00 0.01 0.16
## 8674 0.00 0.04 0.02 0.16
## 8675 0.00 0.00 0.01 0.16
## 8676 0.01 0.00 0.01 0.16
## 8677 0.00 0.12 0.00 0.16
## 8678 0.13 0.00 0.03 0.16
## 8679 0.00 0.16 0.00 0.16
## 8680 0.04 0.00 0.01 0.16
## 8681 0.00 0.00 0.01 0.16
## 8682 0.02 0.00 0.01 0.16
## 8683 0.04 0.00 0.00 0.16
## 8684 0.03 0.00 0.01 0.16
## 8685 0.06 0.00 0.01 0.16
## 8686 0.02 0.03 0.01 0.16
## 8687 0.03 0.00 0.00 0.16
## 8688 0.05 0.04 0.02 0.16
## 8689 0.03 0.00 0.01 0.16
## 8690 0.00 0.16 0.00 0.16
## 8691 0.00 0.00 0.01 0.16
## 8692 0.06 0.00 0.02 0.16
## 8693 0.06 0.00 0.01 0.16
## 8694 0.00 0.16 0.00 0.16
## 8695 0.01 0.00 0.01 0.16
## 8696 0.00 0.00 0.01 0.16
## 8697 0.00 0.16 0.00 0.16
## 8698 0.06 0.00 0.01 0.16
## 8699 0.10 0.00 0.03 0.16
## 8700 0.06 0.00 0.02 0.16
## 8701 0.00 0.16 0.00 0.16
## 8702 0.00 0.00 0.01 0.16
## 8703 0.00 0.00 0.01 0.16
## 8704 0.06 0.00 0.02 0.16
## 8705 0.00 0.16 0.00 0.16
## 8706 0.00 0.00 0.01 0.16
## 8707 0.02 0.06 0.01 0.16
## 8708 0.00 0.00 0.01 0.16
## 8709 0.04 0.00 0.00 0.16
## 8710 0.01 0.00 0.01 0.16
## 8711 0.07 0.00 0.02 0.16
## 8712 0.06 0.00 0.01 0.16
## 8713 0.06 0.00 0.01 0.16
## 8714 0.09 0.00 0.02 0.16
## 8715 0.01 0.00 0.01 0.16
## 8716 0.04 0.00 0.00 0.16
## 8717 0.06 0.00 0.01 0.15
## 8718 0.01 0.12 0.01 0.15
## 8719 0.06 0.00 0.01 0.15
## 8720 0.02 0.00 0.01 0.15
## 8721 0.00 0.00 0.01 0.15
## 8722 0.04 0.00 0.00 0.15
## 8723 0.00 0.14 0.01 0.15
## 8724 0.02 0.01 0.01 0.15
## 8725 0.06 0.00 0.02 0.15
## 8726 0.08 0.00 0.03 0.15
## 8727 0.04 0.00 0.01 0.15
## 8728 0.06 0.00 0.02 0.15
## 8729 0.02 0.00 0.01 0.15
## 8730 0.07 0.00 0.02 0.15
## 8731 0.05 0.00 0.02 0.15
## 8732 0.00 0.00 0.01 0.15
## 8733 0.06 0.00 0.02 0.15
## 8734 0.01 0.00 0.01 0.15
## 8735 0.00 0.00 0.01 0.15
## 8736 0.01 0.01 0.01 0.15
## 8737 0.03 0.00 0.00 0.15
## 8738 0.06 0.00 0.02 0.15
## 8739 0.00 0.00 0.01 0.15
## 8740 0.00 0.15 0.00 0.15
## 8741 0.06 0.00 0.02 0.15
## 8742 0.03 0.00 0.01 0.15
## 8743 0.03 0.00 0.01 0.15
## 8744 0.01 0.00 0.01 0.15
## 8745 0.06 0.00 0.03 0.15
## 8746 0.03 0.00 0.00 0.15
## 8747 0.13 0.00 0.03 0.15
## 8748 0.02 0.00 0.01 0.15
## 8749 0.03 0.00 0.00 0.15
## 8750 0.03 0.00 0.00 0.15
## 8751 0.03 0.00 0.00 0.15
## 8752 0.01 0.00 0.02 0.15
## 8753 0.14 0.00 0.02 0.15
## 8754 0.06 0.01 0.01 0.15
## 8755 0.06 0.00 0.02 0.15
## 8756 0.01 0.00 0.01 0.15
## 8757 0.06 0.00 0.01 0.15
## 8758 0.01 0.00 0.00 0.15
## 8759 0.01 0.00 0.00 0.15
## 8760 0.00 0.15 0.00 0.15
## 8761 0.01 0.00 0.00 0.15
## 8762 0.00 0.15 0.00 0.15
## 8763 0.09 0.00 0.02 0.15
## 8764 0.03 0.00 0.01 0.15
## 8765 0.02 0.00 0.01 0.15
## 8766 0.06 0.02 0.02 0.15
## 8767 0.01 0.00 0.01 0.15
## 8768 0.03 0.00 0.01 0.15
## 8769 0.07 0.00 0.01 0.15
## 8770 0.03 0.00 0.01 0.15
## 8771 0.04 0.00 0.00 0.15
## 8772 0.00 0.00 0.01 0.15
## 8773 0.03 0.00 0.00 0.15
## 8774 0.06 0.00 0.01 0.15
## 8775 0.00 0.04 0.01 0.15
## 8776 0.01 0.02 0.01 0.15
## 8777 0.06 0.00 0.02 0.15
## 8778 0.06 0.00 0.02 0.15
## 8779 0.06 0.00 0.02 0.15
## 8780 0.01 0.05 0.01 0.15
## 8781 0.00 0.00 0.01 0.15
## 8782 0.03 0.00 0.00 0.15
## 8783 0.01 0.00 0.01 0.15
## 8784 0.00 0.15 0.00 0.15
## 8785 0.01 0.00 0.01 0.15
## 8786 0.00 0.15 0.00 0.15
## 8787 0.03 0.00 0.02 0.15
## 8788 0.00 0.00 0.01 0.15
## 8789 0.02 0.00 0.01 0.15
## 8790 0.00 0.15 0.00 0.15
## 8791 0.02 0.06 0.01 0.15
## 8792 0.03 0.00 0.00 0.15
## 8793 0.01 0.00 0.01 0.15
## 8794 0.06 0.00 0.02 0.15
## 8795 0.02 0.00 0.08 0.15
## 8796 0.14 0.00 0.01 0.15
## 8797 0.00 0.00 0.01 0.15
## 8798 0.04 0.05 0.01 0.15
## 8799 0.04 0.00 0.00 0.15
## 8800 0.00 0.15 0.00 0.15
## 8801 0.00 0.00 0.01 0.15
## 8802 0.02 0.04 0.01 0.15
## 8803 0.06 0.00 0.01 0.15
## 8804 0.00 0.00 0.01 0.15
## 8805 0.06 0.00 0.02 0.15
## 8806 0.02 0.00 0.02 0.15
## 8807 0.01 0.00 0.01 0.15
## 8808 0.03 0.00 0.01 0.15
## 8809 0.00 0.15 0.00 0.15
## 8810 0.00 0.15 0.00 0.15
## 8811 0.00 0.15 0.00 0.15
## 8812 0.00 0.15 0.00 0.15
## 8813 0.04 0.00 0.00 0.15
## 8814 0.00 0.00 0.01 0.15
## 8815 0.03 0.00 0.00 0.15
## 8816 0.03 0.00 0.01 0.15
## 8817 0.03 0.00 0.01 0.15
## 8818 0.00 0.14 0.01 0.15
## 8819 0.03 0.00 0.00 0.15
## 8820 0.00 0.00 0.01 0.15
## 8821 0.04 0.00 0.01 0.15
## 8822 0.02 0.00 0.02 0.15
## 8823 0.08 0.00 0.02 0.15
## 8824 0.05 0.00 0.01 0.15
## 8825 0.03 0.00 0.00 0.15
## 8826 0.00 0.00 0.01 0.15
## 8827 0.06 0.00 0.01 0.15
## 8828 0.00 0.00 0.01 0.15
## 8829 0.03 0.00 0.01 0.15
## 8830 0.00 0.01 0.01 0.15
## 8831 0.00 0.15 0.00 0.15
## 8832 0.03 0.00 0.01 0.15
## 8833 0.06 0.00 0.02 0.15
## 8834 0.00 0.04 0.02 0.15
## 8835 0.00 0.15 0.00 0.15
## 8836 0.06 0.00 0.02 0.15
## 8837 0.04 0.05 0.01 0.15
## 8838 0.01 0.00 0.01 0.15
## 8839 0.00 0.00 0.01 0.15
## 8840 0.06 0.00 0.02 0.15
## 8841 0.06 0.00 0.02 0.15
## 8842 0.00 0.00 0.01 0.15
## 8843 0.06 0.00 0.02 0.15
## 8844 0.09 0.04 0.02 0.15
## 8845 0.13 0.00 0.02 0.15
## 8846 0.07 0.03 0.01 0.15
## 8847 0.00 0.15 0.00 0.15
## 8848 0.03 0.00 0.01 0.15
## 8849 0.04 0.00 0.00 0.15
## 8850 0.06 0.00 0.02 0.15
## 8851 0.00 0.13 0.01 0.15
## 8852 0.03 0.00 0.00 0.15
## 8853 0.00 0.15 0.00 0.15
## 8854 0.04 0.00 0.03 0.15
## 8855 0.00 0.15 0.00 0.15
## 8856 0.04 0.09 0.02 0.15
## 8857 0.00 0.10 0.01 0.15
## 8858 0.04 0.00 0.00 0.15
## 8859 0.06 0.00 0.02 0.15
## 8860 0.06 0.00 0.02 0.15
## 8861 0.05 0.00 0.02 0.15
## 8862 0.00 0.15 0.00 0.15
## 8863 0.00 0.09 0.06 0.15
## 8864 0.03 0.00 0.00 0.15
## 8865 0.03 0.00 0.00 0.15
## 8866 0.00 0.15 0.00 0.15
## 8867 0.03 0.00 0.00 0.15
## 8868 0.00 0.00 0.01 0.15
## 8869 0.00 0.00 0.01 0.15
## 8870 0.06 0.00 0.01 0.15
## 8871 0.03 0.00 0.01 0.15
## 8872 0.03 0.00 0.01 0.15
## 8873 0.03 0.08 0.02 0.15
## 8874 0.01 0.00 0.01 0.15
## 8875 0.08 0.00 0.02 0.15
## 8876 0.00 0.15 0.00 0.15
## 8877 0.00 0.00 0.01 0.15
## 8878 0.03 0.00 0.01 0.15
## 8879 0.00 0.00 0.01 0.15
## 8880 0.02 0.00 0.01 0.15
## 8881 0.03 0.00 0.01 0.15
## 8882 0.00 0.15 0.00 0.15
## 8883 0.06 0.00 0.02 0.15
## 8884 0.03 0.00 0.00 0.15
## 8885 0.00 0.00 0.01 0.15
## 8886 0.01 0.00 0.01 0.15
## 8887 0.00 0.00 0.01 0.15
## 8888 0.06 0.00 0.01 0.15
## 8889 0.04 0.00 0.00 0.15
## 8890 0.03 0.00 0.01 0.15
## 8891 0.00 0.14 0.01 0.15
## 8892 0.00 0.00 0.01 0.15
## 8893 0.04 0.00 0.01 0.15
## 8894 0.00 0.15 0.00 0.15
## 8895 0.06 0.00 0.02 0.15
## 8896 0.03 0.00 0.00 0.15
## 8897 0.04 0.00 0.00 0.15
## 8898 0.01 0.07 0.01 0.15
## 8899 0.03 0.00 0.00 0.15
## 8900 0.06 0.00 0.02 0.15
## 8901 0.06 0.00 0.01 0.15
## 8902 0.00 0.00 0.01 0.15
## 8903 0.04 0.00 0.00 0.15
## 8904 0.00 0.00 0.01 0.15
## 8905 0.00 0.15 0.00 0.15
## 8906 0.00 0.00 0.01 0.15
## 8907 0.05 0.04 0.02 0.15
## 8908 0.00 0.00 0.01 0.15
## 8909 0.00 0.15 0.00 0.15
## 8910 0.00 0.15 0.00 0.15
## 8911 0.00 0.15 0.00 0.15
## 8912 0.00 0.14 0.01 0.15
## 8913 0.00 0.00 0.01 0.15
## 8914 0.00 0.15 0.00 0.15
## 8915 0.01 0.00 0.01 0.15
## 8916 0.00 0.00 0.01 0.15
## 8917 0.00 0.15 0.00 0.15
## 8918 0.06 0.00 0.02 0.15
## 8919 0.03 0.00 0.01 0.15
## 8920 0.06 0.00 0.02 0.15
## 8921 0.03 0.00 0.00 0.15
## 8922 0.03 0.00 0.00 0.15
## 8923 0.00 0.15 0.00 0.15
## 8924 0.00 0.00 0.01 0.15
## 8925 0.04 0.00 0.01 0.15
## 8926 0.00 0.01 0.03 0.15
## 8927 0.02 0.05 0.02 0.15
## 8928 0.03 0.00 0.01 0.15
## 8929 0.11 0.00 0.03 0.15
## 8930 0.03 0.00 0.01 0.15
## 8931 0.01 0.00 0.01 0.15
## 8932 0.06 0.00 0.01 0.15
## 8933 0.00 0.01 0.01 0.15
## 8934 0.00 0.00 0.01 0.15
## 8935 0.02 0.00 0.01 0.15
## 8936 0.03 0.00 0.00 0.15
## 8937 0.06 0.00 0.01 0.15
## 8938 0.00 0.15 0.00 0.15
## 8939 0.08 0.01 0.03 0.15
## 8940 0.06 0.00 0.01 0.15
## 8941 0.00 0.14 0.01 0.15
## 8942 0.06 0.00 0.01 0.15
## 8943 0.03 0.00 0.01 0.15
## 8944 0.00 0.15 0.00 0.15
## 8945 0.00 0.00 0.00 0.15
## 8946 0.00 0.03 0.03 0.15
## 8947 0.00 0.15 0.00 0.15
## 8948 0.06 0.00 0.01 0.15
## 8949 0.03 0.00 0.01 0.15
## 8950 0.00 0.15 0.00 0.15
## 8951 0.00 0.14 0.00 0.15
## 8952 0.08 0.00 0.01 0.15
## 8953 0.04 0.00 0.01 0.15
## 8954 0.04 0.00 0.00 0.15
## 8955 0.08 0.00 0.01 0.15
## 8956 0.06 0.00 0.01 0.15
## 8957 0.00 0.00 0.01 0.15
## 8958 0.03 0.00 0.01 0.15
## 8959 0.00 0.14 0.01 0.15
## 8960 0.00 0.15 0.00 0.15
## 8961 0.13 0.00 0.01 0.15
## 8962 0.00 0.00 0.01 0.15
## 8963 0.00 0.15 0.00 0.15
## 8964 0.04 0.00 0.01 0.15
## 8965 0.02 0.00 0.01 0.15
## 8966 0.00 0.00 0.01 0.15
## 8967 0.06 0.00 0.01 0.15
## 8968 0.04 0.00 0.00 0.15
## 8969 0.03 0.00 0.00 0.15
## 8970 0.06 0.00 0.01 0.15
## 8971 0.02 0.00 0.01 0.15
## 8972 0.03 0.00 0.01 0.15
## 8973 0.00 0.00 0.01 0.15
## 8974 0.00 0.15 0.00 0.15
## 8975 0.06 0.00 0.02 0.15
## 8976 0.00 0.15 0.00 0.15
## 8977 0.00 0.00 0.01 0.15
## 8978 0.06 0.00 0.02 0.15
## 8979 0.06 0.00 0.01 0.15
## 8980 0.00 0.00 0.01 0.15
## 8981 0.00 0.15 0.00 0.15
## 8982 0.04 0.00 0.00 0.15
## 8983 0.04 0.00 0.00 0.15
## 8984 0.00 0.00 0.01 0.15
## 8985 0.00 0.15 0.00 0.15
## 8986 0.00 0.00 0.01 0.15
## 8987 0.03 0.00 0.01 0.15
## 8988 0.00 0.14 0.01 0.15
## 8989 0.03 0.05 0.02 0.15
## 8990 0.13 0.00 0.02 0.15
## 8991 0.04 0.00 0.00 0.15
## 8992 0.00 0.01 0.01 0.15
## 8993 0.03 0.00 0.00 0.15
## 8994 0.00 0.14 0.00 0.14
## 8995 0.03 0.00 0.01 0.14
## 8996 0.00 0.04 0.01 0.14
## 8997 0.06 0.00 0.02 0.14
## 8998 0.01 0.00 0.02 0.14
## 8999 0.06 0.00 0.02 0.14
## 9000 0.06 0.00 0.02 0.14
## 9001 0.00 0.13 0.00 0.14
## 9002 0.03 0.07 0.02 0.14
## 9003 0.00 0.14 0.00 0.14
## 9004 0.03 0.00 0.01 0.14
## 9005 0.00 0.14 0.00 0.14
## 9006 0.00 0.00 0.01 0.14
## 9007 0.05 0.00 0.01 0.14
## 9008 0.00 0.14 0.00 0.14
## 9009 0.03 0.00 0.01 0.14
## 9010 0.03 0.02 0.03 0.14
## 9011 0.05 0.00 0.01 0.14
## 9012 0.06 0.00 0.02 0.14
## 9013 0.06 0.00 0.02 0.14
## 9014 0.00 0.14 0.00 0.14
## 9015 0.00 0.14 0.00 0.14
## 9016 0.04 0.00 0.00 0.14
## 9017 0.06 0.00 0.02 0.14
## 9018 0.05 0.00 0.01 0.14
## 9019 0.05 0.00 0.01 0.14
## 9020 0.00 0.00 0.01 0.14
## 9021 0.00 0.00 0.01 0.14
## 9022 0.02 0.00 0.01 0.14
## 9023 0.00 0.14 0.00 0.14
## 9024 0.06 0.00 0.02 0.14
## 9025 0.00 0.00 0.01 0.14
## 9026 0.03 0.00 0.00 0.14
## 9027 0.00 0.00 0.03 0.14
## 9028 0.05 0.00 0.02 0.14
## 9029 0.00 0.14 0.00 0.14
## 9030 0.00 0.14 0.00 0.14
## 9031 0.03 0.00 0.01 0.14
## 9032 0.05 0.00 0.01 0.14
## 9033 0.05 0.00 0.01 0.14
## 9034 0.04 0.00 0.00 0.14
## 9035 0.02 0.00 0.02 0.14
## 9036 0.12 0.00 0.02 0.14
## 9037 0.00 0.00 0.01 0.14
## 9038 0.11 0.00 0.03 0.14
## 9039 0.05 0.00 0.01 0.14
## 9040 0.04 0.00 0.01 0.14
## 9041 0.00 0.00 0.01 0.14
## 9042 0.05 0.00 0.02 0.14
## 9043 0.01 0.00 0.01 0.14
## 9044 0.05 0.00 0.02 0.14
## 9045 0.05 0.00 0.02 0.14
## 9046 0.03 0.01 0.01 0.14
## 9047 0.12 0.00 0.03 0.14
## 9048 0.05 0.00 0.01 0.14
## 9049 0.00 0.14 0.00 0.14
## 9050 0.02 0.00 0.01 0.14
## 9051 0.00 0.14 0.00 0.14
## 9052 0.04 0.00 0.00 0.14
## 9053 0.00 0.14 0.00 0.14
## 9054 0.05 0.00 0.02 0.14
## 9055 0.00 0.00 0.01 0.14
## 9056 0.10 0.00 0.02 0.14
## 9057 0.08 0.00 0.02 0.14
## 9058 0.00 0.13 0.01 0.14
## 9059 0.00 0.13 0.01 0.14
## 9060 0.00 0.00 0.01 0.14
## 9061 0.03 0.00 0.00 0.14
## 9062 0.03 0.01 0.01 0.14
## 9063 0.11 0.00 0.03 0.14
## 9064 0.00 0.00 0.01 0.14
## 9065 0.00 0.06 0.01 0.14
## 9066 0.00 0.04 0.01 0.14
## 9067 0.10 0.00 0.03 0.14
## 9068 0.00 0.14 0.00 0.14
## 9069 0.05 0.00 0.02 0.14
## 9070 0.01 0.00 0.01 0.14
## 9071 0.00 0.14 0.00 0.14
## 9072 0.00 0.14 0.00 0.14
## 9073 0.05 0.00 0.02 0.14
## 9074 0.00 0.00 0.01 0.14
## 9075 0.00 0.14 0.00 0.14
## 9076 0.03 0.00 0.01 0.14
## 9077 0.10 0.00 0.02 0.14
## 9078 0.03 0.00 0.01 0.14
## 9079 0.03 0.00 0.01 0.14
## 9080 0.00 0.08 0.01 0.14
## 9081 0.03 0.00 0.01 0.14
## 9082 0.00 0.00 0.01 0.14
## 9083 0.00 0.11 0.00 0.14
## 9084 0.00 0.00 0.01 0.14
## 9085 0.00 0.00 0.01 0.14
## 9086 0.04 0.00 0.00 0.14
## 9087 0.00 0.14 0.00 0.14
## 9088 0.03 0.03 0.02 0.14
## 9089 0.05 0.00 0.01 0.14
## 9090 0.05 0.00 0.02 0.14
## [ reached 'max' / getOption("max.print") -- omitted 7508 rows ]
cat("Filas originales:", nrow(data.vg), "\n\n")
## Filas originales: 16598
# Método 1: na.omit() - Elimina filas con cualquier NA
df_sin_na <- na.omit(data.vg)
print("Con na.omit():")
## [1] "Con na.omit():"
print(df_sin_na)
## Rank
## 1 1
## 2 2
## 3 3
## 4 4
## 5 5
## 6 6
## 7 7
## 8 8
## 9 9
## 10 10
## 11 11
## 12 12
## 13 13
## 14 14
## 15 15
## 16 16
## 17 17
## 18 18
## 19 19
## 20 20
## 21 21
## 22 22
## 23 23
## 24 24
## 25 25
## 26 26
## 27 27
## 28 28
## 29 29
## 30 30
## 31 31
## 32 32
## 33 33
## 34 34
## 35 35
## 36 36
## 37 37
## 38 38
## 39 39
## 40 40
## 41 41
## 42 42
## 43 43
## 44 44
## 45 45
## 46 46
## 47 47
## 48 48
## 49 49
## 50 50
## 51 51
## 52 52
## 53 53
## 54 54
## 55 55
## 56 56
## 57 57
## 58 58
## 59 59
## 60 60
## 61 61
## 62 62
## 63 63
## 64 64
## 65 65
## 66 66
## 67 67
## 68 68
## 69 69
## 70 70
## 71 71
## 72 72
## 73 73
## 74 74
## 75 75
## 76 76
## 77 77
## 78 78
## 79 79
## 80 80
## 81 81
## 82 82
## 83 83
## 84 84
## 85 85
## 86 86
## 87 87
## 88 88
## 89 89
## 90 90
## 91 91
## 92 92
## 93 93
## 94 94
## 95 95
## 96 96
## 97 97
## 98 98
## 99 99
## 100 100
## 101 101
## 102 102
## 103 103
## 104 104
## 105 105
## 106 106
## 107 107
## 108 108
## 109 109
## 110 110
## 111 111
## 112 112
## 113 113
## 114 114
## 115 115
## 116 116
## 117 117
## 118 118
## 119 119
## 120 120
## 121 121
## 122 122
## 123 123
## 124 124
## 125 125
## 126 126
## 127 127
## 128 128
## 129 129
## 130 130
## 131 131
## 132 132
## 133 133
## 134 134
## 135 135
## 136 136
## 137 137
## 138 138
## 139 139
## 140 140
## 141 141
## 142 142
## 143 143
## 144 144
## 145 145
## 146 146
## 147 147
## 148 148
## 149 149
## 150 150
## 151 151
## 152 152
## 153 153
## 154 154
## 155 155
## 156 156
## 157 157
## 158 158
## 159 159
## 160 160
## 161 161
## 162 162
## 163 163
## 164 164
## 165 165
## 166 166
## 167 167
## 168 168
## 169 169
## 170 170
## 171 171
## 172 172
## 173 173
## 174 174
## 175 175
## 176 176
## 177 177
## 178 178
## 179 179
## 181 181
## 182 182
## 183 183
## 184 184
## 185 185
## 186 186
## 187 187
## 188 188
## 189 189
## 190 190
## 191 191
## 192 192
## 193 193
## 194 194
## 195 195
## 196 196
## 197 197
## 198 198
## 199 199
## 200 200
## 201 201
## 202 202
## 203 203
## 204 204
## 205 205
## 206 206
## 207 207
## 208 208
## 209 209
## 210 210
## 211 211
## 212 212
## 213 213
## 214 214
## 215 215
## 216 216
## 217 217
## 218 218
## 219 219
## 220 220
## 221 221
## 222 222
## 223 223
## 224 224
## 225 225
## 226 226
## 227 227
## 228 228
## 229 229
## 230 230
## 231 231
## 232 232
## 233 233
## 234 234
## 235 235
## 236 236
## 237 237
## 238 238
## 239 239
## 240 240
## 241 241
## 242 242
## 243 243
## 244 244
## 245 245
## 246 246
## 247 247
## 248 248
## 249 249
## 250 250
## 251 251
## 252 252
## 253 253
## 254 254
## 255 255
## 256 256
## 257 257
## 258 258
## 259 259
## 260 260
## 261 261
## 262 262
## 263 263
## 264 264
## 265 265
## 266 266
## 267 267
## 268 268
## 269 269
## 270 270
## 271 271
## 272 272
## 273 273
## 274 274
## 275 275
## 276 276
## 277 277
## 278 278
## 279 279
## 280 280
## 281 281
## 282 282
## 283 283
## 284 284
## 285 285
## 286 286
## 287 287
## 288 288
## 289 289
## 290 290
## 291 291
## 292 292
## 293 293
## 294 294
## 295 295
## 296 296
## 297 297
## 298 298
## 299 299
## 300 300
## 301 301
## 302 302
## 303 303
## 304 304
## 305 305
## 306 306
## 307 307
## 308 308
## 309 309
## 310 310
## 311 311
## 312 312
## 313 313
## 314 314
## 315 315
## 316 316
## 317 317
## 318 318
## 319 319
## 320 320
## 321 321
## 322 322
## 323 323
## 324 324
## 325 325
## 326 326
## 327 327
## 328 328
## 329 329
## 330 330
## 331 331
## 332 332
## 333 333
## 334 334
## 335 335
## 336 336
## 337 337
## 338 338
## 339 339
## 340 340
## 341 341
## 342 342
## 343 343
## 344 344
## 345 345
## 346 346
## 347 347
## 348 348
## 349 349
## 350 350
## 351 351
## 352 352
## 353 353
## 354 354
## 355 355
## 356 356
## 357 357
## 358 358
## 359 359
## 360 360
## 361 361
## 362 362
## 363 363
## 364 364
## 365 365
## 366 366
## 367 367
## 368 368
## 369 369
## 370 370
## 371 371
## 372 372
## 373 373
## 374 374
## 375 375
## 376 376
## 377 377
## 379 379
## 380 380
## 381 381
## 382 382
## 383 383
## 384 384
## 385 385
## 386 386
## 387 387
## 388 388
## 389 389
## 390 390
## 391 391
## 392 392
## 393 393
## 394 394
## 395 395
## 396 396
## 397 397
## 398 398
## 399 399
## 400 400
## 401 401
## 402 402
## 403 403
## 404 404
## 405 405
## 406 406
## 407 407
## 408 408
## 409 409
## 410 410
## 411 411
## 412 412
## 413 413
## 414 414
## 415 415
## 416 416
## 417 417
## 418 418
## 419 419
## 420 420
## 421 421
## 422 422
## 423 423
## 424 424
## 425 425
## 426 426
## 427 427
## 428 428
## 429 429
## 430 430
## 431 431
## 433 433
## 434 434
## 435 435
## 436 436
## 437 437
## 438 438
## 439 439
## 440 440
## 441 441
## 442 442
## 443 443
## 444 444
## 445 445
## 446 446
## 447 447
## 448 448
## 449 449
## 450 450
## 451 451
## 452 452
## 453 453
## 454 454
## 455 455
## 456 456
## 457 457
## 458 458
## 459 459
## 460 460
## 461 461
## 462 462
## 463 463
## 464 464
## 465 465
## 466 466
## 467 467
## 468 468
## 469 469
## 470 470
## 472 472
## 473 473
## 474 474
## 475 475
## 476 476
## 477 477
## 478 478
## 479 479
## 480 480
## 481 481
## 482 482
## 483 483
## 484 484
## 485 485
## 486 486
## 487 487
## 488 488
## 489 489
## 490 490
## 491 491
## 492 492
## 493 493
## 494 494
## 495 495
## 496 496
## 497 497
## 498 498
## 499 499
## 500 500
## 501 501
## 502 502
## 503 503
## 504 504
## 505 505
## 506 506
## 507 507
## 508 508
## 509 509
## 510 510
## 511 511
## 512 512
## 513 513
## 514 514
## 515 515
## 516 516
## 517 517
## 518 518
## 519 519
## 520 520
## 521 521
## 522 522
## 523 523
## 524 524
## 525 525
## 526 526
## 527 527
## 528 528
## 529 529
## 530 530
## 531 531
## 532 532
## 533 533
## 534 534
## 535 535
## 536 536
## 537 537
## 538 538
## 539 539
## 540 540
## 541 541
## 542 542
## 543 543
## 544 544
## 545 545
## 546 546
## 547 547
## 548 548
## 549 549
## 550 550
## 551 551
## 552 552
## 553 553
## 554 554
## 555 555
## 556 556
## 557 557
## 558 558
## 559 559
## 560 560
## 561 561
## 562 562
## 563 563
## 564 564
## 565 565
## 566 566
## 567 567
## 568 568
## 569 569
## 570 570
## 571 571
## 572 572
## 573 573
## 574 574
## 575 575
## 576 576
## 577 577
## 578 578
## 579 579
## 580 580
## 581 581
## 582 582
## 583 583
## 584 584
## 585 585
## 586 586
## 587 587
## 588 588
## 589 589
## 590 590
## 591 591
## 592 592
## 593 593
## 594 594
## 595 595
## 596 596
## 597 597
## 598 598
## 599 599
## 600 600
## 601 601
## 602 602
## 603 603
## 604 604
## 605 605
## 606 606
## 607 607
## 609 609
## 610 610
## 611 611
## 612 612
## 613 613
## 614 614
## 615 615
## 616 616
## 617 617
## 618 618
## 619 619
## 620 620
## 621 621
## 622 622
## 623 623
## 624 624
## 626 626
## 627 627
## 628 628
## 629 629
## 630 630
## 631 631
## 632 632
## 633 633
## 634 634
## 635 635
## 636 636
## 637 637
## 638 638
## 639 639
## 640 640
## 641 641
## 642 642
## 643 643
## 644 644
## 645 645
## 646 646
## 647 647
## 648 648
## 649 649
## 651 651
## 652 652
## 654 655
## 655 656
## 656 657
## 657 658
## 658 659
## 659 660
## 660 661
## 661 662
## 662 663
## 663 664
## 664 665
## 665 666
## 666 667
## 667 668
## 668 669
## 669 670
## 670 671
## 671 672
## 672 673
## 673 674
## 674 675
## 675 676
## 676 677
## 677 678
## 678 679
## 679 680
## 680 681
## 681 682
## 682 683
## 683 684
## 684 685
## 685 686
## 686 687
## 687 688
## 688 689
## 689 690
## 690 691
## 691 692
## 692 693
## 693 694
## 694 695
## 695 696
## 696 697
## 697 698
## 698 699
## 699 700
## 700 701
## 701 702
## 702 703
## 703 704
## 704 705
## 705 706
## 706 707
## 707 708
## 708 709
## 709 710
## 710 711
## 711 712
## 713 714
## 714 715
## 715 716
## 716 717
## 717 718
## 718 719
## 719 720
## 720 721
## 721 722
## 722 723
## 723 724
## 724 725
## 725 726
## 726 727
## 727 728
## 728 729
## 729 730
## 730 731
## 731 732
## 732 733
## 733 734
## 734 735
## 735 736
## 736 737
## 737 738
## 738 739
## 739 740
## 740 741
## 741 742
## 742 743
## 743 744
## 744 745
## 745 746
## 746 747
## 747 748
## 748 749
## 749 750
## 750 751
## 751 752
## 752 753
## 753 754
## 754 755
## 755 756
## 756 757
## 757 758
## 758 759
## 759 760
## 760 761
## 761 762
## 762 763
## 763 764
## 764 765
## 765 766
## 766 767
## 767 768
## 768 769
## 769 770
## 770 771
## 771 772
## 772 773
## 773 774
## 774 775
## 775 776
## 776 777
## 777 778
## 778 779
## 779 780
## 780 781
## 781 782
## 782 783
## 784 785
## 785 786
## 786 787
## 787 788
## 788 789
## 789 790
## 790 791
## 791 792
## 792 793
## 793 794
## 794 795
## 795 796
## 796 797
## 797 798
## 798 799
## 799 800
## 800 801
## 801 802
## 802 803
## 803 804
## 804 805
## 805 806
## 806 807
## 807 808
## 808 809
## 809 810
## 810 811
## 811 812
## 812 813
## 813 814
## 814 815
## 815 816
## 816 817
## 817 818
## 818 819
## 819 820
## 820 821
## 821 822
## 822 823
## 823 824
## 824 825
## 825 826
## 826 827
## 827 828
## 828 829
## 829 830
## 830 831
## 831 832
## 832 833
## 833 834
## 834 835
## 835 836
## 836 837
## 837 838
## 838 839
## 839 840
## 840 841
## 841 842
## 842 843
## 843 844
## 844 845
## 845 846
## 846 847
## 847 848
## 848 849
## 849 850
## 850 851
## 851 852
## 852 853
## 853 854
## 854 855
## 855 856
## 856 857
## 857 858
## 858 859
## 859 860
## 860 861
## 861 862
## 862 863
## 863 864
## 864 865
## 865 866
## 866 867
## 867 868
## 868 869
## 869 870
## 870 871
## 871 872
## 872 873
## 873 874
## 874 875
## 875 876
## 876 877
## 877 878
## 878 879
## 879 880
## 880 881
## 881 882
## 882 883
## 883 884
## 884 885
## 885 886
## 886 887
## 887 888
## 888 889
## 889 890
## 890 891
## 891 892
## 892 893
## 893 894
## 894 895
## 895 896
## 896 897
## 897 898
## 898 899
## 899 900
## 900 901
## 901 902
## 902 903
## 903 904
## 904 905
## 905 906
## 906 907
## 907 908
## 908 909
## 909 910
## 910 911
## 911 912
## 912 913
## 913 914
## 914 915
## 915 916
## 916 917
## 917 918
## 918 919
## 919 920
## 920 921
## 921 922
## 922 923
## 923 924
## 924 925
## 925 926
## 926 927
## 927 928
## 928 929
## 929 930
## 930 931
## 931 932
## 932 933
## 933 934
## 934 935
## 935 936
## 936 937
## 937 938
## 938 939
## 939 940
## 940 941
## 941 942
## 942 943
## 943 944
## 944 945
## 945 946
## 946 947
## 947 948
## 948 949
## 949 950
## 950 951
## 951 952
## 952 953
## 953 954
## 954 955
## 955 956
## 956 957
## 957 958
## 958 959
## 959 960
## 960 961
## 961 962
## 962 963
## 963 964
## 964 965
## 965 966
## 966 967
## 967 968
## 968 969
## 969 970
## 970 971
## 971 972
## 972 973
## 973 974
## 974 975
## 975 976
## 976 977
## 977 978
## 978 979
## 979 980
## 980 981
## 981 982
## 982 983
## 983 984
## 984 985
## 985 986
## 986 987
## 987 988
## 988 989
## 989 990
## 990 991
## 991 992
## 992 993
## 993 994
## 994 995
## 995 996
## 996 997
## 997 998
## 998 999
## 999 1000
## 1000 1001
## 1001 1002
## 1002 1003
## 1003 1004
## 1004 1005
## 1005 1006
## 1006 1007
## 1007 1008
## 1008 1009
## 1009 1010
## 1010 1011
## 1011 1012
## 1012 1013
## 1013 1014
## 1014 1015
## 1015 1016
## 1016 1017
## 1017 1018
## 1018 1019
## 1019 1020
## 1020 1021
## 1021 1022
## 1022 1023
## 1023 1024
## 1024 1025
## 1025 1026
## 1026 1027
## 1027 1028
## 1028 1029
## 1029 1030
## 1030 1031
## 1031 1032
## 1032 1033
## 1033 1034
## 1034 1035
## 1035 1036
## 1036 1037
## 1037 1038
## 1038 1039
## 1039 1040
## 1040 1041
## 1041 1042
## 1042 1043
## 1043 1044
## 1044 1045
## 1045 1046
## 1046 1047
## 1047 1048
## 1048 1049
## 1049 1050
## 1050 1051
## 1051 1052
## 1052 1053
## 1053 1054
## 1054 1055
## 1055 1056
## 1056 1057
## 1057 1058
## 1058 1059
## 1059 1060
## 1060 1061
## 1061 1062
## 1062 1063
## 1063 1064
## 1064 1065
## 1065 1066
## 1066 1067
## 1067 1068
## 1068 1069
## 1069 1070
## 1070 1071
## 1071 1072
## 1072 1073
## 1073 1074
## 1074 1075
## 1075 1076
## 1076 1077
## 1077 1078
## 1078 1079
## 1079 1080
## 1080 1081
## 1081 1082
## 1082 1083
## 1083 1084
## 1084 1085
## 1085 1086
## 1086 1087
## 1087 1088
## 1088 1089
## 1089 1090
## 1090 1091
## 1091 1092
## 1092 1093
## 1093 1094
## 1094 1095
## 1095 1096
## 1096 1097
## 1097 1098
## 1098 1099
## 1099 1100
## 1100 1101
## 1101 1102
## 1102 1103
## 1103 1104
## 1104 1105
## 1105 1106
## 1106 1107
## 1107 1108
## 1108 1109
## 1109 1110
## 1110 1111
## 1111 1112
## 1112 1113
## 1113 1114
## 1114 1115
## 1115 1116
## 1116 1117
## 1117 1118
## 1118 1119
## 1119 1120
## 1120 1121
## 1121 1122
## 1122 1123
## 1123 1124
## 1124 1125
## 1125 1126
## 1126 1127
## 1128 1129
## 1129 1130
## 1130 1131
## 1131 1132
## 1132 1133
## 1133 1134
## 1135 1136
## 1136 1137
## 1137 1138
## 1138 1139
## 1139 1140
## 1140 1141
## 1141 1142
## 1142 1143
## 1143 1144
## 1144 1145
## 1145 1146
## 1146 1147
## 1147 1148
## 1148 1149
## 1149 1150
## 1150 1151
## 1151 1152
## 1152 1153
## 1153 1154
## 1154 1155
## 1155 1156
## 1156 1157
## 1157 1158
## 1158 1159
## 1159 1160
## 1160 1161
## 1161 1162
## 1162 1163
## 1163 1164
## 1164 1165
## 1165 1166
## 1166 1167
## 1167 1168
## 1168 1169
## 1169 1170
## 1170 1171
## 1171 1172
## 1172 1173
## 1173 1174
## 1174 1175
## 1175 1176
## 1176 1177
## 1177 1178
## 1178 1179
## 1179 1180
## 1180 1181
## 1181 1182
## 1182 1183
## 1183 1184
## 1184 1185
## 1185 1186
## 1186 1187
## 1187 1188
## 1188 1189
## 1189 1190
## 1190 1191
## 1191 1192
## 1192 1193
## 1193 1194
## 1194 1195
## 1195 1196
## 1196 1197
## 1197 1198
## 1198 1199
## 1199 1200
## 1200 1201
## 1201 1202
## 1202 1203
## 1203 1204
## 1204 1205
## 1205 1206
## 1206 1207
## 1207 1208
## 1208 1209
## 1209 1210
## 1210 1211
## 1211 1212
## 1212 1213
## 1213 1214
## 1214 1215
## 1215 1216
## 1216 1217
## 1217 1218
## 1218 1219
## 1219 1220
## 1220 1221
## 1221 1222
## 1222 1223
## 1223 1224
## 1224 1225
## 1225 1226
## 1226 1227
## 1227 1228
## 1228 1229
## 1229 1230
## 1230 1231
## 1231 1232
## 1232 1233
## 1233 1234
## 1234 1235
## 1235 1236
## 1236 1237
## 1237 1238
## 1238 1239
## 1239 1240
## 1240 1241
## 1241 1242
## 1242 1243
## 1243 1244
## 1244 1245
## 1245 1246
## 1246 1247
## 1247 1248
## 1248 1249
## 1249 1250
## 1250 1251
## 1251 1252
## 1252 1253
## 1253 1254
## 1254 1255
## 1255 1256
## 1256 1257
## 1257 1258
## 1258 1259
## 1259 1260
## 1260 1261
## 1261 1262
## 1262 1263
## 1263 1264
## 1264 1265
## 1265 1266
## 1266 1267
## 1267 1268
## 1268 1269
## 1269 1270
## 1270 1271
## 1271 1272
## 1272 1273
## 1273 1274
## 1274 1275
## 1275 1276
## 1276 1277
## 1277 1278
## 1278 1279
## 1279 1280
## 1280 1281
## 1281 1282
## 1282 1283
## 1283 1284
## 1284 1285
## 1285 1286
## 1286 1287
## 1287 1288
## 1288 1289
## 1289 1290
## 1290 1291
## 1291 1292
## 1292 1293
## 1293 1294
## 1294 1295
## 1295 1296
## 1296 1297
## 1297 1298
## 1298 1299
## 1299 1300
## 1300 1301
## 1301 1302
## 1302 1303
## 1303 1304
## 1305 1306
## 1306 1307
## 1307 1308
## 1308 1309
## 1309 1310
## 1310 1311
## 1311 1312
## 1312 1313
## 1313 1314
## 1314 1315
## 1315 1316
## 1316 1317
## 1317 1318
## 1318 1319
## 1319 1320
## 1320 1321
## 1321 1322
## 1322 1323
## 1323 1324
## 1324 1325
## 1325 1326
## 1326 1327
## 1327 1328
## 1328 1329
## 1329 1330
## 1330 1331
## 1331 1332
## 1332 1333
## 1333 1334
## 1334 1335
## 1335 1336
## 1336 1337
## 1337 1338
## 1338 1339
## 1339 1340
## 1340 1341
## 1341 1342
## 1342 1343
## 1343 1344
## 1344 1345
## 1345 1346
## 1346 1347
## 1347 1348
## 1348 1349
## 1349 1350
## 1350 1351
## 1351 1352
## 1352 1353
## 1353 1354
## 1354 1355
## 1355 1356
## 1356 1357
## 1357 1358
## 1358 1359
## 1359 1360
## 1360 1361
## 1361 1362
## 1362 1363
## 1363 1364
## 1364 1365
## 1365 1366
## 1366 1367
## 1367 1368
## 1368 1369
## 1369 1370
## 1370 1371
## 1371 1372
## 1372 1373
## 1373 1374
## 1374 1375
## 1375 1376
## 1376 1377
## 1377 1378
## 1378 1379
## 1379 1380
## 1380 1381
## 1381 1382
## 1382 1383
## 1383 1384
## 1384 1385
## 1385 1386
## 1386 1387
## 1387 1388
## 1388 1389
## 1389 1390
## 1390 1391
## 1391 1392
## 1392 1393
## 1393 1394
## 1394 1395
## 1395 1396
## 1396 1397
## 1397 1398
## 1398 1399
## 1399 1400
## 1400 1401
## 1401 1402
## 1402 1403
## 1403 1404
## 1404 1405
## 1405 1406
## 1406 1407
## 1407 1408
## 1408 1409
## 1409 1410
## 1410 1411
## 1411 1412
## 1412 1413
## 1413 1414
## 1414 1415
## 1415 1416
## 1416 1417
## 1417 1418
## 1418 1419
## 1419 1420
## 1420 1421
## 1421 1422
## 1422 1423
## 1423 1424
## 1424 1425
## 1425 1426
## 1426 1427
## 1427 1428
## 1428 1429
## 1429 1430
## 1430 1431
## 1431 1432
## 1432 1433
## 1433 1434
## 1435 1436
## 1436 1437
## 1437 1438
## 1438 1439
## 1439 1440
## 1440 1441
## 1441 1442
## 1442 1443
## 1443 1444
## 1444 1445
## 1445 1446
## 1446 1447
## 1447 1448
## 1448 1449
## 1449 1450
## 1450 1451
## 1451 1452
## 1452 1453
## 1453 1454
## 1454 1455
## 1455 1456
## 1456 1457
## 1457 1458
## 1458 1459
## 1459 1460
## 1460 1461
## 1461 1462
## 1462 1463
## 1463 1464
## 1464 1465
## 1465 1466
## 1466 1467
## 1467 1468
## 1468 1469
## 1469 1470
## 1470 1471
## 1471 1472
## 1472 1473
## 1473 1474
## 1474 1475
## 1475 1476
## 1476 1477
## 1477 1478
## 1478 1479
## 1479 1480
## 1480 1481
## 1481 1482
## 1482 1483
## 1483 1484
## 1484 1485
## 1485 1486
## 1486 1487
## 1487 1488
## 1488 1489
## 1489 1490
## 1490 1491
## 1491 1492
## 1492 1493
## 1493 1494
## 1494 1495
## 1495 1496
## 1496 1497
## 1497 1498
## 1498 1499
## 1500 1501
## 1501 1502
## 1502 1503
## 1503 1504
## 1504 1505
## 1505 1506
## 1506 1507
## 1507 1508
## 1508 1509
## 1509 1510
## 1510 1511
## 1511 1512
## 1512 1513
## 1513 1514
## 1515 1516
## 1516 1517
## 1517 1518
## 1518 1519
## 1519 1520
## 1520 1521
## 1521 1522
## 1522 1523
## 1523 1524
## 1524 1525
## 1525 1526
## 1526 1527
## 1527 1528
## 1528 1529
## 1529 1530
## 1530 1531
## 1531 1532
## 1532 1533
## 1533 1534
## 1534 1535
## 1535 1536
## 1536 1537
## 1537 1538
## 1538 1539
## 1539 1540
## 1540 1541
## 1541 1542
## 1542 1543
## 1543 1544
## 1544 1545
## 1545 1546
## 1546 1547
## 1547 1548
## 1548 1549
## 1549 1550
## 1550 1551
## 1551 1552
## 1552 1553
## 1553 1554
## 1554 1555
## 1555 1556
## 1556 1557
## 1557 1558
## 1558 1559
## 1559 1560
## 1560 1561
## 1561 1562
## 1562 1563
## 1563 1564
## 1564 1565
## 1565 1566
## 1566 1567
## 1567 1568
## 1568 1569
## 1569 1570
## 1570 1571
## 1571 1572
## 1572 1573
## 1573 1574
## 1574 1575
## 1575 1576
## 1576 1577
## 1577 1578
## 1578 1579
## 1579 1580
## 1580 1581
## 1581 1582
## 1582 1583
## 1583 1584
## 1584 1585
## 1585 1586
## 1587 1588
## 1588 1589
## 1589 1590
## 1590 1591
## 1591 1592
## 1592 1593
## 1593 1594
## 1594 1595
## 1595 1596
## 1596 1597
## 1597 1598
## 1598 1599
## 1599 1600
## 1600 1601
## 1601 1602
## 1602 1603
## 1603 1604
## 1604 1605
## 1605 1606
## 1606 1607
## 1607 1608
## 1608 1609
## 1609 1610
## 1610 1611
## 1611 1612
## 1612 1613
## 1613 1614
## 1614 1615
## 1615 1616
## 1616 1617
## 1617 1618
## 1618 1619
## 1619 1620
## 1620 1621
## 1621 1622
## 1622 1623
## 1623 1624
## 1624 1625
## 1625 1626
## 1626 1627
## 1627 1628
## 1628 1629
## 1629 1630
## 1630 1631
## 1631 1632
## 1632 1633
## 1633 1634
## 1634 1635
## 1635 1636
## 1636 1637
## 1637 1638
## 1638 1639
## 1639 1640
## 1640 1641
## 1641 1642
## 1642 1643
## 1643 1644
## 1644 1645
## 1645 1646
## 1646 1647
## 1647 1648
## 1648 1649
## 1649 1650
## 1651 1652
## 1652 1653
## 1653 1654
## 1654 1655
## 1655 1656
## 1656 1657
## 1657 1658
## 1658 1659
## 1659 1660
## 1660 1661
## 1661 1662
## 1662 1663
## 1663 1664
## 1664 1665
## 1665 1666
## 1666 1667
## 1667 1668
## 1668 1669
## 1669 1670
## 1670 1671
## 1671 1672
## 1672 1673
## 1673 1674
## 1674 1675
## 1675 1676
## 1676 1677
## 1677 1678
## 1678 1679
## 1679 1680
## 1680 1681
## 1681 1682
## 1682 1683
## 1683 1684
## 1684 1685
## 1685 1686
## 1686 1687
## 1687 1688
## 1688 1689
## 1689 1690
## 1690 1691
## 1691 1692
## 1692 1693
## 1693 1694
## 1694 1695
## 1695 1696
## 1696 1697
## 1697 1698
## 1699 1700
## 1700 1701
## 1701 1702
## 1702 1703
## 1703 1704
## 1704 1705
## 1705 1706
## 1706 1707
## 1707 1708
## 1708 1709
## 1709 1710
## 1710 1711
## 1711 1712
## 1712 1713
## 1713 1714
## 1714 1715
## 1715 1716
## 1716 1717
## 1717 1718
## 1718 1719
## 1719 1720
## 1720 1721
## 1721 1722
## 1722 1723
## 1723 1724
## 1724 1725
## 1725 1726
## 1726 1727
## 1727 1728
## 1728 1729
## 1729 1730
## 1730 1731
## 1731 1732
## 1732 1733
## 1733 1734
## 1734 1735
## 1735 1736
## 1736 1737
## 1737 1738
## 1738 1739
## 1739 1740
## 1740 1741
## 1741 1742
## 1742 1743
## 1743 1744
## 1744 1745
## 1745 1746
## 1746 1747
## 1747 1748
## 1748 1749
## 1749 1750
## 1750 1751
## 1751 1752
## 1752 1753
## 1753 1754
## 1754 1755
## 1755 1756
## 1756 1757
## 1757 1758
## 1758 1759
## 1759 1760
## 1760 1761
## 1761 1762
## 1762 1763
## 1763 1764
## 1764 1765
## 1765 1766
## 1766 1767
## 1767 1768
## 1768 1769
## 1769 1770
## 1770 1771
## 1771 1772
## 1772 1773
## 1773 1774
## 1774 1775
## 1775 1776
## 1776 1777
## 1777 1778
## 1778 1779
## 1779 1780
## 1780 1781
## 1781 1782
## 1782 1783
## 1783 1784
## 1784 1785
## 1785 1786
## 1786 1787
## 1787 1788
## 1788 1789
## 1789 1790
## 1790 1791
## 1791 1792
## 1792 1793
## 1793 1794
## 1794 1795
## 1795 1796
## 1796 1797
## 1797 1798
## 1798 1799
## 1799 1800
## 1800 1801
## 1801 1802
## 1802 1803
## 1803 1804
## 1804 1805
## 1805 1806
## 1806 1807
## 1807 1808
## 1808 1809
## 1809 1810
## 1810 1811
## 1811 1812
## 1812 1813
## 1813 1814
## 1814 1815
## 1815 1816
## 1816 1817
## 1817 1818
## 1818 1819
## 1819 1820
## 1820 1821
## 1821 1822
## 1822 1823
## 1823 1824
## 1824 1825
## 1825 1826
## 1826 1827
## 1827 1828
## 1828 1829
## 1829 1830
## 1830 1831
## 1831 1832
## 1832 1833
## 1833 1834
## 1834 1835
## 1835 1836
## 1836 1837
## 1837 1838
## 1839 1840
## 1840 1841
## 1841 1842
## 1842 1843
## 1843 1844
## 1844 1845
## 1845 1846
## 1846 1847
## 1847 1848
## 1848 1849
## 1849 1850
## 1850 1851
## 1851 1852
## 1852 1853
## 1853 1854
## 1854 1855
## 1855 1856
## 1856 1857
## 1857 1858
## 1858 1859
## 1859 1860
## 1860 1861
## 1861 1862
## 1862 1863
## 1863 1864
## 1864 1865
## 1865 1866
## 1866 1867
## 1867 1868
## 1868 1869
## 1869 1870
## 1870 1871
## 1871 1872
## 1872 1873
## 1873 1874
## 1874 1875
## 1875 1876
## 1876 1877
## 1877 1878
## 1878 1879
## 1879 1880
## 1880 1881
## 1881 1882
## 1882 1883
## 1883 1884
## 1884 1885
## 1885 1886
## 1886 1887
## 1887 1888
## 1888 1889
## 1889 1890
## 1890 1891
## 1891 1892
## 1892 1893
## 1893 1894
## 1894 1895
## 1895 1896
## 1896 1897
## 1897 1898
## 1898 1899
## 1899 1900
## 1900 1901
## 1901 1902
## 1902 1903
## 1903 1904
## 1904 1905
## 1905 1906
## 1906 1907
## 1907 1908
## 1908 1909
## 1909 1910
## 1910 1911
## 1911 1912
## 1912 1913
## 1913 1914
## 1914 1915
## 1915 1916
## 1916 1917
## 1917 1918
## 1918 1919
## 1919 1920
## 1920 1921
## 1921 1922
## 1922 1923
## 1923 1924
## 1924 1925
## 1925 1926
## 1926 1927
## 1927 1928
## 1928 1929
## 1929 1930
## 1930 1931
## 1931 1932
## 1932 1933
## 1933 1934
## 1934 1935
## 1935 1936
## 1936 1937
## 1937 1938
## 1938 1939
## 1939 1940
## 1940 1941
## 1941 1942
## 1942 1943
## 1943 1944
## 1944 1945
## 1945 1946
## 1946 1947
## 1947 1948
## 1948 1949
## 1949 1950
## 1950 1951
## 1951 1952
## 1952 1953
## 1953 1954
## 1954 1955
## 1955 1956
## 1956 1957
## 1957 1958
## 1958 1959
## 1959 1960
## 1960 1961
## 1961 1962
## 1962 1963
## 1963 1964
## 1964 1965
## 1965 1966
## 1966 1967
## 1967 1968
## 1968 1969
## 1969 1970
## 1970 1971
## 1971 1972
## 1972 1973
## 1973 1974
## 1974 1975
## 1975 1976
## 1976 1977
## 1977 1978
## 1978 1979
## 1979 1980
## 1980 1981
## 1981 1982
## 1982 1983
## 1983 1984
## 1984 1985
## 1985 1986
## 1986 1987
## 1987 1988
## 1988 1989
## 1989 1990
## 1990 1991
## 1992 1993
## 1993 1994
## 1994 1995
## 1995 1996
## 1996 1997
## 1997 1998
## 1998 1999
## 1999 2000
## 2000 2001
## 2001 2002
## 2002 2003
## 2003 2004
## 2004 2005
## 2005 2006
## 2006 2007
## 2007 2008
## 2008 2009
## 2009 2010
## 2010 2011
## 2011 2012
## 2012 2013
## 2013 2014
## 2014 2015
## 2015 2016
## 2016 2017
## 2017 2018
## 2018 2019
## 2019 2020
## 2021 2022
## 2022 2023
## 2023 2024
## 2024 2025
## 2025 2026
## 2026 2027
## 2027 2028
## 2028 2029
## 2029 2030
## 2030 2031
## 2031 2032
## 2032 2033
## 2033 2034
## 2034 2035
## 2035 2036
## 2036 2037
## 2037 2038
## 2038 2039
## 2039 2040
## 2040 2041
## 2041 2042
## 2042 2043
## 2043 2044
## 2044 2045
## 2045 2046
## 2046 2047
## 2047 2048
## 2048 2049
## 2049 2050
## 2050 2051
## 2051 2052
## 2052 2053
## 2053 2054
## 2054 2055
## 2055 2056
## 2056 2057
## 2057 2058
## 2058 2059
## 2059 2060
## 2060 2061
## 2061 2062
## 2062 2063
## 2063 2064
## 2064 2065
## 2065 2066
## 2066 2067
## 2067 2068
## 2068 2069
## 2069 2070
## 2070 2071
## 2071 2072
## 2072 2073
## 2073 2074
## 2074 2075
## 2075 2076
## 2076 2077
## 2077 2078
## 2078 2079
## 2079 2080
## 2080 2081
## 2081 2082
## 2082 2083
## 2083 2084
## 2084 2085
## 2085 2086
## 2086 2087
## 2088 2089
## 2089 2090
## 2090 2091
## 2091 2092
## 2092 2093
## 2093 2094
## 2094 2095
## 2095 2096
## 2096 2097
## 2097 2098
## 2098 2099
## 2099 2100
## 2100 2101
## 2101 2102
## 2102 2103
## 2103 2104
## 2104 2105
## 2105 2106
## 2106 2107
## 2107 2108
## 2108 2109
## 2109 2110
## 2110 2111
## 2111 2112
## 2112 2113
## 2113 2114
## 2116 2117
## 2117 2118
## 2118 2119
## 2119 2120
## 2120 2121
## 2121 2122
## 2122 2123
## 2123 2124
## 2124 2125
## 2125 2126
## 2126 2127
## 2127 2128
## 2128 2129
## 2129 2130
## 2130 2131
## 2131 2132
## 2132 2133
## 2133 2134
## 2134 2135
## 2136 2137
## 2137 2138
## 2138 2139
## 2139 2140
## 2140 2141
## 2141 2142
## 2142 2143
## 2143 2144
## 2144 2145
## 2145 2146
## 2147 2148
## 2148 2149
## 2149 2150
## 2150 2151
## 2151 2152
## 2152 2153
## 2153 2154
## 2154 2155
## 2155 2156
## 2156 2157
## 2157 2158
## 2158 2159
## 2159 2160
## 2160 2161
## 2161 2162
## 2162 2163
## 2163 2164
## 2164 2165
## 2165 2166
## 2166 2167
## 2167 2168
## 2168 2169
## 2169 2170
## 2170 2171
## 2171 2172
## 2172 2173
## 2173 2174
## 2175 2176
## 2176 2177
## 2177 2178
## 2178 2179
## 2179 2180
## 2180 2181
## 2181 2182
## 2182 2183
## 2183 2184
## 2184 2185
## 2185 2186
## 2186 2187
## 2187 2188
## 2188 2189
## 2189 2190
## 2190 2191
## 2191 2192
## 2192 2193
## 2193 2194
## 2194 2195
## 2195 2196
## 2196 2197
## 2197 2198
## 2198 2199
## 2199 2200
## 2200 2201
## 2201 2202
## 2202 2203
## 2203 2204
## 2204 2205
## 2205 2206
## 2206 2207
## 2207 2208
## 2208 2209
## 2209 2210
## 2210 2211
## 2211 2212
## 2212 2213
## 2213 2214
## 2214 2215
## 2215 2216
## 2216 2217
## 2217 2218
## 2218 2219
## 2219 2220
## 2220 2221
## 2221 2222
## 2222 2223
## 2223 2224
## 2224 2225
## 2225 2226
## 2226 2227
## 2227 2228
## 2228 2229
## 2229 2230
## 2230 2231
## 2231 2232
## 2232 2233
## 2233 2234
## 2234 2235
## 2235 2236
## 2236 2237
## 2237 2238
## 2238 2239
## 2239 2240
## 2240 2241
## 2241 2242
## 2242 2243
## 2243 2244
## 2244 2245
## 2245 2246
## 2246 2247
## 2247 2248
## 2248 2249
## 2249 2250
## 2250 2251
## 2251 2252
## 2252 2253
## 2253 2254
## 2254 2255
## 2255 2256
## 2256 2257
## 2257 2258
## 2258 2259
## 2259 2260
## 2260 2261
## 2261 2262
## 2262 2263
## 2263 2264
## 2264 2265
## 2265 2266
## 2266 2267
## 2267 2268
## 2268 2269
## 2269 2270
## 2270 2271
## 2271 2272
## 2272 2273
## 2273 2274
## 2274 2275
## 2275 2276
## 2276 2277
## 2277 2278
## 2278 2279
## 2279 2280
## 2280 2281
## 2281 2282
## 2282 2283
## 2283 2284
## 2284 2285
## 2285 2286
## 2286 2287
## 2288 2289
## 2289 2290
## 2290 2291
## 2291 2292
## 2292 2293
## 2293 2294
## 2294 2295
## 2295 2296
## 2297 2298
## 2298 2299
## 2299 2300
## 2300 2301
## 2301 2302
## 2302 2303
## 2303 2304
## 2304 2305
## 2305 2306
## 2306 2307
## 2307 2308
## 2308 2309
## 2309 2310
## 2310 2311
## 2311 2312
## 2312 2313
## 2313 2314
## 2314 2315
## 2315 2316
## 2316 2317
## 2317 2318
## 2318 2319
## 2319 2320
## 2320 2321
## 2321 2322
## 2322 2323
## 2323 2324
## 2324 2325
## 2325 2326
## 2326 2327
## 2327 2328
## 2328 2329
## 2329 2330
## 2330 2331
## 2331 2332
## 2332 2333
## 2333 2334
## 2334 2335
## 2335 2336
## 2336 2337
## 2337 2338
## 2338 2339
## 2339 2340
## 2340 2341
## 2341 2342
## 2342 2343
## 2343 2344
## 2344 2345
## 2345 2346
## 2346 2347
## 2347 2348
## 2348 2349
## 2349 2350
## 2350 2351
## 2351 2352
## 2352 2353
## 2353 2354
## 2354 2355
## 2355 2356
## 2356 2357
## 2357 2358
## 2358 2359
## 2359 2360
## 2360 2361
## 2361 2362
## 2362 2363
## 2363 2364
## 2364 2365
## 2365 2366
## 2366 2367
## 2367 2368
## 2368 2369
## 2369 2370
## 2370 2371
## 2371 2372
## 2372 2373
## 2373 2374
## 2374 2375
## 2375 2376
## 2376 2377
## 2377 2378
## 2378 2379
## 2379 2380
## 2380 2381
## 2381 2382
## 2382 2383
## 2383 2384
## 2384 2385
## 2385 2386
## 2386 2387
## 2387 2388
## 2388 2389
## 2389 2390
## 2390 2391
## 2391 2392
## 2392 2393
## 2393 2394
## 2394 2395
## 2395 2396
## 2396 2397
## 2397 2398
## 2398 2399
## 2399 2400
## 2400 2401
## 2401 2402
## 2402 2403
## 2403 2404
## 2404 2405
## 2405 2406
## 2406 2407
## 2407 2408
## 2408 2409
## 2409 2410
## 2410 2411
## 2411 2412
## 2412 2413
## 2413 2414
## 2414 2415
## 2415 2416
## 2417 2418
## 2418 2419
## 2419 2420
## 2420 2421
## 2421 2422
## 2422 2423
## 2424 2425
## 2425 2426
## 2426 2427
## 2427 2428
## 2428 2429
## 2429 2430
## 2430 2431
## 2431 2432
## 2432 2433
## 2433 2434
## 2434 2435
## 2435 2436
## 2436 2437
## 2437 2438
## 2438 2439
## 2439 2440
## 2440 2441
## 2441 2442
## 2442 2443
## 2443 2444
## 2444 2445
## 2445 2446
## 2446 2447
## 2447 2448
## 2448 2449
## 2449 2450
## 2450 2451
## 2451 2452
## 2452 2453
## 2453 2454
## 2454 2455
## 2455 2456
## 2456 2457
## 2457 2458
## 2458 2459
## 2459 2460
## 2460 2461
## 2461 2462
## 2462 2463
## 2463 2464
## 2464 2465
## 2465 2466
## 2466 2467
## 2467 2468
## 2468 2469
## 2469 2470
## 2470 2471
## 2471 2472
## 2472 2473
## 2473 2474
## 2474 2475
## 2475 2476
## 2476 2477
## 2477 2478
## 2478 2479
## 2479 2480
## 2480 2481
## 2481 2482
## 2482 2483
## 2483 2484
## 2484 2485
## 2486 2487
## 2487 2488
## 2488 2489
## 2489 2490
## 2490 2491
## 2491 2492
## 2492 2493
## 2493 2494
## 2494 2495
## 2495 2496
## 2496 2497
## 2497 2498
## 2499 2500
## 2500 2501
## 2501 2502
## 2502 2503
## 2503 2504
## 2504 2505
## 2505 2506
## 2506 2507
## 2507 2508
## 2508 2509
## 2509 2510
## 2510 2511
## 2511 2512
## 2512 2513
## 2513 2514
## 2514 2515
## 2515 2516
## 2516 2517
## 2517 2518
## 2518 2519
## 2519 2520
## 2520 2521
## 2521 2522
## 2522 2523
## 2523 2524
## 2524 2525
## 2525 2526
## 2526 2527
## 2527 2528
## 2528 2529
## 2530 2531
## 2531 2532
## 2532 2533
## 2533 2534
## 2534 2535
## 2535 2536
## 2536 2537
## 2537 2538
## 2538 2539
## 2539 2540
## 2540 2541
## 2541 2542
## 2542 2543
## 2543 2544
## 2544 2545
## 2545 2546
## 2546 2547
## 2547 2548
## 2548 2549
## 2549 2550
## 2550 2551
## 2551 2552
## 2552 2553
## 2553 2554
## 2554 2555
## 2555 2556
## 2556 2557
## 2557 2558
## 2558 2559
## 2559 2560
## 2560 2561
## 2561 2562
## 2562 2563
## 2563 2564
## 2564 2565
## 2565 2566
## 2566 2567
## 2567 2568
## 2568 2569
## 2569 2570
## 2570 2571
## 2571 2572
## 2572 2573
## 2573 2574
## 2574 2575
## 2575 2576
## 2576 2577
## 2577 2578
## 2578 2579
## 2579 2580
## 2580 2581
## 2581 2582
## 2582 2583
## 2583 2584
## 2584 2585
## 2585 2586
## 2586 2587
## 2588 2589
## 2589 2590
## 2590 2591
## 2591 2592
## 2592 2593
## 2593 2594
## 2594 2595
## 2595 2596
## 2596 2597
## 2597 2598
## 2598 2599
## 2599 2600
## 2600 2601
## 2601 2602
## 2602 2603
## 2603 2604
## 2604 2605
## 2605 2606
## 2606 2607
## 2607 2608
## 2608 2609
## 2609 2610
## 2610 2611
## 2611 2612
## 2612 2613
## 2613 2614
## 2614 2615
## 2615 2616
## 2616 2617
## 2617 2618
## 2618 2619
## 2619 2620
## 2620 2621
## 2621 2622
## 2622 2623
## 2623 2624
## 2624 2625
## 2625 2626
## 2626 2627
## 2627 2628
## 2628 2629
## 2629 2630
## 2630 2631
## 2631 2632
## 2632 2633
## 2633 2634
## 2634 2635
## 2635 2636
## 2636 2637
## 2637 2638
## 2638 2639
## 2639 2640
## 2640 2641
## 2641 2642
## 2642 2643
## 2643 2644
## 2644 2645
## 2645 2646
## 2646 2647
## 2647 2648
## 2648 2649
## 2649 2650
## 2650 2651
## 2651 2652
## 2652 2653
## 2653 2654
## 2654 2655
## 2655 2656
## 2656 2657
## 2657 2658
## 2658 2659
## 2659 2660
## 2660 2661
## 2661 2662
## 2662 2663
## 2663 2664
## 2664 2665
## 2665 2666
## 2666 2667
## 2667 2668
## 2668 2669
## 2669 2670
## 2670 2671
## 2671 2672
## 2672 2673
## 2673 2674
## 2674 2675
## 2675 2676
## 2676 2677
## 2677 2678
## 2678 2679
## 2679 2680
## 2680 2681
## 2681 2682
## 2682 2683
## 2683 2684
## 2684 2685
## 2685 2686
## 2686 2687
## 2687 2688
## 2688 2689
## 2689 2690
## 2690 2691
## 2691 2692
## 2692 2693
## 2693 2694
## 2694 2695
## 2695 2696
## 2696 2697
## 2697 2698
## 2698 2699
## 2699 2700
## 2700 2701
## 2701 2702
## 2702 2703
## 2703 2704
## 2704 2705
## 2705 2706
## 2706 2707
## 2707 2708
## 2708 2709
## 2709 2710
## 2710 2711
## 2711 2712
## 2712 2713
## 2713 2714
## 2714 2715
## 2715 2716
## 2716 2717
## 2717 2718
## 2718 2719
## 2719 2720
## 2720 2721
## 2721 2722
## 2722 2723
## 2723 2724
## 2724 2725
## 2725 2726
## 2726 2727
## 2727 2728
## 2728 2729
## 2729 2730
## 2730 2731
## 2731 2732
## 2732 2733
## 2733 2734
## 2734 2735
## 2735 2736
## 2736 2737
## 2737 2738
## 2738 2739
## 2739 2740
## 2740 2741
## 2741 2742
## 2742 2743
## 2743 2744
## 2744 2745
## 2745 2746
## 2746 2747
## 2747 2748
## 2748 2749
## 2749 2750
## 2750 2751
## 2751 2752
## 2752 2753
## 2753 2754
## 2754 2755
## 2755 2756
## 2756 2757
## 2757 2758
## 2758 2759
## 2759 2760
## 2760 2761
## 2761 2762
## 2762 2763
## 2763 2764
## 2764 2765
## 2765 2766
## 2766 2767
## 2767 2768
## 2768 2769
## 2769 2770
## 2770 2771
## 2771 2772
## 2772 2773
## 2773 2774
## 2774 2775
## 2775 2776
## 2776 2777
## 2778 2779
## 2779 2780
## 2780 2781
## 2781 2782
## 2782 2783
## 2783 2784
## 2784 2785
## 2785 2786
## 2786 2787
## 2788 2789
## 2789 2790
## 2790 2791
## 2791 2792
## 2792 2793
## 2793 2794
## 2794 2795
## 2795 2796
## 2796 2797
## 2797 2798
## 2798 2799
## 2799 2800
## 2800 2801
## 2801 2802
## 2802 2803
## 2803 2804
## 2804 2805
## 2805 2806
## 2806 2807
## 2807 2808
## 2808 2809
## 2809 2810
## 2810 2811
## 2811 2812
## 2812 2813
## 2813 2814
## 2814 2815
## 2815 2816
## 2816 2817
## 2817 2818
## 2818 2819
## 2819 2820
## 2820 2821
## 2821 2822
## 2822 2823
## 2823 2824
## 2824 2825
## 2825 2826
## 2826 2827
## 2827 2828
## 2828 2829
## 2829 2830
## 2830 2831
## 2831 2832
## 2832 2833
## 2833 2834
## 2834 2835
## 2835 2836
## 2836 2837
## 2837 2838
## 2838 2839
## 2840 2841
## 2841 2842
## 2842 2843
## 2843 2844
## 2844 2845
## 2845 2846
## 2846 2847
## 2847 2848
## 2848 2849
## 2849 2850
## 2850 2851
## 2851 2852
## 2852 2853
## 2853 2854
## 2854 2855
## 2855 2856
## 2856 2857
## 2857 2858
## 2858 2859
## 2859 2860
## 2860 2861
## 2861 2862
## 2862 2863
## 2863 2864
## 2864 2865
## 2865 2866
## 2866 2867
## 2867 2868
## 2868 2869
## 2869 2870
## 2870 2871
## 2871 2872
## 2872 2873
## 2873 2874
## 2874 2875
## 2875 2876
## 2876 2877
## 2877 2878
## 2878 2879
## 2879 2880
## 2880 2881
## 2881 2882
## 2882 2883
## 2883 2884
## 2884 2885
## 2885 2886
## 2886 2887
## 2887 2888
## 2888 2889
## 2889 2890
## 2890 2891
## 2891 2892
## 2892 2893
## 2893 2894
## 2894 2895
## 2895 2896
## 2896 2897
## 2897 2898
## 2898 2899
## 2899 2900
## 2900 2901
## 2901 2902
## 2902 2903
## 2903 2904
## 2904 2905
## 2905 2906
## 2906 2907
## 2907 2908
## 2908 2909
## 2909 2910
## 2910 2911
## 2911 2912
## 2912 2913
## 2913 2914
## 2914 2915
## 2915 2916
## 2916 2917
## 2917 2918
## 2918 2919
## 2919 2920
## 2920 2921
## 2921 2922
## 2922 2923
## 2923 2924
## 2924 2925
## 2925 2926
## 2926 2927
## 2927 2928
## 2928 2929
## 2929 2930
## 2930 2931
## 2931 2932
## 2932 2933
## 2933 2934
## 2934 2935
## 2935 2936
## 2936 2937
## 2937 2938
## 2938 2939
## 2939 2940
## 2940 2941
## 2941 2942
## 2942 2943
## 2943 2944
## 2944 2945
## 2945 2946
## 2946 2947
## 2947 2948
## 2949 2950
## 2950 2951
## 2951 2952
## 2952 2953
## 2953 2954
## 2954 2955
## 2955 2956
## 2956 2957
## 2957 2958
## 2958 2959
## 2959 2960
## 2960 2961
## 2961 2962
## 2962 2963
## 2963 2964
## 2964 2965
## 2965 2966
## 2966 2967
## 2967 2968
## 2968 2969
## 2969 2970
## 2970 2971
## 2971 2972
## 2972 2973
## 2973 2974
## 2974 2975
## 2975 2976
## 2976 2977
## 2977 2978
## 2978 2979
## 2979 2980
## 2980 2981
## 2981 2982
## 2982 2983
## 2983 2984
## 2984 2985
## 2985 2986
## 2986 2987
## 2987 2988
## 2988 2989
## 2989 2990
## 2990 2991
## 2991 2992
## 2992 2993
## 2993 2994
## 2994 2995
## 2995 2996
## 2996 2997
## 2997 2998
## 2998 2999
## 2999 3000
## 3000 3001
## 3001 3002
## 3002 3003
## 3003 3004
## 3004 3005
## 3005 3006
## 3006 3007
## 3007 3008
## 3008 3009
## 3009 3010
## 3010 3011
## 3011 3012
## 3012 3013
## 3013 3014
## 3014 3015
## 3015 3016
## 3016 3017
## 3017 3018
## 3018 3019
## 3019 3020
## 3020 3021
## 3021 3022
## 3022 3023
## 3023 3024
## 3024 3025
## 3025 3026
## 3026 3027
## 3027 3028
## 3028 3029
## 3029 3030
## 3030 3031
## 3031 3032
## 3032 3033
## 3033 3034
## 3034 3035
## 3035 3036
## 3036 3037
## 3037 3038
## 3038 3039
## 3039 3040
## 3040 3041
## 3041 3042
## 3042 3043
## 3043 3044
## 3044 3045
## 3045 3046
## 3046 3047
## 3047 3048
## 3048 3049
## 3049 3050
## 3051 3052
## 3052 3053
## 3053 3054
## 3054 3055
## 3055 3056
## 3056 3057
## 3057 3058
## 3058 3059
## 3059 3060
## 3060 3061
## 3061 3062
## 3062 3063
## 3063 3064
## 3064 3065
## 3065 3066
## 3066 3067
## 3067 3068
## 3068 3069
## 3069 3070
## 3070 3071
## 3071 3072
## 3072 3073
## 3073 3074
## 3074 3075
## 3075 3076
## 3076 3077
## 3077 3078
## 3078 3079
## 3079 3080
## 3080 3081
## 3081 3082
## 3082 3083
## 3083 3084
## 3084 3085
## 3085 3086
## 3086 3087
## 3087 3088
## 3088 3089
## 3089 3090
## 3090 3091
## 3091 3092
## 3092 3093
## 3093 3094
## 3094 3095
## 3095 3096
## 3096 3097
## 3097 3098
## 3098 3099
## 3099 3100
## 3100 3101
## 3101 3102
## 3102 3103
## 3103 3104
## 3104 3105
## 3105 3106
## 3106 3107
## 3107 3108
## 3108 3109
## 3109 3110
## 3110 3111
## 3111 3112
## 3112 3113
## 3113 3114
## 3114 3115
## 3115 3116
## 3116 3117
## 3117 3118
## 3118 3119
## 3119 3120
## 3120 3121
## 3121 3122
## 3122 3123
## 3123 3124
## 3124 3125
## 3125 3126
## 3126 3127
## 3127 3128
## 3128 3129
## 3129 3130
## 3130 3131
## 3131 3132
## 3132 3133
## 3133 3134
## 3134 3135
## 3135 3136
## 3136 3137
## 3137 3138
## 3138 3139
## 3139 3140
## 3140 3141
## 3141 3142
## 3143 3144
## 3144 3145
## 3145 3146
## 3146 3147
## 3147 3148
## 3148 3149
## 3149 3150
## 3150 3151
## 3151 3152
## 3152 3153
## 3153 3154
## 3154 3155
## 3155 3156
## 3156 3157
## 3157 3158
## 3158 3159
## 3159 3160
## 3160 3161
## 3161 3162
## 3162 3163
## 3163 3164
## 3164 3165
## 3165 3166
## 3166 3167
## 3167 3168
## 3168 3169
## 3169 3170
## 3170 3171
## 3171 3172
## 3172 3173
## 3173 3174
## 3174 3175
## 3175 3176
## 3176 3177
## 3177 3178
## 3178 3179
## 3179 3180
## 3180 3181
## 3181 3182
## 3182 3183
## 3183 3184
## 3184 3185
## 3185 3186
## 3186 3187
## 3187 3188
## 3188 3189
## 3189 3190
## 3190 3191
## 3191 3192
## 3192 3193
## 3193 3194
## 3194 3195
## 3196 3197
## 3197 3198
## 3198 3199
## 3199 3200
## 3200 3201
## 3201 3202
## 3202 3203
## 3203 3204
## 3204 3205
## 3205 3206
## 3206 3207
## 3207 3208
## 3208 3209
## 3209 3210
## 3210 3211
## 3211 3212
## 3212 3213
## 3213 3214
## 3214 3215
## 3215 3216
## 3216 3217
## 3217 3218
## 3219 3220
## 3220 3221
## 3221 3222
## 3222 3223
## 3223 3224
## 3224 3225
## 3225 3226
## 3226 3227
## 3227 3228
## 3228 3229
## 3229 3230
## 3230 3231
## 3231 3232
## 3232 3233
## 3233 3234
## 3234 3235
## 3235 3236
## 3236 3237
## 3237 3238
## 3238 3239
## 3240 3241
## 3241 3242
## 3242 3243
## 3243 3244
## 3244 3245
## 3245 3246
## 3246 3247
## 3247 3248
## 3248 3249
## 3249 3250
## 3250 3251
## 3251 3252
## 3252 3253
## 3253 3254
## 3254 3255
## 3255 3256
## 3256 3257
## 3257 3258
## 3258 3259
## 3259 3260
## 3260 3261
## 3261 3262
## 3262 3263
## 3263 3264
## 3264 3265
## 3265 3266
## 3266 3267
## 3267 3268
## 3268 3269
## 3269 3270
## 3270 3271
## 3271 3272
## 3272 3273
## 3273 3274
## 3274 3275
## 3275 3276
## 3276 3277
## 3277 3278
## 3278 3279
## 3279 3280
## 3280 3281
## 3281 3282
## 3282 3283
## 3283 3284
## 3284 3285
## 3285 3286
## 3286 3287
## 3287 3288
## 3288 3289
## 3289 3290
## 3290 3291
## 3291 3292
## 3292 3293
## 3293 3294
## 3294 3295
## 3295 3296
## 3296 3297
## 3297 3298
## 3298 3299
## 3299 3300
## 3300 3301
## 3301 3302
## 3302 3303
## 3303 3304
## 3304 3305
## 3305 3306
## 3306 3307
## 3307 3308
## 3308 3309
## 3309 3310
## 3310 3311
## 3311 3312
## 3312 3313
## 3313 3314
## 3314 3315
## 3315 3316
## 3316 3317
## 3317 3318
## 3318 3319
## 3319 3320
## 3320 3321
## 3321 3322
## 3322 3323
## 3323 3324
## 3324 3325
## 3325 3326
## 3326 3327
## 3327 3328
## 3328 3329
## 3329 3330
## 3330 3331
## 3331 3332
## 3332 3333
## 3333 3334
## 3334 3335
## 3335 3336
## 3336 3337
## 3337 3338
## 3338 3339
## 3339 3340
## 3340 3341
## 3341 3342
## 3342 3343
## 3343 3344
## 3344 3345
## 3345 3346
## 3346 3347
## 3348 3349
## 3349 3350
## 3350 3351
## 3351 3352
## 3352 3353
## 3353 3354
## 3354 3355
## 3355 3356
## 3356 3357
## 3357 3358
## 3358 3359
## 3359 3360
## 3360 3361
## 3361 3362
## 3362 3363
## 3363 3364
## 3364 3365
## 3365 3366
## 3366 3367
## 3367 3368
## 3368 3369
## 3369 3370
## 3370 3371
## 3371 3372
## 3372 3373
## 3373 3374
## 3374 3375
## 3375 3376
## 3376 3377
## 3377 3378
## 3378 3379
## 3379 3380
## 3380 3381
## 3381 3382
## 3382 3383
## 3383 3384
## 3384 3385
## 3385 3386
## 3386 3387
## 3387 3388
## 3388 3389
## 3389 3390
## 3390 3391
## 3391 3392
## 3392 3393
## 3393 3394
## 3394 3395
## 3395 3396
## 3396 3397
## 3397 3398
## 3398 3399
## 3399 3400
## 3400 3401
## 3401 3402
## 3402 3403
## 3403 3404
## 3404 3405
## 3405 3406
## 3406 3407
## 3407 3408
## 3408 3409
## 3409 3410
## 3410 3411
## 3411 3412
## 3412 3413
## 3413 3414
## 3414 3415
## 3415 3416
## 3416 3417
## 3417 3418
## 3418 3419
## 3419 3420
## 3420 3421
## 3421 3422
## 3423 3424
## 3424 3425
## 3425 3426
## 3426 3427
## 3427 3428
## 3428 3429
## 3429 3430
## 3430 3431
## 3431 3432
## 3432 3433
## 3433 3434
## 3434 3435
## 3435 3436
## 3436 3437
## 3437 3438
## 3438 3439
## 3439 3440
## 3440 3441
## 3441 3442
## 3442 3443
## 3443 3444
## 3444 3445
## 3445 3446
## 3446 3447
## 3447 3448
## 3448 3449
## 3449 3450
## 3450 3451
## 3451 3452
## 3452 3453
## 3453 3454
## 3454 3455
## 3455 3456
## 3456 3457
## 3457 3458
## 3458 3459
## 3459 3460
## 3460 3461
## 3461 3462
## 3462 3463
## 3463 3464
## 3464 3465
## 3465 3466
## 3466 3467
## 3467 3468
## 3468 3469
## 3470 3471
## 3471 3472
## 3472 3473
## 3473 3474
## 3474 3475
## 3475 3476
## 3476 3477
## 3477 3478
## 3478 3479
## 3479 3480
## 3480 3481
## 3481 3482
## 3482 3483
## 3483 3484
## 3484 3485
## 3485 3486
## 3486 3487
## 3487 3488
## 3488 3489
## 3489 3490
## 3490 3491
## 3491 3492
## 3492 3493
## 3493 3494
## 3494 3495
## 3495 3496
## 3496 3497
## 3497 3498
## 3498 3499
## 3499 3500
## 3500 3501
## 3501 3502
## 3503 3504
## 3504 3505
## 3505 3506
## 3506 3507
## 3507 3508
## 3508 3509
## 3509 3510
## 3510 3511
## 3511 3512
## 3512 3513
## 3513 3514
## 3514 3515
## 3515 3516
## 3516 3517
## 3517 3518
## 3518 3519
## 3519 3520
## 3520 3521
## 3521 3522
## 3522 3523
## 3523 3524
## 3524 3525
## 3525 3526
## 3526 3527
## 3527 3528
## 3528 3529
## 3529 3530
## 3530 3531
## 3531 3532
## 3532 3533
## 3533 3534
## 3534 3535
## 3535 3536
## 3536 3537
## 3537 3538
## 3538 3539
## 3539 3540
## 3540 3541
## 3541 3542
## 3542 3543
## 3543 3544
## 3544 3545
## 3545 3546
## 3546 3547
## 3547 3548
## 3548 3549
## 3549 3550
## 3550 3551
## 3551 3552
## 3552 3553
## 3553 3554
## 3554 3555
## 3555 3556
## 3556 3557
## 3557 3558
## 3558 3559
## 3559 3560
## 3560 3561
## 3561 3562
## 3562 3563
## 3563 3564
## 3564 3565
## 3565 3566
## 3566 3567
## 3567 3568
## 3568 3569
## 3569 3570
## 3570 3571
## 3571 3572
## 3572 3573
## 3573 3574
## 3574 3575
## 3575 3576
## 3576 3577
## 3577 3578
## 3578 3579
## 3579 3580
## 3580 3581
## 3581 3582
## 3582 3583
## 3583 3584
## 3584 3585
## 3585 3586
## 3586 3587
## 3587 3588
## 3588 3589
## 3589 3590
## 3590 3591
## 3591 3592
## 3592 3593
## 3593 3594
## 3594 3595
## 3595 3596
## 3596 3597
## 3597 3598
## 3598 3599
## 3599 3600
## 3600 3601
## 3601 3602
## 3602 3603
## 3603 3604
## 3604 3605
## 3605 3606
## 3606 3607
## 3607 3608
## 3608 3609
## 3609 3610
## 3610 3611
## 3611 3612
## 3612 3613
## 3613 3614
## 3614 3615
## 3615 3616
## 3616 3617
## 3617 3618
## 3618 3619
## 3619 3620
## 3620 3621
## 3621 3622
## 3622 3623
## 3623 3624
## 3624 3625
## 3625 3626
## 3626 3627
## 3627 3628
## 3628 3629
## 3629 3630
## 3630 3631
## 3631 3632
## 3632 3633
## 3633 3634
## 3634 3635
## 3635 3636
## 3636 3637
## 3637 3638
## 3638 3639
## 3639 3640
## 3640 3641
## 3641 3642
## 3642 3643
## 3643 3644
## 3644 3645
## 3645 3646
## 3646 3647
## 3647 3648
## 3648 3649
## 3649 3650
## 3650 3651
## 3651 3652
## 3652 3653
## 3653 3654
## 3654 3655
## 3655 3656
## 3656 3657
## 3657 3658
## 3658 3659
## 3659 3660
## 3660 3661
## 3661 3662
## 3662 3663
## 3663 3664
## 3664 3665
## 3665 3666
## 3666 3667
## 3667 3668
## 3668 3669
## 3669 3670
## 3670 3671
## 3671 3672
## 3672 3673
## 3673 3674
## 3674 3675
## 3675 3676
## 3676 3677
## 3677 3678
## 3678 3679
## 3679 3680
## 3680 3681
## 3681 3682
## 3682 3683
## 3683 3684
## 3684 3685
## 3685 3686
## 3686 3687
## 3687 3688
## 3688 3689
## 3689 3690
## 3690 3691
## 3691 3692
## 3692 3693
## 3693 3694
## 3694 3695
## 3695 3696
## 3696 3697
## 3697 3698
## 3698 3699
## 3699 3700
## 3700 3701
## 3701 3702
## 3702 3703
## 3703 3704
## 3704 3705
## 3705 3706
## 3706 3707
## 3707 3708
## 3708 3709
## 3709 3710
## 3710 3711
## 3711 3712
## 3712 3713
## 3713 3714
## 3714 3715
## 3715 3716
## 3717 3718
## 3718 3719
## 3719 3720
## 3720 3721
## 3721 3722
## 3722 3723
## 3723 3724
## 3724 3725
## 3725 3726
## 3726 3727
## 3727 3728
## 3728 3729
## 3729 3730
## 3730 3731
## 3731 3732
## 3732 3733
## 3733 3734
## 3734 3735
## 3735 3736
## 3736 3737
## 3737 3738
## 3738 3739
## 3739 3740
## 3740 3741
## 3741 3742
## 3742 3743
## 3743 3744
## 3744 3745
## 3745 3746
## 3746 3747
## 3747 3748
## 3748 3749
## 3749 3750
## 3750 3751
## 3751 3752
## 3752 3753
## 3753 3754
## 3755 3756
## 3756 3757
## 3757 3758
## 3758 3759
## 3759 3760
## 3760 3761
## 3761 3762
## 3762 3763
## 3763 3764
## 3764 3765
## 3765 3766
## 3766 3767
## 3767 3768
## 3768 3769
## 3769 3770
## 3770 3771
## 3771 3772
## 3772 3773
## 3773 3774
## 3774 3775
## 3775 3776
## 3776 3777
## 3777 3778
## 3778 3779
## 3779 3780
## 3780 3781
## 3781 3782
## 3782 3783
## 3783 3784
## 3784 3785
## 3785 3786
## 3786 3787
## 3787 3788
## 3788 3789
## 3789 3790
## 3790 3791
## 3791 3792
## 3792 3793
## 3793 3794
## 3794 3795
## 3795 3796
## 3796 3797
## 3797 3798
## 3798 3799
## 3799 3800
## 3800 3801
## 3801 3802
## 3802 3803
## 3803 3804
## 3804 3805
## 3805 3806
## 3806 3807
## 3807 3808
## 3808 3809
## 3809 3810
## 3810 3811
## 3811 3812
## 3812 3813
## 3813 3814
## 3814 3815
## 3815 3816
## 3816 3817
## 3817 3818
## 3818 3819
## 3819 3820
## 3820 3821
## 3821 3822
## 3822 3823
## 3823 3824
## 3824 3825
## 3825 3826
## 3826 3827
## 3827 3828
## 3828 3829
## 3829 3830
## 3830 3831
## 3831 3832
## 3832 3833
## 3833 3834
## 3834 3835
## 3835 3836
## 3836 3837
## 3837 3838
## 3838 3839
## 3839 3840
## 3840 3841
## 3841 3842
## 3842 3843
## 3843 3844
## 3844 3845
## 3845 3846
## 3846 3847
## 3847 3848
## 3848 3849
## 3849 3850
## 3850 3851
## 3851 3852
## 3852 3853
## 3853 3854
## 3854 3855
## 3855 3856
## 3856 3857
## 3857 3858
## 3858 3859
## 3859 3860
## 3860 3861
## 3861 3862
## 3862 3863
## 3863 3864
## 3864 3865
## 3865 3866
## 3866 3867
## 3867 3868
## 3868 3869
## 3869 3870
## 3870 3871
## 3871 3872
## 3872 3873
## 3873 3874
## 3874 3875
## 3875 3876
## 3876 3877
## 3877 3878
## 3878 3879
## 3879 3880
## 3880 3881
## 3882 3883
## 3883 3884
## 3884 3885
## 3885 3886
## 3886 3887
## 3887 3888
## 3888 3889
## 3889 3890
## 3890 3891
## 3891 3892
## 3892 3893
## 3893 3894
## 3894 3895
## 3895 3896
## 3896 3897
## 3897 3898
## 3898 3899
## 3899 3900
## 3900 3901
## 3901 3902
## 3902 3903
## 3903 3904
## 3904 3905
## 3905 3906
## 3906 3907
## 3907 3908
## 3908 3909
## 3909 3910
## 3910 3911
## 3911 3912
## 3912 3913
## 3913 3914
## 3914 3915
## 3915 3916
## 3916 3917
## 3917 3918
## 3918 3919
## 3919 3920
## 3920 3921
## 3921 3922
## 3922 3923
## 3923 3924
## 3924 3925
## 3925 3926
## 3926 3927
## 3927 3928
## 3928 3929
## 3929 3930
## 3930 3931
## 3931 3932
## 3932 3933
## 3933 3934
## 3934 3935
## 3935 3936
## 3936 3937
## 3937 3938
## 3938 3939
## 3939 3940
## 3940 3941
## 3941 3942
## 3942 3943
## 3943 3944
## 3944 3945
## 3945 3946
## 3946 3947
## 3947 3948
## 3948 3949
## 3949 3950
## 3950 3951
## 3951 3952
## 3952 3953
## 3954 3955
## 3955 3956
## 3956 3957
## 3957 3958
## 3958 3959
## 3959 3960
## 3960 3961
## 3961 3962
## 3962 3963
## 3963 3964
## 3964 3965
## 3965 3966
## 3966 3967
## 3967 3968
## 3968 3969
## 3969 3970
## 3970 3971
## 3971 3972
## 3972 3973
## 3973 3974
## 3974 3975
## 3975 3976
## 3976 3977
## 3977 3978
## 3978 3979
## 3979 3980
## 3980 3981
## 3981 3982
## 3982 3983
## 3983 3984
## 3984 3985
## 3985 3986
## 3986 3987
## 3987 3988
## 3988 3989
## 3989 3990
## 3990 3991
## 3991 3992
## 3992 3993
## 3993 3994
## 3994 3995
## 3995 3996
## 3996 3997
## 3997 3998
## 3998 3999
## 3999 4000
## 4000 4001
## 4001 4002
## 4002 4003
## 4003 4004
## 4004 4005
## 4005 4006
## 4006 4007
## 4007 4008
## 4008 4009
## 4009 4010
## 4010 4011
## 4011 4012
## 4012 4013
## 4013 4014
## 4014 4015
## 4015 4016
## 4016 4017
## 4017 4018
## 4018 4019
## 4019 4020
## 4020 4021
## 4021 4022
## 4022 4023
## 4023 4024
## 4024 4025
## 4025 4026
## 4026 4027
## 4027 4028
## 4028 4029
## 4029 4030
## 4030 4031
## 4031 4032
## 4032 4033
## 4033 4034
## 4034 4035
## 4035 4036
## 4036 4037
## 4037 4038
## 4038 4039
## 4039 4040
## 4040 4041
## 4041 4042
## 4042 4043
## 4043 4044
## 4044 4045
## 4045 4046
## 4046 4047
## 4047 4048
## 4048 4049
## 4049 4050
## 4050 4051
## 4051 4052
## 4052 4053
## 4053 4054
## 4054 4055
## 4055 4056
## 4056 4057
## 4057 4058
## 4058 4059
## 4059 4060
## 4060 4061
## 4061 4062
## 4062 4063
## 4063 4064
## 4064 4065
## 4065 4066
## 4066 4067
## 4067 4068
## 4068 4069
## 4069 4070
## 4070 4071
## 4071 4072
## 4072 4073
## 4073 4074
## 4074 4075
## 4075 4076
## 4076 4077
## 4077 4078
## 4078 4079
## 4079 4080
## 4080 4081
## 4081 4082
## 4082 4083
## 4083 4084
## 4084 4085
## 4085 4086
## 4086 4087
## 4087 4088
## 4088 4089
## 4089 4090
## 4090 4091
## 4091 4092
## 4092 4093
## 4093 4094
## 4094 4095
## 4095 4096
## 4096 4097
## 4097 4098
## 4098 4099
## 4099 4100
## 4100 4101
## 4101 4102
## 4102 4103
## 4103 4104
## 4104 4105
## 4105 4106
## 4106 4107
## 4107 4108
## 4108 4109
## 4109 4110
## 4110 4111
## 4111 4112
## 4112 4113
## 4113 4114
## 4114 4115
## 4115 4116
## 4116 4117
## 4117 4118
## 4118 4119
## 4119 4120
## 4120 4121
## 4121 4122
## 4122 4123
## 4123 4124
## 4124 4125
## 4125 4126
## 4126 4127
## 4127 4128
## 4128 4129
## 4129 4130
## 4130 4131
## 4131 4132
## 4132 4133
## 4133 4134
## 4134 4135
## 4135 4136
## 4136 4137
## 4137 4138
## 4138 4139
## 4139 4140
## 4140 4141
## 4141 4142
## 4142 4143
## 4143 4144
## 4144 4145
## 4145 4146
## 4147 4148
## 4148 4149
## 4149 4150
## 4150 4151
## 4151 4152
## 4153 4154
## 4154 4155
## 4155 4156
## 4156 4157
## 4157 4158
## 4158 4159
## 4159 4160
## 4160 4161
## 4161 4162
## 4162 4163
## 4163 4164
## 4164 4165
## 4165 4166
## 4166 4167
## 4167 4168
## 4168 4169
## 4169 4170
## 4170 4171
## 4171 4172
## 4172 4173
## 4173 4174
## 4174 4175
## 4175 4176
## 4176 4177
## 4177 4178
## 4178 4179
## 4179 4180
## 4180 4181
## 4181 4182
## 4182 4183
## 4183 4184
## 4184 4185
## 4185 4186
## 4186 4187
## 4187 4188
## 4188 4189
## 4189 4190
## 4190 4191
## 4191 4192
## 4192 4193
## 4193 4194
## 4194 4195
## 4195 4196
## 4196 4197
## 4197 4198
## 4198 4199
## 4199 4200
## 4201 4202
## 4202 4203
## 4203 4204
## 4204 4205
## 4205 4206
## 4206 4207
## 4207 4208
## 4208 4209
## 4209 4210
## 4210 4211
## 4211 4212
## 4212 4213
## 4213 4214
## 4214 4215
## 4215 4216
## 4216 4217
## 4217 4218
## 4218 4219
## 4219 4220
## 4220 4221
## 4221 4222
## 4222 4223
## 4223 4224
## 4224 4225
## 4225 4226
## 4226 4227
## 4227 4228
## 4228 4229
## 4229 4230
## 4230 4231
## 4231 4232
## 4232 4233
## 4234 4235
## 4235 4236
## 4236 4237
## 4237 4238
## 4238 4239
## 4239 4240
## 4240 4241
## 4241 4242
## 4242 4243
## 4243 4244
## 4244 4245
## 4245 4246
## 4246 4247
## 4247 4248
## 4248 4249
## 4249 4250
## 4250 4251
## 4251 4252
## 4252 4253
## 4253 4254
## 4254 4255
## 4255 4256
## 4256 4257
## 4257 4258
## 4258 4259
## 4259 4260
## 4260 4261
## 4261 4262
## 4262 4263
## 4263 4264
## 4264 4265
## 4265 4266
## 4266 4267
## 4267 4268
## 4268 4269
## 4269 4270
## 4270 4271
## 4271 4272
## 4272 4273
## 4273 4274
## 4274 4275
## 4275 4276
## 4276 4277
## 4277 4278
## 4278 4279
## 4279 4280
## 4280 4281
## 4281 4282
## 4282 4283
## 4283 4284
## 4284 4285
## 4285 4286
## 4286 4287
## 4287 4288
## 4288 4289
## 4289 4290
## 4290 4291
## 4291 4292
## 4292 4293
## 4293 4294
## 4294 4295
## 4295 4296
## 4296 4297
## 4297 4298
## 4298 4299
## 4299 4300
## 4300 4301
## 4301 4302
## 4302 4303
## 4303 4304
## 4304 4305
## 4305 4306
## 4306 4307
## 4307 4308
## 4308 4309
## 4309 4310
## 4310 4311
## 4311 4312
## 4312 4313
## 4313 4314
## 4314 4315
## 4315 4316
## 4316 4317
## 4317 4318
## 4318 4319
## 4319 4320
## 4320 4321
## 4321 4322
## 4322 4323
## 4323 4324
## 4324 4325
## 4325 4326
## 4326 4327
## 4327 4328
## 4328 4329
## 4329 4330
## 4330 4331
## 4332 4333
## 4333 4334
## 4334 4335
## 4335 4336
## 4336 4337
## 4337 4338
## 4338 4339
## 4339 4340
## 4340 4341
## 4341 4342
## 4342 4343
## 4343 4344
## 4344 4345
## 4345 4346
## 4346 4347
## 4347 4348
## 4348 4349
## 4349 4350
## 4350 4351
## 4351 4352
## 4352 4353
## 4353 4354
## 4354 4355
## 4355 4356
## 4356 4357
## 4357 4358
## 4358 4359
## 4359 4360
## 4360 4361
## 4361 4362
## 4362 4363
## 4363 4364
## 4364 4365
## 4365 4366
## 4366 4367
## 4367 4368
## 4368 4369
## 4369 4370
## 4370 4371
## 4371 4372
## 4372 4373
## 4373 4374
## 4374 4375
## 4375 4376
## 4376 4377
## 4377 4378
## 4378 4379
## 4380 4381
## 4382 4383
## 4383 4384
## 4384 4385
## 4385 4386
## 4386 4387
## 4387 4388
## 4388 4389
## 4389 4390
## 4390 4391
## 4391 4392
## 4392 4393
## 4393 4394
## 4394 4395
## 4395 4396
## 4396 4397
## 4397 4398
## 4398 4399
## 4399 4400
## 4400 4401
## 4401 4402
## 4402 4403
## 4403 4404
## 4404 4405
## 4405 4406
## 4406 4407
## 4407 4408
## 4408 4409
## 4409 4410
## 4410 4411
## 4411 4412
## 4412 4413
## 4413 4414
## 4414 4415
## 4415 4416
## 4416 4417
## 4417 4418
## 4418 4419
## 4419 4420
## 4420 4421
## 4421 4422
## 4422 4423
## 4423 4424
## 4424 4425
## 4425 4426
## 4426 4427
## 4427 4428
## 4428 4429
## 4429 4430
## 4430 4431
## 4431 4432
## 4432 4433
## 4433 4434
## 4434 4435
## 4435 4436
## 4436 4437
## 4437 4438
## 4438 4439
## 4439 4440
## 4440 4441
## 4441 4442
## 4442 4443
## 4443 4444
## 4444 4445
## 4445 4446
## 4446 4447
## 4447 4448
## 4448 4449
## 4449 4450
## 4450 4451
## 4451 4452
## 4452 4453
## 4453 4454
## 4454 4455
## 4455 4456
## 4456 4457
## 4457 4458
## 4458 4459
## 4459 4460
## 4460 4461
## 4461 4462
## 4462 4463
## 4463 4464
## 4464 4465
## 4465 4466
## 4466 4467
## 4467 4468
## 4468 4469
## 4469 4470
## 4471 4472
## 4472 4473
## 4474 4475
## 4475 4476
## 4476 4477
## 4477 4478
## 4478 4479
## 4479 4480
## 4480 4481
## 4481 4482
## 4482 4483
## 4483 4484
## 4484 4485
## 4485 4486
## 4486 4487
## 4487 4488
## 4488 4489
## 4489 4490
## 4490 4491
## 4491 4492
## 4492 4493
## 4493 4494
## 4494 4495
## 4495 4496
## 4496 4497
## 4497 4498
## 4498 4499
## 4499 4500
## 4500 4501
## 4501 4502
## 4502 4503
## 4503 4504
## 4504 4505
## 4505 4506
## 4506 4507
## 4507 4508
## 4508 4509
## 4509 4510
## 4510 4511
## 4511 4512
## 4512 4513
## 4513 4514
## 4514 4515
## 4515 4516
## 4516 4517
## 4517 4518
## 4518 4519
## 4519 4520
## 4520 4521
## 4521 4522
## 4522 4523
## 4523 4524
## 4524 4525
## 4525 4526
## 4526 4527
## 4527 4528
## 4528 4529
## 4529 4530
## 4530 4531
## 4531 4532
## 4532 4533
## 4533 4534
## 4534 4535
## 4535 4536
## 4536 4537
## 4538 4539
## 4539 4540
## 4540 4541
## 4541 4542
## 4542 4543
## 4543 4544
## 4544 4545
## 4545 4546
## 4546 4547
## 4547 4548
## 4548 4549
## 4549 4550
## 4550 4551
## 4551 4552
## 4552 4553
## 4553 4554
## 4554 4555
## 4555 4556
## 4556 4557
## 4557 4558
## 4558 4559
## 4559 4560
## 4560 4561
## 4561 4562
## 4562 4563
## 4563 4564
## 4564 4565
## 4565 4566
## 4566 4567
## 4567 4568
## 4568 4569
## 4569 4570
## 4570 4571
## 4571 4572
## 4572 4573
## 4573 4574
## 4574 4575
## 4575 4576
## 4576 4577
## 4577 4578
## 4578 4579
## 4579 4580
## 4580 4581
## 4581 4582
## 4582 4583
## 4583 4584
## 4584 4585
## 4585 4586
## 4586 4587
## 4587 4588
## 4588 4589
## 4589 4590
## 4590 4591
## 4591 4592
## 4592 4593
## 4593 4594
## 4594 4595
## 4595 4596
## 4596 4597
## 4597 4598
## 4598 4599
## 4599 4600
## 4600 4601
## 4601 4602
## 4602 4603
## 4603 4604
## 4604 4605
## 4605 4606
## 4606 4607
## 4607 4608
## 4608 4609
## 4609 4610
## 4610 4611
## 4611 4612
## 4612 4613
## 4613 4614
## 4614 4615
## 4615 4616
## 4616 4617
## 4617 4618
## 4618 4619
## 4619 4620
## 4620 4621
## 4621 4622
## 4622 4623
## 4623 4624
## 4624 4625
## 4625 4626
## 4626 4627
## 4627 4628
## 4628 4629
## 4629 4630
## 4630 4631
## 4631 4632
## 4632 4633
## 4633 4634
## 4634 4635
## 4635 4636
## 4636 4637
## 4637 4638
## 4638 4639
## 4639 4640
## 4640 4641
## 4641 4642
## 4642 4643
## 4643 4644
## 4644 4645
## 4645 4646
## 4646 4647
## 4647 4648
## 4648 4649
## 4649 4650
## 4650 4651
## 4651 4652
## 4652 4653
## 4653 4654
## 4654 4655
## 4655 4656
## 4656 4657
## 4657 4658
## 4658 4659
## 4659 4660
## 4660 4661
## 4661 4662
## 4662 4663
## 4663 4664
## 4664 4665
## 4665 4666
## 4666 4667
## 4667 4668
## 4668 4669
## 4669 4670
## 4670 4671
## 4671 4672
## 4672 4673
## 4673 4674
## 4674 4675
## 4675 4676
## 4676 4677
## 4677 4678
## 4678 4679
## 4679 4680
## 4680 4681
## 4681 4682
## 4682 4683
## 4683 4684
## 4685 4686
## 4686 4687
## 4687 4688
## 4688 4689
## 4689 4690
## 4690 4691
## 4691 4692
## 4692 4693
## 4693 4694
## 4694 4695
## 4695 4696
## 4696 4697
## 4697 4698
## 4698 4699
## 4699 4700
## 4700 4701
## 4701 4702
## 4702 4703
## 4703 4704
## 4704 4705
## 4705 4706
## 4706 4707
## 4707 4708
## 4708 4709
## 4709 4710
## 4710 4711
## 4711 4712
## 4712 4713
## 4713 4714
## 4714 4715
## 4715 4716
## 4716 4717
## 4717 4718
## 4718 4719
## 4719 4720
## 4720 4721
## 4721 4722
## 4722 4723
## 4723 4724
## 4724 4725
## 4725 4726
## 4726 4727
## 4727 4728
## 4728 4729
## 4729 4730
## 4730 4731
## 4731 4732
## 4732 4733
## 4733 4734
## 4734 4735
## 4735 4736
## 4736 4737
## 4737 4738
## 4738 4739
## 4739 4740
## 4740 4741
## 4741 4742
## 4742 4743
## 4743 4744
## 4744 4745
## 4745 4746
## 4746 4747
## 4747 4748
## 4748 4749
## 4749 4750
## 4750 4751
## 4751 4752
## 4752 4753
## 4753 4754
## 4754 4755
## 4755 4756
## 4756 4757
## 4757 4758
## 4758 4759
## 4759 4760
## 4760 4761
## 4761 4762
## 4762 4763
## 4763 4764
## 4764 4765
## 4765 4766
## 4766 4767
## 4767 4768
## 4768 4769
## 4769 4770
## 4770 4771
## 4771 4772
## 4772 4773
## 4773 4774
## 4774 4775
## 4775 4776
## 4776 4777
## 4777 4778
## 4778 4779
## 4779 4780
## 4780 4781
## 4781 4782
## 4782 4783
## 4783 4784
## 4784 4785
## 4785 4786
## 4786 4787
## 4787 4788
## 4788 4789
## 4789 4790
## 4790 4791
## 4791 4792
## 4793 4794
## 4794 4795
## 4795 4796
## 4796 4797
## 4797 4798
## 4799 4800
## 4800 4801
## 4801 4802
## 4802 4803
## 4803 4804
## 4804 4805
## 4805 4806
## 4806 4807
## 4807 4808
## 4808 4809
## 4809 4810
## 4810 4811
## 4811 4812
## 4812 4813
## 4813 4814
## 4814 4815
## 4815 4816
## 4816 4817
## 4817 4818
## 4818 4819
## 4819 4820
## 4820 4821
## 4821 4822
## 4822 4823
## 4823 4824
## 4824 4825
## 4825 4826
## 4826 4827
## 4827 4828
## 4828 4829
## 4829 4830
## 4830 4831
## 4831 4832
## 4832 4833
## 4833 4834
## 4834 4835
## 4835 4836
## 4836 4837
## 4837 4838
## 4838 4839
## 4839 4840
## 4840 4841
## 4841 4842
## 4842 4843
## 4843 4844
## 4844 4845
## 4845 4846
## 4846 4847
## 4847 4848
## 4848 4849
## 4849 4850
## 4850 4851
## 4851 4852
## 4852 4853
## 4853 4854
## 4854 4855
## 4855 4856
## 4856 4857
## 4857 4858
## 4858 4859
## 4860 4861
## 4861 4862
## 4862 4863
## 4863 4864
## 4864 4865
## 4865 4866
## 4867 4868
## 4868 4869
## 4869 4870
## 4870 4871
## 4871 4872
## 4872 4873
## 4873 4874
## 4874 4875
## 4875 4876
## 4876 4877
## 4877 4878
## 4878 4879
## 4879 4880
## 4880 4881
## 4881 4882
## 4882 4883
## 4883 4884
## 4884 4885
## 4885 4886
## 4886 4887
## 4887 4888
## 4888 4889
## 4889 4890
## 4890 4891
## 4891 4892
## 4892 4893
## 4893 4894
## 4894 4895
## 4895 4896
## 4896 4897
## 4897 4898
## 4898 4899
## 4899 4900
## 4900 4901
## 4901 4902
## 4902 4903
## 4903 4904
## 4904 4905
## 4905 4906
## 4906 4907
## 4907 4908
## 4908 4909
## 4909 4910
## 4910 4911
## 4911 4912
## 4912 4913
## 4913 4914
## 4914 4915
## 4915 4916
## 4916 4917
## 4917 4918
## 4918 4919
## 4919 4920
## 4920 4921
## 4921 4922
## 4922 4923
## 4923 4924
## 4924 4925
## 4925 4926
## 4926 4927
## 4927 4928
## 4928 4929
## 4929 4930
## 4930 4931
## 4931 4932
## 4932 4933
## 4933 4934
## 4934 4935
## 4936 4937
## 4937 4938
## 4938 4939
## 4939 4940
## 4940 4941
## 4941 4942
## 4942 4943
## 4943 4944
## 4944 4945
## 4945 4946
## 4946 4947
## 4947 4948
## 4948 4949
## 4949 4950
## 4950 4951
## 4951 4952
## 4952 4953
## 4953 4954
## 4954 4955
## 4955 4956
## 4956 4957
## 4957 4958
## 4958 4959
## 4959 4960
## 4960 4961
## 4961 4962
## 4962 4963
## 4963 4964
## 4964 4965
## 4965 4966
## 4966 4967
## 4967 4968
## 4968 4969
## 4969 4970
## 4970 4971
## 4971 4972
## 4972 4973
## 4973 4974
## 4974 4975
## 4975 4976
## 4976 4977
## 4977 4978
## 4978 4979
## 4979 4980
## 4980 4981
## 4981 4982
## 4982 4983
## 4983 4984
## 4984 4985
## 4985 4986
## 4986 4987
## 4987 4988
## 4988 4989
## 4989 4990
## 4990 4991
## 4991 4992
## 4992 4993
## 4993 4994
## 4994 4995
## 4995 4996
## 4996 4997
## 4997 4998
## 4998 4999
## 4999 5000
## 5000 5001
## 5001 5002
## 5002 5003
## 5003 5004
## 5004 5005
## 5005 5006
## 5006 5007
## 5007 5008
## 5008 5009
## 5009 5010
## 5010 5011
## 5011 5012
## 5012 5013
## 5013 5014
## 5014 5015
## 5015 5016
## 5016 5017
## 5017 5018
## 5018 5019
## 5019 5020
## 5020 5021
## 5021 5022
## 5022 5023
## 5023 5024
## 5024 5025
## 5025 5026
## 5026 5027
## 5027 5028
## 5028 5029
## 5029 5030
## 5030 5031
## 5031 5032
## 5032 5033
## 5033 5034
## 5034 5035
## 5035 5036
## 5036 5037
## 5037 5038
## 5038 5039
## 5039 5040
## 5040 5041
## 5041 5042
## 5042 5043
## 5043 5044
## 5044 5045
## 5045 5046
## 5046 5047
## 5047 5048
## 5048 5049
## 5049 5050
## 5050 5051
## 5051 5052
## 5052 5053
## 5053 5054
## 5054 5055
## 5055 5056
## 5056 5057
## 5057 5058
## 5058 5059
## 5059 5060
## 5060 5061
## 5061 5062
## 5063 5064
## 5064 5065
## 5065 5066
## 5066 5067
## 5067 5068
## 5068 5069
## 5069 5070
## 5070 5071
## 5071 5072
## 5072 5073
## 5073 5074
## 5074 5075
## 5075 5076
## 5076 5077
## 5077 5078
## 5078 5079
## 5080 5081
## 5081 5082
## 5082 5083
## 5083 5084
## 5084 5085
## 5085 5086
## 5086 5087
## 5087 5088
## 5088 5089
## 5089 5090
## 5090 5091
## 5091 5092
## 5092 5093
## 5093 5094
## 5094 5095
## 5095 5096
## 5096 5097
## 5097 5098
## 5098 5099
## 5099 5100
## 5100 5101
## 5101 5102
## 5102 5103
## 5103 5104
## 5104 5105
## 5105 5106
## 5106 5107
## 5107 5108
## 5108 5109
## 5109 5110
## 5110 5111
## 5111 5112
## 5112 5113
## 5113 5114
## 5114 5115
## 5115 5116
## 5116 5117
## 5117 5118
## 5118 5119
## 5119 5120
## 5120 5121
## 5121 5122
## 5122 5123
## 5123 5124
## 5124 5125
## 5125 5126
## 5126 5127
## 5127 5128
## 5128 5129
## 5129 5130
## 5130 5131
## 5131 5132
## 5132 5133
## 5133 5134
## 5134 5135
## 5135 5136
## 5136 5137
## 5137 5138
## 5138 5139
## 5139 5140
## 5140 5141
## 5141 5142
## 5142 5143
## 5143 5144
## 5144 5145
## 5145 5146
## 5146 5147
## 5147 5148
## 5148 5149
## 5149 5150
## 5150 5151
## 5151 5152
## 5152 5153
## 5153 5154
## 5154 5155
## 5155 5156
## 5156 5157
## 5157 5158
## 5158 5159
## 5159 5160
## 5160 5161
## 5161 5162
## 5162 5163
## 5164 5165
## 5165 5166
## 5166 5167
## 5167 5168
## 5168 5169
## 5169 5170
## 5170 5171
## 5171 5172
## 5173 5174
## 5174 5175
## 5175 5176
## 5176 5177
## 5177 5178
## 5178 5179
## 5179 5180
## 5180 5181
## 5181 5182
## 5182 5183
## 5183 5184
## 5184 5185
## 5185 5186
## 5186 5187
## 5187 5188
## 5188 5189
## 5189 5190
## 5190 5191
## 5191 5192
## 5192 5193
## 5193 5194
## 5194 5195
## 5195 5196
## 5198 5199
## 5199 5200
## 5200 5201
## 5201 5202
## 5202 5203
## 5203 5204
## 5204 5205
## 5205 5206
## 5206 5207
## 5207 5208
## 5208 5209
## 5209 5210
## 5210 5211
## 5211 5212
## 5212 5213
## 5213 5214
## 5214 5215
## 5215 5216
## 5216 5217
## 5217 5218
## 5218 5219
## 5219 5220
## 5220 5221
## 5221 5222
## 5222 5223
## 5223 5224
## 5224 5225
## 5225 5226
## 5226 5227
## 5227 5228
## 5228 5229
## 5229 5230
## 5230 5231
## 5231 5232
## 5232 5233
## 5233 5234
## 5234 5235
## 5235 5236
## 5236 5237
## 5237 5238
## 5238 5239
## 5239 5240
## 5240 5241
## 5242 5243
## 5243 5244
## 5244 5245
## 5245 5246
## 5246 5247
## 5247 5248
## 5248 5249
## 5249 5250
## 5250 5251
## 5251 5252
## 5252 5253
## 5253 5254
## 5254 5255
## 5255 5256
## 5256 5257
## 5257 5258
## 5258 5259
## 5259 5260
## 5260 5261
## 5261 5262
## 5262 5263
## 5263 5264
## 5264 5265
## 5265 5266
## 5266 5267
## 5267 5268
## 5268 5269
## 5269 5270
## 5270 5271
## 5271 5272
## 5272 5273
## 5273 5274
## 5274 5275
## 5275 5276
## 5276 5277
## 5277 5278
## 5278 5279
## 5279 5280
## 5280 5281
## 5281 5282
## 5282 5283
## 5283 5284
## 5284 5285
## 5285 5286
## 5286 5287
## 5287 5288
## 5288 5289
## 5289 5290
## 5290 5291
## 5291 5292
## 5292 5293
## 5293 5294
## 5294 5295
## 5295 5296
## 5296 5297
## 5297 5298
## 5298 5299
## 5299 5300
## 5300 5301
## 5301 5302
## 5302 5303
## 5304 5305
## 5305 5306
## 5306 5307
## 5307 5308
## 5308 5309
## 5309 5310
## 5310 5311
## 5311 5312
## 5312 5313
## 5313 5314
## 5314 5315
## 5315 5316
## 5316 5317
## 5317 5318
## 5318 5319
## 5319 5320
## 5320 5321
## 5321 5322
## 5322 5323
## 5323 5324
## 5324 5325
## 5325 5326
## 5326 5327
## 5327 5328
## 5328 5329
## 5329 5330
## 5330 5331
## 5331 5332
## 5332 5333
## 5333 5334
## 5334 5335
## 5335 5336
## 5336 5337
## 5337 5338
## 5338 5339
## 5339 5340
## 5340 5341
## 5341 5342
## 5342 5343
## 5343 5344
## 5344 5345
## 5345 5346
## 5346 5347
## 5347 5348
## 5348 5349
## 5349 5350
## 5350 5351
## 5351 5352
## 5352 5353
## 5353 5354
## 5354 5355
## 5355 5356
## 5356 5357
## 5357 5358
## 5358 5359
## 5359 5360
## 5360 5361
## 5361 5362
## 5362 5363
## 5363 5364
## 5364 5365
## 5365 5366
## 5366 5367
## 5367 5368
## 5368 5369
## 5369 5370
## 5370 5371
## 5371 5372
## 5372 5373
## 5373 5374
## 5374 5375
## 5375 5376
## 5376 5377
## 5377 5378
## 5378 5379
## 5379 5380
## 5380 5381
## 5381 5382
## 5382 5383
## 5383 5384
## 5384 5385
## 5385 5386
## 5386 5387
## 5387 5388
## 5388 5389
## 5389 5390
## 5390 5391
## 5391 5392
## 5392 5393
## 5393 5394
## 5394 5395
## 5395 5396
## 5396 5397
## 5397 5398
## 5398 5399
## 5399 5400
## 5400 5401
## 5401 5402
## 5402 5403
## 5403 5404
## 5404 5405
## 5405 5406
## 5406 5407
## 5407 5408
## 5408 5409
## 5409 5410
## 5410 5411
## 5411 5412
## 5412 5413
## 5413 5414
## 5414 5415
## 5415 5416
## 5416 5417
## 5417 5418
## 5418 5419
## 5419 5420
## 5420 5421
## 5421 5422
## 5422 5423
## 5423 5424
## 5424 5425
## 5425 5426
## 5426 5427
## 5427 5428
## 5428 5429
## 5429 5430
## 5430 5431
## 5431 5432
## 5432 5433
## 5433 5434
## 5434 5435
## 5435 5436
## 5436 5437
## 5437 5438
## 5438 5439
## 5439 5440
## 5440 5441
## 5441 5442
## 5442 5443
## 5443 5444
## 5444 5445
## 5445 5446
## 5446 5447
## 5447 5448
## 5448 5449
## 5449 5450
## 5450 5451
## 5451 5452
## 5452 5453
## 5453 5454
## 5454 5455
## 5455 5456
## 5456 5457
## 5457 5458
## 5458 5459
## 5459 5460
## 5460 5461
## 5461 5462
## 5462 5463
## 5463 5464
## 5464 5465
## 5465 5466
## 5466 5467
## 5467 5468
## 5468 5469
## 5469 5470
## 5470 5471
## 5471 5472
## 5472 5473
## 5473 5474
## 5474 5475
## 5475 5476
## 5476 5477
## 5477 5478
## 5478 5479
## 5479 5480
## 5480 5481
## 5481 5482
## 5482 5483
## 5483 5484
## 5484 5485
## 5485 5486
## 5486 5487
## 5487 5488
## 5488 5489
## 5489 5490
## 5490 5491
## 5491 5492
## 5492 5493
## 5493 5494
## 5494 5495
## 5495 5496
## 5496 5497
## 5497 5498
## 5498 5499
## 5499 5500
## 5500 5501
## 5501 5502
## 5502 5503
## 5503 5504
## 5504 5505
## 5505 5506
## 5506 5507
## 5507 5508
## 5508 5509
## 5510 5511
## 5511 5512
## 5512 5513
## 5513 5514
## 5514 5515
## 5515 5516
## 5516 5517
## 5517 5518
## 5518 5519
## 5519 5520
## 5520 5521
## 5521 5522
## 5522 5523
## 5523 5524
## 5524 5525
## 5525 5526
## 5526 5527
## 5527 5528
## 5528 5529
## 5529 5530
## 5530 5531
## 5531 5532
## 5532 5533
## 5533 5534
## 5534 5535
## 5535 5536
## 5536 5537
## 5537 5538
## 5538 5539
## 5539 5540
## 5540 5541
## 5541 5542
## 5542 5543
## 5543 5544
## 5544 5545
## 5545 5546
## 5546 5547
## 5547 5548
## 5548 5549
## 5549 5550
## 5550 5551
## 5551 5552
## 5552 5553
## 5553 5554
## 5554 5555
## 5555 5556
## 5556 5557
## 5557 5558
## 5558 5559
## 5559 5560
## 5560 5561
## 5561 5562
## 5562 5563
## 5563 5564
## 5564 5565
## 5565 5566
## 5566 5567
## 5567 5568
## 5568 5569
## 5569 5570
## 5570 5571
## 5571 5572
## 5572 5573
## 5573 5574
## 5574 5575
## 5575 5576
## 5576 5577
## 5577 5578
## 5578 5579
## 5579 5580
## 5580 5581
## 5581 5582
## 5582 5583
## 5583 5584
## 5584 5585
## 5585 5586
## 5586 5587
## 5587 5588
## 5588 5589
## 5589 5590
## 5590 5591
## 5591 5592
## 5592 5593
## 5593 5594
## 5594 5595
## 5595 5596
## 5596 5597
## 5597 5598
## 5598 5599
## 5599 5600
## 5600 5601
## 5601 5602
## 5602 5603
## 5603 5604
## 5604 5605
## 5605 5606
## 5606 5607
## 5607 5608
## 5608 5609
## 5609 5610
## 5610 5611
## 5611 5612
## 5612 5613
## 5613 5614
## 5614 5615
## 5615 5616
## 5616 5617
## 5617 5618
## 5618 5619
## 5620 5621
## 5621 5622
## 5622 5623
## 5623 5624
## 5624 5625
## 5625 5626
## 5627 5628
## 5628 5629
## 5629 5630
## 5630 5631
## 5631 5632
## 5632 5633
## 5633 5634
## 5634 5635
## 5635 5636
## 5636 5637
## 5637 5638
## 5638 5639
## 5639 5640
## 5640 5641
## 5641 5642
## 5642 5643
## 5643 5644
## 5644 5645
## 5645 5646
## 5646 5647
## 5647 5648
## 5648 5649
## 5649 5650
## 5650 5651
## 5651 5652
## 5652 5653
## 5653 5654
## 5654 5655
## 5655 5656
## 5656 5657
## 5657 5658
## 5659 5660
## 5660 5661
## 5661 5662
## 5662 5663
## 5663 5664
## 5664 5665
## 5665 5666
## 5666 5667
## 5667 5668
## 5668 5669
## 5669 5670
## 5671 5672
## 5672 5673
## 5673 5674
## 5674 5675
## 5675 5676
## 5676 5677
## 5677 5678
## 5678 5679
## 5679 5680
## 5680 5681
## 5681 5682
## 5682 5683
## 5683 5684
## 5684 5685
## 5685 5686
## 5686 5687
## 5687 5688
## 5688 5689
## 5689 5690
## 5690 5691
## 5691 5692
## 5692 5693
## 5693 5694
## 5694 5695
## 5695 5696
## 5696 5697
## 5697 5698
## 5698 5699
## 5699 5700
## 5700 5701
## 5701 5702
## 5702 5703
## 5703 5704
## 5704 5705
## 5705 5706
## 5706 5707
## 5707 5708
## 5708 5709
## 5709 5710
## 5710 5711
## 5711 5712
## 5712 5713
## 5713 5714
## 5714 5715
## 5715 5716
## 5716 5717
## 5717 5718
## 5718 5719
## 5719 5720
## 5720 5721
## 5721 5722
## 5722 5723
## 5723 5724
## 5724 5725
## 5725 5726
## 5726 5727
## 5727 5728
## 5728 5729
## 5729 5730
## 5730 5731
## 5731 5732
## 5732 5733
## 5733 5734
## 5734 5735
## 5735 5736
## 5736 5737
## 5737 5738
## 5738 5739
## 5739 5740
## 5740 5741
## 5741 5742
## 5742 5743
## 5743 5744
## 5744 5745
## 5745 5746
## 5746 5747
## 5747 5748
## 5748 5749
## 5749 5750
## 5750 5751
## 5751 5752
## 5752 5753
## 5753 5754
## 5754 5755
## 5755 5756
## 5756 5757
## 5757 5758
## 5758 5759
## 5759 5760
## 5760 5761
## 5761 5762
## 5762 5763
## 5763 5764
## 5764 5765
## 5765 5766
## 5766 5767
## 5767 5768
## 5768 5769
## 5769 5770
## 5771 5772
## 5772 5773
## 5773 5774
## 5774 5775
## 5775 5776
## 5776 5777
## 5777 5778
## 5778 5779
## 5779 5780
## 5780 5781
## 5781 5782
## 5782 5783
## 5783 5784
## 5784 5785
## 5785 5786
## 5786 5787
## 5787 5788
## 5788 5789
## 5789 5790
## 5790 5791
## 5791 5792
## 5792 5793
## 5793 5794
## 5794 5795
## 5795 5796
## 5796 5797
## 5797 5798
## 5798 5799
## 5800 5801
## 5801 5802
## 5802 5803
## 5803 5804
## 5804 5805
## 5805 5806
## 5806 5807
## 5807 5808
## 5808 5809
## 5809 5810
## 5810 5811
## 5811 5812
## 5812 5813
## 5813 5814
## 5814 5815
## 5815 5816
## 5816 5817
## 5817 5818
## 5818 5819
## 5819 5820
## 5820 5821
## 5821 5822
## 5822 5823
## 5823 5824
## 5824 5825
## 5825 5826
## 5826 5827
## 5827 5828
## 5828 5829
## 5829 5830
## 5830 5831
## 5831 5832
## 5832 5833
## 5833 5834
## 5834 5835
## 5835 5836
## 5836 5837
## 5837 5838
## 5838 5839
## 5840 5841
## 5841 5842
## 5842 5843
## 5843 5844
## 5844 5845
## 5845 5846
## 5846 5847
## 5847 5848
## 5848 5849
## 5849 5850
## 5850 5851
## 5851 5852
## 5852 5853
## 5853 5854
## 5854 5855
## 5855 5856
## 5856 5857
## 5857 5858
## 5858 5859
## 5859 5860
## 5860 5861
## 5861 5862
## 5863 5864
## 5864 5865
## 5865 5866
## 5866 5867
## 5867 5868
## 5868 5869
## 5869 5870
## 5870 5871
## 5872 5873
## 5873 5874
## 5874 5875
## 5875 5876
## 5876 5877
## 5877 5878
## 5878 5879
## 5879 5880
## 5880 5881
## 5881 5882
## 5882 5883
## 5883 5884
## 5884 5885
## 5885 5886
## 5886 5887
## 5887 5888
## 5888 5889
## 5889 5890
## 5890 5891
## 5891 5892
## 5892 5893
## 5893 5894
## 5894 5895
## 5895 5896
## 5896 5897
## 5897 5898
## 5898 5899
## 5899 5900
## 5900 5901
## 5901 5902
## 5903 5904
## 5904 5905
## 5905 5906
## 5906 5907
## 5907 5908
## 5908 5909
## 5909 5910
## 5910 5911
## 5911 5912
## 5912 5913
## 5913 5914
## 5915 5916
## 5916 5917
## 5917 5918
## 5918 5919
## 5919 5920
## 5920 5921
## 5921 5922
## 5922 5923
## 5923 5924
## 5924 5925
## 5925 5926
## 5926 5927
## 5927 5928
## 5928 5929
## 5929 5930
## 5930 5931
## 5931 5932
## 5932 5933
## 5933 5934
## 5934 5935
## 5935 5936
## 5936 5937
## 5937 5938
## 5938 5939
## 5939 5940
## 5940 5941
## 5941 5942
## 5942 5943
## 5943 5944
## 5944 5945
## 5945 5946
## 5946 5947
## 5947 5948
## 5948 5949
## 5949 5950
## 5950 5951
## 5951 5952
## 5952 5953
## 5953 5954
## 5954 5955
## 5955 5956
## 5956 5957
## 5957 5958
## 5958 5959
## 5959 5960
## 5960 5961
## 5961 5962
## 5962 5963
## 5963 5964
## 5964 5965
## 5965 5966
## 5966 5967
## 5967 5968
## 5968 5969
## 5969 5970
## 5970 5971
## 5971 5972
## 5972 5973
## 5973 5974
## 5974 5975
## 5975 5976
## 5976 5977
## 5977 5978
## 5978 5979
## 5979 5980
## 5980 5981
## 5981 5982
## 5982 5983
## 5983 5984
## 5984 5985
## 5985 5986
## 5986 5987
## 5987 5988
## 5988 5989
## 5989 5990
## 5990 5991
## 5991 5992
## 5992 5993
## 5993 5994
## 5994 5995
## 5995 5996
## 5996 5997
## 5997 5998
## 5998 5999
## 5999 6000
## 6000 6001
## 6001 6002
## 6002 6003
## 6003 6004
## 6004 6005
## 6005 6006
## 6006 6007
## 6007 6008
## 6008 6009
## 6009 6010
## 6010 6011
## 6011 6012
## 6012 6013
## 6013 6014
## 6014 6015
## 6015 6016
## 6016 6017
## 6017 6018
## 6018 6019
## 6019 6020
## 6020 6021
## 6021 6022
## 6022 6023
## 6023 6024
## 6024 6025
## 6025 6026
## 6026 6027
## 6027 6028
## 6028 6029
## 6029 6030
## 6030 6031
## 6031 6032
## 6032 6033
## 6033 6034
## 6034 6035
## 6035 6036
## 6036 6037
## 6037 6038
## 6038 6039
## 6039 6040
## 6040 6041
## 6041 6042
## 6042 6043
## 6044 6045
## 6045 6046
## 6046 6047
## 6047 6048
## 6048 6049
## 6049 6050
## 6050 6051
## 6051 6052
## 6052 6053
## 6053 6054
## 6054 6055
## 6055 6056
## 6056 6057
## 6057 6058
## 6058 6059
## 6059 6060
## 6060 6061
## 6061 6062
## 6062 6063
## 6063 6064
## 6064 6065
## 6065 6066
## 6066 6067
## 6067 6068
## 6068 6069
## 6069 6070
## 6070 6071
## 6071 6072
## 6072 6073
## 6073 6074
## 6074 6075
## 6075 6076
## 6076 6077
## 6077 6078
## 6078 6079
## 6079 6080
## 6080 6081
## 6081 6082
## 6082 6083
## 6083 6084
## 6084 6085
## 6085 6086
## 6086 6087
## 6087 6088
## 6088 6089
## 6089 6090
## 6090 6091
## 6091 6092
## 6092 6093
## 6093 6094
## 6094 6095
## 6095 6096
## 6096 6097
## 6097 6098
## 6098 6099
## 6099 6100
## 6100 6101
## 6101 6102
## 6102 6103
## 6103 6104
## 6104 6105
## 6105 6106
## 6106 6107
## 6107 6108
## 6108 6109
## 6109 6110
## 6110 6111
## 6111 6112
## 6112 6113
## 6113 6114
## 6114 6115
## 6115 6116
## 6116 6117
## 6117 6118
## 6118 6119
## 6119 6120
## 6120 6121
## 6121 6122
## 6122 6123
## 6123 6124
## 6124 6125
## 6125 6126
## 6127 6128
## 6128 6129
## 6129 6130
## 6130 6131
## 6131 6132
## 6132 6133
## 6133 6134
## 6134 6135
## 6135 6136
## 6136 6137
## 6137 6138
## 6138 6139
## 6139 6140
## 6140 6141
## 6141 6142
## 6142 6143
## 6143 6144
## 6144 6145
## 6145 6146
## 6146 6147
## 6147 6148
## 6148 6149
## 6149 6150
## 6150 6151
## 6151 6152
## 6152 6153
## 6153 6154
## 6155 6156
## 6156 6157
## 6157 6158
## 6158 6159
## 6159 6160
## 6160 6161
## 6161 6162
## 6162 6163
## 6163 6164
## 6164 6165
## 6165 6166
## 6166 6167
## 6167 6168
## 6168 6169
## 6169 6170
## 6170 6171
## 6171 6172
## 6172 6173
## 6173 6174
## 6174 6175
## 6175 6176
## 6176 6177
## 6177 6178
## 6178 6179
## 6179 6180
## 6180 6181
## 6181 6182
## 6182 6183
## 6183 6184
## 6184 6185
## 6185 6186
## 6186 6187
## 6187 6188
## 6188 6189
## 6189 6190
## 6190 6191
## 6191 6192
## 6192 6193
## 6193 6194
## 6194 6195
## 6195 6196
## 6197 6198
## 6198 6199
## 6199 6200
## 6200 6201
## 6201 6202
## 6202 6203
## 6203 6204
## 6204 6205
## 6205 6206
## 6206 6207
## 6207 6208
## 6208 6209
## 6209 6210
## 6210 6211
## 6211 6212
## 6213 6214
## 6214 6215
## 6215 6216
## 6216 6217
## 6217 6218
## 6218 6219
## 6219 6220
## 6220 6221
## 6221 6222
## 6222 6223
## 6223 6224
## 6224 6225
## 6225 6226
## 6226 6227
## 6227 6228
## 6228 6229
## 6229 6230
## 6230 6231
## 6231 6232
## 6232 6233
## 6233 6234
## 6234 6235
## 6235 6236
## 6236 6237
## 6237 6238
## 6238 6239
## 6239 6240
## 6240 6241
## 6241 6242
## 6242 6243
## 6243 6244
## 6244 6245
## 6245 6246
## 6246 6247
## 6247 6248
## 6248 6249
## 6249 6250
## 6250 6251
## 6251 6252
## 6252 6253
## 6253 6254
## 6254 6255
## 6255 6256
## 6256 6257
## 6257 6258
## 6258 6259
## 6259 6260
## 6260 6261
## 6261 6262
## 6262 6263
## 6263 6264
## 6264 6265
## 6265 6266
## 6266 6267
## 6267 6268
## 6268 6269
## 6269 6270
## 6270 6271
## 6271 6272
## 6272 6273
## 6274 6275
## 6275 6276
## 6276 6277
## 6277 6278
## 6278 6279
## 6279 6280
## 6280 6281
## 6281 6282
## 6282 6283
## 6283 6284
## 6285 6286
## 6286 6287
## 6287 6288
## 6288 6289
## 6289 6290
## 6290 6291
## 6291 6292
## 6292 6293
## 6293 6294
## 6294 6295
## 6295 6296
## 6296 6297
## 6297 6298
## 6298 6299
## 6299 6300
## 6300 6301
## 6301 6302
## 6302 6303
## 6303 6304
## 6304 6305
## 6305 6306
## 6306 6307
## 6307 6308
## 6308 6309
## 6309 6310
## 6310 6311
## 6311 6312
## 6312 6313
## 6313 6314
## 6314 6315
## 6316 6317
## 6318 6319
## 6319 6320
## 6321 6322
## 6322 6323
## 6323 6324
## 6324 6325
## 6325 6326
## 6326 6327
## 6327 6328
## 6328 6329
## 6329 6330
## 6330 6331
## 6331 6332
## 6332 6333
## 6333 6334
## 6334 6335
## 6335 6336
## 6336 6337
## 6337 6338
## 6338 6339
## 6339 6340
## 6340 6341
## 6341 6342
## 6342 6343
## 6343 6344
## 6344 6345
## 6345 6346
## 6346 6347
## 6347 6348
## 6348 6349
## 6349 6350
## 6350 6351
## 6351 6352
## 6352 6353
## 6353 6354
## 6354 6355
## 6355 6356
## 6356 6357
## 6357 6358
## 6358 6359
## 6359 6360
## 6360 6361
## 6361 6362
## 6362 6363
## 6363 6364
## 6364 6365
## 6365 6366
## 6366 6367
## 6367 6368
## 6368 6369
## 6369 6370
## 6370 6371
## 6371 6372
## 6372 6373
## 6373 6374
## 6374 6375
## 6375 6376
## 6376 6377
## 6377 6378
## 6378 6379
## 6379 6380
## 6380 6381
## 6381 6382
## 6382 6383
## 6383 6384
## 6384 6385
## 6385 6386
## 6386 6387
## 6387 6388
## 6388 6389
## 6389 6390
## 6390 6391
## 6391 6392
## 6392 6393
## 6393 6394
## 6394 6395
## 6395 6396
## 6396 6397
## 6397 6398
## 6398 6399
## 6399 6400
## 6400 6401
## 6401 6402
## 6403 6404
## 6404 6405
## 6405 6406
## 6406 6407
## 6407 6408
## 6408 6409
## 6409 6410
## 6410 6411
## 6411 6412
## 6412 6413
## 6413 6414
## 6414 6415
## 6415 6416
## 6416 6417
## 6417 6418
## 6418 6419
## 6419 6420
## 6420 6421
## 6421 6422
## 6422 6423
## 6423 6424
## 6424 6425
## 6425 6426
## 6426 6427
## 6427 6428
## 6428 6429
## 6429 6430
## 6430 6431
## 6431 6432
## 6432 6433
## 6433 6434
## 6434 6435
## 6435 6436
## 6436 6437
## 6437 6438
## 6438 6439
## 6439 6440
## 6440 6441
## 6441 6442
## 6442 6443
## 6443 6444
## 6444 6445
## 6445 6446
## 6446 6447
## 6447 6448
## 6448 6449
## 6449 6450
## 6450 6451
## 6451 6452
## 6452 6453
## 6453 6454
## 6454 6455
## 6455 6456
## 6456 6457
## 6457 6458
## 6458 6459
## 6459 6460
## 6460 6461
## 6461 6462
## 6462 6463
## 6463 6464
## 6464 6465
## 6465 6466
## 6466 6467
## 6467 6468
## 6468 6469
## 6469 6470
## 6470 6471
## 6471 6472
## 6472 6473
## 6473 6474
## 6474 6475
## 6475 6476
## 6476 6477
## 6477 6478
## 6478 6479
## 6479 6480
## 6480 6481
## 6481 6482
## 6482 6483
## 6483 6484
## 6484 6485
## 6485 6486
## 6486 6487
## 6487 6488
## 6488 6489
## 6489 6490
## 6490 6491
## 6491 6492
## 6492 6493
## 6493 6494
## 6494 6495
## 6495 6496
## 6496 6497
## 6498 6499
## 6499 6500
## 6500 6501
## 6501 6502
## 6502 6503
## 6503 6504
## 6504 6505
## 6505 6506
## 6506 6507
## 6507 6508
## 6508 6509
## 6509 6510
## 6510 6511
## 6511 6512
## 6512 6513
## 6513 6514
## 6514 6515
## 6515 6516
## 6516 6517
## 6517 6518
## 6518 6519
## 6519 6520
## 6520 6521
## 6521 6522
## 6522 6523
## 6523 6524
## 6524 6525
## 6525 6526
## 6526 6527
## 6527 6528
## 6528 6529
## 6529 6530
## 6530 6531
## 6531 6532
## 6532 6533
## 6533 6534
## 6534 6535
## 6535 6536
## 6536 6537
## 6537 6538
## 6538 6539
## 6539 6540
## 6540 6541
## 6541 6542
## 6542 6543
## 6543 6544
## 6544 6545
## 6545 6546
## 6546 6547
## 6547 6548
## 6548 6549
## 6549 6550
## 6550 6551
## 6551 6552
## 6552 6553
## 6553 6554
## 6554 6555
## 6555 6556
## 6556 6557
## 6557 6558
## 6558 6559
## 6559 6560
## 6560 6561
## 6561 6562
## 6562 6563
## 6563 6564
## 6564 6565
## 6565 6566
## 6566 6567
## 6567 6568
## 6568 6569
## 6569 6570
## 6570 6571
## 6571 6572
## 6572 6573
## 6573 6574
## 6574 6575
## 6575 6576
## 6576 6577
## 6577 6578
## 6578 6579
## 6579 6580
## 6580 6581
## 6581 6582
## 6582 6583
## 6583 6584
## 6584 6585
## 6585 6586
## 6586 6587
## 6587 6588
## 6588 6589
## 6589 6590
## 6590 6591
## 6591 6592
## 6592 6593
## 6593 6594
## 6594 6595
## 6595 6596
## 6596 6597
## 6597 6598
## 6598 6599
## 6599 6600
## 6600 6601
## 6601 6602
## 6602 6603
## 6603 6604
## 6604 6605
## 6605 6606
## 6606 6607
## 6607 6608
## 6608 6609
## 6609 6610
## 6610 6611
## 6611 6612
## 6612 6613
## 6613 6614
## 6614 6615
## 6615 6616
## 6616 6617
## 6617 6618
## 6618 6619
## 6619 6620
## 6620 6621
## 6621 6622
## 6622 6623
## 6623 6624
## 6624 6625
## 6625 6626
## 6626 6627
## 6627 6628
## 6628 6629
## 6629 6630
## 6630 6631
## 6631 6632
## 6632 6633
## 6633 6634
## 6634 6635
## 6635 6636
## 6636 6637
## 6637 6638
## 6638 6639
## 6639 6640
## 6640 6641
## 6641 6642
## 6642 6643
## 6643 6644
## 6644 6645
## 6645 6646
## 6646 6647
## 6647 6648
## 6649 6650
## 6650 6651
## 6651 6652
## 6652 6653
## 6653 6654
## 6654 6655
## 6655 6656
## 6656 6657
## 6657 6658
## 6658 6659
## 6659 6660
## 6660 6661
## 6661 6662
## 6662 6663
## 6663 6664
## 6664 6665
## 6665 6666
## 6666 6667
## 6667 6668
## 6668 6669
## 6669 6670
## 6670 6671
## 6671 6672
## 6672 6673
## 6673 6674
## 6674 6675
## 6675 6676
## 6676 6677
## 6677 6678
## 6678 6679
## 6679 6680
## 6680 6681
## 6681 6682
## 6682 6683
## 6683 6684
## 6684 6685
## 6685 6686
## 6686 6687
## 6687 6688
## 6688 6689
## 6689 6690
## 6690 6691
## 6691 6692
## 6692 6693
## 6693 6694
## 6694 6695
## 6695 6696
## 6696 6697
## 6697 6698
## 6698 6699
## 6699 6700
## 6700 6701
## 6701 6702
## 6702 6703
## 6703 6704
## 6704 6705
## 6705 6706
## 6706 6707
## 6707 6708
## 6708 6709
## 6709 6710
## 6710 6711
## 6711 6712
## 6712 6713
## 6713 6714
## 6714 6715
## 6715 6716
## 6716 6717
## 6717 6718
## 6718 6719
## 6719 6720
## 6720 6721
## 6721 6722
## 6722 6723
## 6723 6724
## 6724 6725
## 6725 6726
## 6726 6727
## 6727 6728
## 6728 6729
## 6729 6730
## 6730 6731
## 6731 6732
## 6732 6733
## 6733 6734
## 6734 6735
## 6735 6736
## 6736 6737
## 6737 6738
## 6738 6739
## 6739 6740
## 6740 6741
## 6741 6742
## 6742 6743
## 6743 6744
## 6744 6745
## 6745 6746
## 6746 6747
## 6747 6748
## 6748 6749
## 6749 6750
## 6750 6751
## 6751 6752
## 6752 6753
## 6753 6754
## 6754 6755
## 6755 6756
## 6756 6757
## 6757 6758
## 6758 6759
## 6759 6760
## 6760 6761
## 6761 6762
## 6762 6763
## 6763 6764
## 6764 6765
## 6765 6766
## 6766 6767
## 6767 6768
## 6768 6769
## 6769 6770
## 6770 6771
## 6771 6772
## 6772 6773
## 6773 6774
## 6774 6775
## 6775 6776
## 6776 6777
## 6777 6778
## 6779 6780
## 6780 6781
## 6781 6782
## 6782 6783
## 6783 6784
## 6784 6785
## 6785 6786
## 6786 6787
## 6787 6788
## 6788 6789
## 6789 6790
## 6790 6791
## 6791 6792
## 6792 6793
## 6793 6794
## 6794 6795
## 6795 6796
## 6796 6797
## 6797 6798
## 6798 6799
## 6799 6800
## 6800 6801
## 6801 6802
## 6802 6803
## 6803 6804
## 6804 6805
## 6805 6806
## 6806 6807
## 6808 6809
## 6809 6810
## 6810 6811
## 6811 6812
## 6812 6813
## 6813 6814
## 6814 6815
## 6815 6816
## 6816 6817
## 6817 6818
## 6818 6819
## 6819 6820
## 6820 6821
## 6821 6822
## 6822 6823
## 6823 6824
## 6824 6825
## 6825 6826
## 6826 6827
## 6827 6828
## 6828 6829
## 6829 6830
## 6830 6831
## 6831 6832
## 6832 6833
## 6834 6835
## 6835 6836
## 6836 6837
## 6837 6838
## 6838 6839
## 6839 6840
## 6840 6841
## 6841 6842
## 6842 6843
## 6843 6844
## 6844 6845
## 6845 6846
## 6846 6847
## 6847 6848
## 6848 6849
## 6849 6850
## 6850 6851
## 6851 6852
## 6852 6853
## 6853 6854
## 6854 6855
## 6855 6856
## 6856 6857
## 6857 6858
## 6858 6859
## 6859 6860
## 6860 6861
## 6861 6862
## 6862 6863
## 6863 6864
## 6864 6865
## 6865 6866
## 6866 6867
## 6867 6868
## 6868 6869
## 6869 6870
## 6870 6871
## 6871 6872
## 6872 6873
## 6873 6874
## 6874 6875
## 6875 6876
## 6876 6877
## 6877 6878
## 6878 6879
## 6879 6880
## 6880 6881
## 6881 6882
## 6882 6883
## 6883 6884
## 6884 6885
## 6885 6886
## 6886 6887
## 6887 6888
## 6888 6889
## 6889 6890
## 6890 6891
## 6891 6892
## 6892 6893
## 6893 6894
## 6894 6895
## 6895 6896
## 6896 6897
## 6897 6898
## 6898 6899
## 6899 6900
## 6900 6901
## 6901 6902
## 6902 6903
## 6903 6904
## 6904 6905
## 6905 6906
## 6906 6907
## 6907 6908
## 6908 6909
## 6909 6910
## 6910 6911
## 6911 6912
## 6912 6913
## 6913 6914
## 6914 6915
## 6915 6916
## 6916 6917
## 6917 6918
## 6918 6919
## 6919 6920
## 6921 6922
## 6922 6923
## 6923 6924
## 6924 6925
## 6925 6926
## 6926 6927
## 6928 6929
## 6929 6930
## 6930 6931
## 6931 6932
## 6932 6933
## 6933 6934
## 6934 6935
## 6935 6936
## 6936 6937
## 6937 6938
## 6939 6940
## 6940 6941
## 6941 6942
## 6942 6943
## 6943 6944
## 6944 6945
## 6945 6946
## 6946 6947
## 6947 6948
## 6948 6949
## 6949 6950
## 6950 6951
## 6951 6952
## 6952 6953
## 6953 6954
## 6954 6955
## 6955 6956
## 6956 6957
## 6957 6958
## 6958 6959
## 6959 6960
## 6960 6961
## 6961 6962
## 6962 6963
## 6963 6964
## 6964 6965
## 6965 6966
## 6966 6967
## 6968 6969
## 6970 6971
## 6971 6972
## 6972 6973
## 6973 6974
## 6974 6975
## 6975 6976
## 6976 6977
## 6977 6978
## 6978 6979
## 6979 6980
## 6980 6981
## 6981 6982
## 6982 6983
## 6983 6984
## 6984 6985
## 6985 6986
## 6986 6987
## 6987 6988
## 6988 6989
## 6989 6990
## 6990 6991
## 6991 6992
## 6992 6993
## 6993 6994
## 6994 6995
## 6995 6996
## 6996 6997
## 6997 6998
## 6998 6999
## 6999 7000
## 7000 7001
## 7001 7002
## 7002 7003
## 7003 7004
## 7004 7005
## 7005 7006
## 7006 7007
## 7007 7008
## 7008 7009
## 7009 7010
## 7010 7011
## 7011 7012
## 7012 7013
## 7013 7014
## 7014 7015
## 7015 7016
## 7016 7017
## 7017 7018
## 7018 7019
## 7019 7020
## 7020 7021
## 7021 7022
## 7022 7023
## 7023 7024
## 7024 7025
## 7025 7026
## 7026 7027
## 7027 7028
## 7028 7029
## 7029 7030
## 7030 7031
## 7031 7032
## 7032 7033
## 7033 7034
## 7034 7035
## 7035 7036
## 7037 7038
## 7038 7039
## 7039 7040
## 7040 7041
## 7041 7042
## 7042 7043
## 7043 7044
## 7044 7045
## 7045 7046
## 7046 7047
## 7047 7048
## 7048 7049
## 7049 7050
## 7050 7051
## 7051 7052
## 7052 7053
## 7053 7054
## 7054 7055
## 7055 7056
## 7056 7057
## 7057 7058
## 7058 7059
## 7059 7060
## 7060 7061
## 7061 7062
## 7062 7063
## 7063 7064
## 7064 7065
## 7065 7066
## 7066 7067
## 7067 7068
## 7068 7069
## 7069 7070
## 7070 7071
## 7071 7072
## 7072 7073
## 7073 7074
## 7074 7075
## 7075 7076
## 7076 7077
## 7077 7078
## 7078 7079
## 7079 7080
## 7080 7081
## 7081 7082
## 7082 7083
## 7083 7084
## 7084 7085
## 7085 7086
## 7086 7087
## 7087 7088
## 7088 7089
## 7089 7090
## 7090 7091
## 7091 7092
## 7092 7093
## 7093 7094
## 7094 7095
## 7095 7096
## 7096 7097
## 7097 7098
## 7098 7099
## 7099 7100
## 7100 7101
## 7101 7102
## 7102 7103
## 7103 7104
## 7104 7105
## 7105 7106
## 7106 7107
## 7107 7108
## 7108 7109
## 7109 7110
## 7110 7111
## 7111 7112
## 7112 7113
## 7113 7114
## 7114 7115
## 7115 7116
## 7116 7117
## 7117 7118
## 7118 7119
## 7119 7120
## 7120 7121
## 7121 7122
## 7122 7123
## 7123 7124
## 7124 7125
## 7125 7126
## 7126 7127
## 7127 7128
## 7128 7129
## 7129 7130
## 7130 7131
## 7131 7132
## 7132 7133
## 7133 7134
## 7134 7135
## 7135 7136
## 7136 7137
## 7137 7138
## 7138 7139
## 7139 7140
## 7140 7141
## 7141 7142
## 7142 7143
## 7143 7144
## 7144 7145
## 7145 7146
## 7146 7147
## 7147 7148
## 7148 7149
## 7149 7150
## 7150 7151
## 7151 7152
## 7152 7153
## 7153 7154
## 7154 7155
## 7155 7156
## 7156 7157
## 7157 7158
## 7158 7159
## 7159 7160
## 7160 7161
## 7161 7162
## 7162 7163
## 7163 7164
## 7164 7165
## 7165 7166
## 7166 7167
## 7167 7168
## 7168 7169
## 7169 7170
## 7170 7171
## 7171 7172
## 7172 7173
## 7173 7174
## 7174 7175
## 7175 7176
## 7176 7177
## 7177 7178
## 7178 7179
## 7179 7180
## 7180 7181
## 7181 7182
## 7183 7184
## 7184 7185
## 7185 7186
## 7186 7187
## 7187 7188
## 7188 7189
## 7189 7190
## 7190 7191
## 7191 7192
## 7192 7193
## 7193 7194
## 7194 7195
## 7195 7196
## 7196 7197
## 7197 7198
## 7198 7199
## 7199 7200
## 7200 7201
## 7201 7202
## 7202 7203
## 7203 7204
## 7204 7205
## 7205 7206
## 7206 7207
## 7207 7208
## 7208 7209
## 7209 7210
## 7210 7211
## 7211 7212
## 7212 7213
## 7213 7214
## 7215 7216
## 7216 7217
## 7217 7218
## 7218 7219
## 7219 7220
## 7220 7221
## 7221 7222
## 7222 7223
## 7223 7224
## 7224 7225
## 7225 7226
## 7226 7227
## 7227 7228
## 7228 7229
## 7229 7230
## 7230 7231
## 7231 7232
## 7232 7233
## 7233 7234
## 7234 7235
## 7235 7236
## 7236 7237
## 7237 7238
## 7238 7239
## 7239 7240
## 7240 7241
## 7241 7242
## 7242 7243
## 7243 7244
## 7244 7245
## 7245 7246
## 7246 7247
## 7247 7248
## 7248 7249
## 7249 7250
## 7250 7251
## 7251 7252
## 7252 7253
## 7253 7254
## 7254 7255
## 7255 7256
## 7256 7257
## 7257 7258
## 7258 7259
## 7259 7260
## 7260 7261
## 7261 7262
## 7262 7263
## 7263 7264
## 7264 7265
## 7265 7266
## 7266 7267
## 7267 7268
## 7268 7269
## 7269 7270
## 7270 7271
## 7271 7272
## 7272 7273
## 7273 7274
## 7274 7275
## 7275 7276
## 7276 7277
## 7277 7278
## 7278 7279
## 7279 7280
## 7280 7281
## 7281 7282
## 7282 7283
## 7283 7284
## 7284 7285
## 7285 7286
## 7286 7287
## 7287 7288
## 7288 7289
## 7289 7290
## 7290 7291
## 7291 7292
## 7292 7293
## 7293 7294
## 7294 7295
## 7295 7296
## 7296 7297
## 7297 7298
## 7298 7299
## 7299 7300
## 7300 7301
## 7301 7302
## 7302 7303
## 7303 7304
## 7304 7305
## 7305 7306
## 7306 7307
## 7307 7308
## 7308 7309
## 7309 7310
## 7310 7311
## 7311 7312
## 7312 7313
## 7313 7314
## 7314 7315
## 7315 7316
## 7316 7317
## 7317 7318
## 7318 7319
## 7320 7321
## 7321 7322
## 7322 7323
## 7323 7324
## 7324 7325
## 7325 7326
## 7326 7327
## 7327 7328
## 7328 7329
## 7329 7330
## 7330 7331
## 7331 7332
## 7332 7333
## 7333 7334
## 7334 7335
## 7335 7336
## 7336 7337
## 7337 7338
## 7338 7339
## 7339 7340
## 7340 7341
## 7341 7342
## 7342 7343
## 7343 7344
## 7344 7345
## 7345 7346
## 7346 7347
## 7347 7348
## 7348 7349
## 7349 7350
## 7350 7351
## 7351 7352
## 7353 7354
## 7354 7355
## 7355 7356
## 7356 7357
## 7357 7358
## 7358 7359
## 7359 7360
## 7360 7361
## 7361 7362
## 7362 7363
## 7363 7364
## 7364 7365
## 7365 7366
## 7366 7367
## 7367 7368
## 7368 7369
## 7369 7370
## 7372 7373
## 7373 7374
## 7374 7375
## 7375 7376
## 7376 7377
## 7377 7378
## 7378 7379
## 7379 7380
## 7380 7381
## 7381 7382
## 7382 7383
## 7384 7385
## 7385 7386
## 7386 7387
## 7387 7388
## 7388 7389
## 7389 7390
## 7390 7391
## 7391 7392
## 7392 7393
## 7393 7394
## 7394 7395
## 7395 7396
## 7396 7397
## 7397 7398
## 7398 7399
## 7399 7400
## 7400 7401
## 7401 7402
## 7402 7403
## 7403 7404
## 7404 7405
## 7405 7406
## 7406 7407
## 7408 7409
## 7409 7410
## 7410 7411
## 7411 7412
## 7412 7413
## 7413 7414
## 7414 7415
## 7415 7416
## 7416 7417
## 7417 7418
## 7418 7419
## 7419 7420
## 7420 7421
## 7421 7422
## 7422 7423
## 7423 7424
## 7425 7426
## 7426 7427
## 7427 7428
## 7428 7429
## 7429 7430
## 7430 7431
## 7431 7432
## 7432 7433
## 7433 7434
## 7434 7435
## 7435 7436
## 7436 7437
## 7437 7438
## 7438 7439
## 7439 7440
## 7440 7441
## 7441 7442
## 7442 7443
## 7443 7444
## 7444 7445
## 7445 7446
## 7446 7447
## 7447 7448
## 7448 7449
## 7449 7450
## 7450 7451
## 7451 7452
## 7452 7453
## 7453 7454
## 7454 7455
## 7455 7456
## 7456 7457
## 7457 7458
## 7458 7459
## 7459 7460
## 7460 7461
## 7461 7462
## 7462 7463
## 7463 7464
## 7464 7465
## 7465 7466
## 7466 7467
## 7467 7468
## 7468 7469
## 7469 7470
## 7470 7471
## 7471 7472
## 7472 7473
## 7473 7474
## 7474 7475
## 7475 7476
## 7476 7477
## 7477 7478
## 7478 7479
## 7479 7480
## 7480 7481
## 7481 7482
## 7482 7483
## 7483 7484
## 7484 7485
## 7485 7486
## 7486 7487
## 7487 7488
## 7488 7489
## 7489 7490
## 7490 7491
## 7491 7492
## 7492 7493
## 7493 7494
## 7494 7495
## 7495 7496
## 7496 7497
## 7497 7498
## 7498 7499
## 7499 7500
## 7500 7501
## 7501 7502
## 7502 7503
## 7503 7504
## 7504 7505
## 7505 7506
## 7506 7507
## 7507 7508
## 7508 7509
## 7509 7510
## 7510 7511
## 7511 7512
## 7512 7513
## 7513 7514
## 7514 7515
## 7515 7516
## 7516 7517
## 7517 7518
## 7518 7519
## 7519 7520
## 7520 7521
## 7521 7522
## 7522 7523
## 7523 7524
## 7524 7525
## 7525 7526
## 7526 7527
## 7527 7528
## 7528 7529
## 7529 7530
## 7530 7531
## 7531 7532
## 7532 7533
## 7533 7534
## 7534 7535
## 7535 7536
## 7536 7537
## 7537 7538
## 7538 7539
## 7539 7540
## 7540 7541
## 7541 7542
## 7542 7543
## 7543 7544
## 7544 7545
## 7545 7546
## 7546 7547
## 7547 7548
## 7548 7549
## 7549 7550
## 7550 7551
## 7551 7552
## 7552 7553
## 7553 7554
## 7554 7555
## 7555 7556
## 7556 7557
## 7557 7558
## 7558 7559
## 7559 7560
## 7560 7561
## 7561 7562
## 7562 7563
## 7563 7564
## 7564 7565
## 7565 7566
## 7566 7567
## 7567 7568
## 7568 7569
## 7569 7570
## 7570 7571
## 7571 7572
## 7572 7573
## 7573 7574
## 7574 7575
## 7575 7576
## 7576 7577
## 7577 7578
## 7578 7579
## 7579 7580
## 7580 7581
## 7581 7582
## 7582 7583
## 7583 7584
## 7584 7585
## 7585 7586
## 7586 7587
## 7587 7588
## 7588 7589
## 7589 7590
## 7590 7591
## 7591 7592
## 7592 7593
## 7593 7594
## 7594 7595
## 7595 7596
## 7596 7597
## 7597 7598
## 7598 7599
## 7599 7600
## 7600 7601
## 7601 7602
## 7602 7603
## 7603 7604
## 7604 7605
## 7605 7606
## 7606 7607
## 7607 7608
## 7608 7609
## 7609 7610
## 7610 7611
## 7611 7612
## 7612 7613
## 7613 7614
## 7614 7615
## 7615 7616
## 7617 7618
## 7618 7619
## 7619 7620
## 7620 7621
## 7621 7622
## 7622 7623
## 7623 7624
## 7624 7625
## 7625 7626
## 7626 7627
## 7627 7628
## 7628 7629
## 7629 7630
## 7630 7631
## 7631 7632
## 7632 7633
## 7633 7634
## 7634 7635
## 7635 7636
## 7636 7637
## 7637 7638
## 7638 7639
## 7639 7640
## 7640 7641
## 7641 7642
## 7642 7643
## 7643 7644
## 7644 7645
## 7645 7646
## 7646 7647
## 7647 7648
## 7648 7649
## 7650 7651
## 7651 7652
## 7652 7653
## 7653 7654
## 7654 7655
## 7655 7656
## 7656 7657
## 7657 7658
## 7658 7659
## 7659 7660
## 7660 7661
## 7661 7662
## 7662 7663
## 7663 7664
## 7664 7665
## 7665 7666
## 7666 7667
## 7667 7668
## 7668 7669
## 7669 7670
## 7670 7671
## 7671 7672
## 7672 7673
## 7673 7674
## 7674 7675
## 7675 7676
## 7676 7677
## 7677 7678
## 7678 7679
## 7679 7680
## 7680 7681
## 7681 7682
## 7682 7683
## 7683 7684
## 7684 7685
## 7685 7686
## 7686 7687
## 7687 7688
## 7688 7689
## 7689 7690
## 7690 7691
## 7691 7692
## 7692 7693
## 7693 7694
## 7694 7695
## 7695 7696
## 7696 7697
## 7697 7698
## 7698 7699
## 7699 7700
## 7700 7701
## 7701 7702
## 7702 7703
## 7703 7704
## 7704 7705
## 7705 7706
## 7706 7707
## 7707 7708
## 7708 7709
## 7709 7710
## 7710 7711
## 7711 7712
## 7712 7713
## 7713 7714
## 7714 7715
## 7715 7716
## 7716 7717
## 7717 7718
## 7718 7719
## 7719 7720
## 7720 7721
## 7722 7723
## 7723 7724
## 7724 7725
## 7725 7726
## 7726 7727
## 7727 7728
## 7728 7729
## 7729 7730
## 7730 7731
## 7731 7732
## 7732 7733
## 7733 7734
## 7734 7735
## 7735 7736
## 7736 7737
## 7737 7738
## 7738 7739
## 7739 7740
## 7740 7741
## 7741 7742
## 7742 7743
## 7743 7744
## 7744 7745
## 7745 7746
## 7746 7747
## 7747 7748
## 7748 7749
## 7749 7750
## 7750 7751
## 7751 7752
## 7752 7753
## 7753 7754
## 7754 7755
## 7755 7756
## 7756 7757
## 7757 7758
## 7758 7759
## 7759 7760
## 7760 7761
## 7761 7762
## 7762 7763
## 7763 7764
## 7765 7766
## 7766 7767
## 7767 7768
## 7768 7769
## 7769 7770
## 7770 7771
## 7771 7772
## 7772 7773
## 7773 7774
## 7774 7775
## 7775 7776
## 7776 7777
## 7777 7778
## 7778 7779
## 7779 7780
## 7780 7781
## 7781 7782
## 7782 7783
## 7783 7784
## 7784 7785
## 7785 7786
## 7786 7787
## 7787 7788
## 7788 7789
## 7789 7790
## 7790 7791
## 7791 7792
## 7792 7793
## 7793 7794
## 7794 7795
## 7795 7796
## 7796 7797
## 7797 7798
## 7798 7799
## 7799 7800
## 7800 7801
## 7801 7802
## 7802 7803
## 7803 7804
## 7804 7805
## 7805 7806
## 7806 7807
## 7807 7808
## 7808 7809
## 7809 7810
## 7810 7811
## 7811 7812
## 7812 7813
## 7813 7814
## 7814 7815
## 7815 7816
## 7816 7817
## 7817 7818
## 7818 7819
## 7819 7820
## 7820 7821
## 7821 7822
## 7822 7823
## 7823 7824
## 7824 7825
## 7825 7826
## 7826 7827
## 7827 7828
## 7828 7829
## 7829 7830
## 7830 7831
## 7831 7832
## 7832 7833
## 7833 7834
## 7834 7835
## 7835 7836
## 7836 7837
## 7837 7838
## 7838 7839
## 7839 7840
## 7840 7841
## 7841 7842
## 7842 7843
## 7843 7844
## 7844 7845
## 7845 7846
## 7846 7847
## 7847 7848
## 7848 7849
## 7849 7850
## 7850 7851
## 7851 7852
## 7852 7853
## 7853 7854
## 7854 7855
## 7855 7856
## 7856 7857
## 7857 7858
## 7858 7859
## 7859 7860
## 7860 7861
## 7861 7862
## 7862 7863
## 7863 7864
## 7864 7865
## 7865 7866
## 7866 7867
## 7867 7868
## 7868 7869
## 7869 7870
## 7870 7871
## 7871 7872
## 7872 7873
## 7873 7874
## 7874 7875
## 7875 7876
## 7876 7877
## 7877 7878
## 7878 7879
## 7879 7880
## 7880 7881
## 7881 7882
## 7882 7883
## 7883 7884
## 7884 7885
## 7885 7886
## 7886 7887
## 7887 7888
## 7888 7889
## 7889 7890
## 7890 7891
## 7891 7892
## 7892 7893
## 7893 7894
## 7894 7895
## 7895 7896
## 7896 7897
## 7897 7898
## 7898 7899
## 7899 7900
## 7900 7901
## 7901 7902
## 7902 7903
## 7903 7904
## 7904 7905
## 7905 7906
## 7906 7907
## 7907 7908
## 7908 7909
## 7910 7911
## 7911 7912
## 7912 7913
## 7913 7914
## 7914 7915
## 7915 7916
## 7916 7917
## 7917 7918
## 7918 7919
## 7919 7920
## 7920 7921
## 7921 7922
## 7922 7923
## 7923 7924
## 7924 7925
## 7925 7926
## 7926 7927
## 7927 7928
## 7928 7929
## 7929 7930
## 7930 7931
## 7931 7932
## 7932 7933
## 7933 7934
## 7934 7935
## 7935 7936
## 7936 7937
## 7937 7938
## 7938 7939
## 7939 7940
## 7940 7941
## 7941 7942
## 7942 7943
## 7943 7944
## 7944 7945
## 7945 7946
## 7946 7947
## 7948 7949
## 7949 7950
## 7950 7951
## 7951 7952
## 7952 7953
## 7953 7954
## 7954 7955
## 7955 7956
## 7956 7957
## 7957 7958
## 7958 7959
## 7959 7960
## 7960 7961
## 7961 7962
## 7962 7963
## 7963 7964
## 7964 7965
## 7965 7966
## 7966 7967
## 7967 7968
## 7968 7969
## 7969 7970
## 7970 7971
## 7971 7972
## 7972 7973
## 7973 7974
## 7974 7975
## 7975 7976
## 7976 7977
## 7977 7978
## 7978 7979
## 7979 7980
## 7980 7981
## 7981 7982
## 7982 7983
## 7983 7984
## 7984 7985
## 7985 7986
## 7986 7987
## 7987 7988
## 7988 7989
## 7989 7990
## 7990 7991
## 7991 7992
## 7992 7993
## 7993 7994
## 7994 7995
## 7995 7996
## 7996 7997
## 7997 7998
## 7998 7999
## 7999 8000
## 8000 8001
## 8001 8002
## 8002 8003
## 8003 8004
## 8004 8005
## 8005 8006
## 8006 8007
## 8007 8008
## 8008 8009
## 8009 8010
## 8010 8011
## 8011 8012
## 8012 8013
## 8013 8014
## 8014 8015
## 8015 8016
## 8016 8017
## 8017 8018
## 8018 8019
## 8019 8020
## 8020 8021
## 8021 8022
## 8022 8023
## 8023 8024
## 8024 8025
## 8025 8026
## 8026 8027
## 8027 8028
## 8028 8029
## 8029 8030
## 8030 8031
## 8031 8032
## 8032 8033
## 8033 8034
## 8034 8035
## 8035 8036
## 8036 8037
## 8037 8038
## 8038 8039
## 8039 8040
## 8040 8041
## 8041 8042
## 8042 8043
## 8043 8044
## 8044 8045
## 8046 8047
## 8047 8048
## 8048 8049
## 8049 8050
## 8050 8051
## 8051 8052
## 8052 8053
## 8053 8054
## 8054 8055
## 8055 8056
## 8056 8057
## 8057 8058
## 8058 8059
## 8059 8060
## 8060 8061
## 8061 8062
## 8062 8063
## 8063 8064
## 8064 8065
## 8065 8066
## 8066 8067
## 8067 8068
## 8068 8069
## 8069 8070
## 8070 8071
## 8071 8072
## 8072 8073
## 8073 8074
## 8074 8075
## 8075 8076
## 8076 8077
## 8077 8078
## 8078 8079
## 8079 8080
## 8080 8081
## 8081 8082
## 8082 8083
## 8083 8084
## 8084 8085
## 8085 8086
## 8086 8087
## 8088 8089
## 8089 8090
## 8090 8091
## 8091 8092
## 8092 8093
## 8093 8094
## 8094 8095
## 8095 8096
## 8096 8097
## 8097 8098
## 8098 8099
## 8099 8100
## 8100 8101
## 8101 8102
## 8102 8103
## 8103 8104
## 8104 8105
## 8105 8106
## 8106 8107
## 8107 8108
## 8108 8109
## 8109 8110
## 8110 8111
## 8111 8112
## 8112 8113
## 8113 8114
## 8114 8115
## 8115 8116
## 8116 8117
## 8117 8118
## 8118 8119
## 8119 8120
## 8120 8121
## 8121 8122
## 8122 8123
## 8123 8124
## 8124 8125
## 8125 8126
## 8126 8127
## 8127 8128
## 8128 8129
## 8129 8130
## 8130 8131
## 8131 8132
## 8132 8133
## 8133 8134
## 8134 8135
## 8135 8136
## 8136 8137
## 8137 8138
## 8138 8139
## 8139 8140
## 8140 8141
## 8141 8142
## 8142 8143
## 8143 8144
## 8144 8145
## 8145 8146
## 8146 8147
## 8147 8148
## 8148 8149
## 8149 8150
## 8150 8151
## 8151 8152
## 8152 8153
## 8153 8154
## 8154 8155
## 8155 8156
## 8156 8157
## 8157 8158
## 8159 8160
## 8160 8161
## 8161 8162
## 8162 8163
## 8163 8164
## 8164 8165
## 8165 8166
## 8166 8167
## 8167 8168
## 8169 8170
## 8170 8171
## 8171 8172
## 8172 8173
## 8173 8174
## 8174 8175
## 8175 8176
## 8176 8177
## 8177 8178
## 8178 8179
## 8179 8180
## 8180 8181
## 8181 8182
## 8182 8183
## 8183 8184
## 8184 8185
## 8185 8186
## 8186 8187
## 8187 8188
## 8188 8189
## 8189 8190
## 8190 8191
## 8191 8192
## 8192 8193
## 8193 8194
## 8194 8195
## 8195 8196
## 8196 8197
## 8197 8198
## 8198 8199
## 8199 8200
## 8200 8201
## 8201 8202
## 8202 8203
## 8203 8204
## 8204 8205
## 8206 8207
## 8207 8208
## 8208 8209
## 8209 8210
## 8210 8211
## 8211 8212
## 8212 8213
## 8213 8214
## 8214 8215
## 8215 8216
## 8216 8217
## 8217 8218
## 8218 8219
## 8219 8220
## 8220 8221
## 8221 8222
## 8222 8223
## 8223 8224
## 8225 8226
## 8226 8227
## 8227 8228
## 8228 8229
## 8229 8230
## 8230 8231
## 8231 8232
## 8232 8233
## 8233 8234
## 8234 8235
## 8235 8236
## 8236 8237
## 8237 8238
## 8238 8239
## 8239 8240
## 8240 8241
## 8241 8242
## 8242 8243
## 8243 8244
## 8244 8245
## 8245 8246
## 8246 8247
## 8247 8248
## 8248 8249
## 8249 8250
## 8250 8251
## 8251 8252
## 8252 8253
## 8253 8254
## 8254 8255
## 8255 8256
## 8256 8257
## 8257 8258
## 8258 8259
## 8259 8260
## 8260 8261
## 8261 8262
## 8262 8263
## 8263 8264
## 8264 8265
## 8265 8266
## 8266 8267
## 8267 8268
## 8268 8269
## 8269 8270
## 8270 8271
## 8271 8272
## 8272 8273
## 8273 8274
## 8274 8275
## 8275 8276
## 8276 8277
## 8277 8278
## 8278 8279
## 8279 8280
## 8280 8281
## 8281 8282
## 8282 8283
## 8283 8284
## 8284 8285
## 8285 8286
## 8286 8287
## 8287 8288
## 8288 8289
## 8289 8290
## 8290 8291
## 8291 8292
## 8292 8293
## 8293 8294
## 8294 8295
## 8295 8296
## 8296 8297
## 8297 8298
## 8298 8299
## 8299 8300
## 8300 8301
## 8301 8302
## 8302 8303
## 8303 8304
## 8304 8305
## 8305 8306
## 8306 8307
## 8307 8308
## 8308 8309
## 8309 8310
## 8310 8311
## 8311 8312
## 8312 8313
## 8313 8314
## 8315 8316
## 8316 8317
## 8317 8318
## 8318 8319
## 8319 8320
## 8320 8321
## 8321 8322
## 8322 8323
## 8323 8324
## 8324 8325
## 8325 8326
## 8326 8327
## 8327 8328
## 8328 8329
## 8329 8330
## 8330 8331
## 8331 8332
## 8332 8333
## 8333 8334
## 8334 8335
## 8336 8337
## 8337 8338
## 8338 8339
## 8339 8340
## 8340 8341
## 8341 8342
## 8342 8343
## 8343 8344
## 8344 8345
## 8345 8346
## 8346 8347
## 8347 8348
## 8348 8349
## 8349 8350
## 8350 8351
## 8351 8352
## 8352 8353
## 8353 8354
## 8354 8355
## 8355 8356
## 8356 8357
## 8357 8358
## 8358 8359
## 8359 8360
## 8360 8361
## 8361 8362
## 8362 8363
## 8363 8364
## 8364 8365
## 8365 8366
## 8366 8367
## 8367 8368
## 8368 8369
## 8369 8370
## 8370 8371
## 8371 8372
## 8372 8373
## 8373 8374
## 8374 8375
## 8375 8376
## 8376 8377
## 8378 8379
## 8379 8380
## 8380 8381
## 8381 8382
## 8382 8383
## 8383 8384
## 8384 8385
## 8385 8386
## 8386 8387
## 8387 8388
## 8388 8389
## 8389 8390
## 8390 8391
## 8391 8392
## 8392 8393
## 8393 8394
## 8394 8395
## 8395 8396
## 8396 8397
## 8397 8398
## 8398 8399
## 8399 8400
## 8400 8401
## 8401 8402
## 8402 8403
## 8403 8404
## 8404 8405
## 8405 8406
## 8406 8407
## 8407 8408
## 8408 8409
## 8409 8410
## 8410 8411
## 8411 8412
## 8412 8413
## 8413 8414
## 8414 8415
## 8415 8416
## 8416 8417
## 8417 8418
## 8418 8419
## 8419 8420
## 8420 8421
## 8421 8422
## 8422 8423
## 8423 8424
## 8424 8425
## 8425 8426
## 8426 8427
## 8427 8428
## 8428 8429
## 8429 8430
## 8430 8431
## 8431 8432
## 8432 8433
## 8433 8434
## 8434 8435
## 8435 8436
## 8436 8437
## 8437 8438
## 8438 8439
## 8439 8440
## 8441 8442
## 8442 8443
## 8443 8444
## 8444 8445
## 8445 8446
## 8446 8447
## 8447 8448
## 8448 8449
## 8449 8450
## 8450 8451
## 8451 8452
## 8452 8453
## 8453 8454
## 8454 8455
## 8455 8456
## 8456 8457
## 8457 8458
## 8458 8459
## 8459 8460
## 8460 8461
## 8461 8462
## 8462 8463
## 8463 8464
## 8464 8465
## 8465 8466
## 8466 8467
## 8467 8468
## 8468 8469
## 8469 8470
## 8470 8471
## 8471 8472
## 8472 8473
## 8473 8474
## 8474 8475
## 8475 8476
## 8476 8477
## 8477 8478
## 8478 8479
## 8479 8480
## 8480 8481
## 8481 8482
## 8482 8483
## 8483 8484
## 8484 8485
## 8485 8486
## 8486 8487
## 8487 8488
## 8488 8489
## 8489 8490
## 8490 8491
## 8491 8492
## 8492 8493
## 8493 8494
## 8494 8495
## 8495 8496
## 8496 8497
## 8497 8498
## 8498 8499
## 8499 8500
## 8500 8501
## 8501 8502
## 8502 8503
## 8503 8504
## 8504 8505
## 8505 8506
## 8506 8507
## 8507 8508
## 8508 8509
## 8509 8510
## 8510 8511
## 8511 8512
## 8512 8513
## 8513 8514
## 8514 8515
## 8515 8516
## 8516 8517
## 8517 8518
## 8518 8519
## 8519 8520
## 8520 8521
## 8521 8522
## 8522 8523
## 8523 8524
## 8524 8525
## 8525 8526
## 8526 8527
## 8527 8528
## 8528 8529
## 8529 8530
## 8530 8531
## 8531 8532
## 8532 8533
## 8533 8534
## 8534 8535
## 8535 8536
## 8536 8537
## 8537 8538
## 8538 8539
## 8539 8540
## 8540 8541
## 8541 8542
## 8542 8543
## 8543 8544
## 8544 8545
## 8545 8546
## 8546 8547
## 8547 8548
## 8548 8549
## 8549 8550
## 8550 8551
## 8551 8552
## 8552 8553
## 8553 8554
## 8555 8556
## 8556 8557
## 8557 8558
## 8558 8559
## 8559 8560
## 8560 8561
## 8561 8562
## 8562 8563
## 8563 8564
## 8564 8565
## 8565 8566
## 8566 8567
## 8567 8568
## 8568 8569
## 8569 8570
## 8570 8571
## 8571 8572
## 8572 8573
## 8573 8574
## 8574 8575
## 8575 8576
## 8576 8577
## 8577 8578
## 8578 8579
## 8579 8580
## 8580 8581
## 8581 8582
## 8582 8583
## 8583 8584
## 8584 8585
## 8585 8586
## 8586 8587
## 8587 8588
## 8588 8589
## 8589 8590
## 8590 8591
## 8591 8592
## 8592 8593
## 8593 8594
## 8594 8595
## 8595 8596
## 8596 8597
## 8597 8598
## 8598 8599
## 8599 8600
## 8600 8601
## 8601 8602
## 8602 8603
## 8603 8604
## 8604 8605
## 8605 8606
## 8606 8607
## 8607 8608
## 8608 8609
## 8609 8610
## 8610 8611
## 8611 8612
## 8612 8613
## 8613 8614
## 8614 8615
## 8615 8616
## 8616 8617
## 8617 8618
## 8618 8619
## 8619 8620
## 8620 8621
## 8622 8623
## 8623 8624
## 8624 8625
## 8625 8626
## 8626 8627
## 8627 8628
## 8628 8629
## 8629 8630
## 8630 8631
## 8631 8632
## 8632 8633
## 8633 8634
## 8634 8635
## 8635 8636
## 8636 8637
## 8637 8638
## 8638 8639
## 8639 8640
## 8640 8641
## 8641 8642
## 8642 8643
## 8643 8644
## 8644 8645
## 8645 8646
## 8646 8647
## 8647 8648
## 8648 8649
## 8649 8650
## 8650 8651
## 8651 8652
## 8652 8653
## 8653 8654
## 8654 8655
## 8655 8656
## 8656 8657
## 8657 8658
## 8658 8659
## 8659 8660
## 8660 8661
## 8661 8662
## 8662 8663
## 8663 8664
## 8664 8665
## 8665 8666
## 8666 8667
## 8667 8668
## 8668 8669
## 8669 8670
## 8670 8671
## 8671 8672
## 8672 8673
## 8673 8674
## 8674 8675
## 8675 8676
## 8676 8677
## 8677 8678
## 8678 8679
## 8679 8680
## 8680 8681
## 8681 8682
## 8682 8683
## 8683 8684
## 8684 8685
## 8685 8686
## 8686 8687
## 8687 8688
## 8688 8689
## 8689 8690
## 8690 8691
## 8691 8692
## 8692 8693
## 8693 8694
## 8694 8695
## 8695 8696
## 8696 8697
## 8697 8698
## 8698 8699
## 8699 8700
## 8700 8701
## 8701 8702
## 8702 8703
## 8703 8704
## 8704 8705
## 8705 8706
## 8706 8707
## 8707 8708
## 8709 8710
## 8710 8711
## 8711 8712
## 8712 8713
## 8713 8714
## 8714 8715
## 8715 8716
## 8716 8717
## 8717 8718
## 8718 8719
## 8719 8720
## 8720 8721
## 8721 8722
## 8722 8723
## 8723 8724
## 8724 8725
## 8725 8726
## 8726 8727
## 8727 8728
## 8728 8729
## 8729 8730
## 8730 8731
## 8731 8732
## 8732 8733
## 8733 8734
## 8734 8735
## 8735 8736
## 8736 8737
## 8737 8738
## 8738 8739
## 8739 8740
## 8740 8741
## 8741 8742
## 8742 8743
## 8743 8744
## 8744 8745
## 8745 8746
## 8746 8747
## 8747 8748
## 8748 8749
## 8749 8750
## 8750 8751
## 8751 8752
## 8752 8753
## 8753 8754
## 8754 8755
## 8755 8756
## 8756 8757
## 8757 8758
## 8758 8759
## 8759 8760
## 8760 8761
## 8762 8763
## 8763 8764
## 8764 8765
## 8765 8766
## 8766 8767
## 8767 8768
## 8768 8769
## 8769 8770
## 8770 8771
## 8771 8772
## 8772 8773
## 8773 8774
## 8774 8775
## 8775 8776
## 8776 8777
## 8777 8778
## 8778 8779
## 8779 8780
## 8780 8781
## 8781 8782
## 8782 8783
## 8783 8784
## 8784 8785
## 8785 8786
## 8786 8787
## 8787 8788
## 8788 8789
## 8789 8790
## 8790 8791
## 8791 8792
## 8792 8793
## 8793 8794
## 8794 8795
## 8795 8796
## 8796 8797
## 8797 8798
## 8798 8799
## 8799 8800
## 8800 8801
## 8801 8802
## 8802 8803
## 8803 8804
## 8804 8805
## 8805 8806
## 8806 8807
## 8807 8808
## 8808 8809
## 8809 8810
## 8810 8811
## 8811 8812
## 8812 8813
## 8813 8814
## 8814 8815
## 8815 8816
## 8816 8817
## 8817 8818
## 8818 8819
## 8819 8820
## 8820 8821
## 8821 8822
## 8822 8823
## 8823 8824
## 8824 8825
## 8825 8826
## 8826 8827
## 8827 8828
## 8828 8829
## 8829 8830
## 8830 8831
## 8831 8832
## 8832 8833
## 8833 8834
## 8834 8835
## 8835 8836
## 8836 8837
## 8837 8838
## 8838 8839
## 8839 8840
## 8840 8841
## 8841 8842
## 8842 8843
## 8843 8844
## 8844 8845
## 8845 8846
## 8846 8847
## 8847 8848
## 8848 8849
## 8849 8850
## 8850 8851
## 8851 8852
## 8852 8853
## 8853 8854
## 8854 8855
## 8855 8856
## 8856 8857
## 8857 8858
## 8858 8859
## 8859 8860
## 8860 8861
## 8861 8862
## 8862 8863
## 8863 8864
## 8864 8865
## 8865 8866
## 8866 8867
## 8867 8868
## 8868 8869
## 8869 8870
## 8870 8871
## 8871 8872
## 8872 8873
## 8873 8874
## 8874 8875
## 8875 8876
## 8876 8877
## 8877 8878
## 8878 8879
## 8879 8880
## 8880 8881
## 8881 8882
## 8882 8883
## 8883 8884
## 8884 8885
## 8885 8886
## 8886 8887
## 8887 8888
## 8888 8889
## 8889 8890
## 8890 8891
## 8891 8892
## 8892 8893
## 8893 8894
## 8894 8895
## 8895 8896
## 8896 8897
## 8897 8898
## 8898 8899
## 8899 8900
## 8901 8902
## 8902 8903
## 8903 8904
## 8904 8905
## 8905 8906
## 8906 8907
## 8907 8908
## 8908 8909
## 8909 8910
## 8910 8911
## 8911 8912
## 8912 8913
## 8913 8914
## 8914 8915
## 8915 8916
## 8916 8917
## 8917 8918
## 8918 8919
## 8919 8920
## 8920 8921
## 8921 8922
## 8922 8923
## 8923 8924
## 8924 8925
## 8925 8926
## 8926 8927
## 8927 8928
## 8928 8929
## 8929 8930
## 8931 8932
## 8932 8933
## 8933 8934
## 8934 8935
## 8935 8936
## 8936 8937
## 8937 8938
## 8938 8939
## 8939 8940
## 8940 8941
## 8941 8942
## 8942 8943
## 8943 8944
## 8944 8945
## 8945 8946
## 8946 8947
## 8947 8948
## 8948 8949
## 8949 8950
## 8950 8951
## 8951 8952
## 8952 8953
## 8953 8954
## 8954 8955
## 8955 8956
## 8956 8957
## 8957 8958
## 8958 8959
## 8959 8960
## 8960 8961
## 8961 8962
## 8962 8963
## 8963 8964
## 8964 8965
## 8965 8966
## 8966 8967
## 8967 8968
## 8968 8969
## 8969 8970
## 8970 8971
## 8971 8972
## 8972 8973
## 8973 8974
## 8974 8975
## 8975 8976
## 8976 8977
## 8977 8978
## 8978 8979
## 8979 8980
## 8980 8981
## 8981 8982
## 8982 8983
## 8983 8984
## 8984 8985
## 8985 8986
## 8986 8987
## 8987 8988
## 8988 8989
## 8989 8990
## 8990 8991
## 8991 8992
## 8992 8993
## 8993 8994
## 8994 8995
## 8995 8996
## 8996 8997
## 8997 8998
## 8998 8999
## 8999 9000
## 9000 9001
## 9001 9002
## 9002 9003
## 9003 9004
## 9004 9005
## 9005 9006
## 9006 9007
## 9007 9008
## 9008 9009
## 9009 9010
## 9010 9011
## 9011 9012
## 9012 9013
## 9013 9014
## 9014 9015
## 9015 9016
## 9016 9017
## 9017 9018
## 9018 9019
## 9019 9020
## 9020 9021
## 9021 9022
## 9022 9023
## 9023 9024
## 9024 9025
## 9025 9026
## 9026 9027
## 9027 9028
## 9028 9029
## 9029 9030
## 9030 9031
## 9031 9032
## 9032 9033
## 9033 9034
## 9034 9035
## 9035 9036
## 9036 9037
## 9037 9038
## 9038 9039
## 9039 9040
## 9040 9041
## 9041 9042
## 9042 9043
## 9043 9044
## 9044 9045
## 9045 9046
## 9046 9047
## 9047 9048
## 9048 9049
## 9049 9050
## 9050 9051
## 9051 9052
## 9052 9053
## 9053 9054
## 9054 9055
## 9055 9056
## 9056 9057
## 9057 9058
## 9058 9059
## 9059 9060
## 9060 9061
## 9061 9062
## 9062 9063
## 9063 9064
## 9064 9065
## 9065 9066
## 9066 9067
## 9067 9068
## 9068 9069
## 9069 9070
## 9070 9071
## 9071 9072
## 9072 9073
## 9073 9074
## 9074 9075
## 9075 9076
## 9076 9077
## 9077 9078
## 9078 9079
## 9079 9080
## 9080 9081
## 9081 9082
## 9083 9084
## 9084 9085
## 9085 9086
## 9086 9087
## 9087 9088
## 9088 9089
## 9089 9090
## 9090 9091
## 9091 9092
## 9092 9093
## 9093 9094
## 9094 9095
## 9095 9096
## 9096 9097
## 9097 9098
## 9098 9099
## 9099 9100
## 9100 9101
## 9101 9102
## 9102 9103
## 9103 9104
## 9104 9105
## 9105 9106
## 9106 9107
## 9107 9108
## 9108 9109
## 9109 9110
## 9110 9111
## 9111 9112
## 9112 9113
## 9113 9114
## 9114 9115
## 9115 9116
## 9116 9117
## 9117 9118
## 9118 9119
## 9119 9120
## 9120 9121
## 9121 9122
## 9122 9123
## 9123 9124
## 9124 9125
## 9125 9126
## 9126 9127
## 9127 9128
## 9128 9129
## 9129 9130
## 9130 9131
## 9131 9132
## 9132 9133
## 9133 9134
## 9134 9135
## 9135 9136
## 9136 9137
## 9137 9138
## 9138 9139
## 9139 9140
## 9140 9141
## 9141 9142
## 9142 9143
## 9143 9144
## 9144 9145
## 9145 9146
## 9146 9147
## 9147 9148
## 9148 9149
## 9149 9150
## 9150 9151
## 9151 9152
## 9153 9154
## 9154 9155
## 9155 9156
## 9156 9157
## 9157 9158
## 9158 9159
## 9159 9160
## 9160 9161
## 9161 9162
## 9162 9163
## 9163 9164
## 9164 9165
## 9165 9166
## 9166 9167
## 9167 9168
## 9168 9169
## 9169 9170
## 9170 9171
## 9171 9172
## 9173 9174
## 9174 9175
## 9175 9176
## 9176 9177
## 9177 9178
## 9178 9179
## 9179 9180
## 9180 9181
## 9181 9182
## 9182 9183
## 9183 9184
## 9184 9185
## 9185 9186
## 9186 9187
## 9187 9188
## 9188 9189
## 9189 9190
## 9190 9191
## 9191 9192
## 9192 9193
## 9193 9194
## 9194 9195
## 9195 9196
## 9196 9197
## 9197 9198
## 9198 9199
## 9199 9200
## 9200 9201
## 9201 9202
## 9202 9203
## 9203 9204
## 9204 9205
## 9205 9206
## 9206 9207
## 9207 9208
## 9208 9209
## 9209 9210
## 9210 9211
## 9211 9212
## 9212 9213
## 9213 9214
## 9214 9215
## 9215 9216
## 9216 9217
## 9217 9218
## 9218 9219
## 9219 9220
## 9220 9221
## 9221 9222
## 9222 9223
## 9223 9224
## 9224 9225
## 9225 9226
## 9226 9227
## 9227 9228
## 9228 9229
## 9229 9230
## 9230 9231
## 9231 9232
## 9232 9233
## 9233 9234
## 9234 9235
## 9235 9236
## Name
## 1 Wii Sports
## 2 Super Mario Bros.
## 3 Mario Kart Wii
## 4 Wii Sports Resort
## 5 Pokemon Red/Pokemon Blue
## 6 Tetris
## 7 New Super Mario Bros.
## 8 Wii Play
## 9 New Super Mario Bros. Wii
## 10 Duck Hunt
## 11 Nintendogs
## 12 Mario Kart DS
## 13 Pokemon Gold/Pokemon Silver
## 14 Wii Fit
## 15 Wii Fit Plus
## 16 Kinect Adventures!
## 17 Grand Theft Auto V
## 18 Grand Theft Auto: San Andreas
## 19 Super Mario World
## 20 Brain Age: Train Your Brain in Minutes a Day
## 21 Pokemon Diamond/Pokemon Pearl
## 22 Super Mario Land
## 23 Super Mario Bros. 3
## 24 Grand Theft Auto V
## 25 Grand Theft Auto: Vice City
## 26 Pokemon Ruby/Pokemon Sapphire
## 27 Pokemon Black/Pokemon White
## 28 Brain Age 2: More Training in Minutes a Day
## 29 Gran Turismo 3: A-Spec
## 30 Call of Duty: Modern Warfare 3
## 31 Pokémon Yellow: Special Pikachu Edition
## 32 Call of Duty: Black Ops
## 33 Pokemon X/Pokemon Y
## 34 Call of Duty: Black Ops 3
## 35 Call of Duty: Black Ops II
## 36 Call of Duty: Black Ops II
## 37 Call of Duty: Modern Warfare 2
## 38 Call of Duty: Modern Warfare 3
## 39 Grand Theft Auto III
## 40 Super Smash Bros. Brawl
## 41 Call of Duty: Black Ops
## 42 Animal Crossing: Wild World
## 43 Mario Kart 7
## 44 Halo 3
## 45 Grand Theft Auto V
## 46 Pokemon HeartGold/Pokemon SoulSilver
## 47 Super Mario 64
## 48 Gran Turismo 4
## 49 Super Mario Galaxy
## 50 Pokemon Omega Ruby/Pokemon Alpha Sapphire
## 51 Super Mario Land 2: 6 Golden Coins
## 52 Grand Theft Auto IV
## 53 Gran Turismo
## 54 Super Mario 3D Land
## 55 Gran Turismo 5
## 56 Call of Duty: Modern Warfare 2
## 57 Grand Theft Auto IV
## 58 Super Mario All-Stars
## 59 Pokemon FireRed/Pokemon LeafGreen
## 60 Super Mario 64
## 61 Just Dance 3
## 62 Call of Duty: Ghosts
## 63 Halo: Reach
## 64 Mario Kart 64
## 65 New Super Mario Bros. 2
## 66 Halo 4
## 67 Final Fantasy VII
## 68 Call of Duty: Ghosts
## 69 Just Dance 2
## 70 Gran Turismo 2
## 71 Call of Duty 4: Modern Warfare
## 72 Donkey Kong Country
## 73 Minecraft
## 74 Animal Crossing: New Leaf
## 75 Mario Party DS
## 76 The Elder Scrolls V: Skyrim
## 77 Super Mario Kart
## 78 FIFA 16
## 79 Wii Party
## 80 Halo 2
## 81 Mario Party 8
## 82 Pokemon Black 2/Pokemon White 2
## 83 FIFA Soccer 13
## 84 The Sims 3
## 85 GoldenEye 007
## 86 Mario & Sonic at the Olympic Games
## 87 Final Fantasy X
## 88 Final Fantasy VIII
## 89 Pokémon Platinum Version
## 90 Pac-Man
## 91 Grand Theft Auto: Liberty City Stories
## 92 Super Mario Galaxy 2
## 93 Star Wars Battlefront (2015)
## 94 Call of Duty: Advanced Warfare
## 95 The Legend of Zelda: Ocarina of Time
## 96 Crash Bandicoot 2: Cortex Strikes Back
## 97 Super Mario Bros. 2
## 98 Super Smash Bros. for Wii U and 3DS
## 99 Call of Duty: World at War
## 100 Battlefield 3
## 101 The Legend of Zelda: Twilight Princess
## 102 Call of Duty: Black Ops 3
## 103 Just Dance
## 104 Battlefield 3
## 105 Need for Speed Underground
## 106 Tekken 3
## 107 Crash Bandicoot 3: Warped
## 108 Super Smash Bros. Melee
## 109 Mario Kart 8
## 110 Fallout 4
## 111 Mario Kart: Double Dash!!
## 112 Just Dance 4
## 113 FIFA 14
## 114 Need for Speed Underground 2
## 115 Medal of Honor: Frontline
## 116 Uncharted 3: Drake's Deception
## 117 Crash Bandicoot
## 118 Zumba Fitness
## 119 Gears of War 2
## 120 Uncharted 2: Among Thieves
## 121 Call of Duty 4: Modern Warfare
## 122 FIFA 12
## 123 Big Brain Academy
## 124 Red Dead Redemption
## 125 FIFA 15
## 126 Donkey Kong Country Returns
## 127 The Elder Scrolls V: Skyrim
## 128 The Legend of Zelda
## 129 Assassin's Creed III
## 130 Halo: Combat Evolved
## 131 Pokémon Emerald Version
## 132 Kingdom Hearts
## 133 Pokémon Crystal Version
## 134 Halo 3: ODST
## 135 Red Dead Redemption
## 136 Super Mario Sunshine
## 137 Street Fighter II: The World Warrior
## 138 World of Warcraft
## 139 Driver
## 140 Kinect Sports
## 141 Gears of War 3
## 142 Gears of War
## 143 Metal Gear Solid 2: Sons of Liberty
## 144 Sonic the Hedgehog 2
## 145 Metal Gear Solid 4: Guns of the Patriots
## 146 Metal Gear Solid
## 147 The Last of Us
## 148 Final Fantasy XII
## 149 LittleBigPlanet
## 150 Dragon Quest IX: Sentinels of the Starry Skies
## 151 LEGO Star Wars: The Complete Saga
## 152 Resident Evil 2
## 153 Tekken 2
## 154 Cooking Mama
## 155 Destiny
## 156 Tetris
## 157 Assassin's Creed II
## 158 Super Smash Bros.
## 159 Assassin's Creed
## 160 Batman: Arkham City
## 161 Forza Motorsport 3
## 162 Monster Hunter Freedom Unite
## 163 Super Mario Advance
## 164 Mario Kart: Super Circuit
## 165 Super Mario World
## 166 Pokemon Stadium
## 167 Call of Duty: World at War
## 168 Crash Bandicoot: The Wrath of Cortex
## 169 Minecraft
## 170 Final Fantasy XIII
## 171 Dr. Mario
## 172 Pokemon Pinball
## 173 Assassin's Creed III
## 174 Final Fantasy IX
## 175 Final Fantasy X-2
## 176 Donkey Kong 64
## 177 Assassin's Creed II
## 178 Professor Layton and the Curious Village
## 179 Tomb Raider II
## 181 Dragon Quest VIII: Journey of the Cursed King
## 182 Diablo III
## 183 Super Mario Bros. 3
## 184 New Super Mario Bros. U
## 185 Super Mario Land 3: Wario Land
## 186 FIFA Soccer 13
## 187 The Legend of Zelda: Phantom Hourglass
## 188 Donkey Kong Country 2: Diddy's Kong Quest
## 189 Tomodachi Life
## 190 Mario & Sonic at the Olympic Games
## 191 Medal of Honor: Rising Sun
## 192 Kirby's Dream Land
## 193 Fable III
## 194 Call of Duty: Advanced Warfare
## 195 Microsoft Flight Simulator
## 196 Guitar Hero II
## 197 Resident Evil 5
## 198 Grand Theft Auto V
## 199 Grand Theft Auto: Vice City Stories
## 200 FIFA Soccer 11
## 201 Super Mario Bros.
## 202 Resident Evil
## 203 Tony Hawk's Pro Skater
## 204 Super Smash Bros. for Wii U and 3DS
## 205 Warzone 2100
## 206 Spyro the Dragon
## 207 Link's Crossbow Training
## 208 Guitar Hero III: Legends of Rock
## 209 Fallout 3
## 210 Pokemon Mystery Dungeon: Explorers of Time/Explorers of Darkness
## 211 Uncharted: Drake's Fortune
## 212 Madden NFL 06
## 213 LEGO Star Wars: The Complete Saga
## 214 Diddy Kong Racing
## 215 Monster Hunter Freedom 3
## 216 Dr. Mario
## 217 God of War III
## 218 StarCraft II: Wings of Liberty
## 219 Assassin's Creed
## 220 FIFA 15
## 221 Crash Team Racing
## 222 FIFA 17
## 223 Batman: Arkham City
## 224 Driver 2
## 225 The Simpsons: Hit & Run
## 226 Tony Hawk's Pro Skater 2
## 227 Animal Crossing: City Folk
## 228 The Lord of the Rings: The Two Towers
## 229 Forza Motorsport 4
## 230 Tomb Raider
## 231 Guitar Hero III: Legends of Rock
## 232 The Legend of Zelda: A Link to the Past
## 233 The Legend of Zelda: The Wind Waker
## 234 Mario & Sonic at the Olympic Winter Games
## 235 Luigi's Mansion: Dark Moon
## 236 Splatoon
## 237 The Last of Us
## 238 Guitar Hero III: Legends of Rock
## 239 Madden NFL 2005
## 240 Pitfall!
## 241 Madden NFL 07
## 242 Spider-Man: The Movie
## 243 Dragon Quest VII: Warriors of Eden
## 244 Uncharted: The Nathan Drake Collection
## 245 Call of Duty: Advanced Warfare
## 246 God of War
## 247 Nintendo Land
## 248 Michael Jackson: The Experience
## 249 Tony Hawk's Pro Skater 3
## 250 Winning Eleven: Pro Evolution Soccer 2007
## 251 The Elder Scrolls IV: Oblivion
## 252 Zelda II: The Adventure of Link
## 253 Need for Speed: Most Wanted
## 254 Resistance: Fall of Man
## 255 Sonic the Hedgehog
## 256 Kingdom Hearts II
## 257 FIFA 14
## 258 Call of Duty: Advanced Warfare
## 259 Asteroids
## 260 Fable II
## 261 Halo 5: Guardians
## 262 Super Mario 3D World
## 263 Batman: Arkham Asylum
## 264 Assassin's Creed: Revelations
## 265 Namco Museum
## 266 Metal Gear Solid 3: Snake Eater
## 267 Daxter
## 268 Warcraft II: Tides of Darkness
## 269 The Legend of Zelda: Ocarina of Time
## 270 FIFA Soccer 06
## 271 EyeToy Play
## 272 Uncharted 4: A Thief's End
## 273 Gran Turismo 5 Prologue
## 274 Assassin's Creed: Revelations
## 275 Street Fighter IV
## 276 FIFA 12
## 277 Teenage Mutant Ninja Turtles
## 278 Excitebike
## 279 Frogger
## 280 Madden NFL 2003
## 281 Watch Dogs
## 282 Half-Life
## 283 Super Mario World 2: Yoshi's Island
## 284 FIFA Soccer 07
## 285 The Legend of Zelda: Skyward Sword
## 286 Street Fighter II Turbo
## 287 Carnival Games
## 288 Fallout 4
## 289 World of Warcraft: The Burning Crusade
## 290 Fallout: New Vegas
## 291 God of War II
## 292 Forza Motorsport 2
## 293 World Soccer Winning Eleven 9
## 294 Namco Museum Vol.3
## 295 Tekken Tag Tournament
## 296 Far Cry 4
## 297 Star Fox 64
## 298 Minecraft
## 299 Golf
## 300 Fallout 3
## 301 Professor Layton and the Diabolical Box
## 302 Left 4 Dead 2
## 303 Namco Museum: 50th Anniversary
## 304 EA Sports Active
## 305 Assassin's Creed: Unity
## 306 Donkey Kong Land
## 307 Tony Hawk's Underground
## 308 Assassin's Creed IV: Black Flag
## 309 Monster Hunter 4 Ultimate
## 310 MotorStorm
## 311 The Elder Scrolls V: Skyrim
## 312 Tekken 5
## 313 Dragon Warrior III
## 314 Sports Champions
## 315 NBA 2K16
## 316 World Soccer Winning Eleven 8 International
## 317 Flash Focus: Vision Training in Minutes a Day
## 318 Namco Museum Vol.1
## 319 The Legend of Zelda: Link's Awakening
## 320 Mario & Luigi: Bowser's Inside Story
## 321 Big Brain Academy: Wii Degree
## 322 Nintendogs + cats
## 323 Batman: Arkham Knight
## 324 Mario & Sonic at the London 2012 Olympic Games
## 325 LEGO Indiana Jones: The Original Adventures
## 326 Resident Evil Director's Cut
## 327 Ratchet & Clank: Size Matters
## 328 Just Dance 2014
## 329 The Sims: Unleashed
## 330 Super Paper Mario
## 331 Harry Potter and the Sorcerer's Stone
## 332 The Witcher 3: Wild Hunt
## 333 Resident Evil 3: Nemesis
## 334 Spyro: Year of the Dragon
## 335 FIFA Soccer 2005
## 336 Pokémon Trading Card Game
## 337 Battlefield 4
## 338 MySims
## 339 Friend Collection
## 340 Tony Hawk's Pro Skater 4
## 341 Midnight Club 3: DUB Edition
## 342 Banjo-Kazooie
## 343 SOCOM: U.S. Navy SEALs
## 344 Guitar Hero: World Tour
## 345 Gran Turismo 6
## 346 Jak and Daxter: The Precursor Legacy
## 347 Pokemon Snap
## 348 FIFA Soccer 10
## 349 Pro Evolution Soccer 2008
## 350 Call of Duty: Ghosts
## 351 Resident Evil 4
## 352 Tom Clancy's The Division
## 353 Star Wars: Battlefront
## 354 Doom II: Hell on Earth
## 355 The Simpsons: Road Rage
## 356 Cooking Mama 2: Dinner With Friends
## 357 Luigi's Mansion
## 358 Star Wars: Battlefront II
## 359 WWF SmackDown!
## 360 Croc: Legend of the Gobbos
## 361 Grand Theft Auto: Liberty City Stories
## 362 The Getaway
## 363 Tomb Raider III: Adventures of Lara Croft
## 364 James Bond 007: Agent Under Fire
## 365 LEGO Star Wars: The Video Game
## 366 Battlefield 4
## 367 FIFA Soccer 11
## 368 Rugrats in Paris: The Movie
## 369 Spyro 2: Ripto's Rage!
## 370 Left 4 Dead
## 371 Mario & Sonic at the Olympic Winter Games
## 372 Resident Evil 5
## 373 Donkey Kong Country 3: Dixie Kong's Double Trouble!
## 374 Assassin's Creed: Brotherhood
## 375 Kung Fu
## 376 Batman: Arkham Asylum
## 377 Clubhouse Games
## 379 Star Wars Battlefront (2015)
## 380 Battlefield: Bad Company 2
## 381 Guitar Hero: On Tour
## 382 Assassin's Creed: Unity
## 383 Far Cry 3
## 384 Monster Hunter 4
## 385 Borderlands
## 386 Tekken 4
## 387 Battlefield 4
## 388 LittleBigPlanet 2
## 389 Grand Theft Auto 2
## 390 Final Fantasy III
## 391 Spider-Man 2
## 392 F-1 Race
## 393 FIFA Soccer 2003
## 394 Crash Bash
## 395 LEGO Batman: The Videogame
## 396 Metal Gear Solid V: The Phantom Pain
## 397 The Legend of Zelda: Spirit Tracks
## 398 WWF War Zone
## 399 The Legend of Zelda: Majora's Mask
## 400 Professor Layton and the Unwound Future
## 401 Rugrats: Search For Reptar
## 402 Assassin's Creed IV: Black Flag
## 403 English Training: Have Fun Improving Your Skills!
## 404 James Bond 007: Nightfire
## 405 Ratchet & Clank
## 406 Mario Party 9
## 407 Star Wars Episode III: Revenge of the Sith
## 408 Max Payne
## 409 The Lord of the Rings: The Return of the King
## 410 Assassin's Creed Syndicate
## 411 Destiny
## 412 True Crime: Streets of LA
## 413 Wii Music
## 414 Gran Turismo (PSP)
## 415 Monster Hunter X
## 416 Tekken
## 417 FIFA 16
## 418 L.A. Noire
## 419 Madden NFL 16
## 420 Yokai Watch 2 Ganso/Honke
## 421 007: Tomorrow Never Dies
## 422 Baseball
## 423 Killer Instinct
## 424 WWF SmackDown! 2: Know Your Role
## 425 Crisis Core: Final Fantasy VII
## 426 God of War: Chains of Olympus
## 427 Dragon Quest VI: Maboroshi no Daichi
## 428 Dance Central
## 429 Enter the Matrix
## 430 Super Mario Maker
## 431 Fallout: New Vegas
## 433 Rhythm Heaven
## 434 Ace Combat 04: Shattered Skies
## 435 Club Penguin: Elite Penguin Force
## 436 Animal Crossing
## 437 LEGO Batman: The Videogame
## 438 Sonic Rush
## 439 Resident Evil 6
## 440 Halo: The Master Chief Collection
## 441 FIFA Soccer 08
## 442 Spider-Man
## 443 Need for Speed III: Hot Pursuit
## 444 Star Wars Episode I Racer
## 445 Personal Trainer: Cooking
## 446 The Elder Scrolls IV: Oblivion
## 447 Dragon Warrior IV
## 448 Heavy Rain
## 449 Mass Effect 2
## 450 FIFA 15
## 451 Dragon Ball Z: Budokai
## 452 Madden NFL 2002
## 453 World Class Track Meet
## 454 Borderlands 2
## 455 The Legend of Zelda: A Link Between Worlds
## 456 Donkey Kong
## 457 The Sims: Vacation
## 458 Mass Effect 3
## 459 Kung Fu Panda
## 460 Far Cry 3
## 461 Epic Mickey
## 462 Saints Row 2
## 463 Rayman
## 464 Killzone 2
## 465 Tom Clancy's Splinter Cell
## 466 Mike Tyson's Punch-Out!!
## 467 WWE SmackDown! Shut Your Mouth
## 468 Gears of War: Ultimate Edition
## 469 NBA 2K13
## 470 Dragon Ball Z: Budokai Tenkaichi 3
## 472 Middle-Earth: Shadow of Mordor
## 473 Star Fox
## 474 The Sims: Livin Large
## 475 World Soccer Winning Eleven 6 International
## 476 Devil May Cry
## 477 Animal Crossing: Happy Home Designer
## 478 Battlefield: Bad Company 2
## 479 The Sims 4
## 480 Star Wars: The Old Republic
## 481 Sonic Heroes
## 482 Kirby Super Star Ultra
## 483 Hitman 2: Silent Assassin
## 484 Street Fighter IV
## 485 Wave Race 64
## 486 SOCOM II: U.S. Navy SEALs
## 487 WWE SmackDown! vs. RAW 2006
## 488 inFAMOUS
## 489 Pac-Man Collection
## 490 Mass Effect
## 491 WarioWare: Smooth Moves
## 492 Cooking Mama: Cook Off
## 493 Super Mario World 2: Yoshi's Island
## 494 FIFA 14
## 495 Titanfall
## 496 Sonic Mega Collection Plus
## 497 Sega Superstars Tennis
## 498 World Soccer Winning Eleven 7 International
## 499 Need for Speed: Most Wanted
## 500 Hot Shots Golf 3
## 501 Call of Duty: Finest Hour
## 502 Zumba Fitness 2
## 503 Syphon Filter
## 504 Imagine: Babyz
## 505 Colin McRae Rally
## 506 Call of Duty: Ghosts
## 507 Madden NFL 13
## 508 The Elder Scrolls III: Morrowind
## 509 Mortal Kombat
## 510 F-Zero
## 511 Yoshi's Story
## 512 Command & Conquer: Red Alert
## 513 Skylanders: Spyro's Adventure
## 514 FIFA 16
## 515 Assassin's Creed: Brotherhood
## 516 BioShock
## 517 Madden NFL 10
## 518 Medal of Honor
## 519 WWE SmackDown! vs. Raw
## 520 Metroid Prime
## 521 Finding Nemo
## 522 Myst
## 523 Need for Speed: Hot Pursuit
## 524 Imagine: Fashion Designer
## 525 WWE SmackDown! Here Comes the Pain
## 526 Star Wars: The Force Unleashed
## 527 Yoshi's Island DS
## 528 Hot Shots Golf
## 529 Killzone 3
## 530 A Bug's Life
## 531 WWF SmackDown! Just Bring It
## 532 Dragon Quest V: Tenkuu no Hanayome
## 533 Mortal Kombat Trilogy
## 534 Battlefield 3
## 535 NBA Street
## 536 Professor Layton and the Last Specter
## 537 Monster Hunter Tri
## 538 Jak II
## 539 inFAMOUS: Second Son
## 540 Ratchet & Clank: Going Commando
## 541 Tekken 6
## 542 The Sims
## 543 Sonic and the Secret Rings
## 544 Saints Row: The Third
## 545 Missile Command
## 546 Mario Paint
## 547 Assassin's Creed IV: Black Flag
## 548 Pokémon Stadium 2
## 549 Metroid
## 550 L.A. Noire
## 551 Call of Duty 3
## 552 The Legend of Zelda: A Link to the Past
## 553 Onimusha: Warlords
## 554 Mortal Kombat X
## 555 Mario Party
## 556 Madden NFL 12
## 557 LEGO Star Wars II: The Original Trilogy
## 558 Madden NFL 11
## 559 Mario vs. Donkey Kong: Mini-Land Mayhem!
## 560 Skate 3
## 561 Burnout 3: Takedown
## 562 Yokai Watch 2 Shinuchi
## 563 Need for Speed: Shift
## 564 Final Fantasy XIII-2
## 565 Mortal Kombat
## 566 Call Of Duty 2: Big Red One
## 567 Guitar Hero: World Tour
## 568 Medal of Honor
## 569 Fable
## 570 Hannah Montana
## 571 Tom Clancy's Splinter Cell
## 572 Skylanders Giants
## 573 Medal of Honor Heroes
## 574 Super Mario Bros.: The Lost Levels
## 575 Star Wars: Shadows of the Empire
## 576 LEGO Star Wars: The Complete Saga
## 577 Midnight Club: Street Racing
## 578 Pac-Man: Adventures in Time
## 579 Halo Wars
## 580 God of War Collection
## 581 ESPN NFL 2K5
## 582 Mario Strikers Charged
## 583 Medal of Honor
## 584 FIFA Soccer 10
## 585 NBA 2K12
## 586 Style Savvy
## 587 Harry Potter and the Chamber of Secrets
## 588 Super Mario All-Stars: Limited Edition
## 589 Streets of Rage
## 590 FIFA Soccer 09
## 591 Ratchet & Clank Future: Tools of Destruction
## 592 NBA Live 2005
## 593 LittleBigPlanet
## 594 Killzone: Shadow Fall
## 595 Ghostbusters: The Video Game (DS Version)
## 596 Monster Hunter Freedom 2
## 597 WWE SmackDown vs. RAW 2007
## 598 Ratchet & Clank: Up Your Arsenal
## 599 Art Academy
## 600 Dragon Age: Origins
## 601 Madden NFL 08
## 602 Sonic Adventure 2 Battle
## 603 Dragon Warrior II
## 604 Madden NFL 13
## 605 Pokémon Colosseum
## 606 Deca Sports
## 607 Madden NFL 09
## 609 Crazy Taxi
## 610 Perfect Dark
## 611 Game Party
## 612 Dragon Warrior
## 613 Tomb Raider (2013)
## 614 Marvel: Ultimate Alliance
## 615 PES 2009: Pro Evolution Soccer
## 616 Mario Party 2
## 617 Saints Row: The Third
## 618 Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City
## 619 LEGO Harry Potter: Years 1-4
## 620 Mortal Kombat: Deadly Alliance
## 621 Resistance 2
## 622 Pure
## 623 Tomb Raider: The Last Revelation
## 624 NBA 2K13
## 626 NBA 2K14
## 627 Mario Party 4
## 628 uDraw Studio
## 629 Midnight Club: Los Angeles
## 630 Final Fantasy V
## 631 Final Fantasy Tactics
## 632 Twisted Metal 2
## 633 Halo: Combat Evolved Anniversary
## 634 Need for Speed Carbon: Own the City
## 635 The Sims: Bustin' Out
## 636 Riven: The Sequel to Myst
## 637 Tom Clancy's Rainbow Six: Vegas 2
## 638 Sonic Adventure
## 639 Ice Hockey
## 640 pro evolution soccer 2011
## 641 Dragon Ball Z: Budokai 2
## 642 ATV Offroad Fury
## 643 Dino Crisis
## 644 Minecraft
## 645 Need for Speed: ProStreet
## 646 Madden NFL 16
## 647 Tetris Plus
## 648 Pro Wrestling
## 649 Theme Hospital
## 651 Need for Speed (2015)
## 652 Zumba Fitness
## 654 Monopoly
## 655 Batman: Arkham Origins
## 656 Dead Island
## 657 Guitar Hero
## 658 LEGO Star Wars: The Complete Saga
## 659 Kinect: Disneyland Adventures
## 660 WCW/nWo Revenge
## 661 Bloodborne
## 662 NBA 2K15
## 663 Madden NFL 11
## 664 Yu-Gi-Oh! The Duelists of the Roses
## 665 Madden NFL 08
## 666 Half-Life 2
## 667 The Incredibles
## 668 Tony Hawk's Underground 2
## 669 Madden NFL 10
## 670 Kinect Sports: Season Two
## 671 Kirby's Dream Land 2
## 672 LEGO Harry Potter: Years 1-4
## 673 Donkey Kong Land II
## 674 Dragon Warrior Monsters
## 675 Midnight Club: Los Angeles
## 676 Skylanders SWAP Force
## 677 WWE SmackDown vs Raw 2008
## 678 My Fitness Coach
## 679 Resident Evil - Code: Veronica X
## 680 The Sims 3
## 681 The Legend of Zelda: Majora's Mask 3D
## 682 NBA 2K16
## 683 Just Dance Kids
## 684 Mario Tennis
## 685 Grand Theft Auto
## 686 James Bond 007: Everything or Nothing
## 687 WarioWare Touched!
## 688 Need For Speed: High Stakes
## 689 Chrono Trigger
## 690 Cool Boarders 3
## 691 LEGO Marvel Super Heroes
## 692 Guild Wars 2
## 693 Pokemon Ranger: Shadows of Almia
## 694 Dead Island
## 695 Tomb Raider II
## 696 God of War: Ascension
## 697 Need for Speed Underground 2
## 698 Pro Evolution Soccer 2010
## 699 Just Dance 2015
## 700 Yokai Watch Busters
## 701 Mario Bros.
## 702 FIFA Soccer 09
## 703 Star Wars: The Force Unleashed
## 704 Borderlands 2
## 705 TOCA Touring Car Championship
## 706 Paper Mario: Sticker Star
## 707 Sonic's Ultimate Genesis Collection
## 708 Super Monkey Ball: Banana Blitz
## 709 Kirby: Nightmare in Dream Land
## 710 Wario Land 4
## 711 Guitar Hero III: Legends of Rock
## 713 Resident Evil 4
## 714 Minecraft
## 715 Onimusha 2: Samurai's Destiny
## 716 Cool Boarders 2
## 717 Paper Mario: The Thousand-Year Door
## 718 Madden NFL 12
## 719 Monster Hunter Tri
## 720 Dissidia: Final Fantasy
## 721 Sonic Advance
## 722 Spyro: Season of Ice
## 723 Teenage Mutant Ninja Turtles II: The Arcade Game
## 724 LEGO Indiana Jones: The Original Adventures
## 725 Dance Dance Revolution X2
## 726 New Super Luigi U
## 727 Prince of Persia: The Sands of Time
## 728 Scribblenauts
## 729 The Legend of Zelda: Link's Awakening DX
## 730 Need for Speed: Hot Pursuit
## 731 BioShock 2
## 732 Assassin's Creed IV: Black Flag
## 733 Devil May Cry 3: Dante's Awakening Special Edition
## 734 Rock Band 2
## 735 Frogger
## 736 Guitar Hero II
## 737 Wario Land 3
## 738 Pro Yakyuu Family Stadium
## 739 Sonic Unleashed
## 740 High School Musical: Makin' the Cut!
## 741 Pro Evolution Soccer 2012
## 742 Saints Row
## 743 Star Wars: Knights of the Old Republic
## 744 Kirby's Pinball Land
## 745 Donkey Kong Country
## 746 Hitman: Absolution
## 747 Yu-Gi-Oh: Duel Monsters 4
## 748 ATV Offroad Fury 2
## 749 Forza Motorsport 5
## 750 Madden NFL 25
## 751 Pokemon Ranger
## 752 Mario & Luigi: Superstar Saga
## 753 Final Fantasy XIII
## 754 Star Wars: Rogue Squadron
## 755 Tennis
## 756 The Sims: House Party
## 757 Your Shape featuring Jenny McCarthy
## 758 Syphon Filter 2
## 759 Tom Clancy's Rainbow Six: Siege
## 760 Volleyball
## 761 FIFA 15
## 762 Call of Duty: Roads to Victory
## 763 Super Mario RPG: Legend of the Seven Stars
## 764 Mahjong
## 765 R.C. Pro-Am
## 766 SimCity 2000
## 767 Demon Attack
## 768 Dance Dance Revolution Extreme
## 769 Tetris DS
## 770 Final Fantasy Tactics Advance
## 771 Far Cry: Primal
## 772 Toy Story 3: The Video Game
## 773 Final Fantasy III
## 774 Kirby's Epic Yarn
## 775 Project Gotham Racing
## 776 Golf
## 777 NBA 2K12
## 778 Borderlands
## 779 Tony Hawk's Pro Skater
## 780 PES 2009: Pro Evolution Soccer
## 781 Need for Speed: Hot Pursuit 2
## 782 Mario Sports Mix
## 784 Dynasty Warriors 4
## 785 Mortal Kombat
## 786 Parasite Eve
## 787 Scooby-Doo! Night of 100 Frights
## 788 Project Gotham Racing (JP weekly sales)
## 789 Need for Speed: Most Wanted 5-1-0
## 790 Portal 2
## 791 Devil May Cry 3: Dante's Awakening
## 792 Derby Stallion
## 793 Dead Rising
## 794 Finding Nemo
## 795 NBA 2K11
## 796 Wipeout: The Game
## 797 The Sims 2: Pets
## 798 Battlefield: Hardline
## 799 Metal Gear Solid: Peace Walker
## 800 World of Warcraft: Cataclysm
## 801 Tetris Worlds
## 802 Need For Speed: Undercover
## 803 Dance Dance Revolution: Hottest Party
## 804 Mario Party 5
## 805 Ghostbusters: The Video Game (DS Version)
## 806 Sim Theme Park
## 807 Warcraft: Orcs & Humans
## 808 Skate 3
## 809 Spec Ops: Airborne Commando
## 810 Kingdom Hearts: Birth by Sleep
## 811 UFC 2009 Undisputed
## 812 Dark Souls
## 813 Yu-Gi-Oh! The Eternal Duelist Soul
## 814 Need for Speed: ProStreet
## 815 The Sims 3
## 816 Tom Clancy's Splinter Cell: Conviction
## 817 Pokemon Mystery Dungeon: Red/Blue Rescue Team
## 818 The Incredibles
## 819 R4: Ridge Racer Type 4
## 820 SoulCalibur II
## 821 Mario & Luigi: Dream Team
## 822 Need for Speed: ProStreet
## 823 Carnival Games
## 824 NBA 2K14
## 825 Pokémon Mystery Dungeon: Blue Rescue Team
## 826 Sonic Mega Collection
## 827 Diablo III
## 828 NBA Jam
## 829 PGR4 - Project Gotham Racing 4
## 830 Kingdom Hearts 358/2 Days
## 831 Dance Central 2
## 832 Rayman Raving Rabbids: TV Party
## 833 SOCOM: U.S. Navy SEALs: Combined Assault
## 834 Peter Jackson's King Kong: The Official Game of the Movie
## 835 Donkey Kong Country
## 836 Need for Speed: The Run
## 837 Madden NFL 15
## 838 1080°: TenEighty Snowboarding
## 839 Just Dance 3
## 840 NBA Live 2004
## 841 Dead Space
## 842 Call of Duty 2
## 843 Madden NFL 15
## 844 Forza Horizon
## 845 TouchMaster
## 846 Tom Clancy's The Division
## 847 LEGO Marvel Super Heroes
## 848 Fire Emblem: Awakening
## 849 DriveClub
## 850 Super Street Fighter II
## 851 Mortal Kombat vs. DC Universe
## 852 Tenchu: Stealth Assassins
## 853 Tennis
## 854 Harry Potter and the Chamber of Secrets
## 855 Harry Potter and the Chamber of Secrets
## 856 SimCity
## 857 Battlefield 4
## 858 Resident Evil 6
## 859 Dragon Age: Inquisition
## 860 Sonic Classic Collection
## 861 Spyro: Enter the Dragonfly
## 862 Call of Duty: World at War
## 863 Devil May Cry 2
## 864 Burnout Paradise
## 865 E.T.: The Extra Terrestrial
## 866 BioShock Infinite
## 867 Hot Shots Golf: Open Tee
## 868 Rad Racer
## 869 Soccer
## 870 Kirby Squeak Squad
## 871 Tom Clancy's Rainbow Six: Vegas
## 872 Destiny
## 873 Crash Nitro Kart
## 874 Grand Theft Auto: San Andreas
## 875 Star Wars: Dark Forces
## 876 NBA Street Vol. 2
## 877 Def Jam Vendetta
## 878 FIFA Soccer 09
## 879 Who wants to be a millionaire
## 880 Scooby Doo and the Cyber Chase
## 881 Alleyway
## 882 Dragon Ball Z: Budokai 3
## 883 Jet Moto 2
## 884 Tom Clancy's Ghost Recon
## 885 X-Men Legends
## 886 Batman: Arkham Origins
## 887 Guitar Hero: World Tour
## 888 Mortal Kombat II
## 889 Virtua Fighter 2
## 890 Tetris DX
## 891 Mortal Kombat vs. DC Universe
## 892 Watch Dogs
## 893 Mario Super Sluggers
## 894 Tomb Raider (2013)
## 895 The Legend of Zelda: Oracle of Ages
## 896 Need for Speed: Shift
## 897 Monopoly
## 898 Red Faction
## 899 The Sims: Makin' Magic
## 900 MX Unleashed
## 901 PaRappa The Rapper
## 902 Toy Story Mania!
## 903 Mario Party 3
## 904 Star Wars: The Force Unleashed
## 905 Game Party 2
## 906 Destiny: The Taken King
## 907 LEGO Star Wars III: The Clone Wars
## 908 Star Wars Rogue Leader: Rogue Squadron II
## 909 Max Payne 3
## 910 Need for Speed Rivals
## 911 Madden NFL 09
## 912 Yokai Watch
## 913 Ratchet & Clank Future: A Crack in Time
## 914 Yu-Gi-Oh! Forbidden Memories
## 915 Mortal Kombat: Deception
## 916 Hot Shots Golf 2
## 917 Medal of Honor: European Assault (All Region sales)
## 918 WCW Nitro
## 919 High School Musical: Sing It!
## 920 Star Fox Adventures
## 921 FIFA 2000
## 922 Dynasty Warriors 3
## 923 Donkey Kong Country Returns
## 924 The Legend of Zelda: Oracle of Seasons
## 925 Madden NFL 06
## 926 Shrek 2
## 927 The Legend of Dragoon
## 928 Turok 2: Seeds of Evil
## 929 SingStar
## 930 LittleBigPlanet 3
## 931 NBA Live 2002
## 932 Phineas and Ferb
## 933 Chrono Cross
## 934 GoldenEye 007 (2010)
## 935 Mario Party: Island Tour
## 936 Jak 3
## 937 Rayman Raving Rabbids 2
## 938 Kingdom Hearts: Chain of Memories
## 939 Pinball
## 940 inFAMOUS 2
## 941 Gran Turismo Concept 2001 Tokyo
## 942 Demon's Souls
## 943 NCAA Football 06
## 944 Hey You, Pikachu!
## 945 2 Games in 1: Sonic Advance & ChuChu Rocket!
## 946 World of Warcraft: Mists of Pandaria
## 947 Jet Moto
## 948 Just Cause 3
## 949 Secret of Mana
## 950 The Orange Box
## 951 Air Combat
## 952 Kirby: Triple Deluxe
## 953 Sonic & Knuckles
## 954 Namco Museum
## 955 The Sims: Hot Date
## 956 Metroid Prime 3: Corruption
## 957 Dragon Quest VI: Realms of Revelation
## 958 The Evil Within
## 959 DDRMAX2: Dance Dance Revolution
## 960 Crazy Taxi
## 961 Virtua Fighter 4
## 962 Sly 2: Band of Thieves
## 963 Guitar Hero: World Tour
## 964 Sonic Advance 2
## 965 Madden NFL 07
## 966 NBA 2K11
## 967 NFL GameDay 2000
## 968 Call of Duty: Black Ops 3
## 969 Disney's The Lion King
## 970 Beyond: Two Souls
## 971 Kinect Star Wars
## 972 Midnight Club II
## 973 Dragon Quest Monsters: Joker
## 974 SpongeBob SquarePants: SuperSponge
## 975 The Getaway: Black Monday
## 976 Professor Layton and the Mask of Miracle
## 977 Just Cause 2
## 978 Dragon's Dogma
## 979 The Legend of Zelda: The Wind Waker
## 980 50 Cent: Bulletproof
## 981 High School Musical: Sing It!
## 982 Wii Party U
## 983 Madden NFL 25
## 984 Final Fantasy II
## 985 Kirby 64: The Crystal Shards
## 986 Dead or Alive 3
## 987 UFC 2009 Undisputed
## 988 Metroid II: Return of Samus
## 989 WWF Attitude
## 990 The SpongeBob SquarePants Movie
## 991 Golden Sun
## 992 Sonic the Hedgehog 3
## 993 Kid Icarus
## 994 Def Jam: Fight for NY
## 995 Tom Clancy's Ghost Recon
## 996 State of Emergency
## 997 BioShock Infinite
## 998 Hitman: Absolution
## 999 2 Games in 1 Double Pack: The Incredibles / Finding Nemo: The Continuing Adventures
## 1000 Call of Duty: Black Ops 3
## 1001 The Urbz: Sims in the City
## 1002 FIFA Soccer 08
## 1003 Star Wars: Starfighter
## 1004 Madden NFL 2000
## 1005 Kingdom Hearts
## 1006 Star Wars: Battlefront
## 1007 Pro Evolution Soccer
## 1008 Crackdown
## 1009 Yoshi
## 1010 Disney's Aladdin
## 1011 Kirby's Adventure
## 1012 Cooking Mama 3: Shop & Chop
## 1013 Dance Dance Revolution X
## 1014 2 Games in 1: Disney Princess & The Lion King
## 1015 Star Wars Episode I: The Phantom Menace
## 1016 Xenosaga Episode I: Der Wille zur Macht
## 1017 Portal 2
## 1018 The Beatles: Rock Band
## 1019 Forza Motorsport 6
## 1020 Sonic Colors
## 1021 Cruis'n USA
## 1022 Madden NFL 99
## 1023 Diablo III
## 1024 Uncharted: Golden Abyss
## 1025 Destiny
## 1026 SSX Tricky
## 1027 Overwatch
## 1028 Twisted Metal III
## 1029 Harry Potter and the Sorcerer's Stone
## 1030 Disney Infinity
## 1031 Crash Bandicoot: The Huge Adventure
## 1032 Dishonored
## 1033 Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City
## 1034 The Order: 1886
## 1035 The Elder Scrolls Online
## 1036 Call of Duty: World at War Final Fronts
## 1037 Imagine: Teacher
## 1038 Call of Duty: Modern Warfare 3
## 1039 Madden NFL 2005
## 1040 Star Ocean: Till The End of Time
## 1041 The Sims 3: Late Night Expansion Pack
## 1042 Game Party 3
## 1043 Toy Story 2: Buzz Lightyear to the Rescue!
## 1044 Deal or No Deal
## 1045 Ace Combat 5: The Unsung War
## 1046 Need for Speed Underground
## 1047 Kanshuu Nippon Joushikiryoku Kentei Kyoukai: Imasara Hito ni wa Kikenai Otona no Joushikiryoku Training DS
## 1048 Tetris Worlds
## 1049 Cabela's Big Game Hunter 2010
## 1050 The Crew
## 1051 FIFA Soccer 10
## 1052 We Ski
## 1053 Personal Trainer: Math
## 1054 Kirby's Return to Dreamland
## 1055 Super Puyo Puyo
## 1056 Ben 10: Protector of Earth
## 1057 NCAA Football 07
## 1058 SOCOM 3: U.S. Navy SEALs
## 1059 NBA 2K15
## 1060 Saints Row 2
## 1061 Saints Row IV
## 1062 Jampack Winter '99
## 1063 Dragon Age: Origins
## 1064 FIFA 16
## 1065 WCW vs. nWo: World Tour
## 1066 WCW/NWO Thunder
## 1067 Harry Potter and the Sorcerer's Stone
## 1068 Need For Speed: Undercover
## 1069 Dragon Ball Z: The Legacy of Goku
## 1070 Sid Meier's Civilization V
## 1071 Resident Evil 4
## 1072 Call of Duty Black Ops: Declassified
## 1073 Star Wars Battlefront: Renegade Squadron
## 1074 World Championship Poker: Featuring Howard Lederer - All In
## 1075 NFL GameDay 98
## 1076 LEGO Batman 2: DC Super Heroes
## 1077 Yoshi's Cookie
## 1078 Time Crisis
## 1079 The Sims: Superstar
## 1080 Star Wars The Clone Wars: Lightsaber Duels
## 1081 MySims
## 1082 Metroid Fusion
## 1083 Shaun White Snowboarding: Road Trip
## 1084 SSX 3
## 1085 Big Beach Sports
## 1086 Madden NFL 2001
## 1087 Fight Night Round 3
## 1088 Knack
## 1089 Star Wars: Battlefront II
## 1090 Disney's DuckTales
## 1091 Tony Hawk's Pro Skater 3
## 1092 Monsters, Inc.
## 1093 StarCraft II: Heart of the Swarm
## 1094 PGR: Project Gotham Racing 2
## 1095 Spy Hunter
## 1096 NCAA Football 2004
## 1097 SpongeBob SquarePants: Battle for Bikini Bottom
## 1098 Dying Light
## 1099 Heavenly Sword
## 1100 Street Fighter II': Special Champion Edition
## 1101 SSX
## 1102 Max Payne 3
## 1103 NBA Ballers
## 1104 Need for Speed Carbon
## 1105 NBA Live 2003
## 1106 Dragon Ball Z: Budokai Tenkaichi
## 1107 Ms. Pac-Man
## 1108 Mario Party 6
## 1109 Super Scope 6
## 1110 Go Vacation
## 1111 Dragon Quest V: Tenkuu no Hanayome
## 1112 Army of Two
## 1113 Dragon Quest IV: Chapters of the Chosen
## 1114 Kirby & the Amazing Mirror
## 1115 LEGO Pirates of the Caribbean: The Video Game
## 1116 Dig Dug
## 1117 Tom Clancy's Rainbow Six
## 1118 Ghosts 'n Goblins
## 1119 Tiger Woods PGA Tour 2003
## 1120 NBA Live 06 (All region sales)
## 1121 Prince of Persia: Warrior Within
## 1122 Kinectimals
## 1123 Until Dawn
## 1124 ESPN NFL 2K5
## 1125 Viva Pinata
## 1126 Pikmin
## 1128 Sonic Generations
## 1129 Tiger Woods PGA Tour 2004
## 1130 Ape Escape
## 1131 NBA 2K15
## 1132 NCAA Football 2005
## 1133 Just Cause 2
## 1135 Tony Hawk's American Wasteland (Old all region sales)
## 1136 Rage
## 1137 Mario Hoops 3 on 3
## 1138 Kirby Air Ride
## 1139 Sled Storm
## 1140 Pokemon Battle Revolution
## 1141 NFL Street 2
## 1142 Gears of War: Judgment
## 1143 Baseball
## 1144 Yu-Gi-Oh! Duel Monsters
## 1145 Super Mario Strikers
## 1146 Buzz! The Music Quiz
## 1147 SpongeBob's Atlantis SquarePantis
## 1148 Far Cry 4
## 1149 Dance Dance Revolution: Hottest Party 2
## 1150 Moshi Monsters: Moshling Zoo
## 1151 Dollar Dash
## 1152 Far Cry 2
## 1153 F-1 World Grand Prix
## 1154 River Raid
## 1155 Silent Hill
## 1156 Dragon Quest V: Hand of the Heavenly Bride
## 1157 No Man's Sky
## 1158 Sonic Heroes
## 1159 ESPN NBA 2K5
## 1160 Diablo
## 1161 The Legend of Zelda: Twilight Princess
## 1162 Soul Edge
## 1163 Devil May Cry 4
## 1164 Mario Bros.
## 1165 Pro Evolution Soccer 2008
## 1166 SoulCalibur IV
## 1167 LEGO Harry Potter: Years 1-4
## 1168 NASCAR 2000
## 1169 Wolfenstein: The New Order
## 1170 Carnival Games: Mini Golf
## 1171 Guitar Hero: On Tour Decades
## 1172 MySims Kingdom
## 1173 Jampack Summer 2K
## 1174 Need for Speed: Most Wanted
## 1175 Guitar Hero 5
## 1176 High School Musical 3: Senior Year
## 1177 Kingdom Hearts 3D: Dream Drop Distance
## 1178 Hannah Montana: Music Jam
## 1179 Pokemon Mystery Dungeon: Explorers of Sky
## 1180 Spyro 2: Season of Flame
## 1181 Pro Evolution Soccer 2010
## 1182 NCAA Football 2002
## 1183 Conflict: Desert Storm
## 1184 Mario Party 7
## 1185 Pro Evolution Soccer 2013
## 1186 Smuggler's Run
## 1187 Fight Night Round 3
## 1188 Donkey Kong Classics
## 1189 Twisted Metal
## 1190 Dark Souls III
## 1191 Final Fight
## 1192 Dragon Quest Monsters 2
## 1193 Pokemon Pinball: Ruby & Sapphire
## 1194 LEGO Marvel Super Heroes
## 1195 Mafia II
## 1196 Dishonored
## 1197 Stuntman
## 1198 Tom Clancy's Rainbow Six 3
## 1199 Active Life: Outdoor Challenge
## 1200 BioShock 2
## 1201 007: The World is not Enough
## 1202 Spider-Man 2: Enter: Electro
## 1203 Watch Dogs
## 1204 Star Wars: The Force Unleashed II
## 1205 Ni no Kuni: Wrath of the White Witch
## 1206 Command & Conquer: Tiberian Sun
## 1207 LEGO Battles: Ninjago
## 1208 Mario Party 10
## 1209 Dead Rising 3
## 1210 Resident Evil: The Umbrella Chronicles
## 1211 Fire Emblem Fates
## 1212 Dark Cloud
## 1213 Warcraft III: The Frozen Throne
## 1214 Tom Clancy's Ghost Recon Advanced Warfighter
## 1215 Disney Fairies: Tinker Bell
## 1216 MVP Baseball 2005
## 1217 Die Hard Trilogy
## 1218 Call of Duty: Black Ops II
## 1219 Fight Night Round 4
## 1220 MySims Kingdom
## 1221 The Simpsons Game
## 1222 Mortal Kombat 3
## 1223 NFL GameDay 99
## 1224 Call of Duty: Modern Warfare: Reflex Edition
## 1225 FIFA 17
## 1226 Mario Golf: Toadstool Tour
## 1227 Tiger Woods 99 PGA Tour Golf
## 1228 Donkey Kong Country: Tropical Freeze
## 1229 Dead Space 2
## 1230 Sonic Rivals 2
## 1231 Knockout Kings
## 1232 The Simpsons Skateboarding
## 1233 NASCAR 98
## 1234 F1 Race
## 1235 Xevious
## 1236 NASCAR 99
## 1237 NBA Live 2000
## 1238 Mafia II
## 1239 Call of Duty 3
## 1240 Super Monkey Ball 2
## 1241 Pac-Man World 2
## 1242 Madden NFL 15
## 1243 Sonic & Sega All-Stars Racing
## 1244 LEGO Star Wars III: The Clone Wars
## 1245 Football Manager 2012
## 1246 Puzzle & Dragons
## 1247 Mega Man 2
## 1248 Simpsons Wrestling
## 1249 NBA Live 98
## 1250 The Simpsons Game
## 1251 Monopoly
## 1252 SoulCalibur II
## 1253 Resistance 3
## 1254 Tokyo Xtreme Racer Zero
## 1255 Final Fantasy XIV: A Realm Reborn
## 1256 NFL Blitz
## 1257 Red Faction II
## 1258 Super Scribblenauts
## 1259 Madden NFL 2001
## 1260 WWF No Mercy
## 1261 Ice Climber
## 1262 Sonic CD
## 1263 Ninja Hattori Kun: Ninja wa Shuugyou Degogiru no Maki
## 1264 Dead Rising 2
## 1265 Rock Band 2
## 1266 Pac-Man World
## 1267 Disney Sing It: Pop Hits
## 1268 Final Fantasy: Crystal Chronicles
## 1269 Medal of Honor: Frontline
## 1270 Madden NFL 09
## 1271 Drawn To Life: SpongeBob SquarePants Edition
## 1272 Banjo-Tooie
## 1273 Buzz! The BIG Quiz
## 1274 007: Quantum of Solace
## 1275 The Sims 3
## 1276 New Play Control! Mario Power Tennis
## 1277 Bratz: Forever Diamondz
## 1278 Dirge of Cerberus: Final Fantasy VII
## 1279 Nintendo World Cup
## 1280 WWF WrestleMania 2000
## 1281 Wario Land II
## 1282 Mass Effect 2
## 1283 Major League Baseball 2K5
## 1284 Fight Night 2004
## 1285 Tom Clancy's Splinter Cell: Pandora Tomorrow
## 1286 Imagine: Master Chef
## 1287 Assassin's Creed III: Liberation
## 1288 SoulCalibur IV
## 1289 Mario Golf
## 1290 Disney Princess
## 1291 Fight Night Round 3
## 1292 Metal Gear Rising: Revengeance
## 1293 Chrono Trigger
## 1294 Star Wars: The Force Unleashed II
## 1295 The House of the Dead 2 & 3 Return
## 1296 Disney Princess: Magical Jewels
## 1297 LittleBigPlanet PS Vita
## 1298 Xenogears
## 1299 The SpongeBob SquarePants Movie
## 1300 Tom Clancy's Ghost Recon: Future Soldier
## 1301 Battlefield: Bad Company
## 1302 Midway Arcade Treasures
## 1303 Wall-E
## 1305 Homefront
## 1306 Super Monkey Ball
## 1307 Donkey Kong
## 1308 Mortal Kombat 4
## 1309 Mario Superstar Baseball
## 1310 Mass Effect 3
## 1311 LEGO Batman 2: DC Super Heroes
## 1312 Medal of Honor: Warfighter
## 1313 WCW vs the World
## 1314 SNK vs. Capcom: The Match of the Millennium
## 1315 LEGO City Undercover
## 1316 Onimusha 3: Demon Siege
## 1317 Diablo III
## 1318 Batman: Arkham Knight
## 1319 BioShock
## 1320 Red Dead Revolver
## 1321 Anno 2070
## 1322 Resident Evil: Outbreak
## 1323 Smarty Pants
## 1324 Tamagotchi
## 1325 4 Nin uchi Mahjong
## 1326 Dragon Ball Z
## 1327 Game de Hakken!! Tamagotchi 2
## 1328 Namco Museum 64
## 1329 Hasbro Family Game Night
## 1330 Dragon Quest Monsters: Joker 2
## 1331 Tony Hawk's American Wasteland (Weekly american sales)
## 1332 My Word Coach
## 1333 Hello Kitty Party
## 1334 SingStar Pop
## 1335 Sonic Rivals
## 1336 SimCity (2013)
## 1337 Kirby Super Star
## 1338 Far Cry 4
## 1339 WWE SmackDown vs Raw 2008
## 1340 Kinect Joy Ride
## 1341 Rayman Raving Rabbids
## 1342 Need for Speed Rivals
## 1343 Tiger Woods PGA Tour 2005
## 1344 Dead Space 2
## 1345 NCAA Football 2003
## 1346 Frogger 2: Swampy's Revenge
## 1347 Disney Infinity
## 1348 LEGO Indiana Jones 2: The Adventure Continues
## 1349 Sonic's Ultimate Genesis Collection
## 1350 Tiger Woods PGA Tour 09 All-Play
## 1351 Disney's DuckTales
## 1352 Classic NES Series: Super Mario Bros.
## 1353 Triple Play 2000
## 1354 Dragon Quest VII: Warriors of Eden
## 1355 Cabela's Big Game Hunter
## 1356 UFC Undisputed 2010
## 1357 NBA Live 06 (Weekly american sales)
## 1358 The Legend of Zelda: The Minish Cap
## 1359 NFL Street
## 1360 Sonic Generations
## 1361 Super Metroid
## 1362 Pro Yakyuu Family Stadium '87
## 1363 Dead Space
## 1364 Resident Evil (Remake)
## 1365 Inazuma Eleven 2
## 1366 Tomb Raider (2013)
## 1367 LEGO Star Wars II: The Original Trilogy
## 1368 Toy Story 3: The Video Game
## 1369 Fight Night Round 4
## 1370 LEGO Star Wars: The Video Game
## 1371 Injustice: Gods Among Us
## 1372 Madden NFL 15
## 1373 Disney's The Lion King
## 1374 Ridge Racer
## 1375 Metroid: Other M
## 1376 Knockout Kings 2000
## 1377 Gran Turismo 4 Prologue
## 1378 Twisted Metal: Black
## 1379 NASCAR 2005: Chase for the Cup
## 1380 Call of Duty: Black Ops
## 1381 Spider-Man: The Movie
## 1382 Need For Speed: Undercover
## 1383 2Xtreme
## 1384 Far Cry 2
## 1385 Sonic Advance 3
## 1386 Final Fantasy III
## 1387 Battlefield 4
## 1388 Colin McRae Rally 3
## 1389 Madden NFL 2002
## 1390 Doom (2016)
## 1391 Final Fantasy XII: Revenant Wings
## 1392 Bakugan: Battle Brawlers
## 1393 Deus Ex: Human Revolution
## 1394 NBA Jam
## 1395 Teenage Mutant Ninja Turtles III: The Manhattan Project
## 1396 Dynasty Warriors 5
## 1397 Hannah Montana: Spotlight World Tour
## 1398 WWE '13
## 1399 Deus Ex: Human Revolution
## 1400 True Crime: Streets of LA
## 1401 The Sims 2
## 1402 Paper Mario
## 1403 Bravely Default: Flying Fairy
## 1404 Titanfall
## 1405 Duke Nukem: Time to Kill
## 1406 Persona 4: Golden
## 1407 Dead Rising 2
## 1408 Hasbro Family Game Night 2
## 1409 Disney Princess: Enchanted Journey
## 1410 Gardening Mama
## 1411 Dave Mirra Freestyle BMX 2
## 1412 Need for Speed: The Run
## 1413 LEGO Indiana Jones: The Original Adventures
## 1414 Assassin's Creed: Rogue
## 1415 Ridge Racer 7
## 1416 A Collection of Activision Classic Games for the Atari 2600
## 1417 Forza Horizon 2
## 1418 MotorStorm: Pacific Rift
## 1419 Sonic Colors
## 1420 Star Wars Knights of the Old Republic II: The Sith Lords
## 1421 LEGO Harry Potter: Years 1-4
## 1422 Pocket Monsters Stadium
## 1423 NBA 2K15
## 1424 Tom Clancy's Ghost Recon 2
## 1425 Crash Bandicoot 2: N-Tranced
## 1426 Burnout Paradise
## 1427 SingStar Abba
## 1428 Gradius
## 1429 Dragon Quest III: Soshite Densetsu e...
## 1430 Centipede
## 1431 Yoshi's New Island
## 1432 Ryse: Son of Rome
## 1433 Dead to Rights
## 1435 Marvel vs. Capcom 3: Fate of Two Worlds
## 1436 Dance Dance Revolution (Japan)
## 1437 F1 2010
## 1438 Madden NFL 98
## 1439 FIFA Soccer 09
## 1440 Namco Museum DS
## 1441 FIFA Soccer 08
## 1442 Grand Theft Auto: Chinatown Wars
## 1443 Alan Wake
## 1444 Battlefield: Bad Company
## 1445 Mortal Kombat X
## 1446 Samurai Warriors
## 1447 The Simpsons: Hit & Run
## 1448 Devil May Cry 4
## 1449 Tom Clancy's Rainbow Six: Vegas 2
## 1450 Monster Hunter Freedom
## 1451 Crysis 2
## 1452 SaGa Frontier
## 1453 SingStar Party
## 1454 FIFA Soccer 08
## 1455 The ICO & Shadow of the Colossus Collection
## 1456 Test Drive
## 1457 Mario & Luigi: Partners in Time
## 1458 Lost Planet: Extreme Condition
## 1459 Mortal Kombat 3
## 1460 Doom 3
## 1461 Donkey Kong Jungle Beat
## 1462 Need for Speed Carbon
## 1463 Max Payne 2: The Fall of Max Payne
## 1464 Command & Conquer: Red Alert 2
## 1465 MVP Baseball 2004
## 1466 WWE SmackDown vs Raw 2008
## 1467 Ratchet & Clank: Up Your Arsenal (Weekly american sales)
## 1468 Your Shape: Fitness Evolved
## 1469 Rage
## 1470 Skylanders SWAP Force
## 1471 NBA 2K14
## 1472 Spider-Man: The Movie
## 1473 WWF War Zone
## 1474 Tony Hawk's Pro Skater
## 1475 The Sims: Bustin' Out
## 1476 Triple Play 2001
## 1477 Metroid Prime 2: Echoes
## 1478 UFC Undisputed 2010
## 1479 Final Fantasy X / X-2 HD Remaster
## 1480 Corvette
## 1481 Petz Wild Animals: Dolphinz
## 1482 Pokemon Ranger: Guardian Signs
## 1483 Middle-Earth: Shadow of Mordor
## 1484 Need for Speed Underground Rivals
## 1485 LEGO Batman: The Videogame
## 1486 Dark Souls II
## 1487 World of Warcraft: Wrath of the Lich King
## 1488 Kingdom Hearts II
## 1489 The LEGO Movie Videogame
## 1490 TOCA 2: Touring Cars
## 1491 Gyromite
## 1492 NFL 2K3
## 1493 Fighting Force
## 1494 Mega Man Battle Network 4: Red Sun / Blue Moon
## 1495 MAG: Massive Action Game
## 1496 Madden NFL 97
## 1497 Cars 2
## 1498 Skylanders Giants
## 1500 TNN Motor Sports Hardcore 4x4
## 1501 IHRA Drag Racing 2
## 1502 The Beatles: Rock Band
## 1503 Tekken 6
## 1504 [Prototype]
## 1505 Deal or No Deal
## 1506 Madagascar
## 1507 Rugrats Studio Tour
## 1508 LEGO Battles
## 1509 Pitfall II: Lost Caverns
## 1510 Turok: Evolution
## 1511 High School Musical 3: Senior Year DANCE!
## 1512 Gold's Gym: Cardio Workout
## 1513 Burnout 3: Takedown
## 1515 Yu-Gi-Oh! The Sacred Cards
## 1516 Crysis 2
## 1517 NBA Live 07
## 1518 Saints Row IV
## 1519 SingStar '80s
## 1520 EA Playground
## 1521 Test Drive 5
## 1522 Romancing SaGa 3
## 1523 EA Sports Active 2
## 1524 Digimon World
## 1525 Rise of the Tomb Raider
## 1526 Need for Speed Carbon
## 1527 Yoshi's Woolly World
## 1528 Mega Man Battle Network 3 Blue / White Version
## 1529 FIFA Street
## 1530 Resident Evil Zero
## 1531 Need for Speed: Most Wanted
## 1532 Tom Clancy's Rainbow Six: Siege
## 1533 Pirates of the Caribbean: The Curse of the Black Pearl
## 1534 Transformers
## 1535 Guitar Hero: Aerosmith
## 1536 Mystery Case Files: MillionHeir
## 1537 Valkyria Chronicles
## 1538 Midnight Club 3: DUB Edition (America weekly sales)
## 1539 Champions of Norrath
## 1540 Watch Dogs
## 1541 Imagine: Wedding Designer
## 1542 Metal Gear Solid V: Ground Zeroes
## 1543 Yakuman
## 1544 Assassin's Creed Syndicate
## 1545 Army Men 3D
## 1546 WWE '13
## 1547 Twisted Metal 4
## 1548 Manhunt
## 1549 Kid Icarus: Uprising
## 1550 Silent Hill 2
## 1551 Tomb Raider: Underworld
## 1552 Castlevania: Symphony of the Night
## 1553 The Sims 2: Nightlife
## 1554 LEGO Batman: The Videogame
## 1555 Road Rash
## 1556 Pokemon Mystery Dungeon: Gates to Infinity
## 1557 Atlantis
## 1558 NBA 2K9
## 1559 WWE '12
## 1560 Tony Hawk's Underground
## 1561 Hogan's Alley
## 1562 The Elder Scrolls Online
## 1563 Jillian Michaels' Fitness Ultimatum 2009
## 1564 .hack//Infection Part 1
## 1565 Rockstar Games presents Table Tennis
## 1566 Sonic Adventure DX: Director's Cut
## 1567 Jet Li: Rise to Honor
## 1568 Battle Arena Toshinden
## 1569 Yokai Watch 3
## 1570 Kung Fu Panda
## 1571 Tamagotchi Connection: Corner Shop
## 1572 Football Manager 2011
## 1573 Devil Dice
## 1574 Final Fantasy IV
## 1575 Hyrule Warriors
## 1576 Need for Speed Carbon
## 1577 Championship Manager 03/04
## 1578 Brian Lara Cricket
## 1579 Ratatouille
## 1580 Wheel of Fortune
## 1581 LEGO The Lord of the Rings
## 1582 Winter Sports: The Ultimate Challenge
## 1583 SOCOM: U.S. Navy SEALs Confrontation
## 1584 NBA Live 2001
## 1585 Star Wars: The Force Unleashed
## 1587 Tom Clancy's Rainbow Six: Vegas
## 1588 Dragon Ball: Daimaou Fukkatsu
## 1589 Gegege no Kitarou 2: Youkai Gundan no Chousen
## 1590 Reel Fishing
## 1591 Injustice: Gods Among Us
## 1592 Pokemon XD: Gale of Darkness
## 1593 Black
## 1594 RollerCoaster Tycoon 2
## 1595 Lara Croft Tomb Raider: The Angel of Darkness
## 1596 Tom Clancy's Splinter Cell: Pandora Tomorrow
## 1597 Road Rash 3D
## 1598 Ratchet: Deadlocked
## 1599 Baldur's Gate: Dark Alliance
## 1600 Transformers: Autobots / Decepticons
## 1601 Tales of Xillia
## 1602 Diddy Kong Racing DS
## 1603 [Prototype]
## 1604 Assassin's Creed: Bloodlines
## 1605 Oddworld: Abe's Oddysee
## 1606 The Witcher 3: Wild Hunt
## 1607 Ridge Racer V
## 1608 WWE SmackDown vs. Raw 2009
## 1609 Tetris 2 (All region sales)
## 1610 Star Wars Episode III: Revenge of the Sith
## 1611 Ben 10: Protector of Earth
## 1612 Frogger: The Great Quest
## 1613 2010 FIFA World Cup South Africa
## 1614 Ninja Gaiden
## 1615 Crash Bandicoot: The Wrath of Cortex
## 1616 Driv3r
## 1617 Disney's Tarzan / Disney's Aladdin in Nasira's Revenge / Disney's The Emperor's New Groove Action Game
## 1618 Farming Simulator 2015
## 1619 Guitar Hero: Aerosmith
## 1620 Medal of Honor: Airborne
## 1621 Kirby Tilt 'n' Tumble
## 1622 SpongeBob SquarePants: Battle for Bikini Bottom
## 1623 Vigilante 8
## 1624 Castlevania
## 1625 Donkey Kong Country 2
## 1626 Bayonetta
## 1627 WarioWare, Inc.: Mega MicroGame$
## 1628 Star Wars: Battlefront II
## 1629 Madden NFL 17
## 1630 Boom Blox
## 1631 Fallout 4
## 1632 The Sims 2: Castaway
## 1633 LEGO Batman 2: DC Super Heroes
## 1634 Naruto Shippuden: Ultimate Ninja Storm 2
## 1635 Mario Power Tennis
## 1636 Intelligent Qube
## 1637 Game & Watch Gallery 2
## 1638 Game & Watch Gallery 3
## 1639 Pac-Man
## 1640 Parfait: Chocolat Second Style
## 1641 F1 2011
## 1642 Cars
## 1643 NBA Live 99
## 1644 Chocobo no Fushigi Dungeon
## 1645 Golden Sun: The Lost Age
## 1646 SimCity 2000
## 1647 Max Payne
## 1648 WCW Mayhem
## 1649 NBA 2K2
## 1651 Super Street Fighter IV: 3D Edition
## 1652 Cars
## 1653 Fuzion Frenzy
## 1654 Call of Duty: Finest Hour
## 1655 FIFA Soccer 11
## 1656 Sly Cooper and the Thievius Raccoonus
## 1657 LEGO Indiana Jones 2: The Adventure Continues
## 1658 The Magical Quest starring Mickey Mouse
## 1659 Dragon Quest IV: Michibikareshi Monotachi
## 1660 Star Wars Episode 1: Jedi Power Battles
## 1661 Dino Crisis 2
## 1662 Need for Speed Underground
## 1663 Shrek / Shrek 2 2-in-1 Gameboy Advance Video
## 1664 Test Drive 4
## 1665 FIFA Soccer 07
## 1666 World Soccer Winning Eleven 9 (JP & Others sales)
## 1667 The Lord of the Rings: The Fellowship of the Ring
## 1668 LEGO Star Wars III: The Clone Wars
## 1669 ATV Offroad Fury 3
## 1670 Pikmin 2
## 1671 Just Dance 2016
## 1672 Disney Sing It
## 1673 Battlefield: Hardline
## 1674 WWE 2K16
## 1675 Dragon Ball Z: La Legende Saien
## 1676 TwinBee
## 1677 Ganbare Goemon! Karakuri Douchuu
## 1678 NFL 2K
## 1679 SolarStriker
## 1680 Enter the Matrix
## 1681 NHL 2002
## 1682 Mario vs. Donkey Kong 2: March of the Minis
## 1683 PokéPark Wii: Pikachu's Adventure
## 1684 One Piece: Pirate Warriors
## 1685 WWE 2K14
## 1686 Metal Gear Solid: Portable Ops
## 1687 Nuclear Strike
## 1688 Captain Toad: Treasure Tracker
## 1689 WWE SmackDown vs Raw 2008
## 1690 The Simpsons: Road Rage
## 1691 Pro Evolution Soccer 2008
## 1692 SpongeBob SquarePants: Revenge of the Flying Dutchman
## 1693 Mario & Sonic at the London 2012 Olympic Games
## 1694 Scarface: The World is Yours
## 1695 Kobe Bryant in NBA Courtside
## 1696 Disney's Chip 'n Dale: Rescue Rangers
## 1697 The Dukes of Hazzard: Racing for Home
## 1699 FIFA 14
## 1700 Spider-Man: The Movie
## 1701 Final Fantasy I & II: Dawn of Souls
## 1702 NBA 2K17
## 1703 Pokemon Super Mystery Dungeon
## 1704 Just Dance 4
## 1705 Metal Gear Solid VR Missions
## 1706 Pole Position
## 1707 Resident Evil: Operation Raccoon City
## 1708 LEGO Indiana Jones: The Original Adventures
## 1709 Pro Yakyuu Family Stadium '88
## 1710 Shenmue
## 1711 Mario Tennis
## 1712 Tony Hawk's Pro Skater 2
## 1713 WWE '12
## 1714 WWE SmackDown vs. Raw 2010
## 1715 Plants vs. Zombies
## 1716 Sonic the Hedgehog
## 1717 Super Ghouls 'n Ghosts
## 1718 Spore
## 1719 Soviet Strike
## 1720 Your Shape: Fitness Evolved 2012
## 1721 Army of Two
## 1722 Gun
## 1723 Ty the Tasmanian Tiger
## 1724 Wario Land: Shake It!
## 1725 Sonic Rush Adventure
## 1726 Medal of Honor: Warfighter
## 1727 Mega Man 3
## 1728 Ratchet & Clank (2016)
## 1729 Mission: Impossible
## 1730 Romancing SaGa 2
## 1731 Cabela's Dangerous Hunts
## 1732 Cool Boarders 4
## 1733 Rage Racer
## 1734 Medal of Honor: Rising Sun
## 1735 Football Manager 2013
## 1736 Destruction Derby 2
## 1737 Mirror's Edge
## 1738 Destiny: The Taken King
## 1739 Mario vs. Donkey Kong
## 1740 007: Quantum of Solace
## 1741 EA Sports Active: More Workouts
## 1742 Fallout: New Vegas
## 1743 Need for Speed: Most Wanted
## 1744 Final Fantasy Tactics: The War of the Lions
## 1745 Midnight Club 3: DUB Edition Remix
## 1746 Tom Clancy's Ghost Recon: Jungle Storm
## 1747 SingStar
## 1748 Bushido Blade
## 1749 LEGO Star Wars III: The Clone Wars
## 1750 NASCAR Thunder 2002
## 1751 Jet Force Gemini
## 1752 Mega Man X
## 1753 Yu-Gi-Oh! The Sacred Cards (American and Others sales)
## 1754 Sega Rally Championship
## 1755 Test Drive: Off Road
## 1756 Medal of Honor Heroes 2
## 1757 Sniper: Ghost Warrior
## 1758 Rocksmith
## 1759 LEGO Star Wars: The Video Game
## 1760 FIFA Soccer 10
## 1761 Plants vs. Zombies: Garden Warfare
## 1762 Worldwide Soccer Manager 2009
## 1763 Omerta: City of Gangsters
## 1764 Gauntlet: Dark Legacy
## 1765 Ninja Gaiden Sigma
## 1766 Bad Boys: Miami Takedown
## 1767 Kaboom!
## 1768 Red Dead Redemption: Undead Nightmare
## 1769 Sonic and the Black Knight
## 1770 Call of Duty 4: Modern Warfare
## 1771 Qix
## 1772 Derby Stallion III
## 1773 Doraemon
## 1774 High School Musical 2: Work This Out!
## 1775 Ratchet & Clank: All 4 One
## 1776 Donkey Konga
## 1777 Fight Night Champion
## 1778 Dragon Quest I & II
## 1779 Tak and the Power of Juju
## 1780 Asteroids
## 1781 Puyo Puyo Sun Ketteiban
## 1782 Pokemon Rumble Blast
## 1783 Action Bass
## 1784 Tenchu: Wrath of Heaven
## 1785 Shadow of the Colossus
## 1786 Brave Fencer Musashi
## 1787 Hot Shots Golf: Out of Bounds
## 1788 Dance Dance Revolution Extreme 2
## 1789 Mirror's Edge
## 1790 Rabbids Go Home
## 1791 South Park
## 1792 Commando
## 1793 Pilotwings
## 1794 Resident Evil - Code: Veronica
## 1795 Super R.C. Pro-Am
## 1796 The Lord of the Rings: The Return of the King
## 1797 LEGO Star Wars: The Video Game
## 1798 Royal Palace of White Sword and The City of Gentiles
## 1799 Guitar Hero 5
## 1800 Mobile Suit Gundam: Federation vs. Zeon
## 1801 Need for Speed Underground 2
## 1802 MechAssault
## 1803 ModNation Racers
## 1804 LEGO Star Wars III: The Clone Wars
## 1805 Derby Stallion 99
## 1806 Cars
## 1807 Fantasy Life
## 1808 Tom Clancy's Rainbow Six 3: Black Arrow
## 1809 WWE 2K15
## 1810 Donkey Kong
## 1811 Jampack Winter '98
## 1812 WWE 2K14
## 1813 Alien: Isolation
## 1814 Yakuza 3
## 1815 Pokémon Mystery Dungeon: Red Rescue Team (US weekly sales)
## 1816 The Beatles: Rock Band
## 1817 Dragon Age II
## 1818 Moon Patrol
## 1819 Supercar Street Challenge
## 1820 Pilotwings 64
## 1821 Crackdown 2
## 1822 Final Fantasy XIV: A Realm Reborn
## 1823 Castlevania: Lords of Shadow
## 1824 Rocksmith
## 1825 Disney Infinity 2.0: Marvel Super Heroes
## 1826 SOCOM: U.S. Navy SEALs Fireteam Bravo
## 1827 Call Of Duty 2: Big Red One
## 1828 Yoshi's Cookie
## 1829 Guitar Hero 5
## 1830 Worldwide Soccer Manager 2008
## 1831 Spider-Man 2
## 1832 Counter-Strike
## 1833 Mad Max (2015)
## 1834 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 1835 GRID
## 1836 Guitar Hero Encore: Rocks The 80s
## 1837 Sunset Overdrive
## 1839 Tom Clancy's Splinter Cell: Chaos Theory
## 1840 Donkey Kong Jr.
## 1841 Arc the Lad
## 1842 NBA Jam Tournament Edition
## 1843 Need for Speed: ProStreet
## 1844 Pikmin 3
## 1845 Legend of Mana
## 1846 Lumines: Puzzle Fusion
## 1847 Toy Story 3: The Video Game
## 1848 Guitar Hero 5
## 1849 Megamania
## 1850 Medal of Honor: Airborne
## 1851 The Legend of Zelda: Tri Force Heroes
## 1852 Jungle Hunt
## 1853 Triple Play 98
## 1854 LEGO The Lord of the Rings
## 1855 Petz Dogz 2
## 1856 WWE SmackDown vs. Raw 2011
## 1857 Yu-Gi-Oh! Duel Monsters II: Dark Duel Stories
## 1858 Lode Runner
## 1859 The Final Fantasy Legend
## 1860 Famicom Jump: Eiyuu Retsuden
## 1861 F-Zero X
## 1862 Popeye
## 1863 NERF N-Strike
## 1864 NBA Live 2001
## 1865 SingStar Legends
## 1866 SingStar Rocks!
## 1867 Tales of Symphonia
## 1868 Untold Legends: Brotherhood of the Blade
## 1869 Star Ocean: The Second Story
## 1870 Lightning Returns: Final Fantasy XIII
## 1871 Star Wars: The Force Unleashed
## 1872 Imagine: Babysitters
## 1873 The Simpsons Game
## 1874 Yakuza 2
## 1875 Skate 2
## 1876 Dragon Ball Z: The Legacy of Goku II
## 1877 Virtua Fighter 5
## 1878 NFL 2K1
## 1879 BeatMania
## 1880 Namco Museum Battle Collection
## 1881 LEGO Star Wars II: The Original Trilogy
## 1882 Madden NFL 2004
## 1883 Empire: Total War
## 1884 The Godfather
## 1885 Tiger Woods PGA Tour 10
## 1886 Star Wars: Bounty Hunter
## 1887 Densha De Go!
## 1888 Dante's Inferno
## 1889 Sonic & Sega All-Stars Racing
## 1890 Skylanders Giants
## 1891 Endless Ocean
## 1892 NFL Blitz 2000
## 1893 Sonic Free Riders
## 1894 NASCAR Thunder 2004
## 1895 Prince of Persia
## 1896 SpongeBob SquarePants: Revenge of the Flying Dutchman
## 1897 Grand Theft Auto V
## 1898 The Biggest Loser
## 1899 Fisherman's Bass Club
## 1900 MySims Agents
## 1901 Resident Evil: The Darkside Chronicles
## 1902 NCAA Football 13
## 1903 Grand Theft Auto: Chinatown Wars
## 1904 FIFA Soccer 11
## 1905 The Orange Box
## 1906 Joust
## 1907 Tomb Raider: Underworld
## 1908 Tom Clancy's Ghost Recon 2
## 1909 DiRT 3
## 1910 LEGO City Undercover
## 1911 Spore Creatures
## 1912 Ready 2 Rumble Boxing
## 1913 Dragon Ball Z: Taiketsu
## 1914 Disney's Lilo & Stitch
## 1915 Star Fox: Assault
## 1916 Naruto: Ultimate Ninja Storm
## 1917 Marvel vs. Capcom 3: Fate of Two Worlds
## 1918 NCAA Football 14
## 1919 Doko Demo Issyo
## 1920 Call of Duty 3
## 1921 Imagine: Fashion Designer New York
## 1922 Red Dead Redemption: Undead Nightmare
## 1923 Bully: Scholarship Edition
## 1924 Virtua Fighter
## 1925 Championship Manager 99/00
## 1926 WWE SmackDown vs. Raw 2010
## 1927 Pro Evolution Soccer 2008
## 1928 Super Princess Peach
## 1929 NHL 99
## 1930 SoulCalibur III
## 1931 Skylanders SWAP Force
## 1932 F1 2012
## 1933 World Tour Soccer
## 1934 Disney Universe
## 1935 Ridge Racer Revolution
## 1936 LEGO Pirates of the Caribbean: The Video Game
## 1937 Hot Wheels Turbo Racing
## 1938 NCAA Football 99
## 1939 Mortal Kombat: Armageddon
## 1940 Aliens vs Predator
## 1941 Freekstyle
## 1942 Junior Brain Trainer
## 1943 Darksiders
## 1944 DiRT
## 1945 Call of Duty 4: Modern Warfare
## 1946 Simple 1500 Series Vol. 1: The Mahjong
## 1947 Sega Superstars Tennis
## 1948 NBA Street V3
## 1949 Sleeping Dogs
## 1950 Mercenaries 2: World in Flames
## 1951 Worms Armageddon
## 1952 Hulk
## 1953 LEGO Indiana Jones: The Original Adventures
## 1954 NFL Blitz
## 1955 NFL Quarterback Club 98
## 1956 DJ Hero
## 1957 Dora the Explorer: Dora Saves the Mermaids
## 1958 Diablo II: Lord of Destruction
## 1959 Naruto Shippuden: Ultimate Ninja Storm 4
## 1960 Spider-Man 2
## 1961 Virtua Tennis 3
## 1962 Seek and Destroy
## 1963 Warhawk
## 1964 Apollo Justice: Ace Attorney
## 1965 Assassin's Creed: Rogue
## 1966 Cosmic Ark
## 1967 SOCOM: U.S. Navy SEALs Fireteam Bravo 2
## 1968 Skylanders: Trap Team
## 1969 Aliens vs Predator
## 1970 Defender
## 1971 Dance on Broadway
## 1972 Adventure Island
## 1973 Arc the Lad II
## 1974 Tag Team Match M.U.S.C.L.E.
## 1975 Derby Stallion 96
## 1976 UFC Undisputed 3
## 1977 NBA 2K3
## 1978 Dragon Ball: XenoVerse
## 1979 The Simpsons: Road Rage
## 1980 Dave Mirra Freestyle BMX
## 1981 Imagine: Animal Doctor
## 1982 WWE SmackDown vs. Raw 2010
## 1983 Forza Motorsport
## 1984 Sonic the Hedgehog
## 1985 MySims Agents
## 1986 Monster Rancher 2
## 1987 Pokemon Conquest
## 1988 The Simpsons Game
## 1989 Guinness World Records: The Videogame
## 1990 MVP Baseball 2003
## 1992 Dragon Ball Z: Budokai Tenkaichi 3
## 1993 Disney Tangled
## 1994 Tales of Destiny
## 1995 ATV: Quad Power Racing
## 1996 Disney Fairies: Tinker Bell and the Lost Treasure
## 1997 Mega Man X4
## 1998 Naruto: Clash of Ninja 2
## 1999 Dance Dance Revolution SuperNOVA
## 2000 Brink
## 2001 F-Zero: Maximum Velocity
## 2002 Bomberman 64
## 2003 Jeremy McGrath Supercross 98
## 2004 LEGO Indiana Jones 2: The Adventure Continues
## 2005 Project CARS
## 2006 Need for Speed: Most Wanted
## 2007 Kirby: Mass Attack
## 2008 LEGO Marvel Super Heroes
## 2009 ZhuZhu Pets
## 2010 Tom Clancy's Ghost Recon Advanced Warfighter 2
## 2011 MotorStorm: Arctic Edge
## 2012 WipEout Pure
## 2013 EA Sports UFC
## 2014 MX vs. ATV Unleashed
## 2015 Sonic Unleashed
## 2016 Tiger Woods PGA Tour 08
## 2017 Rayman Origins
## 2018 Epic Mickey 2: The Power of Two
## 2019 NCAA March Madness 2004
## 2021 Bomberman
## 2022 The Simpsons Game
## 2023 Tomb Raider
## 2024 Rock Band 2
## 2025 Street Fighter Alpha 3
## 2026 Bulletstorm
## 2027 FIFA Soccer 08
## 2028 Naruto: Clash of Ninja Revolution
## 2029 Tom Clancy's Ghost Recon Advanced Warfighter 2
## 2030 ZombiU
## 2031 Shrek 2
## 2032 Petz: Catz 2
## 2033 Tales of Graces f
## 2034 Final Fight 2
## 2035 Wall-E
## 2036 The Lost World: Jurassic Park
## 2037 Ace Combat 6: Fires of Liberation
## 2038 Madden NFL 07
## 2039 Disney Infinity 2.0: Marvel Super Heroes
## 2040 Harry Potter and the Prisoner of Azkaban
## 2041 Pong: The Next Level
## 2042 Bayonetta 2
## 2043 Prince of Persia
## 2044 God of War: Ghost of Sparta
## 2045 Sonic Generations
## 2046 Ninja Gaiden II
## 2047 NBA Jam Tournament Edition
## 2048 Championship Manager 3
## 2049 Guitar Hero: Warriors of Rock
## 2050 Oshare Majo Love and Berry: DS Collection
## 2051 Monster Rancher
## 2052 The LEGO Movie Videogame
## 2053 DiRT 2
## 2054 Rayman Legends
## 2055 NERF N-Strike Elite
## 2056 Ford Racing 2
## 2057 Breath of Fire III
## 2058 PES 2009: Pro Evolution Soccer
## 2059 Dead or Alive 2
## 2060 1942
## 2061 Excitebike 64
## 2062 NES Open Tournament Golf
## 2063 Game & Watch Gallery
## 2064 Jissen Pachi-Slot Hisshouhou: Hokuto no Ken
## 2065 SoulCalibur II
## 2066 Haze
## 2067 UFC Undisputed 3
## 2068 Winning Eleven: Pro Evolution Soccer 2007 (All Region sales)
## 2069 Road & Track Presents: The Need for Speed
## 2070 NFL GameDay 2001
## 2071 Killzone: Mercenary
## 2072 NBA Live 97
## 2073 Dynasty Warriors 3: Xtreme Legends
## 2074 Zoo Tycoon DS
## 2075 Rocksmith 2014
## 2076 Dead Space 3
## 2077 Wheel of Fortune
## 2078 Disney Infinity
## 2079 Dark Souls
## 2080 Puzzler Collection
## 2081 Jampack Winter 2000
## 2082 Dead Space 3
## 2083 Phoenix Wright: Ace Attorney
## 2084 NFL Fever 2002
## 2085 The Simpsons: Hit & Run
## 2086 Littlest Pet Shop: Winter
## 2088 Tom Clancy's Splinter Cell: Blacklist
## 2089 Ace Combat X: Skies of Deception
## 2090 NCAA Football 12
## 2091 LEGO Pirates of the Caribbean: The Video Game
## 2092 Band Hero
## 2093 Cars: Race-O-Rama
## 2094 Oddworld: Abe's Exoddus
## 2095 EyePet
## 2096 Scooby-Doo! First Frights
## 2097 Midnight Club: LA Remix
## 2098 The Bouncer
## 2099 Guitar Hero: Aerosmith
## 2100 WWE SmackDown vs Raw 2008
## 2101 FIFA Soccer 10
## 2102 Shadow The Hedgehog
## 2103 Farming Simulator 2013
## 2104 Fallout 3
## 2105 Cars
## 2106 Pro Evolution Soccer 2008
## 2107 Far Cry 3
## 2108 Xenoblade Chronicles
## 2109 Just Dance 2014
## 2110 Mario Party Advance
## 2111 Sonic & Sega All-Stars Racing
## 2112 Tetris 2
## 2113 NASCAR 99
## 2116 Kingdom Hearts Re:coded
## 2117 South Park: The Stick of Truth
## 2118 Driver: San Francisco
## 2119 Sniper Elite V2
## 2120 Far Cry 4
## 2121 Grand Theft Auto: San Andreas
## 2122 Tom Clancy's Splinter Cell: Blacklist
## 2123 Pro Evolution Soccer 2014
## 2124 Madden NFL 16
## 2125 Madden NFL 10
## 2126 Brutal Legend
## 2127 Tamagotchi Connection: Corner Shop 2
## 2128 Final Fantasy Type-0
## 2129 Madden NFL 08
## 2130 de Blob
## 2131 NCAA Football 06
## 2132 Mass Effect 3
## 2133 NBA 2K10
## 2134 Fire Emblem
## 2136 Skylanders: Spyro's Adventure
## 2137 Club Penguin: Game Day!
## 2138 NHL 2004
## 2139 Grand Theft Auto: Vice City Stories
## 2140 NBA 2K16
## 2141 FIFA Soccer 2005
## 2142 LEGO The Lord of the Rings
## 2143 Romancing SaGa
## 2144 Donkey Kong Junior
## 2145 LEGO Star Wars II: The Original Trilogy
## 2147 Final Fantasy X / X-2 HD Remaster
## 2148 Medal of Honor: Underground
## 2149 The Sims 2
## 2150 Dark Cloud 2
## 2151 Jampack Summer '99
## 2152 PlayStation All-Stars Battle Royale
## 2153 Dance Dance Revolution 2nd ReMIX
## 2154 Monster High: Ghoul Spirit
## 2155 Dragon Quest X
## 2156 LEGO Pirates of the Caribbean: The Video Game
## 2157 Gangs of London
## 2158 Mortal Kombat Trilogy
## 2159 Star Soldier
## 2160 Sonic Unleashed
## 2161 Lost Planet 2
## 2162 NHL 2001
## 2163 Dragon Quest Monsters: Terry's Wonderland 3D
## 2164 My Weight Loss Coach
## 2165 Tom Clancy's Ghost Recon: Future Soldier
## 2166 Mega Man Star Force Dragon / Leo / Pegasus
## 2167 Shinobi
## 2168 Mortal Kombat: Deadly Alliance
## 2169 The Witcher 2: Assassins of Kings
## 2170 PilotWings Resort
## 2171 Naruto Shippuden: Ultimate Ninja Storm 3
## 2172 LEGO Jurassic World
## 2173 ESPN NBA 2K5
## 2175 World Championship Poker
## 2176 Tom Clancy's Splinter Cell: Chaos Theory
## 2177 SpongeBob SquarePants: Battle for Bikini Bottom
## 2178 South Park: The Stick of Truth
## 2179 Ben 10: Alien Force
## 2180 SingStar Abba
## 2181 Cars 2
## 2182 Wild ARMs
## 2183 Kessen
## 2184 Yu-Gi-Oh! Worldwide Edition: Stairway to the Destined Duel
## 2185 NCAA Football 2000
## 2186 Brutal Legend
## 2187 Skylanders: Spyro's Adventure
## 2188 Guitar Hero: Metallica
## 2189 Evolve
## 2190 WWE SmackDown vs. Raw 2009
## 2191 Army of Two: The 40th Day
## 2192 Tony Hawk: RIDE
## 2193 Lego Batman 3: Beyond Gotham
## 2194 Wii Play: Motion
## 2195 Killzone
## 2196 The Tomb Raider Trilogy
## 2197 Colin McRae Rally 04
## 2198 Star Fox 64 3D
## 2199 The SpongeBob SquarePants Movie
## 2200 Rocksmith 2014
## 2201 Midway Presents Arcade's Greatest Hits: The Atari Collection 1
## 2202 Cars
## 2203 Assassin's Creed III
## 2204 Castlevania: Lament of Innocence
## 2205 Mario Tennis Open
## 2206 The Witcher 2: Assassins of Kings
## 2207 Bayonetta
## 2208 Destroy All Humans!
## 2209 MVP Baseball 2005
## 2210 SaGa Frontier 2
## 2211 NCAA Football 10
## 2212 MLB 2000
## 2213 The Legend of Zelda: Twilight Princess HD
## 2214 Bully
## 2215 Prince of Persia: The Sands of Time
## 2216 Phantasy Star Portable
## 2217 Hot Shots Golf Fore!
## 2218 MLB 06: The Show
## 2219 NHL 2003
## 2220 Operation Flashpoint: Dragon Rising
## 2221 Nickelodeon Fit
## 2222 Buzz! Quiz World
## 2223 Bentley's Hackpack
## 2224 Tony Hawk's Pro Skater 4
## 2225 Borderlands 2
## 2226 EA Sports Grand Slam Tennis
## 2227 White Knight Chronicles: International Edition
## 2228 SSX
## 2229 Sonic Riders: Zero Gravity
## 2230 LEGO Jurassic World
## 2231 Build-A-Bear Workshop
## 2232 Crash City Mayhem
## 2233 Spider-Man
## 2234 Mega Man 4
## 2235 Castlevania II: Simon's Quest
## 2236 Toy Story 2: Buzz Lightyear to the Rescue!
## 2237 Teenage Mutant Ninja Turtles
## 2238 MLB 07: The Show
## 2239 Skylanders: Trap Team
## 2240 Cars
## 2241 Brothers in Arms: Hell's Highway
## 2242 Inazuma Eleven 3
## 2243 Pokken Tournament
## 2244 SnoCross Championship Racing
## 2245 Teenage Mutant Ninja Turtles
## 2246 Top Gun: Combat Zones
## 2247 Blue Dragon
## 2248 007: The World is not Enough
## 2249 NCAA Football 11
## 2250 NHL 98
## 2251 FIFA Street
## 2252 EA Sports Active 2
## 2253 SpongeBob SquarePants: The Yellow Avenger
## 2254 WWE SmackDown vs. Raw 2009
## 2255 Dante's Inferno
## 2256 Wipeout: In The Zone
## 2257 Space Jam
## 2258 Kung Fu Panda
## 2259 Knockout Kings 2000
## 2260 Balloon Fight
## 2261 Assassin's Creed
## 2262 Disney Magical World
## 2263 Crysis 3
## 2264 Lego Batman 3: Beyond Gotham
## 2265 Dynasty Warriors 7
## 2266 The Evil Within
## 2267 MLB 12: The Show
## 2268 Sonic Riders
## 2269 Starsky & Hutch
## 2270 Tobal No.1
## 2271 Lost Odyssey
## 2272 MLB 15: The Show
## 2273 Operation Flashpoint: Dragon Rising
## 2274 Homefront
## 2275 AMF Bowling Pinbusters!
## 2276 Street Hoops
## 2277 Avatar: The Game
## 2278 Harvest Moon 3D: A New Beginning
## 2279 Tom Clancy's EndWar
## 2280 Knockout Kings 2002
## 2281 Tokyo Xtreme Racer 3
## 2282 LEGO Indiana Jones 2: The Adventure Continues
## 2283 Colin McRae Rally 2.0
## 2284 Glover
## 2285 MX vs. ATV Reflex
## 2286 Minecraft: Story Mode
## 2288 Marvel: Ultimate Alliance 2
## 2289 Call of Duty: World at War
## 2290 Super Momotarou Dentetsu III
## 2291 Sonic Mega Collection Plus
## 2292 DJ Hero
## 2293 Dragon Age: Inquisition
## 2294 The Simpsons Game
## 2295 Tiger Woods PGA Tour 2002
## 2297 Mini-Yonku Shining Scorpion: Let's & Go!!
## 2298 MLB 2005
## 2299 SOCOM 4: U.S. Navy SEALs
## 2300 Burnout Revenge
## 2301 Buzz! Quiz TV
## 2302 We Ski & Snowboard
## 2303 Destruction Derby
## 2304 TouchMaster 2
## 2305 Crysis 3
## 2306 3Xtreme
## 2307 Hot Shots Tennis
## 2308 Sonic Heroes
## 2309 Resistance: Retribution
## 2310 Tiger Woods PGA Tour 12: The Masters
## 2311 Star Wars: The Force Unleashed
## 2312 Madden NFL 99
## 2313 Spider-Man 3
## 2314 James Bond 007: Agent Under Fire
## 2315 Samba De Amigo
## 2316 The Elder Scrolls Online
## 2317 Pure
## 2318 FIFA Soccer 09 All-Play
## 2319 Fossil Fighters
## 2320 LittleBigPlanet Karting
## 2321 X-Men Legends
## 2322 NBA Live 2005
## 2323 Harry Potter: Quidditch World Cup
## 2324 The Biggest Loser: Ultimate Workout
## 2325 Madagascar
## 2326 Call of Juarez: Bound in Blood
## 2327 Killzone: Liberation
## 2328 Madden NFL 08
## 2329 Blitz: The League
## 2330 LEGO Jurassic World
## 2331 Castlevania: Circle of the Moon
## 2332 Sonic Chronicles: The Dark Brotherhood
## 2333 Tiger Woods PGA Tour 06
## 2334 Classic NES Series: The Legend of Zelda
## 2335 The Jak and Daxter Collection
## 2336 Fire Emblem: The Sacred Stones
## 2337 Pokemon Card GB2: Here Comes Team GR!
## 2338 Finding Nemo
## 2339 CSI: Hard Evidence
## 2340 Ace Combat 2
## 2341 F1 2009
## 2342 NFL 2K2
## 2343 EA Sports UFC 2
## 2344 Dissidia 012: Duodecim Final Fantasy
## 2345 LEGO Marvel Super Heroes
## 2346 F1 2010
## 2347 Monster 4X4: World Circuit
## 2348 Call of Duty: Modern Warfare 2
## 2349 Wii Fit U
## 2350 Kingdoms of Amalur: Reckoning
## 2351 Call of Duty: Modern Warfare 3
## 2352 MLB 2001
## 2353 SingStar Anthems
## 2354 Seiken Densetsu 3
## 2355 Mega Man 8 Anniversary Collector's Edition
## 2356 WWE SmackDown vs. Raw 2011
## 2357 Sleeping Dogs
## 2358 Grand Theft Auto IV
## 2359 Peppa Pig: The Game
## 2360 Michael Jackson: The Experience
## 2361 Ghostbusters: The Video Game
## 2362 Rock Band 3
## 2363 Resident Evil: Revelations
## 2364 NBA 2K6
## 2365 Buzz! The Mega Quiz
## 2366 Endless Ocean: Blue World
## 2367 Star Wars: Rebel Assault II - The Hidden Empire
## 2368 Just Cause 3
## 2369 Metal Gear Ac!d
## 2370 Cooking Mama: World Kitchen
## 2371 Tekken Tag Tournament 2
## 2372 ESPN NHL 2K5
## 2373 GRID
## 2374 Phantasy Star Portable 2
## 2375 Crimson Skies: High Road to Revenge
## 2376 Spec Ops: Ranger Elite
## 2377 Gex
## 2378 NBA 2K14
## 2379 DiRT
## 2380 Derby Stallion II
## 2381 Gold's Gym: Dance Workout
## 2382 Red Faction: Guerrilla
## 2383 Tom Clancy's Ghost Recon: Island Thunder
## 2384 Mercenaries 2: World in Flames
## 2385 Need for Speed: V-Rally
## 2386 Kingdom Hearts Re: Chain of Memories
## 2387 Pictionary
## 2388 NCAA Football 13
## 2389 Kingdoms of Amalur: Reckoning
## 2390 NFL GameDay '97
## 2391 Beijing 2008
## 2392 The House of the Dead: Overkill
## 2393 Tony Hawk's Project 8
## 2394 Injustice: Gods Among Us
## 2395 NHL 2000
## 2396 Buzz! Master Quiz
## 2397 Brothers in Arms: Hell's Highway
## 2398 Fight Night Round 2
## 2399 Wizards of Waverly Place
## 2400 Scooby-Doo! First Frights
## 2401 Conflict: Desert Storm
## 2402 Triple Play 2002
## 2403 Vagrant Story
## 2404 Lemmings
## 2405 Warriors Orochi
## 2406 Guitar Hero: Warriors of Rock
## 2407 Enduro
## 2408 Tales of Xillia 2
## 2409 SingStar '90s
## 2410 Monster Strike 3DS
## 2411 Tomb Raider: Anniversary
## 2412 Winning Eleven: Pro Evolution Soccer 2007
## 2413 Darksiders II
## 2414 Ghostbusters: The Video Game
## 2415 The World Ends With You
## 2417 Rocky
## 2418 Dragon Quest VIII: Journey of the Cursed King
## 2419 Ford Racing
## 2420 Madden Football 64
## 2421 MLB 99
## 2422 Dragon Ball Z: Burst Limit
## 2424 The Legendary Starfy
## 2425 2010 FIFA World Cup South Africa
## 2426 Dynasty Warriors 4: Xtreme Legends
## 2427 Ninja Gaiden Sigma 2
## 2428 Forza Horizon 2
## 2429 Skate 2
## 2430 FIFA Soccer 08
## 2431 Army Men: Air Attack
## 2432 Need for Speed: Nitro
## 2433 Madden NFL 09 All-Play
## 2434 NBA 2K8
## 2435 Far Cry: Primal
## 2436 Street Fighter Alpha 2
## 2437 Tiger Woods PGA Tour 2005
## 2438 Army of Two: The 40th Day
## 2439 Blazing Angels: Squadrons of WWII
## 2440 Castlevania III: Dracula's Curse
## 2441 Harry Potter and the Order of the Phoenix
## 2442 Rampage World Tour
## 2443 Burnout Legends
## 2444 WWE 2K15
## 2445 Overwatch
## 2446 Ratatouille
## 2447 NFL GameDay
## 2448 Burnout 2: Point of Impact
## 2449 Kirby: Planet Robobot
## 2450 Street Fighter EX3
## 2451 Karaoke Revolution Glee
## 2452 Sniper Elite V2
## 2453 Thief (2014)
## 2454 Spider-Man 2
## 2455 Golden Sun: Dark Dawn
## 2456 Tiger Woods PGA Tour 11
## 2457 Devil May Cry HD Collection
## 2458 MLB 16: The Show
## 2459 NBA 2K10
## 2460 Xenoblade Chronicles X
## 2461 Petz Dogz Fashion
## 2462 The Incredibles
## 2463 NCAA Football 11
## 2464 Dragon Age II
## 2465 ATV Quad Power Racing 2
## 2466 Harvest Moon: Tree of Tranquility
## 2467 Final Fantasy
## 2468 Street Fighter X Tekken
## 2469 Rocket Power: Team Rocket Rescue
## 2470 Duke Nukem Forever
## 2471 Big Mutha Truckers
## 2472 Borderlands: The Handsome Collection
## 2473 Rogue Galaxy
## 2474 ESPN College Hoops 2K5
## 2475 Metroid: Zero Mission
## 2476 FIFA 15
## 2477 Time Crisis 4
## 2478 Ben 10: Protector of Earth
## 2479 Need for Speed Rivals
## 2480 Q*bert
## 2481 WWE SmackDown vs. Raw 2009
## 2482 Ace Combat 3: Electrosphere
## 2483 Dynasty Warriors 2
## 2484 Battle of Giants: Dinosaurs
## 2486 Lizzie McGuire 2: Lizzie Diaries
## 2487 Borderlands 2
## 2488 FIFA Soccer World Championship
## 2489 Brute Force
## 2490 Dance Central 3
## 2491 Yu-Gi-Oh! Dark Duel Stories
## 2492 The Game of Life
## 2493 Mega Man Legends
## 2494 NCAA Football 12
## 2495 Sly 3: Honor Among Thieves
## 2496 The Price is Right
## 2497 Sid Meier's Civilization Revolution
## 2499 I Spy: Fun House
## 2500 The Amazing Spider-Man (Console Version)
## 2501 Dragon Ball: Raging Blast 2
## 2502 MediEvil
## 2503 Casper
## 2504 Deca Sports 2
## 2505 James Bond 007: Nightfire
## 2506 Madden NFL 17
## 2507 Tony Hawk's Underground 2 Remix
## 2508 Tony Hawk's Pro Skater 3
## 2509 Marvel: Ultimate Alliance
## 2510 Star Wars The Clone Wars: Republic Heroes
## 2511 DJ Hero 2
## 2512 Street Fighter V
## 2513 Need for Speed: Hot Pursuit 2
## 2514 Clu Clu Land
## 2515 Killer Instinct Gold
## 2516 Amped: Freestyle Snowboarding
## 2517 Custer's Revenge
## 2518 MediEvil: Resurrection
## 2519 DmC: Devil May Cry
## 2520 Tales of the Abyss
## 2521 Rocket Power: Beach Bandits
## 2522 Guitar Hero: Warriors of Rock
## 2523 Hasbro Family Game Night 3
## 2524 Madden NFL 16
## 2525 Stranglehold
## 2526 Imagine: Rock Star
## 2527 Shin Megami Tensei: Persona 4
## 2528 SingStar Vol. 2
## 2530 Madden NFL 25
## 2531 Twisted Metal (2012)
## 2532 Dragon Warrior III
## 2533 Disney's The Little Mermaid: Ariel's Undersea Adventure
## 2534 Ready 2 Rumble Boxing: Round 2
## 2535 Kamaitachi no Yoru
## 2536 Patapon
## 2537 Tales of Destiny II
## 2538 Super Bomberman 2
## 2539 NASCAR 2001
## 2540 EA Sports Active NFL Training Camp
## 2541 The Legend of Zelda: Four Swords Adventures
## 2542 Jikkyou Powerful Pro Yakyuu '99 Kaimakuban
## 2543 Guitar Hero Live
## 2544 Valkyrie Profile
## 2545 Final Fantasy Type-0
## 2546 Pro Evolution Soccer 2010
## 2547 Army Men: Sarge's Heroes
## 2548 Mega Man
## 2549 Tom Clancy's Rainbow Six 3
## 2550 Lego Batman 3: Beyond Gotham
## 2551 EarthBound
## 2552 DiRT 2
## 2553 Professor Layton vs Phoenix Wright: Ace Attorney
## 2554 The Next Tetris
## 2555 Dying Light
## 2556 NCAA Football 10
## 2557 Ben 10: Alien Force
## 2558 World Soccer Jikkyou Winning Eleven 3: World Cup France '98
## 2559 Final Fantasy XI: Wings of the Goddess
## 2560 The Sims 2
## 2561 Guitar Hero: Metallica
## 2562 NCAA Football 14
## 2563 MadWorld
## 2564 Fight Night Champion
## 2565 Who wants to be a millionaire
## 2566 Yakuza
## 2567 Star Wars Rogue Squadron III: Rebel Strike
## 2568 ABBA: You Can Dance
## 2569 Moto Racer
## 2570 Hitman: Contracts
## 2571 The Sims 2: Pets
## 2572 Final Fantasy Anthology
## 2573 Aliens: Colonial Marines
## 2574 Pro Evolution Soccer 2010
## 2575 [Prototype 2]
## 2576 Sonic & SEGA All-Stars Racing with Banjo-Kazooie
## 2577 Goldeneye 007: Reloaded
## 2578 NBA 2K16
## 2579 All Star Cheer Squad
## 2580 The Sims 2: Castaway
## 2581 Prince of Persia: Warrior Within
## 2582 Dragon's Dogma
## 2583 Darksiders II
## 2584 Resident Evil: Revelations
## 2585 Rayman Raving Rabbids 2
## 2586 Super Robot Taisen α
## 2588 Need for Speed: Hot Pursuit 2
## 2589 Star Wars: The Force Unleashed II
## 2590 Band Hero
## 2591 Mario & Sonic at the Sochi 2014 Olympic Winter Games
## 2592 Tales of Destiny 2
## 2593 Capcom's Soccer Shootout
## 2594 Sniper: Ghost Warrior
## 2595 The Godfather II
## 2596 pro evolution soccer 2011
## 2597 Alien
## 2598 Dragon Ball Z: Budokai Tenkaichi 2
## 2599 The Walking Dead: Season One
## 2600 Rayman Origins
## 2601 Guitar Hero: Aerosmith
## 2602 Ridge Racer
## 2603 Final Fantasy Tactics A2: Grimoire of the Rift
## 2604 Harvest Moon: A Wonderful Life
## 2605 Momotarou Dentetsu 7
## 2606 Invizimals
## 2607 Motocross Mania
## 2608 Tiger Woods PGA Tour 10
## 2609 Star Wars The Clone Wars: Jedi Alliance
## 2610 WCW Mayhem
## 2611 Mega Man 5
## 2612 Star Ocean: The Last Hope
## 2613 Dance Dance Revolution SuperNOVA 2
## 2614 Armored Core 2
## 2615 Dragon Quest Monsters 2
## 2616 Ghost Squad
## 2617 Dead Island: Riptide
## 2618 Drawn to Life
## 2619 Major League Baseball Featuring Ken Griffey Jr
## 2620 FIFA 12
## 2621 Too Human
## 2622 Sid Meier's Civilization Revolution
## 2623 NCAA Football 08
## 2624 FIFA Soccer 2004
## 2625 Personal Trainer: Walking
## 2626 Naruto Shippuden: Ultimate Ninja Storm 2
## 2627 PokePark 2: Wonders Beyond
## 2628 Professor Layton and the Azran Legacy
## 2629 Tom Clancy's Splinter Cell: Double Agent
## 2630 Yars' Revenge
## 2631 Lips
## 2632 Secret Agent Barbie: Royal Jewels Mission
## 2633 Metroid Prime Hunters
## 2634 The 7th Guest
## 2635 Doom
## 2636 Buzz! The Hollywood Quiz
## 2637 Puzzler World
## 2638 My Little Pony: Pinkie Pie's Party
## 2639 We Sing
## 2640 Marvel vs. Capcom: Clash of Super Heroes
## 2641 God of War Saga
## 2642 Battle Stations
## 2643 Tetris Party Deluxe
## 2644 Pro Evolution Soccer 2016
## 2645 Worms: Open Warfare
## 2646 Star Wars Battlefront: Elite Squadron
## 2647 UFC Personal Trainer: The Ultimate Fitness System
## 2648 Resident Evil: Operation Raccoon City
## 2649 NBA 2K7
## 2650 Need for Speed: ProStreet
## 2651 Toy Story 3: The Video Game
## 2652 Torneko no Daibouken: Fushigi no Dungeon
## 2653 Jr. Pac-Man
## 2654 James Bond 007: Nightfire
## 2655 Banjo-Kazooie: Nuts & Bolts
## 2656 NBA ShootOut 98
## 2657 Avatar: The Game
## 2658 Harry Potter and the Half-Blood Prince
## 2659 DJ Hero
## 2660 Perfect Dark Zero
## 2661 Galaxian
## 2662 Andretti Racing
## 2663 Caesars Palace 2000: Millennium Gold Edition
## 2664 Madden NFL 25
## 2665 Air Raid
## 2666 Need For Speed: Undercover
## 2667 Duke Nukem Forever
## 2668 Freedom Wars
## 2669 Marvel Nemesis: Rise of the Imperfects
## 2670 Boxing
## 2671 Need for Speed: Porsche Unleashed
## 2672 Dragon Ball: Raging Blast
## 2673 Crystal Castles
## 2674 Conker's Bad Fur Day
## 2675 Dragon Warrior I&II
## 2676 Star Wars Episode II: Attack of the Clones
## 2677 My Baby Girl
## 2678 LEGO Batman 2: DC Super Heroes
## 2679 Twisted Metal: Head On
## 2680 Conflict: Desert Storm II - Back to Bagdhad
## 2681 Maximo: Ghosts to Glory
## 2682 Pokemon Dash
## 2683 Donkey Kong Country 3
## 2684 All-Star Baseball 2003
## 2685 Unlimited Saga
## 2686 Cabela's Deer Hunt: 2004 Season
## 2687 Sonic Unleashed
## 2688 Formula 1
## 2689 Plants vs. Zombies: Garden Warfare
## 2690 Raving Rabbids: Travel in Time
## 2691 The Sims 3
## 2692 Driv3r
## 2693 Mercenaries: Playground of Destruction
## 2694 MTV Celebrity Deathmatch
## 2695 Street Fighter Alpha: Warriors' Dreams
## 2696 Mortal Kombat
## 2697 ISS Pro Evolution
## 2698 Lost Planet 2
## 2699 SoulCalibur V
## 2700 Portal 2
## 2701 Super Monkey Ball: Touch & Roll
## 2702 Pro Evolution Soccer 2015
## 2703 Drawn to Life: The Next Chapter
## 2704 The Lord of the Rings: Conquest
## 2705 Final Fantasy II
## 2706 Tony Hawk's Pro Skater 2
## 2707 Taiko no Tatsujin: Tatakon de Dodon ga Don
## 2708 Mega Man Battle Network 6: Cybeast Falzar / Gregar
## 2709 Syphon Filter: The Omega Strain
## 2710 FIFA Soccer 11
## 2711 Deer Drive
## 2712 Kane & Lynch: Dead Men
## 2713 Assassin's Creed: Revelations
## 2714 Mortal Kombat: Deception
## 2715 Ace Attorney Investigations: Miles Edgeworth
## 2716 That's So Raven
## 2717 FIFA 15
## 2718 Marvel vs. Capcom 2: New Age of Heroes
## 2719 Need for Speed: Shift
## 2720 Kane & Lynch: Dead Men
## 2721 Dark Souls II
## 2722 True Crime: New York City
## 2723 Legends of Wrestling
## 2724 Rockstar Games presents Table Tennis
## 2725 Monopoly Streets
## 2726 Genji: Days of the Blade
## 2727 Harvest Moon: Animal Parade
## 2728 Final Fantasy Legend III
## 2729 Total War: Rome II
## 2730 Rare Replay
## 2731 Spectrobes
## 2732 Wall-E
## 2733 WWE SmackDown vs. Raw 2009
## 2734 Band Hero
## 2735 Mega Man X5
## 2736 Tearaway
## 2737 DJ Hero 2
## 2738 The Godfather II
## 2739 WWE SmackDown vs. Raw 2010
## 2740 Turok
## 2741 [Prototype 2]
## 2742 Shark Tale
## 2743 San Francisco Rush: Extreme Racing
## 2744 The Amazing Spider-Man (Console Version)
## 2745 Zone of the Enders
## 2746 Red Faction: Guerrilla
## 2747 Street Fighter EX Plus Alpha
## 2748 Madden NFL 06
## 2749 Coded Arms
## 2750 Tony Hawk's Underground 2
## 2751 Tales of Vesperia
## 2752 X-Men Origins: Wolverine - Uncaged Edition
## 2753 Madagascar: Escape 2 Africa
## 2754 Split/Second
## 2755 Capcom vs. SNK 2: Mark of the Millennium 2001
## 2756 MVP 06 NCAA Baseball
## 2757 Just Dance 2015
## 2758 Borderlands: The Pre-Sequel
## 2759 LittleBigPlanet 3
## 2760 Marvel: Ultimate Alliance 2
## 2761 Sega Superstars Tennis
## 2762 The Walking Dead: Season One
## 2763 Ace Combat: Assault Horizon
## 2764 Jump Ultimate Stars
## 2765 Jampack Summer 2001
## 2766 Resonance of Fate
## 2767 Burnout
## 2768 Tom Clancy's Rainbow Six: Vegas
## 2769 Final Fantasy XIII-2
## 2770 LEGO Batman 2: DC Super Heroes
## 2771 Mortal Kombat: Unchained
## 2772 Mario & Luigi: Paper Jam
## 2773 Yu-Gi-Oh! Dungeon Dice Monsters
## 2774 Brink
## 2775 LEGO Marvel Super Heroes
## 2776 Blur
## 2778 Namco Museum Remix
## 2779 Midnight Club 3: DUB Edition
## 2780 Crysis 2
## 2781 The Lord of the Rings: The Two Towers
## 2782 Tiger Woods PGA Tour 2001
## 2783 Indiana Jones and the Staff of Kings
## 2784 Jet Moto 3
## 2785 Naruto Shippuden: Ultimate Ninja Storm Generations
## 2786 Unreal Championship
## 2788 Pirates of the Caribbean: At World's End
## 2789 Tiger Woods PGA Tour 08
## 2790 Persona 4: Arena
## 2791 Sword of Mana
## 2792 Harvest Moon DS: Island of Happiness
## 2793 Star Ocean: The Last Hope International
## 2794 The Sims 2: Castaway
## 2795 FIFA: Road to World Cup 98
## 2796 Dragon Ball Z: Ultime Menace
## 2797 Classic NES Series: Donkey Kong
## 2798 Call of Duty: Ghosts
## 2799 Yoshi
## 2800 Mortal Kombat 4
## 2801 F1 2011
## 2802 Madden NFL 10
## 2803 Kirby: Canvas Curse
## 2804 Croc 2
## 2805 Practise English!
## 2806 Oddworld: Munch's Oddysee
## 2807 Berzerk
## 2808 NHL 11
## 2809 Dragon Age: Inquisition
## 2810 iCarly
## 2811 DiRT 3
## 2812 NCAA Football 07
## 2813 Just Dance Wii
## 2814 Full Spectrum Warrior
## 2815 Katamari Damacy
## 2816 Beyblade VForce: Ultimate Blader Jam
## 2817 Ratchet & Clank Collection
## 2818 Avatar: The Game
## 2819 Shaun Palmer's Pro Snowboarder
## 2820 MX vs. ATV Reflex
## 2821 Imagine: Interior Designer
## 2822 SSX
## 2823 Style Savvy: Trendsetters
## 2824 James Bond 007: Agent Under Fire
## 2825 XCOM: Enemy Unknown
## 2826 Rabbids Go Home
## 2827 Star Wars Episode III: Revenge of the Sith
## 2828 Ultimate Spider-Man
## 2829 FIFA Soccer 13
## 2830 God Eater
## 2831 Final Fantasy XIV: A Realm Reborn
## 2832 SD Gundam G Generation
## 2833 Area 51
## 2834 NBA Live 08
## 2835 Dead to Rights
## 2836 Tiger Woods PGA Tour 07
## 2837 Test Drive 6
## 2838 Kouchuu Ouja Mushi King
## 2840 Major League Baseball 2K7
## 2841 X-Men: Mutant Academy 2
## 2842 Terraria
## 2843 Jampack Winter 2001
## 2844 Kangaroo
## 2845 James Bond 007: Blood Stone
## 2846 Ben 10: Protector of Earth
## 2847 Skate
## 2848 Super Monkey Ball Jr.
## 2849 Driver: San Francisco
## 2850 MLB 09: The Show
## 2851 Monster Hunter Tri
## 2852 Mobile Suit Gundam: Encounters in Space
## 2853 Catherine
## 2854 Fear Effect
## 2855 FIFA Soccer 11
## 2856 Crysis
## 2857 Battlefield: Bad Company 2
## 2858 The Lord of the Rings: The Two Towers
## 2859 Madden NFL 2003
## 2860 Dragon Quest Swords: The Masked Queen and the Tower of Mirrors
## 2861 MLB 13: The Show
## 2862 Omerta: City of Gangsters
## 2863 Dragon Quest Heroes: The World's Tree Woe and the Blight Below
## 2864 Virtua Fighter 4: Evolution
## 2865 Top Spin 4
## 2866 Resident Evil: Survivor
## 2867 Dynasty Warriors 6
## 2868 Super Trucks Racing
## 2869 Persona Q: Shadow of the Labyrinth
## 2870 Madden NFL 08
## 2871 Godzilla: Destroy All Monsters Melee
## 2872 Jeremy McGrath Supercross 2000
## 2873 Conker: Live And Reloaded
## 2874 Silent Hill 3
## 2875 Madden NFL 09
## 2876 Final Fantasy X/X-2 HD Remaster
## 2877 Yu-Gi-Oh! The Falsebound Kingdom
## 2878 LEGO Rock Band
## 2879 MLB 10: The Show
## 2880 Spyro: Enter the Dragonfly
## 2881 Scooby-Doo 2: Monsters Unleashed
## 2882 Power Rangers: Dino Thunder
## 2883 Rhythm Heaven: The Best+
## 2884 LEGO Racers
## 2885 WWF Attitude
## 2886 Blast Corps
## 2887 LEGO Harry Potter: Years 1-4
## 2888 Tactics Ogre: Let Us Cling Together
## 2889 WarioWare, Inc.: Mega Party Game$
## 2890 Football Manager 2014
## 2891 Battle Arena Toshinden 2
## 2892 WWE SmackDown vs. Raw 2011
## 2893 Jeopardy!
## 2894 South Park
## 2895 Metal Gear Solid V: The Phantom Pain
## 2896 Two Worlds
## 2897 Doom 3: Resurrection of Evil
## 2898 NCAA Football 09
## 2899 NBA Live 09
## 2900 Ratchet & Clank: Into the Nexus
## 2901 Spider-Man 2
## 2902 2014 FIFA World Cup Brazil
## 2903 London 2012: The Official Video Game of the Olympic Games
## 2904 NHL 12
## 2905 Tony Hawk's Underground
## 2906 Infinite Undiscovery
## 2907 Super Bomberman 3
## 2908 Command & Conquer: Red Alert Retaliation
## 2909 The Sims 2: Apartment Pets
## 2910 Star Wars: Obi-Wan
## 2911 NCAA Football 08
## 2912 Kill.Switch
## 2913 Lalaloopsy
## 2914 Madden NFL 2005
## 2915 F-14 Tomcat
## 2916 SplashDown
## 2917 NCAA Football 98
## 2918 Jade Empire
## 2919 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 2920 The Sims 3
## 2921 Skylanders: Trap Team
## 2922 Prince of Persia: The Forgotten Sands
## 2923 Chocobo's Dungeon 2
## 2924 Advance Wars
## 2925 Hannah Montana: The Movie
## 2926 World of Zoo
## 2927 Ape Escape: On the Loose
## 2928 NASCAR 2001
## 2929 IL-2 Sturmovik: Birds of Prey
## 2930 Book of Spells
## 2931 NCAA Football 2001
## 2932 Mafia
## 2933 Mobile Suit Gundam: Journey to Jaburo
## 2934 Metal Gear Solid V: The Phantom Pain
## 2935 TimeSplitters 2
## 2936 MotionSports
## 2937 MLB 08: The Show
## 2938 Classic NES Series: Zelda II: The Adventure of Link
## 2939 Fire Emblem: Monsh? no Nazo
## 2940 Disney's Chicken Little
## 2941 King Kong
## 2942 WWE 2K15
## 2943 The LEGO Movie Videogame
## 2944 X-Men Origins: Wolverine - Uncaged Edition
## 2945 Metal Gear Solid: Portable Ops Plus
## 2946 Disney Tangled
## 2947 Shrek the Third
## 2949 Moto Racer 2
## 2950 Halo 2 Multiplayer Map Pack
## 2951 Minecraft: Story Mode
## 2952 Mortal Kombat: Shaolin Monks
## 2953 MX vs. ATV Unleashed: On the Edge
## 2954 Skylanders: Trap Team
## 2955 Mario Pinball Land
## 2956 Mappy
## 2957 J-League Soccer: Prime Goal
## 2958 Dragon Ball Z: Budokai
## 2959 NFL Xtreme
## 2960 The Sly Collection
## 2961 One Piece: Pirate Warriors 2
## 2962 Assassin's Creed IV: Black Flag
## 2963 Harry Potter and the Chamber of Secrets
## 2964 Need for Speed: Shift 2 Unleashed
## 2965 The Lord of the Rings: The Return of the King
## 2966 Nintendo Presents: New Style Boutique 2 - Fashion Forward
## 2967 MX vs. ATV Untamed
## 2968 The Last Remnant
## 2969 Frozen: Olaf's Quest
## 2970 The Sims: Medieval
## 2971 Baldur's Gate: Dark Alliance II
## 2972 Shark Tale
## 2973 Plants vs. Zombies: Garden Warfare
## 2974 Kirby's Dream Collection: Special Edition
## 2975 Bakugan: Battle Brawlers
## 2976 Star Wars: Masters of Teras Kasi
## 2977 The Last Story
## 2978 NBA Street Vol. 2
## 2979 Iron Man
## 2980 Disney Infinity 3.0
## 2981 Spider-Man 3
## 2982 NCAA Football 2005
## 2983 Mortal Kombat Mythologies: Sub-Zero
## 2984 Rayman Legends
## 2985 Naruto: Clash of Ninja
## 2986 Prince of Persia: The Two Thrones
## 2987 Hot Shots Golf: Open Tee 2
## 2988 Metro: Last Light
## 2989 Fossil Fighters: Champions
## 2990 Mercenaries: Playground of Destruction
## 2991 Sniper Elite 3
## 2992 Doom (2016)
## 2993 Bushido Blade 2
## 2994 Suikoden II
## 2995 Need for Speed (2015)
## 2996 Cars: Mater-National Championship
## 2997 FIFA Soccer 06
## 2998 Hidden Objects: Mystery Stories
## 2999 Red Steel
## 3000 Fight Night 2004
## 3001 Tourist Trophy: The Real Riding Simulator
## 3002 Mass Effect
## 3003 .hack//Mutation Part 2
## 3004 Country Dance
## 3005 Turok
## 3006 Midway Arcade Treasures 2
## 3007 100 Classic Books
## 3008 Unreal Tournament III
## 3009 Final Fantasy Crystal Chronicles: Ring of Fates
## 3010 Return to Castle Wolfenstein: Tides of War
## 3011 Need for Speed Rivals
## 3012 Lollipop Chainsaw
## 3013 The Darkness
## 3014 Street Sk8er
## 3015 Club Penguin: Elite Penguin Force - Herbert's Revenge
## 3016 Contra: Legacy of War
## 3017 Blazing Angels: Squadrons of WWII
## 3018 Fight Night Round 2004
## 3019 Wolfenstein: The New Order
## 3020 The Biggest Loser: Challenge
## 3021 Zaidan Houjin Nippon Kanji Nouryoko Kentei Kyoukai Kounin: KanKen DS
## 3022 Spice World
## 3023 Star Wars: Republic Commando
## 3024 Armored Core 3
## 3025 Need For Speed: Undercover
## 3026 Taiko no Tatsujin Wii
## 3027 The Witcher 3: Wild Hunt
## 3028 Virtua Tennis: World Tour (US & Others sales)
## 3029 The LEGO Movie Videogame
## 3030 Ratatouille
## 3031 RIFT
## 3032 Wild ARMs 2
## 3033 Summer Sports: Paradise Island (Others sales)
## 3034 Castlevania: Lords of Shadow
## 3035 BioShock Infinite
## 3036 Minecraft: Story Mode
## 3037 TV Show King Party
## 3038 Crafting Mama
## 3039 007: Quantum of Solace
## 3040 Rock Band 3
## 3041 Command & Conquer: Red Alert 3
## 3042 The Fairly Odd Parents: Breakin Da Rules
## 3043 WWE SmackDown vs. RAW 2007
## 3044 Peppa Pig: Fun and Games
## 3045 Adventures of Tron
## 3046 Phoenix Wright: Ace Attorney - Trials and Tribulations
## 3047 NHL 13
## 3048 Borderlands: The Pre-Sequel
## 3049 The Sims 3: High-End Loft Stuff
## 3051 Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Koushiki Soft: 200 Mannin no KanKen: Tokoton Kanji Nou
## 3052 Pro Pinball: Big Race USA
## 3053 NFL Street
## 3054 Shaun White Snowboarding
## 3055 The LEGO Movie Videogame
## 3056 Tony Hawk's Proving Ground
## 3057 MLB 2004
## 3058 Naruto Shippuden: Ultimate Ninja 4
## 3059 Tiger Woods PGA Tour 2000
## 3060 Darkstone
## 3061 NCAA March Madness 2003
## 3062 Finding Nemo
## 3063 Thrillville
## 3064 NHL 10
## 3065 Jikkyou World Soccer 2000 Final Edition
## 3066 Madagascar
## 3067 Puzzler Brain Games
## 3068 Dragon Quest Monsters: Caravan Heart
## 3069 Strawberry Shortcake: Summertime Adventure
## 3070 Rayman Legends
## 3071 Rocksmith 2014
## 3072 Street Fighter Anniversary Collection
## 3073 Legend of Legaia
## 3074 Napoleon: Total War
## 3075 Fist of the North Star: Ken's Rage
## 3076 Wario: Master of Disguise
## 3077 Toy Story 3: The Video Game
## 3078 The Sims: Bustin' Out
## 3079 Tiger Woods PGA Tour 09
## 3080 Keystone Kapers
## 3081 LEGO Marvel Super Heroes
## 3082 New Play Control! Pikmin
## 3083 Shrek: Hassle at the Castle
## 3084 Suikoden IV
## 3085 Gods Eater Burst
## 3086 Disney's Kim Possible 2: Drakken's Demise
## 3087 Um Jammer Lammy
## 3088 Brothers In Arms: Road to Hill 30
## 3089 Madden NFL 10
## 3090 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3091 Taiko no Tatsujin DS: Touch de Dokodon!
## 3092 F1 2015
## 3093 Scene It? Box Office Smash
## 3094 Animaniacs Ten Pin Alley
## 3095 Disney Infinity 2.0: Marvel Super Heroes
## 3096 NHL 13
## 3097 Kung Fu Panda
## 3098 Tom Clancy's EndWar
## 3099 The Evil Within
## 3100 Tiger Woods PGA Tour 09
## 3101 Radiata Stories
## 3102 F-Zero GX
## 3103 Disney's Chicken Little
## 3104 Wall-E
## 3105 Yoshi Topsy-Turvy
## 3106 Up
## 3107 Monster Jam: Maximum Destruction
## 3108 Real Heroes: Firefighter
## 3109 Cartoon Network Block Party / Cartoon Network Speedway Double Pack
## 3110 World of Dragon Warrior - Torneko: The Last Hope
## 3111 Drawn to Life: The Next Chapter
## 3112 MLB 14: The Show
## 3113 Tiger Woods PGA Tour 10
## 3114 Advance Wars 2: Black Hole Rising
## 3115 Fire Emblem: Shadow Dragon
## 3116 Centipede
## 3117 Drakengard
## 3118 SingStar Pop Hits
## 3119 Kung-Fu Master
## 3120 Champions: Return to Arms
## 3121 Harry Potter and the Goblet of Fire
## 3122 SingStar R&B
## 3123 Mary-Kate and Ashley: Magical Mystery Mall
## 3124 MX vs. ATV Untamed
## 3125 Disney Sing It: Party Hits
## 3126 Dead or Alive 5
## 3127 Star Ocean: First Departure
## 3128 Super Robot Taisen Impact
## 3129 Dragon Age: Inquisition
## 3130 The Black Eyed Peas Experience
## 3131 Meccha! Taiko no Tatsujin Master DS: 7-tsu no Shima no Daibouken
## 3132 Sengoku Basara: Samurai Heroes
## 3133 Crysis 3
## 3134 Paws & Claws: Pet Vet
## 3135 Harry Potter and the Half-Blood Prince
## 3136 Crash Bandicoot Purple: Ripto's Rampage
## 3137 Diablo III
## 3138 Spyro: A Hero's Tail
## 3139 Crash of the Titans
## 3140 Aliens: Colonial Marines
## 3141 Crash: Twinsanity
## 3143 Max Payne 2: The Fall of Max Payne
## 3144 Dragon Ball: Raging Blast 2
## 3145 GoldenEye: Rogue Agent
## 3146 NBA 2K17
## 3147 Lost Planet: Extreme Condition
## 3148 XCOM: Enemy Unknown
## 3149 Rayman 3D
## 3150 LEGO Marvel's Avengers
## 3151 James Bond 007: Everything or Nothing
## 3152 X2: Wolverine's Revenge
## 3153 Stuntman: Ignition
## 3154 NBA Live 06
## 3155 Dragon Age II
## 3156 LEGO Star Wars II: The Original Trilogy
## 3157 Tom Clancy's Rainbow Six
## 3158 Castlevania
## 3159 Rayman 2: The Great Escape
## 3160 Nicktoons Collection: Game Boy Advance Video Volume 1
## 3161 The Lord of the Rings: Conquest
## 3162 TimeSplitters 2
## 3163 Onimusha: Dawn of Dreams
## 3164 NieR
## 3165 The Princess and the Frog
## 3166 Sega Rally Revo
## 3167 SpongeBob SquarePants: Game Boy Advance Video Volume 1
## 3168 Gravity Rush
## 3169 Konami Collector's Series: Arcade Advanced
## 3170 White Knight Chronicles II
## 3171 Wolfenstein
## 3172 Jampack Volume 13 (RP-T)
## 3173 LEGO Dimensions
## 3174 Start the Party!
## 3175 Cruis'n World
## 3176 Madden NFL 2001
## 3177 NBA Live 08
## 3178 The Walking Dead: Survival Instinct
## 3179 Donkey Kong Barrel Blast
## 3180 Okami
## 3181 Lemony Snicket's A Series of Unfortunate Events
## 3182 Middle-Earth: Shadow of Mordor
## 3183 Family Feud: 2010 Edition
## 3184 Red Steel 2
## 3185 X-Men Legends II: Rise of Apocalypse
## 3186 Nightmare Creatures
## 3187 SingStar Queen
## 3188 Just Dance 2015
## 3189 F1 2013
## 3190 Juiced 2: Hot Import Nights
## 3191 Tony Hawk's Pro Skater 2x
## 3192 Sim Theme Park
## 3193 FIFA Soccer 2003
## 3194 Ghostbusters: The Video Game
## 3196 NASCAR 06: Total Team Control
## 3197 Tony Hawk's Project 8
## 3198 Dogz
## 3199 Disney Universe
## 3200 Guitar Hero: Metallica
## 3201 Iron Man
## 3202 Taiko no Tatsujin: Chibi Dragon to Fushigi na Orb
## 3203 Harry Potter and the Half-Blood Prince
## 3204 A Bug's Life
## 3205 Super Castlevania IV
## 3206 DJ Hero 2
## 3207 Angry Birds Trilogy
## 3208 Condemned 2: Bloodshot
## 3209 Cabela's Big Game Hunter (2008)
## 3210 Mobile Suit Z Gundam: AEUG vs. Titans
## 3211 Just Dance 3
## 3212 Call of Duty: Black Ops
## 3213 God of War III
## 3214 Ape Escape 2
## 3215 Metroid Prime: Trilogy
## 3216 X-Man
## 3217 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 3219 The Sims 3: Generations
## 3220 The Crew
## 3221 Battle of Giants: Dragons
## 3222 Dragon Quest Monsters Joker 3
## 3223 Sonic & All-Stars Racing Transformed
## 3224 Shin Megami Tensei: Persona 3 FES
## 3225 FIFA Soccer 2002
## 3226 Shin Megami Tensei: Persona 3 Portable
## 3227 Final Fantasy VII International
## 3228 Tiger Woods PGA Tour 12: The Masters
## 3229 Okami
## 3230 NHL 2001
## 3231 World of Zoo
## 3232 LEGO Jurassic World
## 3233 Wet
## 3234 MySims Racing
## 3235 Buzz Lightyear of Star Command
## 3236 Namco Museum
## 3237 Nobunaga no Yabou: Haouden
## 3238 Virtua Cop
## 3240 Tony Hawk's American Wasteland
## 3241 WWF in Your House
## 3242 Prince of Persia: The Forgotten Sands
## 3243 Vanquish
## 3244 Wild ARMs 3
## 3245 NBA ShootOut '97
## 3246 Sacred 2: Fallen Angel
## 3247 Madden NFL 07
## 3248 Far Cry 4
## 3249 Battlezone
## 3250 Tiger Woods PGA Tour 2004
## 3251 LEGO Pirates of the Caribbean: The Video Game
## 3252 Pro Evolution Soccer 2015
## 3253 Evolve
## 3254 Tak 2: The Staff of Dreams
## 3255 Dead Island: Riptide
## 3256 Warriors Orochi 3
## 3257 Bolt
## 3258 Viewtiful Joe
## 3259 The Urbz: Sims in the City
## 3260 Beetle Adventure Racing!
## 3261 FIFA Soccer
## 3262 Disney's 102 Dalmatians: Puppies to the Rescue
## 3263 Wipeout: The Game
## 3264 Strike Force Bowling
## 3265 SpongeBob's Atlantis SquarePantis
## 3266 Metal Gear Solid V: Ground Zeroes
## 3267 Halloween
## 3268 Dragon Ball Z: Ultimate Tenkaichi
## 3269 WWE SmackDown vs. Raw 2010
## 3270 Bass Landing
## 3271 XGRA: Extreme G-Racing Association
## 3272 Mario's Picross
## 3273 Pac-Man Player's Choice Bundle
## 3274 Rocksmith 2014
## 3275 Fighters MEGAMiX
## 3276 Bahamut Lagoon
## 3277 Wall-E
## 3278 Tomb Raider III: Adventures of Lara Croft
## 3279 Toshochu: Run for Money
## 3280 Dragon Quest Monsters: Joker 2 Professional
## 3281 NFL Quarterback Club 99
## 3282 Super Robot Taisen α Gaiden
## 3283 Formula 1: Championship Edition
## 3284 Muramasa: The Demon Blade
## 3285 NBA 2K9
## 3286 SingStar Singalong With Disney
## 3287 NHL 16
## 3288 Plants vs. Zombies: Garden Warfare
## 3289 NFL Fever 2003
## 3290 Samurai Warriors 2
## 3291 Dynasty Warriors 8
## 3292 Disney Sing It: Family Hits
## 3293 2 Games in 1: Sonic Battle & ChuChu Rocket!
## 3294 Robotech: Battlecry
## 3295 Dora the Explorer: Super Spies
## 3296 New Carnival Games
## 3297 Tony Hawk: RIDE
## 3298 Just Dance 2014
## 3299 Cooking Mama 4: Kitchen Magic!
## 3300 Texas Hold 'Em Poker
## 3301 Time Crisis 3
## 3302 Cabela's Monster Buck Hunter
## 3303 Ganbaru Watashi no Kakei Diary
## 3304 pro evolution soccer 2011
## 3305 New Play Control! Donkey Kong Jungle Beat
## 3306 Small Soldiers
## 3307 Yakuza: Dead Souls
## 3308 Littlest Pet Shop: Garden
## 3309 Half-Life 2
## 3310 Duke Nukem: Total Meltdown
## 3311 Pac-Man Party
## 3312 Jak and Daxter: The Lost Frontier
## 3313 Major League Baseball 2K8
## 3314 SimCity DS
## 3315 Major League Baseball 2K9
## 3316 Petz: Dogz Pack
## 3317 Split/Second
## 3318 Final Fantasy IV Advance
## 3319 Madden NFL 2003
## 3320 Tomb Raider Chronicles
## 3321 Harry Potter and the Goblet of Fire
## 3322 Dragon Ball Z: Buu's Fury
## 3323 Madden NFL 2002
## 3324 Guitar Hero: Smash Hits
## 3325 Disney TH!NK Fast: The Ultimate Trivia Showdown
## 3326 Spider-Man: Mysterio's Menace
## 3327 Madden NFL 2000
## 3328 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3329 Game & Watch Gallery 4
## 3330 Littlest Pet Shop: Jungle
## 3331 Naruto: Ultimate Ninja
## 3332 Fighters Uncaged
## 3333 Call of Juarez: Bound in Blood
## 3334 New Play Control! Pikmin 2
## 3335 Tony Hawk's Underground
## 3336 Hot Shots Golf: World Invitational
## 3337 Monster Trucks
## 3338 Shadow The Hedgehog
## 3339 Wave Race: Blue Storm
## 3340 Backyard Wrestling: Don't Try This at Home
## 3341 Fight Night Round 2
## 3342 MonHun Nikki: Poka Poka Ailu Mura
## 3343 The Golden Compass
## 3344 NBA 2K8
## 3345 Phineas and Ferb: Across the 2nd Dimension
## 3346 Disney Infinity
## 3348 WarioWare D.I.Y.
## 3349 Tony Hawk: RIDE
## 3350 LEGO Jurassic World
## 3351 Alice: Madness Returns
## 3352 LEGO The Hobbit
## 3353 Suikoden
## 3354 Secret Agent Clank
## 3355 Rayman Arena
## 3356 Avatar: The Game
## 3357 Jaws Unleashed
## 3358 Puyo Puyo Sun
## 3359 Half-Life
## 3360 Tomb Raider (2013)
## 3361 Mickey's Speedway USA
## 3362 International Superstar Soccer 64
## 3363 Skylanders SWAP Force
## 3364 NASCAR Heat 2002
## 3365 Disney Sing It! High School Musical 3: Senior Year
## 3366 From TV Animation One Piece: Grand Battle 2
## 3367 BeatMania Append 3rdMix
## 3368 PGR3 - Project Gotham Racing 3
## 3369 XCOM: Enemy Unknown
## 3370 Blur
## 3371 Xena: Warrior Princess
## 3372 Scribblenauts: Unlimited
## 3373 Front Mission
## 3374 NHL 11
## 3375 Kinect Rush: A Disney Pixar Adventure
## 3376 Monopoly
## 3377 Disney Infinity 2.0: Marvel Super Heroes
## 3378 Major League Baseball 2K7
## 3379 Asphalt: Urban GT
## 3380 The Fight: Lights Out
## 3381 Dai-2-Ji Super Robot Taisen α
## 3382 Pokemon Trozei!
## 3383 Dead Space
## 3384 Hot Wheels: Stunt Track Challenge
## 3385 Rayman Origins
## 3386 London 2012: The Official Video Game of the Olympic Games
## 3387 Beijing 2008
## 3388 Dai-3-Ji Super Robot Taisen α: Shuuen no Ginga e
## 3389 Jeopardy!
## 3390 Jikkyou Powerful Pro Yakyuu '97 Kaimakuban
## 3391 Assassin's Creed: Brotherhood
## 3392 CyberTiger
## 3393 Jampack Fall 2001
## 3394 Medal of Honor: Frontline
## 3395 Final Fantasy: The 4 Heroes of Light
## 3396 Iron Man
## 3397 Kane & Lynch 2: Dog Days
## 3398 NFL Blitz 2001
## 3399 Total War: Shogun 2
## 3400 Jikkyou Powerful Pro Yakyuu '98 Kaimakuban
## 3401 Rock Band 2
## 3402 Yakuza 5
## 3403 LEGO Indiana Jones 2: The Adventure Continues
## 3404 BurgerTime
## 3405 Naruto: The Broken Bond
## 3406 2002 FIFA World Cup
## 3407 MVP Baseball 2004
## 3408 Crash Bandicoot: The Wrath of Cortex
## 3409 Smurf: Rescue In Gargamel's Castle
## 3410 Spelling Challenges and more!
## 3411 Go Diego Go! Great Dinosaur Rescue
## 3412 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3413 Extreme-G
## 3414 Ready 2 Rumble Boxing
## 3415 Payday 2
## 3416 Dead or Alive Xtreme Beach Volleyball
## 3417 Tales of Rebirth
## 3418 SoulCalibur V
## 3419 NHL 12
## 3420 Tales of Zestiria
## 3421 Silent Hill: Shattered Memories
## 3423 Skate it
## 3424 Game Party in Motion
## 3425 Barbie: Race & Ride
## 3426 Lost: Via Domus
## 3427 Mega Man Anniversary Collection
## 3428 Final Fantasy Anniversary Edition
## 3429 Dark Souls II
## 3430 Ben 10: Alien Force
## 3431 Deus Ex: Human Revolution
## 3432 Zumba Fitness
## 3433 Harvest Moon: Friends of Mineral Town
## 3434 Backyard NBA Basketball
## 3435 FIFA Soccer 10
## 3436 Kirby's Dream Course
## 3437 Doom 3 BFG Edition
## 3438 Mega Man X7
## 3439 Top Spin 3
## 3440 Petz Dogz 2
## 3441 SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3442 The Conduit
## 3443 Just Dance 2016
## 3444 Tokimeki Memorial: Forever with You
## 3445 Diablo
## 3446 Cabela's Dangerous Hunts 2011
## 3447 NHL 15
## 3448 Q*bert
## 3449 Romancing SaGa
## 3450 The Lord of the Rings: The Third Age
## 3451 Harvest Moon: Sunshine Islands
## 3452 Trivial Pursuit
## 3453 The Legend of Spyro: Dawn of the Dragon
## 3454 The Sims 3: World Adventures
## 3455 Kinect Sports Rivals
## 3456 Rayman Origins
## 3457 WWE 2K16
## 3458 Titanfall
## 3459 NCAA Football 09
## 3460 Tom Clancy's HAWX
## 3461 Sammy Sosa High Heat Baseball 2001
## 3462 Frozen: Olaf's Quest
## 3463 Terminator 3: Rise of the Machines
## 3464 Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 3465 Harvest Moon: The Tale of Two Towns
## 3466 FIFA: Road to World Cup 98
## 3467 World Cup 98
## 3468 International Superstar Soccer '98
## 3470 Unreal Tournament
## 3471 Digimon World 2
## 3472 Tales of Phantasia
## 3473 Prince of Persia: The Two Thrones
## 3474 Xenosaga Episode II: Jenseits von Gut und Böse
## 3475 Gex: Enter the Gecko
## 3476 Shrek 2: Beg for Mercy
## 3477 Mega Man Star Force 2: Zerker x Ninja / Saurian
## 3478 JoJo's Bizarre Adventure: All Star Battle
## 3479 Petz Nursery
## 3480 Contra: Shattered Soldier
## 3481 Championship Motocross featuring Ricky Carmichael
## 3482 Dragon Ball Z: Chou Saiya Densetsu
## 3483 NBA 2K7
## 3484 WWE 2K16
## 3485 Phoenix Wright: Ace Attorney - Justice for All
## 3486 Fire Emblem: Seisen no Keifu
## 3487 Rock Band 3
## 3488 Disgaea 4: A Promise Unforgotten
## 3489 BlazBlue: Calamity Trigger
## 3490 Tenchu 2: Birth of the Stealth Assassins
## 3491 Tony Hawk's Pro Skater 4
## 3492 MLB 11: The Show
## 3493 Naruto: Uzumaki Chronicles 2
## 3494 NHL 06
## 3495 NHL 10
## 3496 Rooms: The Main Building
## 3497 Rapala: We Fish
## 3498 Parasite Eve II
## 3499 Tetris Party Deluxe
## 3500 NFL Blitz 2000
## 3501 Ratchet & Clank: Quest for Booty
## 3503 NCAA Football 10
## 3504 Top Spin 3
## 3505 Shin Megami Tensei IV
## 3506 Theme Park
## 3507 Blacksite: Area 51
## 3508 Spider-Man 3
## 3509 ATV Offroad Fury: Blazin' Trails
## 3510 Far Cry Instincts
## 3511 Hasbro Family Game Night
## 3512 Tony Hawk's Pro Skater 4
## 3513 Up
## 3514 Tales of the Abyss
## 3515 Disney Universe
## 3516 Iron Man
## 3517 Mobile Suit Gundam: Giren no Yabou- Zeon no Keifu
## 3518 Spyro Orange: The Cortex Conspiracy
## 3519 Enslaved: Odyssey to the West
## 3520 SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3521 Beyond The Beyond
## 3522 Ben 10: Alien Force
## 3523 Tomb Raider: Anniversary
## 3524 Warhammer 40,000: Space Marine
## 3525 Madden NFL 06
## 3526 No More Heroes
## 3527 Assassin's Creed II
## 3528 Petz Wild Animals: Tigerz
## 3529 Naruto: Ultimate Ninja 2
## 3530 Defiance
## 3531 Dogz
## 3532 3D Dot Game Heroes
## 3533 The Mysterious Murasame Castle
## 3534 NBA Hangtime
## 3535 Jillian Michaels Fitness Ultimatum 2010
## 3536 Pro Evolution Soccer 2012
## 3537 Grease
## 3538 Blood Wake
## 3539 Dynasty Warriors 5: Xtreme Legends
## 3540 Skylanders: Spyro's Adventure
## 3541 Dora The Explorer: Dora Saves the Snow Princess
## 3542 Jampack Summer 2002
## 3543 FIFA World Cup Germany 2006
## 3544 Wreckless: ThE YaKuza MisSiOns
## 3545 Super Bomberman
## 3546 SpongeBob SquarePants: Battle for Bikini Bottom
## 3547 Spec Ops: The Line
## 3548 SD Gundam G Generation Neo
## 3549 Bratz 4 Real
## 3550 RalliSport Challenge
## 3551 Resident Evil Outbreak File #2
## 3552 Bob the Builder: Can We Fix It?
## 3553 XIII
## 3554 NHL 14
## 3555 LEGO Rock Band
## 3556 Bolt
## 3557 Top Spin 3
## 3558 Tom Clancy's HAWX
## 3559 LEGO Dimensions
## 3560 Breath of Fire IV
## 3561 True Crime: Streets of LA
## 3562 Odin Sphere
## 3563 Donkey Kong Jungle Climber
## 3564 The Incredible Hulk
## 3565 Ms. Pac-Man Maze Madness
## 3566 Arena Football
## 3567 The Lord of the Rings: The Return of the King
## 3568 NHL Hitz 20-02
## 3569 Classic NES Series: Dr. Mario
## 3570 The Sims: Bustin' Out
## 3571 NCAA March Madness 07
## 3572 Monsters, Inc. Scream Team
## 3573 Harry Potter Collection
## 3574 Tony Hawk's Project 8
## 3575 Yu-Gi-Oh! World Championship Tournament 2004
## 3576 Cabela's Big Game Hunter 2005 Adventures
## 3577 Hotel Dusk: Room 215
## 3578 Knockout Kings 2001
## 3579 Army Men: Sarge's Heroes
## 3580 Phineas and Ferb: Across the 2nd Dimension
## 3581 Petz Dogz 2
## 3582 Battlefield 2: Modern Combat
## 3583 Wolfenstein
## 3584 All-Star Baseball 2002
## 3585 Backyard NFL Football
## 3586 Need for Speed: Most Wanted
## 3587 NASCAR Rumble
## 3588 Tony Hawk: Shred
## 3589 Tony Hawk's Proving Ground
## 3590 WWE Raw 2
## 3591 Resident Evil 2
## 3592 Mega Man X2
## 3593 Manhunt 2
## 3594 Xenoblade Chronicles
## 3595 Fullmetal Alchemist and the Broken Angel
## 3596 Monster High: Ghoul Spirit
## 3597 Final Fantasy IV: The Complete Collection
## 3598 Frontlines: Fuel of War
## 3599 Lips: Number One Hits
## 3600 Hamtaro: Ham-Hams Unite!
## 3601 Batman Begins
## 3602 Viva Pinata: Pocket Paradise
## 3603 Dr. Seuss' The Cat in the Hat
## 3604 Barbie Groovy Games
## 3605 Yu-Gi-Oh! Reshef of Destruction
## 3606 Blinx: The Time Sweeper
## 3607 Madagascar: Escape 2 Africa
## 3608 Archer Maclean's Mercury
## 3609 ESPN NFL Football
## 3610 Fatal Fury Special
## 3611 Catz
## 3612 Major League Baseball 2K5
## 3613 DS Bimoji Training
## 3614 WWE 2K15
## 3615 Petz Catz Clan
## 3616 Soul Sacrifice
## 3617 G-Force
## 3618 Tiger Woods PGA Tour 11
## 3619 Soldier of Fortune: Gold Edition
## 3620 Rune Factory: A Fantasy Harvest Moon
## 3621 Monster Jam: Path of Destruction
## 3622 Rapala Tournament Fishing!
## 3623 MX 2002 Featuring Ricky Carmichael
## 3624 Purr Pals
## 3625 NCAA Football 07
## 3626 God of War: Origins Collection
## 3627 MX vs. ATV: Alive
## 3628 Lunar: Silver Star Story Complete
## 3629 Dragon Ball: XenoVerse
## 3630 NBA Showtime: NBA on NBC
## 3631 ZhuZhu Pets 2: Featuring The Wild Bunch
## 3632 Dragon Age: Inquisition
## 3633 Soul Reaver 2
## 3634 Metal Gear Solid 3: Subsistence
## 3635 Sly Cooper: Thieves in Time
## 3636 The Godfather (old US sales)
## 3637 Daytona USA
## 3638 Harry Potter and the Deathly Hallows - Part 1
## 3639 Tiger Woods PGA Tour 13
## 3640 WWF Raw
## 3641 Shin Super Robot Taisen
## 3642 Jump Super Stars
## 3643 Legends of WrestleMania
## 3644 The Activision Decathlon
## 3645 Simple 1500 Series Vol. 73: The Invaders ~Space Invaders 1500~
## 3646 50 Classic Games
## 3647 Fighting Force 2
## 3648 Sakura Wars
## 3649 Yokai Sangokushi
## 3650 Extermination
## 3651 Batman: Vengeance
## 3652 Unit 13
## 3653 Tatsunoko vs. Capcom: Ultimate All-Stars
## 3654 TMNT
## 3655 F.E.A.R.
## 3656 Secret Agent Clank(US sales)
## 3657 Assassin's Creed: Unity
## 3658 Derby Stallion 04
## 3659 NBA 2K8
## 3660 Barbie Horse Adventures: Riding Camp
## 3661 CrossworDS
## 3662 Tony Hawk's Pro Skater 3
## 3663 Mega Man Zero
## 3664 Contender 2
## 3665 The Amazing Spider-Man 2 (2014)
## 3666 Star Wars: Dark Forces
## 3667 SD Gundam G Generation Zero
## 3668 Super Robot Taisen F
## 3669 Shrek 2
## 3670 Soccer Tsuku 2002: J-League Pro Soccer Club o Tsukurou!
## 3671 Time Crisis: Razing Storm
## 3672 SpongeBob SquarePants: SuperSponge
## 3673 Super Robot Taisen F Kanketsuhen
## 3674 Enslaved: Odyssey to the West
## 3675 Rune Factory 4
## 3676 Summer Sports: Paradise Island
## 3677 Tak and the Power of Juju
## 3678 Dynasty Warriors: Gundam 3
## 3679 Mortal Kombat 3
## 3680 Turok: Evolution
## 3681 Jak X: Combat Racing
## 3682 Metro 2033
## 3683 Are You Smarter than a 5th Grader? Make the Grade
## 3684 American Idol
## 3685 Top Gun: Fire at Will!
## 3686 Red Dead Revolver
## 3687 Dragon Ball Z: Shin Budokai
## 3688 LEGO The Hobbit
## 3689 Iron Man
## 3690 SingStar Summer Party
## 3691 Tiger Woods PGA Tour 08
## 3692 NBA Live 10
## 3693 The SpongeBob SquarePants Movie
## 3694 FIFA Soccer 07
## 3695 Gekikuukan Pro Yakyuu: At the End of the Century 1999
## 3696 Medarot 2: Kabuto / Kuwagata Version
## 3697 Excite Truck
## 3698 Sacred 2: Fallen Angel
## 3699 System 3 presents Ferrari Challenge Trofeo Pirelli
## 3700 Dance Dance Revolution Ultramix
## 3701 ModNation Racers
## 3702 Crash Tag Team Racing
## 3703 Two Worlds II
## 3704 Sonic & All-Stars Racing Transformed
## 3705 Michael Jackson: The Experience
## 3706 Front Mission 4
## 3707 The Fairly Odd Parents: Breakin' Da Rules
## 3708 LEGO Dimensions
## 3709 Inazuma Eleven
## 3710 Ninokuni: Shikkoku no Madoushi
## 3711 Minecraft: Story Mode
## 3712 Resident Evil: Revelations 2
## 3713 Manhunt 2
## 3714 SRS: Street Racing Syndicate
## 3715 Despicable Me: The Game - Minion Mayhem
## 3717 Action Force
## 3718 Gauntlet Legends
## 3719 FIFA 99
## 3720 Kidou Senshi Gundam: Extreme VS
## 3721 Dragon Ball Z: Ultimate Tenkaichi
## 3722 Tales of Symphonia
## 3723 Bust A Groove
## 3724 Fire Emblem: Path of Radiance
## 3725 Dragon Quest Characters: Torneko no Daibouken 3: Fushigi no Dungeon
## 3726 Let's Draw!
## 3727 Pachi-Slot Aruze Oukoku 2
## 3728 NHL 14
## 3729 Valkyria Chronicles II
## 3730 Middle-Earth: Shadow of Mordor
## 3731 Madden NFL 13
## 3732 Rune Factory 2: A Fantasy Harvest Moon
## 3733 Terminator Salvation
## 3734 Cars 2
## 3735 Bratz: Rock Angelz
## 3736 How to Train Your Dragon
## 3737 SSX Tricky
## 3738 WWE SmackDown vs. Raw 2010
## 3739 Greg Hastings' Tournament Paintball
## 3740 Hello Kitty: Big City Dreams
## 3741 Star Fox Command
## 3742 World Soccer Winning Eleven 7 International (JP version)
## 3743 ESPN NBA Basketball
## 3744 Inazuma Eleven GO
## 3745 Over the Hedge
## 3746 Mat Hoffman's Pro BMX
## 3747 Lego Star Wars: The Force Awakens
## 3748 Epic Mickey 2: The Power of Two
## 3749 Popeye
## 3750 Magician's Quest: Mysterious Times
## 3751 The Hobbit
## 3752 War of the Monsters
## 3753 Tales of Symphonia: Dawn of the New World
## 3755 The Incredible Hulk: Ultimate Destruction
## 3756 Star Wars Battlefront (2015)
## 3757 Sakura Taisen 2 - Kimi, Shinitamou Koto Nakare
## 3758 Jewel Master Egypt
## 3759 Time Crisis II
## 3760 Clock Tower
## 3761 NCAA March Madness 06
## 3762 SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3763 Jampack Volume 11
## 3764 Dragon's Crown
## 3765 Tactics Ogre: Let Us Cling Together
## 3766 Legacy of Kain: Defiance
## 3767 SpongeBob SquarePants: Game Boy Advance Video Volume 2
## 3768 NCAA March Madness 2005
## 3769 007 Racing
## 3770 Conflict: Vietnam
## 3771 2 in 1 Combo Pack: Sonic Heroes / Super Monkey Ball Deluxe
## 3772 Mystery Dungeon: Shiren the Wanderer
## 3773 SimAnimals
## 3774 MLB SlugFest 20-04
## 3775 Gex 3: Deep Cover Gecko
## 3776 NASCAR 09
## 3777 Blitz: The League
## 3778 Jampack Vol. 2
## 3779 LEGO Jurassic World
## 3780 Sesame Street: Once Upon A Monster
## 3781 Virtual Soccer
## 3782 Romance of the Three Kingdoms IV: Wall of Fire
## 3783 Winning Post
## 3784 Peter Jackson's King Kong: The Official Game of the Movie
## 3785 SingStar Dance
## 3786 Kirby and the Rainbow Curse
## 3787 Burnout Revenge
## 3788 FIFA 12
## 3789 Medal of Honor: European Assault
## 3790 Batman: Arkham City
## 3791 Ty the Tasmanian Tiger 2: Bush Rescue
## 3792 The Lord of the Rings: The Fellowship of the Ring
## 3793 NBA 06
## 3794 Sonic & All-Stars Racing Transformed
## 3795 Spider-Man
## 3796 We Cheer
## 3797 Tom Clancy's Ghost Recon Advanced Warfighter 2
## 3798 X-Men Legends
## 3799 Alice in Wonderland
## 3800 Littlest Pet Shop 3: Biggest Stars - Blue / Pink / Purple Team
## 3801 Front Mission 2
## 3802 Bulletstorm
## 3803 F.E.A.R. 2: Project Origin
## 3804 Tiger Woods PGA Tour 11
## 3805 Stuntman: Ignition
## 3806 Are You Smarter Than A 5th Grader?
## 3807 F1 2009
## 3808 Oni
## 3809 The Lord of the Rings: The Two Towers
## 3810 Juiced
## 3811 The Warriors
## 3812 Batman: Arkham Origins Blackgate
## 3813 J-League Soccer: Prime Goal 2
## 3814 Go Diego Go! Safari Rescue
## 3815 The Walking Dead: Survival Instinct
## 3816 Picross 3D
## 3817 Just Dance 2015
## 3818 Silent Hill: Origins
## 3819 NASCAR 2000
## 3820 Wayne Gretzky's 3D Hockey
## 3821 Pachi-Slot Aruze Oukoku 4
## 3822 Return to Castle Wolfenstein: Operation Resurrection
## 3823 Mario Tennis: Power Tour
## 3824 Seaman
## 3825 Guinness World Records: The Videogame
## 3826 The Grinch
## 3827 GT Pro Series
## 3828 Tales of Destiny
## 3829 Spectrobes: Beyond the Portals
## 3830 Classic Word Games
## 3831 Naruto Shippuden: Clash of Ninja Revolution 3
## 3832 Fight Night Round 3
## 3833 The Golden Compass
## 3834 Final Fantasy Chronicles
## 3835 NBA Live 08
## 3836 Syphon Filter 3
## 3837 Star Wars Battlefront: Elite Squadron
## 3838 Metal Gear Solid 2: Substance
## 3839 We Love Katamari
## 3840 NCAA Football 2003
## 3841 Way of the Samurai 3
## 3842 NBA Live 09
## 3843 DC Universe Online
## 3844 Ready 2 Rumble Boxing: Round 2
## 3845 Mega Man 6
## 3846 Mission: Impossible
## 3847 Final Fantasy Explorers
## 3848 Rival Schools: United By Fate
## 3849 Bully: Scholarship Edition
## 3850 IL-2 Sturmovik: Birds of Prey
## 3851 PlayStation All-Stars Battle Royale
## 3852 Ratatouille
## 3853 Cars Toon: Mater's Tall Tales
## 3854 Kung Fu Panda
## 3855 Swing Away Golf
## 3856 J-League Pro Soccer Club o Tsukurou! 3
## 3857 Tomb Raider: Legend
## 3858 Ratatouille
## 3859 Freedom Fighters
## 3860 Gun
## 3861 That's So Raven 2: Supernatural Style
## 3862 Lair
## 3863 Madden NFL 07
## 3864 The Punisher
## 3865 Front Mission 3
## 3866 Kenkou Ouen Recipe 1000: DS Kondate Zenshuu
## 3867 SSX On Tour
## 3868 Tony Hawk's Pro Skater 3
## 3869 Harry Potter and the Prisoner of Azkaban
## 3870 Petz: Hamsterz Life 2
## 3871 Omega Boost
## 3872 The Sims 2: Open for Business
## 3873 Iron Man
## 3874 NFL 2K3
## 3875 NBA Live 2002
## 3876 Jampack Winter 2002
## 3877 My Word Coach
## 3878 Way of the Samurai
## 3879 Dragon Age: Origins
## 3880 Naruto Shippuden: Ultimate Ninja Storm 3
## 3882 Pac-Man Fever
## 3883 The LEGO Movie Videogame
## 3884 The 3rd Birthday
## 3885 Prince of Persia Trilogy
## 3886 International Track & Field
## 3887 100 All-Time Favorites
## 3888 HSX HyperSonic.Xtreme
## 3889 StarCraft II: Legacy of the Void
## 3890 Tiger Woods PGA Tour 13
## 3891 SoulCalibur: Broken Destiny
## 3892 The Saboteur
## 3893 Lords of the Fallen
## 3894 Pro Evolution Soccer 2010
## 3895 Goldeneye 007: Reloaded
## 3896 Jam With the Band
## 3897 Madden NFL 2004
## 3898 Jikkyou Powerful Pro Yakyuu 10
## 3899 Summoner
## 3900 Virtual Pool
## 3901 NBA Live 07
## 3902 Sega Bass Fishing
## 3903 Fire Emblem: Radiant Dawn
## 3904 Dynasty Warriors
## 3905 SpongeBob SquarePants: Lights, Camera, Pants!
## 3906 Dragon Ball: Raging Blast
## 3907 Rugrats: Scavenger Hunt
## 3908 Wrecking Crew
## 3909 International Superstar Soccer 2000 (All region sales)
## 3910 Major League Baseball 2K10
## 3911 Monsters vs. Aliens
## 3912 Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 3913 SpongeBob SquarePants: Creature from the Krusty Krab
## 3914 Lost: Via Domus
## 3915 NBA Live 2004
## 3916 Dai-4-Ji Super Robot Taisen S
## 3917 Disney's Kim Possible: Revenge of Monkey Fist
## 3918 WWE SmackDown vs. RAW 2007
## 3919 Ace Combat Zero: The Belkan War
## 3920 R.U.S.E.
## 3921 Disgaea 3: Absence of Justice
## 3922 Test Drive Unlimited
## 3923 LEGO Dimensions
## 3924 Picross DS
## 3925 Final Fantasy II Anniversary Edition
## 3926 NHL 07
## 3927 Harry Potter and the Half-Blood Prince
## 3928 Quantum Break
## 3929 NBA 2K11
## 3930 World Championship Poker
## 3931 The BIGS
## 3932 Final Fantasy
## 3933 Burnout Revenge
## 3934 Rory McIlroy PGA Tour
## 3935 Euro Truck Simulator
## 3936 Dragon Ball Z: Supersonic Warriors
## 3937 Dishonored
## 3938 Paws & Claws: Dogs & Cats Best Friends
## 3939 NBA Ballers
## 3940 Silent Hill 4: The Room
## 3941 River Raid II
## 3942 Capcom Classics Collection
## 3943 Guitar Hero Live
## 3944 Wolfenstein: The New Order
## 3945 Monopoly Party
## 3946 Hidden Mysteries: Titanic - Secrets of the Fateful Voyage
## 3947 NHL FaceOff 98
## 3948 The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 3949 F1 2012
## 3950 NHL 09
## 3951 Sonic Riders
## 3952 Looney Tunes: Back in Action
## 3954 Midnight Magic
## 3955 Alice: Madness Returns
## 3956 Pro Evolution Soccer 2012
## 3957 Tiger Woods PGA Tour 07
## 3958 Midnight Club II
## 3959 Atelier Rorona: Alchemist of Arland
## 3960 Monster Hunter Freedom 2
## 3961 Dragon Ball Z: Supersonic Warriors 2
## 3962 Avatar: The Last Airbender
## 3963 Blue's Clues: Blue's Big Musical
## 3964 The Mummy Returns
## 3965 Hitman: Blood Money
## 3966 Disney Sing It
## 3967 Chopper Command
## 3968 Activision Anthology
## 3969 Crash: Mind Over Mutant
## 3970 WWE 2K16
## 3971 LEGO The Hobbit
## 3972 Babysitting Mama
## 3973 Boogie
## 3974 Theatrhythm: Final Fantasy
## 3975 Bleach: Soul Resurreccion
## 3976 Madden NFL 07
## 3977 Rugrats in Paris: The Movie
## 3978 Dance Dance Revolution Universe 2
## 3979 Star Wars: Jedi Starfighter
## 3980 Tactics Ogre: The Knight of Lodis
## 3981 Fortune Street
## 3982 Super Robot Taisen MX
## 3983 Alice in Wonderland
## 3984 NBA Street Homecourt
## 3985 Spider-Man 2
## 3986 Bases Loaded '96: Double Header
## 3987 Dead or Alive Ultimate
## 3988 RPG Maker
## 3989 FIFA 14
## 3990 Star Wars: Clone Wars
## 3991 The Saboteur
## 3992 The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 3993 Metal Gear Rising: Revengeance
## 3994 Madden NFL 11
## 3995 Major League Baseball 2K12
## 3996 Alien: Isolation
## 3997 The Price is Right
## 3998 Monster Hunter
## 3999 Cars 2
## 4000 Dreamworks Madagascar Kartz
## 4001 Tony Hawk's Underground 2
## 4002 SplashDown: Rides Gone Wild
## 4003 Super Famista 5
## 4004 Dynasty Warriors: Gundam 2
## 4005 Shrek SuperSlam
## 4006 Rayman Advance
## 4007 Super Robot Taisen Z
## 4008 PoPoLoCrois Monogatari
## 4009 Tomb Raider: Anniversary
## 4010 Fantastic 4
## 4011 Epic Mickey 2: The Power of Two
## 4012 Men in Black II: Alien Escape
## 4013 The Evil Within
## 4014 RealSports Tennis
## 4015 Nicktoons: Attack of the Toybots
## 4016 Raiders of the Lost Ark
## 4017 Gauntlet
## 4018 Ridge Racer 3D
## 4019 Cars Mater-National Championship
## 4020 Ace Combat: Assault Horizon
## 4021 Resident Evil: The Mercenaries 3D
## 4022 Super Monkey Ball 3D
## 4023 Tony Hawk's Project 8
## 4024 Tony Hawk's Underground 2
## 4025 MotorStorm: Apocalypse
## 4026 Ice Hockey
## 4027 Dragon Quest Heroes: The World's Tree Woe and the Blight Below
## 4028 Lego Batman 3: Beyond Gotham
## 4029 The Matrix: Path of Neo
## 4030 Kane & Lynch 2: Dog Days
## 4031 Lollipop Chainsaw
## 4032 WWE Wrestlemania X8
## 4033 Sonic Lost World
## 4034 Power Rangers: Dino Thunder
## 4035 GoldenEye: Rogue Agent
## 4036 Ultimate I Spy
## 4037 SpongeBob SquarePants: Creature from the Krusty Krab
## 4038 The Sims
## 4039 Grandia III
## 4040 FIFA Soccer 09
## 4041 Mobile Suit Gundam Seed Destiny: Rengou vs. Z.A.F.T. II Plus
## 4042 Mario & Wario
## 4043 Scarface: The World is Yours
## 4044 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4045 Pokemon Art Academy
## 4046 FIFA Soccer 64
## 4047 Dragon Ball Z: Burst Limit
## 4048 Bakugan Battle Brawlers: Defenders of the Core
## 4049 Medal of Honor
## 4050 Doom 3 BFG Edition
## 4051 J-League Pro Soccer Club wo Tsukurou! 2
## 4052 Terraria
## 4053 Backyard Baseball
## 4054 WipEout Pulse
## 4055 Barbie Horse Adventures: Wild Horse Rescue
## 4056 Epic Mickey: Power of Illusion
## 4057 LEGO Marvel Super Heroes
## 4058 Taiko no Tatsujin: Appare Sandaime
## 4059 Alone in the Dark
## 4060 One Piece: Grand Battle!
## 4061 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4062 Football Manager Handheld 2009
## 4063 Sniper: Art of Victory
## 4064 Crazy Taxi
## 4065 Spy Hunter 2
## 4066 F1 2014
## 4067 Pac-Man World 2
## 4068 Bass Pro Shops: The Strike
## 4069 Die Hard Trilogy 2: Viva Las Vegas
## 4070 Jake Power: Fireman
## 4071 Asphalt 3D
## 4072 Momotarou Dentetsu X: Kyuushuu-hen mo Arubai
## 4073 Steel Diver
## 4074 Tales of Legendia
## 4075 SimCity 2000
## 4076 Crash of the Titans
## 4077 Far Cry 2
## 4078 Battlefield: Hardline
## 4079 Harry Potter and the Order of the Phoenix
## 4080 Rayman Raving Rabbids: TV Party
## 4081 F.E.A.R. 2: Project Origin
## 4082 Sonic & All-Stars Racing Transformed
## 4083 Scene It? Lights Camera Action
## 4084 Dead Space Extraction
## 4085 Scrabble 2007 Edition
## 4086 Shrek the Third
## 4087 Metal Gear Solid HD Edition
## 4088 Children of Mana
## 4089 Madagascar: Operation Penguin
## 4090 Active Life: Extreme Challenge
## 4091 The Sims 2: Pets
## 4092 Mario Golf: World Tour
## 4093 Need for Speed: Porsche Unleashed
## 4094 Yu-Gi-Oh! Forbidden Memories (JP sales)
## 4095 NFL Street 2
## 4096 Silent Hill: Shattered Memories
## 4097 Millipede
## 4098 The Legend of the Mystical Ninja
## 4099 You're in the Movies
## 4100 Dark Sector
## 4101 James Bond 007: Blood Stone
## 4102 Jeopardy!
## 4103 Destroy All Humans! 2
## 4104 ECW Hardcore Revolution
## 4105 Pinball Hall of Fame: The Williams Collection
## 4106 Tiger Woods PGA Tour 07
## 4107 Wu-Tang: Shaolin Style
## 4108 World of Warcraft: Warlords of Draenor
## 4109 Rock Band Unplugged
## 4110 OkamiDen
## 4111 Crash: Mind Over Mutant
## 4112 2010 FIFA World Cup South Africa
## 4113 Secret Weapons Over Normandy
## 4114 Go Diego Go! Great Dinosaur Rescue
## 4115 All-Star Baseball 99
## 4116 Harvest Moon 64
## 4117 NCAA Football 09
## 4118 Bratz: The Movie
## 4119 FIFA Soccer 13
## 4120 Harvest Moon DS (US sales)
## 4121 Vigilante 8: 2nd Offense
## 4122 Two Worlds II
## 4123 Football Manager 2015
## 4124 Theme Park Roller Coaster
## 4125 Need for Speed: Hot Pursuit
## 4126 Skylanders: SuperChargers
## 4127 Viva Pinata: Trouble in Paradise
## 4128 Nickelodeon Team Umizoomi
## 4129 FlingSmash
## 4130 NFL Xtreme 2
## 4131 Spider-Man 3
## 4132 Midnight Club: Street Racing
## 4133 Dynasty Warriors Gundam
## 4134 Tomb Raider: Underworld
## 4135 Final Fantasy Crystal Chronicles: Echoes of Time
## 4136 Fable
## 4137 Tiger Woods PGA Tour 06
## 4138 FIFA World Cup Germany 2006
## 4139 Up
## 4140 Grand Prix
## 4141 Ford Racing Off Road
## 4142 SimCity Creator
## 4143 World of Outlaws: Sprint Cars 2002
## 4144 Cars: Race-O-Rama
## 4145 Emergency Heroes
## 4147 Fantavision
## 4148 Double Dragon
## 4149 Alien Trilogy
## 4150 NBA Live 99
## 4151 Bravely Second: End Layer
## 4153 Dark Sector
## 4154 Unreal Tournament III
## 4155 X-Men: Next Dimension
## 4156 Street Fighter X Tekken
## 4157 The Godfather (JP sales)
## 4158 MySims Racing
## 4159 Hamsterz Life
## 4160 Dragon Age Origins: Awakening
## 4161 Super Puyo Puyo 2
## 4162 Gauntlet Legends
## 4163 Castlevania: Dawn of Sorrow
## 4164 Naruto Shippuden: Ultimate Ninja Storm Revolution
## 4165 Deadpool
## 4166 WipEout
## 4167 ICO
## 4168 Silent Hill: Downpour
## 4169 2014 FIFA World Cup Brazil
## 4170 WWE SmackDown vs. Raw 2011
## 4171 Dragon Quest 25 Shuunen Kinin: Famicom & Super Famicom Dragon Quest I-II-III
## 4172 Victorious Boxers: Ippo's Road to Glory
## 4173 Petz Sports
## 4174 Lego Batman 3: Beyond Gotham
## 4175 Densetsu no Stafi
## 4176 Valkyrie Profile 2: Silmeria
## 4177 Hot Wheels Velocity X
## 4178 Shadowrun
## 4179 FIFA Soccer 13
## 4180 Virtua Tennis 4: World Tour
## 4181 Warhammer 40,000: Dawn of War II
## 4182 Crazy Taxi: Fare Wars
## 4183 Clash of Elementalists
## 4184 Spider-Man 3
## 4185 Disney Infinity 3.0
## 4186 L.A. Rush
## 4187 Bomberman Hero
## 4188 Automobili Lamborghini
## 4189 Quest 64
## 4190 Momotarou Dentetsu V
## 4191 Doom 64
## 4192 Boom Blox Bash Party
## 4193 The Sims 3: Ambitions
## 4194 Dead or Alive 4
## 4195 Commando
## 4196 Rise of Nightmares
## 4197 The Princess and the Frog
## 4198 NBA Ballers: Phenom
## 4199 Need for Speed Carbon
## 4201 NHL 16
## 4202 FIFA 12
## 4203 MTV Music Generator
## 4204 Spider-Man: Friend or Foe
## 4205 Major League Baseball 2K13
## 4206 Super Momotarou Dentetsu DX
## 4207 World Soccer Winning Eleven 8: Liveware Evolution
## 4208 The Sims 3: Outdoor Living Stuff
## 4209 Cars: Race-O-Rama
## 4210 Downhill Domination
## 4211 NHL 15
## 4212 Pirates of the Caribbean: Dead Man's Chest
## 4213 World Series of Poker
## 4214 Inazuma Eleven Go 2: Chrono Stone
## 4215 NHL 97
## 4216 We Sing Encore
## 4217 Kong: The 8th Wonder of the World
## 4218 MX vs. ATV: Alive
## 4219 Mega Man Star Force 3: Black Ace / Red Joker
## 4220 Crayola: Treasure Adventures
## 4221 Godzilla: Save the Earth
## 4222 Dance Dance Revolution: Mario Mix
## 4223 Metal Gear Solid: The Twin Snakes
## 4224 Imagine: Figure Skater (US sales)
## 4225 Mat Hoffman's Pro BMX 2
## 4226 Metal Gear Solid: The Essential Collection
## 4227 The Legend of Spyro: Dawn of the Dragon
## 4228 Iridion 3D
## 4229 MX vs. ATV Untamed
## 4230 Classic NES Series: Pac-Man
## 4231 Destroy All Humans!
## 4232 Dragon Ball Z: Collectible Card Game
## 4234 Country Dance 2
## 4235 Razor Freestyle Scooter
## 4236 Crash of the Titans
## 4237 F.E.A.R. 3
## 4238 Disney's Kim Possible 3: Team Possible
## 4239 Rygar: The Legendary Adventure
## 4240 Syphon Filter: Logan's Shadow
## 4241 Super Batter Up
## 4242 Kessen II
## 4243 Crayon Shin-Chan: Arashi o Yobu Enji
## 4244 Stuart Little 2
## 4245 Wolfenstein: The New Order
## 4246 Warhammer 40,000: Space Marine
## 4247 Tak 2: The Staff of Dreams
## 4248 Art Academy: Lessons for Everyone
## 4249 Sid Meier's Civilization Revolution
## 4250 ATV Offroad Fury Pro
## 4251 Dora The Explorer: Dora Saves the Snow Princess
## 4252 SingStar Amped
## 4253 Brothers In Arms: Earned in Blood
## 4254 Walk it Out!
## 4255 Transformers: Dark of the Moon - Autobots/Decepticons
## 4256 Dragon Ball Z: Sagas
## 4257 Scooby-Doo
## 4258 The Legend of Spyro: Dawn of the Dragon
## 4259 Hydro Thunder
## 4260 Brothers In Arms: D-Day
## 4261 American Girl: Kit Mystery Challenge!
## 4262 Mario & Sonic at the Rio 2016 Olympic Games
## 4263 NHL FaceOff '97
## 4264 Deadpool
## 4265 Brothers In Arms: Road to Hill 30
## 4266 Virtua Tennis 4
## 4267 EA Sports UFC
## 4268 Gremlins
## 4269 The Mark of Kri
## 4270 Jampack Winter 2003 (RP-M)
## 4271 Rugrats: Castle Capers
## 4272 Crash Nitro Kart
## 4273 Star Wars The Clone Wars: Republic Heroes
## 4274 Farming Simulator 2015
## 4275 Bleach: The Blade of Fate
## 4276 Madden NFL 12
## 4277 LEGO Rock Band
## 4278 Mad Max (2015)
## 4279 Barbie: Jet, Set & Style!
## 4280 Jak and Daxter: The Lost Frontier
## 4281 Momotarou Dentetsu 11
## 4282 Command & Conquer: Red Alert 3
## 4283 Tomb Raider: Legend
## 4284 Skylanders: SuperChargers
## 4285 The Golden Compass
## 4286 Star Wars: Demolition
## 4287 Scooby-Doo! and the Spooky Swamp
## 4288 Sword Art Online: Lost Song
## 4289 Bloody Roar II
## 4290 Delta Force: Black Hawk Down
## 4291 Burnout Dominator
## 4292 NBA Live 07
## 4293 Vin Diesel: Wheelman
## 4294 Space Invaders
## 4295 .hack//Outbreak Part 3
## 4296 Rayman Legends
## 4297 Mother 1+2
## 4298 Hyperdimension Neptunia
## 4299 iCarly
## 4300 Puzzle & Dragons Z + Super Mario Bros. Edition
## 4301 Harry Potter and the Deathly Hallows - Part 1
## 4302 Top Spin
## 4303 Disney Guilty Party
## 4304 Warhawk
## 4305 Pirates of the Caribbean: At World's End
## 4306 Red Faction: Armageddon
## 4307 DanceStar Party
## 4308 Persona 4: Dancing All Night
## 4309 Tales of Vesperia
## 4310 Thief (2014)
## 4311 Dynasty Warriors: Strikeforce
## 4312 2 Games in 1: SpongeBob SquarePants: SuperSponge & Rugrats Go Wild
## 4313 Tales of Hearts
## 4314 Missile Command
## 4315 Lego Batman 3: Beyond Gotham
## 4316 Barbie as The Island Princess
## 4317 Jikkyou Powerful Pro Yakyuu 3
## 4318 The Walking Dead: Season One
## 4319 Jikkyou Powerful Pro Yakyuu 12
## 4320 Enter the Matrix
## 4321 Crash: Mind Over Mutant
## 4322 NASCAR 2005: Chase for the Cup
## 4323 J-League Excite Stage '95
## 4324 The New York Times Crosswords
## 4325 Phantasy Star Online Episode I & II
## 4326 Moshi Monsters: Moshlings Theme Park
## 4327 The Powerpuff Girls: Relish Rampage
## 4328 Resistance: Burning Skies
## 4329 NBA 2K13
## 4330 Dead or Alive: Dimensions
## 4332 Brain Challenge
## 4333 NFL Head Coach
## 4334 Watch Dogs
## 4335 Karaoke Revolution Presents American Idol Encore
## 4336 Major League Baseball 2K11
## 4337 Enemy Territory: Quake Wars
## 4338 Ghostbusters
## 4339 NCAA Gamebreaker 99
## 4340 Area 51
## 4341 World Stadium 2
## 4342 Sega Rally Revo
## 4343 NHL 2005
## 4344 TNA iMPACT!
## 4345 Star Wars Jedi Knight: Jedi Academy
## 4346 Thrillville: Off the Rails
## 4347 Phoenix
## 4348 Spider-Man: Shattered Dimensions
## 4349 F.E.A.R. 3
## 4350 My Fashion Studio
## 4351 Plants vs. Zombies: Garden Warfare 2
## 4352 Rock Band Country Track Pack
## 4353 Pro Evolution Soccer 2016
## 4354 Apocalypse
## 4355 Transformers: Revenge of the Fallen (Wii & PS2 Version)
## 4356 PES 2009: Pro Evolution Soccer
## 4357 Yu-Gi-Oh! Destiny Board Traveler
## 4358 SingStar Queen
## 4359 God Eater 2
## 4360 Samurai Warriors 3
## 4361 World Soccer Winning Eleven 5 Final Evolution
## 4362 One Piece: Pirate Warriors 3
## 4363 Sphinx and the Cursed Mummy
## 4364 Fatal Fury 2
## 4365 Rampage World Tour
## 4366 Pokemon Puzzle League
## 4367 Eternal Sonata
## 4368 Dance Dance Revolution: Hottest Party 3
## 4369 FIFA 15
## 4370 Petz: Catz 2
## 4371 Bee Movie Game
## 4372 Tekken Advance
## 4373 Shin Megami Tensei: Persona 3
## 4374 Persona
## 4375 Band Hero
## 4376 Naruto Shippuden: Ultimate Ninja Storm Generations
## 4377 Hot Wheels: Stunt Track Challenge
## 4378 Viking: Battle for Asgard
## 4380 Mobile Suit Gundam
## 4382 SingStar Take That
## 4383 SOCOM: U.S. Navy SEALs Fireteam Bravo 3
## 4384 Final Fantasy Collection
## 4385 Disney Sing It! High School Musical 3: Senior Year
## 4386 NBA Live 10
## 4387 Samurai Warriors: Xtreme Legends
## 4388 Tony Hawk's Proving Ground
## 4389 NHL FaceOff
## 4390 WWE WrestleMania 21
## 4391 Brunswick Pro Bowling
## 4392 Worms: Open Warfare 2
## 4393 NBA Live 2005
## 4394 Defender II
## 4395 WWE Day of Reckoning
## 4396 Dragon Quest Heroes: Rocket Slime
## 4397 ATV Quad Power Racing 2
## 4398 Walt Disney World Quest: Magical Racing Tour
## 4399 Sled Storm
## 4400 Vandal Hearts
## 4401 Mario Tennis Ultra Smash
## 4402 Celebrity Sports Showdown
## 4403 Jawbreaker
## 4404 Scooby-Doo! Mystery Mayhem
## 4405 Mario Golf: Advance Tour
## 4406 Crash: Mind Over Mutant
## 4407 Karaoke Revolution
## 4408 Discovery Kids: Kitten Corner
## 4409 Just Dance 2014
## 4410 Yu-Gi-Oh! Capsule Monster Coliseum
## 4411 Payday 2
## 4412 Major League Baseball 2K6
## 4413 Jampack Volume 13 (RP-M)
## 4414 World Soccer Winning Eleven 9
## 4415 NBA Live 2000
## 4416 Teenage Mutant Ninja Turtles 2: Battle Nexus
## 4417 SpongeBob SquarePants: Lights, Camera, Pants!
## 4418 Disney Infinity 3.0
## 4419 TouchMaster 3
## 4420 The Thing
## 4421 Disney Infinity 3.0
## 4422 Van Helsing
## 4423 X-Men Legends II: Rise of Apocalypse
## 4424 Food Network: Cook or Be Cooked
## 4425 Transformers: Fall of Cybertron
## 4426 Metro: Last Light
## 4427 The Urbz: Sims in the City (all regions sales)
## 4428 Spawn: Armageddon
## 4429 The Godfather (US sales)
## 4430 DmC: Devil May Cry
## 4431 Plants vs. Zombies: Garden Warfare 2
## 4432 World Stadium EX
## 4433 Tiger Woods PGA Tour 2003
## 4434 Battlefield 2: Modern Combat
## 4435 G-Force
## 4436 Ben 10 Alien Force: Vilgax Attacks
## 4437 50 Cent: Bulletproof
## 4438 Densetsu no Stafi 2
## 4439 Independence Day
## 4440 Need for Speed: Shift 2 Unleashed
## 4441 Chocobo Racing
## 4442 Ninja Gaiden 3
## 4443 Child of Eden
## 4444 LEGO Star Wars II: The Original Trilogy
## 4445 Family Fest Presents Circus Games
## 4446 My Spanish Coach
## 4447 The Darkness
## 4448 Gundam SEED: Federation vs. Z.A.F.T.
## 4449 Ms. Pac-Man Maze Madness
## 4450 Blood Omen: Legacy of Kain
## 4451 Super Bomberman 4
## 4452 Bomberman II
## 4453 Duke Nukem 64
## 4454 Sin and Punishment: Star Successor
## 4455 Jump Start Pet Rescue
## 4456 Naughty Bear
## 4457 SpongeBob SquarePants: Lights, Camera, Pants!
## 4458 Super Robot Taisen OG: Original Generations
## 4459 Army Men World War: Final Front
## 4460 Petz: Horsez 2
## 4461 Puppy Luv: Spa and Resort
## 4462 Yu-Gi-Oh! 5D's Tag Force 4
## 4463 MX Unleashed
## 4464 Jikkyou Powerful Pro Yakyuu 9
## 4465 Grind Session
## 4466 Naruto: Gekito Ninja Taisen! 3
## 4467 Barbie: Groom and Glam Pups
## 4468 Wario World
## 4469 Scooby-Doo! Mystery Mayhem
## 4471 Taiko no Tatsujin: Doki! Shinkyoku Darake no Haru Matsuri
## 4472 Deer Drive
## 4474 Just Dance 4
## 4475 TimeSplitters 2
## 4476 Battlebots: Design & Destroy
## 4477 Devil May Cry HD Collection
## 4478 Eternal Darkness: Sanity's Requiem
## 4479 Power Rangers: S.P.D.
## 4480 Naruto: Ultimate Ninja 3
## 4481 SingStar Motown
## 4482 Neon Genesis Evangelion
## 4483 Nicktoons: Attack of the Toybots
## 4484 Mobile Suit Gundam: One Year War
## 4485 Tongari Boushi to Mahou no Otana
## 4486 NFL Blitz 20-03
## 4487 Just Dance: Summer Party
## 4488 SpongeBob's Atlantis SquarePantis
## 4489 Dragon Ball Z: Shin Budokai - Another Road
## 4490 Master of Illusion
## 4491 Star Wars: Jedi Starfighter
## 4492 Remington Great American Bird Hunt
## 4493 Classic NES Series: Metroid
## 4494 Alpha Protocol
## 4495 Tetris Axis
## 4496 Dora the Explorer: Dora Puppy
## 4497 Primal
## 4498 Madden NFL 2002
## 4499 Need for Speed Underground 2
## 4500 007: Quantum of Solace
## 4501 Spec Ops: Covert Assault
## 4502 SSX Tricky
## 4503 Flight Control Rocket
## 4504 FIFA 14
## 4505 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 4506 Trials Fusion
## 4507 Wheel of Fortune
## 4508 NiGHTS into dreams...
## 4509 NCAA Football 2004
## 4510 Overwatch
## 4511 Rock Band 4
## 4512 NBA Jam
## 4513 Bionicle
## 4514 Minecraft
## 4515 MLB 2002
## 4516 Sleeping Dogs
## 4517 TimeSplitters
## 4518 Barnstorming
## 4519 InuYasha: The Secret of the Cursed Mask
## 4520 Rune Factory 3: A Fantasy Harvest Moon
## 4521 The Powerpuff Girls: Him and Seek
## 4522 Mega Man Zero 2
## 4523 Wonder Project J: Kikai no Shonen Pino
## 4524 2010 FIFA World Cup South Africa
## 4525 Atelier Totori: The Adventurer of Arland
## 4526 Spec Ops: The Line
## 4527 The Fairly Odd Parents: Game Boy Advance Video Volume 1
## 4528 Ghostbusters: The Video Game
## 4529 Hunter: The Reckoning Wayward
## 4530 How to Train Your Dragon
## 4531 Command & Conquer 3: Tiberium Wars
## 4532 WipEout 64
## 4533 Mischief Makers
## 4534 Max Payne 3
## 4535 Petz Bunnyz
## 4536 Castlevania: Portrait of Ruin
## 4538 EyeToy: AntiGrav
## 4539 FIFA 14
## 4540 EverQuest Online Adventures
## 4541 Cool Boarders
## 4542 999: Nine Hours, Nine Persons, Nine Doors
## 4543 Mobile Suit Gundam: Zeonic Front
## 4544 Zone of the Enders HD Collection
## 4545 Def Jam Icon
## 4546 Tales of the World: Radiant Mythology
## 4547 Monopoly
## 4548 Dawn of Mana
## 4549 Microsoft Flight Simulator X
## 4550 Lego Batman 3: Beyond Gotham
## 4551 Madden NFL 2003
## 4552 NASCAR Kart Racing
## 4553 Disney Sing It
## 4554 Backyard Baseball
## 4555 Call of Duty: Black Ops II
## 4556 TRON: Evolution
## 4557 Midway Arcade Treasures
## 4558 Call of Duty: Modern Warfare: Mobilized
## 4559 Petz: Horsez 2
## 4560 The Smurfs
## 4561 Bakugan: Battle Brawlers
## 4562 NHL FaceOff 99
## 4563 Skylanders: Trap Team
## 4564 SEGA Classics Collection
## 4565 Pirates of the Caribbean: At World's End
## 4566 Juiced: Eliminator
## 4567 Naruto: Ninja Council 3
## 4568 Neon Genesis Evangelion 2nd Impression
## 4569 Dai-2-Ji Super Robot Taisen Z: Hakai-hen
## 4570 NBA Street
## 4571 Ben 10 Alien Force: Vilgax Attacks
## 4572 Ben 10 Alien Force: Vilgax Attacks
## 4573 Valkyrie Profile: Covenant of the Plume
## 4574 The Legend of Spyro: The Eternal Night
## 4575 Mega Man Battle Network
## 4576 LEGO Rock Band
## 4577 25 to Life
## 4578 NHL 2K6
## 4579 Medal of Honor: Rising Sun
## 4580 The Sims
## 4581 Guitar Hero: Smash Hits
## 4582 Dog's Life
## 4583 The X Files
## 4584 Super Wagyan Land
## 4585 Rascal
## 4586 Hometown Story
## 4587 Tony Hawk's American Wasteland
## 4588 Top Spin 4
## 4589 Famicom Mini: Super Mario Bros. 2
## 4590 Crash: Mind Over Mutant
## 4591 Medal of Honor Heroes 2
## 4592 Yu-Gi-Oh! GX: Tag Force 2
## 4593 Colony Wars
## 4594 All-Star Baseball 2004
## 4595 Big Strike Bowling
## 4596 Ragnarok Odyssey
## 4597 Harry Potter and the Deathly Hallows - Part 1
## 4598 Horsez
## 4599 SpongeBob's Truth or Square (US sales)
## 4600 NASCAR Thunder 2002
## 4601 Grandia
## 4602 ESPN NHL 2K5
## 4603 Yu-Gi-Oh! 7 Trials to Glory: World Championship Tournament 2005
## 4604 Hot Wheels World Race
## 4605 Avatar: The Last Airbender - The Burning Earth
## 4606 Superman: Shadow of Apokolips
## 4607 NiGHTS: Journey of Dreams
## 4608 American Chopper
## 4609 Vanquish
## 4610 Star Wars Trilogy: Apprentice of the Force
## 4611 Marvel Super Hero Squad
## 4612 Lemony Snicket's A Series of Unfortunate Events
## 4613 JGTC: All-Japan Grand Touring Car Championship
## 4614 NBA Live 06
## 4615 Arc the Lad III
## 4616 Solitaire Overload
## 4617 Mobile Suit Gundam: Gundam vs. Gundam
## 4618 Test Drive
## 4619 Jikkyou Powerful Pro Yakyuu 11
## 4620 Ghost Trick: Phantom Detective
## 4621 The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 4622 Rush 2: Extreme Racing USA
## 4623 NFL Blitz 2001
## 4624 Dr. Mario 64
## 4625 Jikkyou Powerful Pro Yakyuu 6
## 4626 Army Men: Sarge's Heroes 2
## 4627 James Bond 007: Everything or Nothing
## 4628 Green Day: Rock Band
## 4629 Wolfenstein: The Old Blood
## 4630 MLB 08: The Show
## 4631 Disney Infinity 2.0: Marvel Super Heroes
## 4632 Dance Dance Revolution Ultramix 2
## 4633 Mega Man Anniversary Collection
## 4634 Blazing Angels: Squadrons of WWII
## 4635 Super Famista 4
## 4636 The Fairly Odd Parents: Game Boy Advance Video Volume 2
## 4637 Cabela's Legendary Adventures
## 4638 Taiko no Tatsujin DS: Dororon! Youkai Daikessen!!
## 4639 Harry Potter and the Goblet of Fire
## 4640 JumpStart: Escape from Adventure Island
## 4641 Thrillville: Off the Rails
## 4642 Style Lab: Makeover
## 4643 Condemned: Criminal Origins
## 4644 Mega Man X6
## 4645 Monster Jam: Urban Assault
## 4646 BloodRayne
## 4647 Kumamon Bomber: Puzzle de Kumamon Taisou
## 4648 Castlevania: Curse of Darkness
## 4649 Tom Clancy's HAWX 2
## 4650 Harvest Moon: Grand Bazaar
## 4651 International Superstar Soccer Pro '98
## 4652 Jimmy Neutron: Boy Genius
## 4653 Black
## 4654 Zack & Wiki: Quest for Barbaros' Treasure
## 4655 Double Pack: Finding Nemo / The Incredibles
## 4656 Star Wars The Clone Wars: Republic Heroes
## 4657 NBA 2K11
## 4658 Animal Crossing: Amiibo Festival
## 4659 Hyrule Warriors
## 4660 Harry Potter and the Deathly Hallows - Part 1
## 4661 Fishing Resort
## 4662 WWE All Stars
## 4663 Lord of the Rings: The Third Age
## 4664 Football Manager Handheld 2011
## 4665 Pirates of the Caribbean: At World's End
## 4666 Mega Man Legends 2
## 4667 X-Men vs. Street Fighter
## 4668 High Rollers Casino
## 4669 Castlevania: The Dracula X Chronicles
## 4670 The Suffering
## 4671 Cyber Troopers Virtual-On
## 4672 Katamari Forever
## 4673 Star Wars Starfighter: Special Edition
## 4674 TimeShift
## 4675 NBA Jam
## 4676 Zone of the Enders: The 2nd Runner
## 4677 Ghostbusters: The Video Game
## 4678 Attack on Titan: Humanity in Chains
## 4679 Jampack Spring 2004 (RP-T)
## 4680 Dexter's Laboratory Deesaster Strikes
## 4681 NFL GameDay 2004
## 4682 Scooby-Doo and the Cyber Chase
## 4683 Danganronpa: Trigger Happy Havoc
## 4685 Tomb Raider: The Last Revelation
## 4686 pro evolution soccer 2011
## 4687 Sega Rally Championship 2
## 4688 Quake II
## 4689 Crash of the Titans
## 4690 BioShock
## 4691 Cars: Mater-National Championship
## 4692 MLB 10: The Show
## 4693 Wheel of Fortune: 2nd Edition
## 4694 Tom Clancy's Rainbow Six: Lockdown
## 4695 Mobile Suit Gundam: Gundam vs. Gundam NEXT PLUS
## 4696 Cool Boarders 2001
## 4697 Grudge Warriors
## 4698 World Soccer Jikkyou Winning Eleven 2000: U-23 Medal heno Chousen
## 4699 Destiny: The Taken King
## 4700 Mobile Suit Gundam
## 4701 Mass Effect Trilogy
## 4702 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4703 Wolfenstein: The New Order
## 4704 James Patterson Women's Murder Club: Games of Passion
## 4705 Farming Simulator 2015
## 4706 Jimmy Neutron: Boy Genius
## 4707 Itadaki Street DS
## 4708 Castlevania: Order of Ecclesia
## 4709 BlazBlue: Continuum Shift
## 4710 X-Men: The Official Game
## 4711 300: March to Glory
## 4712 E0: Enemy Zero
## 4713 Nicktoons: Unite!
## 4714 Six Flags Fun Park
## 4715 Spore Hero
## 4716 Mass Effect Trilogy
## 4717 NASCAR Racing
## 4718 LEGO Jurassic World
## 4719 Monotaro Dentetsu 2010: Sengoku Ishin no Hero Daishuugou! no Maki
## 4720 Up
## 4721 Spider-Man: Web of Shadows
## 4722 Boku no Natsuyasumi 2: Umi no Bouken Hen
## 4723 SpongeBob SquigglePants
## 4724 Cars: Race-O-Rama
## 4725 Fantastic Pets
## 4726 Command & Conquer: Red Alert
## 4727 Star Wars The Clone Wars: Republic Heroes
## 4728 Dig Dug
## 4729 Ogre Battle 64: Person of Lordly Caliber
## 4730 Superman: The New Superman Adventures
## 4731 UEFA Euro 2008 Austria-Switzerland
## 4732 The Terminator: Dawn of Fate
## 4733 The LEGO Movie Videogame
## 4734 Rogue Galaxy: Director's Cut
## 4735 Armored Core
## 4736 Monster Trucks Mayhem
## 4737 Winter Sports 2: The Next Challenge
## 4738 Green Day: Rock Band
## 4739 Densha De Go! 2
## 4740 Transformers: Fall of Cybertron
## 4741 Call of Duty: Advanced Warfare
## 4742 Disney Princess: Enchanting Storybooks
## 4743 Monopoly Streets
## 4744 Band Hero
## 4745 The Wonderful 101
## 4746 No More Heroes 2: Desperate Struggle
## 4747 Battlefield 2: Modern Combat
## 4748 Armored Core 2: Another Age
## 4749 Buzz! Junior: Jungle Party
## 4750 Mortal Kombat: Deadly Alliance
## 4751 Marvel: Ultimate Alliance
## 4752 NBA 2K11
## 4753 AKB1/48: Idol to Koishitara...
## 4754 Pro Pinball
## 4755 '98 Koshien
## 4756 NBA 2K9
## 4757 Yu-Gi-Oh! The Eternal Duelist Soul (JP sales)
## 4758 Speed Racer: The Videogame
## 4759 Naughty Bear
## 4760 Littlest Pet Shop
## 4761 TNA iMPACT!
## 4762 Just Dance Kids 2
## 4763 Duke Nukem Forever
## 4764 Hatsune Miku: Project Diva 2nd
## 4765 Marvel: Ultimate Alliance 2
## 4766 Mario no Super Picross
## 4767 Ed, Edd n Eddy: The Mis-Edventures
## 4768 Jikkyou Powerful Pro Yakuu '94
## 4769 Disney's Tarzan Untamed
## 4770 Borderlands: The Handsome Collection
## 4771 The Gunstringer
## 4772 Knockout Kings 2001
## 4773 From Russia With Love
## 4774 FIFA Soccer 13
## 4775 Asura's Wrath
## 4776 Avatar: The Game
## 4777 My Virtual Tutor: Reading Adventure First to Second Grade
## 4778 Minority Report: Everybody Runs
## 4779 Disney's Hercules / Disney's The Jungle Book: Groove Party / A Bug's Life
## 4780 NFL GameDay 2002
## 4781 Pengo
## 4782 Disney Sing It! High School Musical 3: Senior Year
## 4783 Story of Seasons
## 4784 Beowulf: The Game
## 4785 Mouse Trap
## 4786 Super Monkey Ball: Step & Roll
## 4787 Hatsune Miku: Project Diva F 2nd
## 4788 Overlord
## 4789 Tak and the Power of Juju
## 4790 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 4791 Sega Superstars Tennis
## 4793 Dragon Quest X
## 4794 Wall-E
## 4795 Medarot: Kabuto / Kuwagata Version
## 4796 NBA 2K10
## 4797 Defender
## 4799 WipeOut 3 The Game
## 4800 Taiko no Tatsujin Wii: Dodon to 2 Yome!
## 4801 Thief (2014)
## 4802 Congo Bongo
## 4803 Gauntlet: Seven Sorrows
## 4804 Harry Potter: Quidditch World Cup
## 4805 Advance Wars: Dual Strike
## 4806 Yu-Gi-Oh! 5D's Stardust Accelerator: World Championship 2009
## 4807 Warriors Orochi 2 (JP sales)
## 4808 WWE SmackDown! vs. RAW 2006
## 4809 The Chronicles of Narnia: Prince Caspian
## 4810 The Incredibles: Rise of the Underminer
## 4811 Pet in TV
## 4812 Battalion Wars
## 4813 NBA ShootOut 2000
## 4814 Power Rangers: Dino Thunder
## 4815 Rocksmith 2014
## 4816 Samurai Shodown
## 4817 NHL 15
## 4818 TMNT
## 4819 Final Fantasy Crystal Chronicles: The Crystal Bearers
## 4820 Cabela's Big Game Hunter 2010
## 4821 EA Sports UFC 2
## 4822 Fighting Vipers
## 4823 NCAA GameBreaker 2000
## 4824 Iron Man 2
## 4825 The Legend of Spyro: Dawn of the Dragon
## 4826 AKB1/48: Idol to Guam de Koishitara...
## 4827 RR64: Ridge Racer 64
## 4828 Top Gear Rally
## 4829 NFL Quarterback Club 2000
## 4830 Mortal Kombat Mythologies: Sub-Zero
## 4831 18 Wheeler: American Pro Trucker
## 4832 Atari Anthology
## 4833 Bugs Bunny: Lost in Time
## 4834 NBA Jam
## 4835 Sherlock Holmes: The Mystery of the Mummy
## 4836 Hot Wheels: Beat That!
## 4837 MLB 2006
## 4838 Star Wars The Clone Wars: Republic Heroes
## 4839 Brunswick Pro Bowling
## 4840 Mafia II
## 4841 Rocket Power: Dream Scheme
## 4842 SpongeBob's Truth or Square (US sales)
## 4843 MX vs. ATV Unleashed
## 4844 Rampage: Total Destruction
## 4845 Planet 51
## 4846 The Urbz: Sims in the City
## 4847 Road Rash: Jailbreak
## 4848 Mother 3
## 4849 Nicktoons: Freeze Frame Frenzy
## 4850 Diner Dash: Sizzle & Serve
## 4851 Rapala Pro Bass Fishing 2010
## 4852 Legends of WrestleMania
## 4853 Wii Sports Club
## 4854 Tomb Raider: Anniversary
## 4855 You Don't Know Jack
## 4856 Mystery Dungeon: Shiren the Wanderer
## 4857 Sonic Lost World
## 4858 Condemned 2: Bloodshot
## 4860 Star Wars: Clone Wars
## 4861 NBA Live 2002
## 4862 Boku no Natsuyasumi
## 4863 Armored Core V
## 4864 I-Ninja
## 4865 Command & Conquer
## 4867 NBA Jam
## 4868 Mass Effect 2
## 4869 SD Gundam G Generation Seed
## 4870 Call of Duty: Finest Hour
## 4871 Scooby-Doo! and the Spooky Swamp
## 4872 Naruto: Path of the Ninja
## 4873 Rise of the Tomb Raider
## 4874 Hitman: Blood Money
## 4875 Tales of Phantasia
## 4876 Alpha Protocol
## 4877 Suzuki TT Superbikes
## 4878 Rumble Roses
## 4879 Just Dance 2014
## 4880 Fantastic Four: Rise of the Silver Surfer
## 4881 Ultimate Spider-Man
## 4882 GRID 2
## 4883 LEGO The Lord of the Rings
## 4884 Juiced 2: Hot Import Nights
## 4885 Skylanders: SuperChargers
## 4886 NHL 99
## 4887 NBA 2K10
## 4888 Dungeon Siege III
## 4889 Viking: Battle for Asgard
## 4890 Brunswick Pro Bowling
## 4891 Monster Jam: Urban Assault
## 4892 Danball Senki
## 4893 NASCAR Heat
## 4894 Bloody Roar
## 4895 Bump 'n' Jump
## 4896 Mobile Suit Gundam: Lost War Chronicles
## 4897 Disney's Brother Bear
## 4898 Naruto: Clash of Ninja Revolution 2
## 4899 NBA Live 09
## 4900 LEGO Star Wars III: The Clone Wars
## 4901 The House of The Dead III
## 4902 Rune Factory: Frontier
## 4903 Fire Emblem: Fuuin no Tsurugi
## 4904 SpongeBob's Truth or Square (US sales)
## 4905 FIFA 12
## 4906 Ener-G: Gym Rockets
## 4907 The Darkness II
## 4908 NBA Live 09
## 4909 Laser Blast
## 4910 Dancing with the Stars: We Dance!
## 4911 LocoRoco
## 4912 Thrasher Presents: Skate and Destroy
## 4913 Are You Smarter than a 5th Grader? Make the Grade
## 4914 Donkey Konga 2
## 4915 Just Dance 2014
## 4916 Metal Gear Solid: The Legacy Collection
## 4917 Tear Ring Saga Yutona Eiyuu Senki
## 4918 Project X Zone
## 4919 Red Faction: Armageddon
## 4920 Wipeout 2048
## 4921 Need for Speed: Nitro
## 4922 Mystery Case Files: The Malgrave Incident
## 4923 Yoshi Touch & Go
## 4924 EA Sports Active 2
## 4925 Combat of Giants: Dinosaurs 3D
## 4926 Taiko no Tatsujin Wii: Ketteiban
## 4927 Age of Empires III
## 4928 SSX 3
## 4929 MLB 15: The Show
## 4930 Madden NFL 2005
## 4931 All-Star Baseball 2000
## 4932 Custom Robo V2
## 4933 Extreme-G: XG2
## 4934 BattleTanx: Global Assault
## 4936 Chibi-Robo! Plug into Adventure!
## 4937 Dawn of Discovery
## 4938 Jampack Winter 2003 (RP-T)
## 4939 Dancing with the Stars: We Dance!
## 4940 Kengo: Master of Bushido
## 4941 Blood Omen 2
## 4942 Sesame Street: Elmo's A-to-Zoo Adventure
## 4943 Skylanders Giants
## 4944 Just Dance 4
## 4945 Super Fire ProWrestling
## 4946 Cabela's Dangerous Hunts 2
## 4947 Marvel: Ultimate Alliance
## 4948 SpongeBob vs The Big One: Beach Party Cook Off
## 4949 MotoGP 08
## 4950 Imagine: Party Babyz
## 4951 Chessmaster
## 4952 Tiger Woods PGA Tour 14
## 4953 Fatal Fury
## 4954 Farming Simulator 2013
## 4955 From TV Animation One Piece: Yume no Lufy Kaizokudan Tanjou!
## 4956 The Dog Island
## 4957 Madden NFL Football
## 4958 The Sims 2
## 4959 Ice Age 2: The Meltdown
## 4960 MLB 14: The Show
## 4961 Super Famista 3
## 4962 Auto Modellista
## 4963 Tom Clancy's Ghost Recon 2: Summit Strike
## 4964 Junior Classic Games
## 4965 Hooked! Again: Real Motion Fishing
## 4966 Tiger Woods PGA Tour 08
## 4967 Karaoke Revolution Presents American Idol Encore
## 4968 Airlock
## 4969 Tokimeki Memorial 2
## 4970 Samurai Warriors Chronicles
## 4971 Tomb Raider: Legend
## 4972 Ice Age: Dawn of the Dinosaurs
## 4973 Dance Party: Pop Hits
## 4974 Harry Potter: Quidditch World Cup
## 4975 Jam Sessions: Sing and Play Guitar (US sales)
## 4976 Saints Row IV
## 4977 Evil Dead: Fistfull of Boomstick
## 4978 One Piece: Unlimited World Red
## 4979 Phantasy Star Ø
## 4980 Triple Play 97
## 4981 Virtua Tennis 2009
## 4982 Super Soccer
## 4983 Shin Megami Tensei: Nocturne
## 4984 Wario Land II (GBC)
## 4985 San Francisco Rush: Extreme Racing
## 4986 Dragon's Crown
## 4987 Bakusou Dekotora Densetsu: Otoko Ippiki Yume Kaidoi
## 4988 Imagine: Salon Stylist
## 4989 ESPN College Hoops 2K5
## 4990 Looney Tunes: Acme Arsenal
## 4991 Cabela's Dangerous Hunts 2009
## 4992 Fragile Dreams: Farewell Ruins of the Moon
## 4993 SD Gundam G Generation Spirits
## 4994 Batman: Arkham City
## 4995 Disney Sing It
## 4996 Peppa Pig: The Game
## 4997 God Eater 2: Rage Burst
## 4998 Get Fit with Mel B
## 4999 The Cat in the Hat
## 5000 Naruto Shippuden: Ultimate Ninja Heroes 3
## 5001 NFL GameDay 2002
## 5002 Turok: Evolution
## 5003 Destiny: The Taken King
## 5004 Tamagotchi Connection: Corner Shop 3
## 5005 Mobile Suit Gundam: Giren no Yabou Zeon Dokuritsu Sensouden
## 5006 Ice Age
## 5007 Sega Superstars Tennis
## 5008 Headhunter
## 5009 Skate
## 5010 Shin Megami Tensei: Devil Summoner
## 5011 Raving Rabbids: Travel in Time 3D
## 5012 NCAA Football 08
## 5013 Marvel Nemesis: Rise of the Imperfects
## 5014 NHL 15
## 5015 ESPN Extreme Games
## 5016 Forza Horizon 3
## 5017 Overlord: Dark Legend
## 5018 Ninja: Shadow of Darkness
## 5019 SD Gundam G Generation-F
## 5020 Bratz: Rock Angelz
## 5021 FlatOut
## 5022 Phoenix Wright: Ace Attorney - Dual Destinies
## 5023 SSX 3
## 5024 NCAA Football 11
## 5025 Tales of Zestiria
## 5026 Lilo & Stitch 2: Hämsterviel Havoc
## 5027 Metal Gear Solid: Snake Eater 3D
## 5028 Risk: Global Domination
## 5029 Elite Beat Agents
## 5030 NBA 2K7
## 5031 Mobile Suit Gundam version 2.0
## 5032 Grandia Xtreme
## 5033 Silent Scope
## 5034 Final Fantasy Adventure
## 5035 Virtua Tennis 2009
## 5036 Dora The Explorer: Dora Saves the Snow Princess
## 5037 The Incredible Hulk
## 5038 Mercenaries 2: World in Flames
## 5039 Cabela's Big Game Hunter 2012
## 5040 EA Sports MMA
## 5041 Iron Man 2
## 5042 DiRT 2
## 5043 Tokimeki Memorial: Forever with You
## 5044 MediEvil II
## 5045 Guitar Hero On Tour: Modern Hits
## 5046 Hunter: The Reckoning
## 5047 MX vs. ATV Untamed
## 5048 Rogue Trip: Vacation 2012
## 5049 Dai-4-Ji Super Robot Taisen
## 5050 Tiger Woods PGA Tour 08
## 5051 Pokemon Channel
## 5052 Taiko no Tatsujin Portable DX
## 5053 Etrian Odyssey IV: Legends of the Titans
## 5054 Moto Racer World Tour
## 5055 NCAA Final Four 2000
## 5056 Scribblenauts: Unlimited
## 5057 FIFA 17
## 5058 Saints Row: The Third
## 5059 Just Dance 2015
## 5060 Madagascar: Escape 2 Africa
## 5061 ZhuZhu Pets: Featuring The Wild Bunch
## 5063 Petz Rescue: Wildlife Vet
## 5064 Green Day: Rock Band
## 5065 Gravitar
## 5066 Monster Jam: Path of Destruction
## 5067 Toukiden: The Age of Demons
## 5068 EyeToy Play 2
## 5069 Dance Dance Revolution Ultramix 3
## 5070 Mobile Suit Gundam: Extreme VS Full Boost
## 5071 WWE SmackDown vs. Raw 2011
## 5072 Need for Speed: Hot Pursuit
## 5073 The Legend of Spyro: A New Beginning
## 5074 Pro Evolution Soccer 2011 3D
## 5075 Shin Megami Tensei: Devil Survivor Overclocked
## 5076 Dragon Ball Z: Attack of the Saiyans
## 5077 Marvel Super Hero Squad
## 5078 The House of the Dead: Overkill - Extended Cut
## 5080 Harry Potter and the Prisoner of Azkaban
## 5081 Quake 4
## 5082 Petz Rescue: Ocean Patrol
## 5083 Solaris
## 5084 Puppy Palace
## 5085 Super Dragon Ball Z
## 5086 Paws & Claws: Pampered Pets
## 5087 ESPN: Sports Connection
## 5088 Alien: Isolation
## 5089 Naruto Shippuden: Ninja Destiny 2
## 5090 SAW
## 5091 The Legend of Spyro: The Eternal Night
## 5092 Tobal 2
## 5093 Digging for Dinosaurs
## 5094 Trivial Pursuit
## 5095 Tiger Woods PGA Tour 09
## 5096 Ultimate Spider-Man
## 5097 Life is Strange
## 5098 Kingdom Under Fire: Circle of Doom
## 5099 NBA Inside Drive 2002
## 5100 The BIGS
## 5101 Major League Baseball 2K6
## 5102 Kileak: The DNA Imperative
## 5103 Petz: Catz 2
## 5104 Mini Ninjas
## 5105 Tom Clancy's The Division
## 5106 Phantasy Star Portable 2: Infinity
## 5107 Hell's Kitchen: The Game
## 5108 LEGO Dimensions
## 5109 Monsters, Inc. Scream Arena
## 5110 Reel Fishing III
## 5111 Cabela's Deer Hunt 2005 Season
## 5112 Prince of Persia: The Forgotten Sands
## 5113 Rampage: Total Destruction
## 5114 High Heat Major League Baseball 2003
## 5115 Madden NFL 11
## 5116 Super Formation Soccer 94
## 5117 Panzer Dragoon
## 5118 Tiger Woods PGA Tour 12: The Masters
## 5119 Rage
## 5120 Spider-Man: Friend or Foe
## 5121 Yarudora Series Vol.1: Double Cast
## 5122 Dungeon Siege III
## 5123 Juiced 2: Hot Import Nights
## 5124 Rec Room Games
## 5125 Fushigi no Dungeon: Furai no Shiren 2 - Oni Shuurai! Shiren Shiro!
## 5126 Turok: Rage Wars
## 5127 Scooby-Doo! Classic Creep Capers
## 5128 Dragonfire
## 5129 Custom Robo
## 5130 FIFA Soccer 13
## 5131 Command & Conquer: Red Alert 3 Ultimate Edition
## 5132 Harry Potter and the Order of the Phoenix
## 5133 Medieval II: Total War Gold Edition
## 5134 Pac-Man World 2
## 5135 Kotoba no Puzzle: Mojipittan DS
## 5136 Barbie Horse Adventures: Blue Ribbon Race
## 5137 Bionic Commando
## 5138 Wanted: Weapons of Fate
## 5139 Slime MoriMori Dragon Quest: Shougeki No Shippo Dan
## 5140 Dishonored
## 5141 Marvel: Ultimate Alliance
## 5142 NFL Street 2 Unleashed
## 5143 Super Robot Taisen EX
## 5144 FIFA Street 2
## 5145 Bottom of the 9th
## 5146 Theatrhythm Final Fantasy: Curtain Call
## 5147 Trauma Center: Under the Knife
## 5148 Shin Megami Tensei II
## 5149 Xenosaga Episode III: Also sprach Zarathustra
## 5150 Build-A-Bear Workshop: A Friend Fur All Seasons
## 5151 Sid Meier's Civilization: Beyond Earth
## 5152 Need for Speed: The Run
## 5153 Virtua Fighter 3tb
## 5154 Transformers: Dark of the Moon
## 5155 Mini-Yonku GB: Let's & Go!!
## 5156 Skylanders SWAP Force
## 5157 LEGO Batman 2: DC Super Heroes
## 5158 Rock Band 4
## 5159 Left 4 Dead 2
## 5160 The Sims 2: Castaway
## 5161 NCAA Football 07
## 5162 The Chronicles of Narnia: Prince Caspian
## 5164 Dreamworks Madagascar Kartz
## 5165 My Horse & Me
## 5166 GoldenEye: Rogue Agent
## 5167 Zero4 Champ RR
## 5168 Dragon Ball Z: Infinite World
## 5169 Nonomura Byoin no Hitobito
## 5170 Tom Clancy's HAWX 2
## 5171 ESPN X Games Skateboarding
## 5173 Resident Evil Zero
## 5174 Super Fire ProWrestling Special
## 5175 Yuu Yuu Hakusho
## 5176 Kamaitachi no Yoru 2
## 5177 High Heat Major League Baseball 2004
## 5178 Robots
## 5179 NARC
## 5180 One Piece: Gigant Battle!
## 5181 Valkyrie Profile: Lenneth
## 5182 Tiger Woods PGA Tour 09
## 5183 Metro: Last Light
## 5184 Tiger Woods PGA Tour 14
## 5185 LocoRoco 2
## 5186 Monster Rancher 3
## 5187 The Incredibles: Rise of the Underminer
## 5188 Spider-Man: Shattered Dimensions
## 5189 BlazBlue: Calamity Trigger
## 5190 MechWarrior 2: 31st Century Combat
## 5191 Earth Defense Force 2025
## 5192 Hamtaro: Ham-Ham Heartbreak
## 5193 Okage: Shadow King
## 5194 Press Your Luck 2010 Edition
## 5195 Mobile Suit Z-Gundam
## 5198 Speed Racer: The Videogame
## 5199 NHL 2K10
## 5200 Assassin's Creed III
## 5201 Kirby's Dream Land 3
## 5202 Big Bass World Championship
## 5203 NFL GameDay 2001
## 5204 NBA 2K6
## 5205 Jurassic Park
## 5206 Mystical Ninja starring Goemon
## 5207 Tetrisphere
## 5208 Saban's Power Rangers: Lightspeed Rescue
## 5209 Senran Kagura Shinovi Versus: Sh?jo-tachi no Sh?mei
## 5210 North American Hunting Extravaganza
## 5211 World's Scariest Police Chases
## 5212 Guitar Hero: Smash Hits
## 5213 Shaun Palmer's Pro Snowboarder
## 5214 AMF Bowling World Lanes
## 5215 MechAssault 2: Lone Wolf
## 5216 Middle-Earth: Shadow of Mordor
## 5217 Hamster Club 3
## 5218 Breath of Fire II
## 5219 Call of Duty: Ghosts
## 5220 LEGO Racers
## 5221 NBA 2K12
## 5222 Teenage Mutant Ninja Turtles: Smash-Up
## 5223 Kinectimals: Now with Bears!
## 5224 ESPN NFL Football
## 5225 ATV/Monster Truck Mayhem
## 5226 Naruto: Ultimate Ninja 3 (JP sales)
## 5227 Just Dance 2016
## 5228 Worms: Open Warfare 2
## 5229 Rapala Pro Fishing
## 5230 J-League Pro Soccer Club o Tsukurou '04
## 5231 Dark Void
## 5232 James Bond 007: Legends
## 5233 Dai-2-Ji Super Robot Taisen Z Saisei-hen
## 5234 WWE '12
## 5235 Disney's The Haunted Mansion
## 5236 Arc the Lad: Twilight of the Spirits
## 5237 Dance Dance Revolution 3rdMix
## 5238 Ryu Ga Gotoku Kenzan!
## 5239 U-Sing
## 5240 Super Robot Taisen A
## 5242 Chicken Shoot
## 5243 Company of Heroes 2
## 5244 Defiance
## 5245 We Sing Deutsche Hits
## 5246 Boxer's Road
## 5247 Frogs And Flies
## 5248 DanceDanceRevolution
## 5249 Harry Potter and the Chamber of Secrets
## 5250 EA Sports MMA
## 5251 Toriko: Gourmet Survival!
## 5252 South Park Rally
## 5253 Ganbare Goemon 3: Shishi Jyuurokubei no Karakuri Manji Katame
## 5254 Monopoly
## 5255 Mega Man Zero Collection
## 5256 Arctic Thunder
## 5257 G-Force
## 5258 NHL 2K10
## 5259 Football Manager Handheld 2010
## 5260 J-League Pro Soccer Club o Tsukurou!
## 5261 Wonder Pets! Save the Animals!
## 5262 Formula 1 Championship Edition
## 5263 Shrek
## 5264 CSI: Deadly Intent - The Hidden Cases
## 5265 SOCOM: Tactical Strike
## 5266 Blasto
## 5267 Trauma Center: Second Opinion
## 5268 Backyard Baseball 2006
## 5269 Dark Souls III
## 5270 Cabela's Outdoor Adventures (2006)
## 5271 Nicktoons: Unite!
## 5272 Suikoden V
## 5273 Picross 2
## 5274 Remember Me
## 5275 Battalion Wars 2
## 5276 Outlaw Golf 2
## 5277 SpongeBob's Boating Bash
## 5278 Sentouchu: Densetsu no Shinobi to Survival Battle!
## 5279 Vancouver 2010 - The Official Video Game of the Olympic Winter Games
## 5280 Momotarou Dentetsu 12
## 5281 Mini Ninjas
## 5282 Tekken Tag Tournament 2
## 5283 Batman: Rise of Sin Tzu
## 5284 Disney's Tarzan: Return to the Jungle
## 5285 Cabela's Dangerous Hunts
## 5286 Terminator Salvation
## 5287 Jikkyou Powerful Pro Yakyuu 13
## 5288 Fossil Fighters: Frontier
## 5289 Star Fox: Zero
## 5290 Mega Man X3
## 5291 Mini Ninjas
## 5292 Stunt Race FX
## 5293 Bloody Roar 3
## 5294 WWE Crush Hour
## 5295 Persona 2: Eternal Punishment
## 5296 Star Wars: Flight of the Falcon
## 5297 One Piece: Gigant Battle 2 Shin Sekai
## 5298 Pac-Man All-Stars
## 5299 Def Jam Rapstar
## 5300 SimCity Creator
## 5301 Hannah Montana: The Movie
## 5302 Angry Birds Star Wars
## 5304 Mega Man ZX Advent
## 5305 Jikkyou Powerful Pro Yakyuu 2000
## 5306 Sniper: Ghost Warrior 2
## 5307 Racquet Sports
## 5308 Harry Potter and the Deathly Hallows - Part 2
## 5309 Supreme Commander 2
## 5310 Resident Evil: Dead Aim
## 5311 Need for Speed Carbon
## 5312 The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 5313 SpongeBob SquarePants: The Yellow Avenger
## 5314 The Fairly Odd Parents: Shadow Showdown
## 5315 Saban's Power Rangers: Lightspeed Rescue
## 5316 Xbox Music Mixer
## 5317 WWE All Stars
## 5318 The Shoot
## 5319 College Hoops 2K8
## 5320 Guitar Hero: Metallica
## 5321 Guilty Gear X2
## 5322 MotoGP 08
## 5323 Yu-Gi-Oh! 5D's Tag Force 5
## 5324 Enemy Territory: Quake Wars
## 5325 Tom Clancy's Rainbow Six: Lockdown
## 5326 From TV Animation One Piece: Tobidase Kaizokudan!
## 5327 The Tale of Despereaux
## 5328 Aggressive Inline
## 5329 Karaoke Revolution
## 5330 NFL Street
## 5331 Hello Kitty Daily
## 5332 Metal Arms: Glitch in the System
## 5333 Farming Simulator 2015
## 5334 Jikkyou Powerful Pro Yakyuu 7
## 5335 Rally Cross 2
## 5336 EverGrace
## 5337 Def Jam Icon
## 5338 Lunar 2: Eternal Blue Complete
## 5339 Street Fighter Alpha: Warriors' Dreams
## 5340 Rugrats: Royal Ransom
## 5341 Disney Fairies: Tinker Bell and the Great Fairy Rescue
## 5342 MLB 06: The Show
## 5343 F1 Race Stars
## 5344 Over the Hedge
## 5345 Naruto Shippuden: Ultimate Ninja Impact
## 5346 Just Dance 2016
## 5347 Charlie and the Chocolate Factory
## 5348 Pirates of the Caribbean: At World's End
## 5349 UEFA Euro 2008 Austria-Switzerland
## 5350 Kurushi Final: Mental Blocks
## 5351 Style Lab: Jewelry Design
## 5352 Risk / Battleship / Clue
## 5353 SD Gundam G Generation World
## 5354 LEGO Pirates of the Caribbean: The Video Game
## 5355 The Wild Thornberrys Movie
## 5356 High School Musical 3: Senior Year DANCE!
## 5357 Dynasty Warriors 5 Empires
## 5358 SoulCalibur
## 5359 WipEout 3
## 5360 Etrian Odyssey
## 5361 Conan
## 5362 Classic NES Series: Ice Climber
## 5363 Skylanders: Trap Team
## 5364 Avatar: The Last Airbender - The Burning Earth
## 5365 F.E.A.R.
## 5366 Tenchu Z
## 5367 Freeway
## 5368 Driver 2 Advance
## 5369 Monster Rancher 4
## 5370 Iron Man 2
## 5371 Chicken Riot
## 5372 Tim Burton's The Nightmare Before Christmas: Oogie's Revenge
## 5373 Iron Storm
## 5374 Harry Potter and the Deathly Hallows - Part 2
## 5375 MotorStorm: Arctic Edge
## 5376 The Fairly Odd Parents: Shadow Showdown
## 5377 Radiant Historia
## 5378 Marvel Super Heroes
## 5379 Super Bust-A-Move
## 5380 Hitman: Contracts
## 5381 Thunderstrike: Operation Phoenix
## 5382 Alien's Return
## 5383 Frostbite
## 5384 LEGO Marvel's Avengers
## 5385 Kameo: Elements of Power
## 5386 Power Rangers Samurai
## 5387 WWE Day of Reckoning 2
## 5388 Dynasty Warriors 6 Empires
## 5389 The Urbz: Sims in the City
## 5390 Fantastic Voyage
## 5391 The Adventures of Tintin: The Game
## 5392 Bee Movie Game
## 5393 Silent Hill HD Collection
## 5394 Night Warriors: Darkstalkers' Revenge
## 5395 Off Road Challenge
## 5396 Bank Heist
## 5397 Harry Potter and the Half-Blood Prince
## 5398 Tom Clancy's Ghost Recon: Shadow Wars
## 5399 Backstreet Billiards
## 5400 MX vs. ATV Untamed
## 5401 Carnival
## 5402 Football Manager Handheld 2008
## 5403 Leisure Suit Larry: Magna Cum Laude
## 5404 Harry Potter and the Deathly Hallows - Part 2
## 5405 MVP 06 NCAA Baseball
## 5406 Momotarou Dentetsu DS: Tokyo & Japan
## 5407 Point Blank
## 5408 Bookworm
## 5409 Smart Girl's Party Game
## 5410 Rayman Legends
## 5411 Puzzle Quest: Challenge of the Warlords
## 5412 Star Ocean: Second Evolution
## 5413 My Baby Boy
## 5414 Tiny Tank
## 5415 Jonah Lomu Rugby Challenge
## 5416 Spy Hunter
## 5417 Angry Birds Star Wars
## 5418 Imagine: Movie Star
## 5419 NHL 09
## 5420 Zoo Tycoon (2013)
## 5421 Herbie: Fully Loaded
## 5422 The Sims 3: Town Life Stuff
## 5423 Teenage Mutant Ninja Turtles
## 5424 Pony Friends 2
## 5425 Disney Sing It: Pop Hits
## 5426 Buzz! The Ultimate Music Quiz
## 5427 Persona 5
## 5428 The Eye of Judgment
## 5429 Pirates of the Caribbean: At World's End
## 5430 Modnation Racers: Road Trip
## 5431 Dynasty Warriors: Gundam 2
## 5432 Power Rangers Samurai
## 5433 Fade to Black
## 5434 MXRider
## 5435 Avatar: The Last Airbender
## 5436 Battlefield: Hardline
## 5437 Delta Force: Black Hawk Down
## 5438 Night at the Museum: Battle of the Smithsonian
## 5439 World Championship Poker 2: Featuring Howard Lederer
## 5440 Sengoku Musou 3 Z
## 5441 Operation Flashpoint: Red River
## 5442 Ninja Blade
## 5443 Tom Clancy's Ghost Recon Advanced Warfighter
## 5444 Transformers: Revenge of the Fallen (DS Versions)
## 5445 Fracture
## 5446 Tokyo Highway Battle
## 5447 Pandora's Tower
## 5448 Binary Domain
## 5449 The King of Fighters XIII
## 5450 Beyond Good & Evil
## 5451 Banjo-Kazooie: Grunty's Revenge
## 5452 Bomberman World
## 5453 The X-Factor
## 5454 Digimon World: Dawn / Dusk
## 5455 Street Fighter Alpha 3 MAX
## 5456 Untold Legends: The Warriors Code
## 5457 Virtua Tennis 2009
## 5458 Deathtrap Dungeon
## 5459 Tales of the World: Radiant Mythology 2
## 5460 Wipeout 2
## 5461 Iron Man 2
## 5462 Ape Escape Academy
## 5463 The Darkness II
## 5464 SingStar Take That
## 5465 Marvel: Ultimate Alliance 2
## 5466 Ultimate Marvel vs. Capcom 3
## 5467 WWE Wrestlemania XIX
## 5468 Planet Puzzle League
## 5469 The Sims 2
## 5470 Hulk
## 5471 Naruto: Rise of a Ninja
## 5472 Chicken Blaster
## 5473 Family Party: 90 Great Games Party Pack
## 5474 Klonoa 2: Lunatea's Veil
## 5475 Deus Ex: Invisible War
## 5476 Resonance of Fate
## 5477 Hell's Kitchen: The Game
## 5478 Disney's Treasure Planet
## 5479 NASCAR Thunder 2002
## 5480 Jeanne d'Arc
## 5481 NCAA Basketball 10
## 5482 BeatMania Append GottaMix
## 5483 Dead or Alive 5
## 5484 Tak 2: The Staff of Dreams
## 5485 Rugby World Cup 2011
## 5486 Medal of Honor: Warfighter
## 5487 Kelly Slater's Pro Surfer
## 5488 Shrek SuperSlam
## 5489 Sonic Boom: Rise of Lyric
## 5490 Legends of Wrestling II
## 5491 World Stadium 3
## 5492 Little Deviants
## 5493 Silent Hill: Downpour
## 5494 Extra Bases
## 5495 Super Power League 2
## 5496 Night at the Museum: Battle of the Smithsonian
## 5497 Capcom Classics Collection Reloaded
## 5498 Madden NFL 09
## 5499 MLB 09: The Show
## 5500 Deus Ex: Mankind Divided
## 5501 Cool Boarders 2001
## 5502 Classic NES Series: Castlevania
## 5503 Dragon Ball Z: Battle of Z
## 5504 Scooby-Doo! First Frights
## 5505 Fight Night Round 3
## 5506 GT Advance Championship Racing
## 5507 Way of the Samurai 2
## 5508 FIFA Street 3
## 5510 BattleTanx
## 5511 Hatsune Miku: Project Diva Extend
## 5512 Battlestations: Pacific
## 5513 Pitfall 3D: Beyond the Jungle
## 5514 Disgaea 2: Cursed Memories
## 5515 Cabela's Dangerous Hunts 2011
## 5516 DECA Sports Freedom
## 5517 Clock Tower 3
## 5518 Battle Dodge Ball
## 5519 Goosebumps HorrorLand
## 5520 Phineas and Ferb: Across the 2nd Dimension
## 5521 Call Of Duty 2: Big Red One
## 5522 Elebits
## 5523 Warhammer 40,000: Squad Command
## 5524 F1 2013
## 5525 Disgaea: Hour of Darkness
## 5526 NeoGeo Battle Coliseum
## 5527 SSX Blur
## 5528 DiRT 2
## 5529 Vin Diesel: Wheelman
## 5530 SpongeBob SquarePants: Creature from the Krusty Krab
## 5531 My Baby: First Steps
## 5532 MLB 08: The Show
## 5533 The Black Eyed Peas Experience
## 5534 Parodius
## 5535 Spy Kids 3-D: Game Over
## 5536 Sakura Wars 3: Paris wa Moeteiru ka
## 5537 1001 Touch Games
## 5538 NCAA GameBreaker 2001
## 5539 Power Rangers: Ninja Storm
## 5540 Angry Birds Star Wars
## 5541 Naruto: Gekito Ninja Taisen! 4
## 5542 Kidou Senshi Gundam F91: Formula Senki 0122
## 5543 Despicable Me: The Game
## 5544 Golden Axe: Beast Rider
## 5545 MySims SkyHeroes
## 5546 MVP Baseball 2005
## 5547 Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Kounin: KanKen DS 2 + Jouyou Kanji Jiten
## 5548 Carnival Games: Monkey See, Monkey Do!
## 5549 Eternal Sonata
## 5550 DX Game of Life 2
## 5551 EA Playground
## 5552 NBA Live 96
## 5553 Clash of the Titans
## 5554 Folklore
## 5555 Dragon Ball Z: Extreme Butoden
## 5556 Samurai Warriors 2: Xtreme Legends (JP sales)
## 5557 Sniper Elite 3
## 5558 Teen Titans
## 5559 Dead Rising 2: Off the Record
## 5560 Frogger II: Threeedeep!
## 5561 Etrian Odyssey III: The Drowned City
## 5562 LEGO The Lord of the Rings
## 5563 NBA Live 06
## 5564 Karaoke Revolution Presents American Idol Encore 2
## 5565 Fireball
## 5566 Batman: Arkham Origins
## 5567 Discovery Kids: Puppy Playtime
## 5568 Dr. Mario / Puzzle League
## 5569 Bleach: Shattered Blade
## 5570 Shin Nippon Pro Wrestling: Toukon Retsuden
## 5571 Major League Baseball 2K6
## 5572 Pinball Hall of Fame: The Gottlieb Collection
## 5573 God of War Collection
## 5574 Dead Space 2
## 5575 Def Jam Rapstar
## 5576 Overlord II
## 5577 NBA 2K10
## 5578 J Stars Victory Vs.
## 5579 The Witcher: Enhanced Edition
## 5580 Teenage Mutant Ninja Turtles 2: Battle Nexus
## 5581 Nicktoons: Movin'
## 5582 One Piece: Romance Dawn - Bouken no Yoake
## 5583 Batman: Arkham Origins
## 5584 SWAT: Global Strike Team
## 5585 Championship Bass
## 5586 Resident Evil: Revelations 2
## 5587 Test Drive Unlimited
## 5588 Golden Axe: Beast Rider
## 5589 Madden NFL 13
## 5590 Bratz: Girlz Really Rock
## 5591 NCAA Basketball 10
## 5592 Dead or Alive 5
## 5593 Shin Megami Tensei: Devil Survivor 2
## 5594 NHL Breakaway 98
## 5595 Momotarou Dentetsu 20-Shuunen
## 5596 LEGO Marvel's Avengers
## 5597 Tekken 6
## 5598 Kinetica
## 5599 Beautiful Katamari
## 5600 Bust-A-Move '99
## 5601 NBA Street V3
## 5602 Overlord II
## 5603 Dragon Quest Monsters 1·2
## 5604 Army of Two: The 40th Day
## 5605 Ben 10 Ultimate Alien: Cosmic Destruction
## 5606 Bigfoot: Collision Course
## 5607 Batman: Arkham Asylum
## 5608 Crash of the Titans
## 5609 The Legend of Spyro: Dawn of the Dragon
## 5610 Prey
## 5611 Birthday Party Bash
## 5612 OverBlood
## 5613 ESPN X-Games Pro Boarder
## 5614 Murdered: Soul Suspect
## 5615 Tony Hawk's American Wasteland
## 5616 Harvest Moon: Back to Nature
## 5617 Sniper Elite 3
## 5618 Naruto: Ultimate Ninja (JP sales)
## 5620 The Settlers 7: Paths to a Kingdom
## 5621 Go, Diego, Go!: Great Dinosaur Rescue
## 5622 TrackMania Turbo
## 5623 The Biggest Loser
## 5624 Minute to Win It
## 5625 Darkwatch
## 5627 Dance Dance Revolution Universe
## 5628 SimAnimals
## 5629 Prince of Persia: The Sands of Time
## 5630 Sky Odyssey
## 5631 Nagano Winter Olympics 98
## 5632 Rayman 2: The Great Escape
## 5633 Kirby's Block Ball
## 5634 DiRT Rally
## 5635 Fortress
## 5636 FIFA 2001 Major League Soccer
## 5637 Peppa Pig: Theme Park Fun
## 5638 Rally Cross
## 5639 My Horse & Me
## 5640 Frogger's Adventures: The Rescue
## 5641 Extreme Pinball
## 5642 Shaun White Snowboarding
## 5643 Karaoke Revolution Volume 3
## 5644 Gold's Gym: Cardio Workout (Others sales)
## 5645 Seaman: Kindan no Pet - Gaze Hakushi no Jikken Shima
## 5646 Street Fighter Alpha 2
## 5647 No.1 Muscle Ranking - Kinniku Banzuke Vol. 1: Oregasaikyouno Otokoda!
## 5648 Cartoon Network Collection: Game Boy Advance Video Platinum Edition
## 5649 Ultimate Fighting Championship: Throwdown
## 5650 Marvel Nemesis: Rise of the Imperfects
## 5651 SpongeBob SquarePants: Double Pack
## 5652 Tetris 2 + Bombliss
## 5653 Harry Potter and the Half-Blood Prince
## 5654 Disney's Extreme Skate Adventure
## 5655 Rock Band Country Track Pack
## 5656 7 Wonders II
## 5657 Ed, Edd n Eddy: Jawbreakers!
## 5659 Frankenstein's Monster
## 5660 Riven: The Sequel to Myst
## 5661 Derby Stallion DS
## 5662 Mirror's Edge Catalyst
## 5663 Manhunt 2
## 5664 NBA 2K3
## 5665 Monster Lab
## 5666 Dragon Quest Monsters: Battle Road Victory
## 5667 Shin Momotarou Densetsu
## 5668 From TV Animation One Piece: Grand Battle! 3
## 5669 Sega Smash Pack
## 5671 The Conveni: Ano Machi wo Dokusen Seyo
## 5672 Shin Super Robot Taisen Special Disk
## 5673 Live A Live
## 5674 NFL Fever 2004
## 5675 Madden NFL 2002
## 5676 UEFA Euro 2008 Austria-Switzerland
## 5677 Clive Barker's Jericho
## 5678 Littlest Pet Shop: City Friends
## 5679 Kingdom Under Fire: The Crusaders
## 5680 4x4 Evolution
## 5681 Cabela's Dangerous Hunts 2011
## 5682 Momotarou Dentetsu Happy
## 5683 Power Rangers: Time Force
## 5684 Romance of the Three Kingdoms VII
## 5685 Shrek the Third
## 5686 Catherine
## 5687 BlazBlue: Continuum Shift
## 5688 Monsters, Inc.
## 5689 DJ Hero
## 5690 WipEout Pulse
## 5691 Quiz Magic Academy DS
## 5692 Just Dance 2016
## 5693 Resident Evil Archives: Resident Evil
## 5694 Dynasty Warriors 4 Empires
## 5695 Shenmue II
## 5696 Heart of Darkness
## 5697 LEGO Marvel's Avengers
## 5698 Virtua Striker 2
## 5699 Fable III
## 5700 Dragon Ball: XenoVerse
## 5701 Might & Magic Heroes VI
## 5702 Fuel
## 5703 ExerBeat
## 5704 WarCraft II: The Dark Saga
## 5705 MonHun Nikki: Poka Poka Ailu Mura G
## 5706 Crash Nitro Kart
## 5707 Sesame Street: Cookie's Counting Carnival
## 5708 NBA ShootOut
## 5709 Fishing Master
## 5710 Phineas and Ferb Ride Again
## 5711 Jikkyou Powerful Pro Yakyuu 14
## 5712 Contra 4
## 5713 Madden NFL 2004
## 5714 Sniper Elite 3
## 5715 Ganbare Goemon: KiraKira Douchuu - Boku ga Dancer ni Natta Riyuu
## 5716 Bust-A-Move Universe
## 5717 Mario Golf
## 5718 Jikkyou Powerful Pro Yakyuu Portable 3
## 5719 Sesame Street: Elmo's Letter Adventure
## 5720 The Incredible Hulk
## 5721 Namco Museum: Virtual Arcade
## 5722 NBA Inside Drive 2003
## 5723 FIFA Street
## 5724 Barbie as The Island Princess
## 5725 Star Wars Episode III: Revenge of the Sith
## 5726 Hatsune Miku: Project Mirai DX
## 5727 Dragon Ball Heroes: Ultimate Mission 2
## 5728 Shrek: Forever After
## 5729 MLB 07: The Show
## 5730 Homefront: The Revolution
## 5731 Jampack: Summer 2003 (RP-M)
## 5732 Alone in the Dark: One-Eyed Jack's Revenge
## 5733 Yu-Gi-Oh! The Dawn of Destiny
## 5734 The Matrix: Path of Neo
## 5735 Mortal Kombat: Shaolin Monks
## 5736 Happy Feet
## 5737 Einhänder
## 5738 Tiny Toon Adventures: The Great Beanstalk
## 5739 Foto Frenzy: Spot The Diffrence
## 5740 Metro: Last Light
## 5741 Dark Void
## 5742 Pro Evolution Soccer 2013
## 5743 Armored Core: Silent Line
## 5744 SD Gundam G Generation Wars
## 5745 Dr. Seuss: How the Grinch Stole Christmas
## 5746 Panzer Dragoon II Zwei
## 5747 KISS Pinball
## 5748 Brothers In Arms: Earned in Blood
## 5749 2 Games in 1: Disney's Brother Bear / The Lion King 1 1/2
## 5750 Super Robot Taisen Complete Box
## 5751 Mega Man Maverick Hunter X
## 5752 Cabela's Outdoor Adventures (2009)
## 5753 Lord of Arcana
## 5754 Jikkyou Powerful Pro Yakyuu 4
## 5755 Goemon's Great Adventure
## 5756 Hot Wheels Turbo Racing
## 5757 Vigilante 8
## 5758 Bass Hunter 64
## 5759 Doubutsu no Mori
## 5760 Football Manager 2016
## 5761 Naruto: Ninja Destiny (US sales)
## 5762 TRON: Evolution
## 5763 Disney Infinity 3.0
## 5764 Taiko Drum Master: Don and Katsu's Space-Time Great Adventure
## 5765 Calvin Tucker's Redneck Jamboree
## 5766 MySims SkyHeroes
## 5767 J-League Winning Eleven 2007: Club Championship
## 5768 Shrek's Carnival Craze Party Games
## 5769 Harvest Moon: Magical Melody
## 5771 Yu-Gi-Oh! 5D's World Championship 2010 Reverse of Arcadia
## 5772 Mega Man Battle Network 2
## 5773 Little King's Story
## 5774 Mountain King
## 5775 Jampack Volume 12
## 5776 Madagascar
## 5777 Tiger Woods PGA Tour 06
## 5778 Shaun White Snowboarding
## 5779 Shin Megami Tensei: Devil Summoner - Soul Hackers
## 5780 Major League Baseball 2K8
## 5781 Rapala Pro Bass Fishing 2010
## 5782 Lord of the Rings: Battle for Middle-Earth
## 5783 Demolition Racer
## 5784 Midway Arcade Treasures 2
## 5785 Final Fantasy IV
## 5786 Math Play
## 5787 Kingdoms of Amalur: Reckoning
## 5788 NASCAR Thunder 2003
## 5789 SD Gundam G Generation: Overworld
## 5790 Sorcery
## 5791 TouchMaster: Connect
## 5792 NHL FaceOff 2000
## 5793 Star Wars Racer Revenge
## 5794 NBA Live 08
## 5795 The King of Fighters XIII
## 5796 NCAA Final Four 2002
## 5797 South Park: Chef's Luv Shack
## 5798 Music Maker
## 5800 Ganbare Goemon 2: Kiteretsu Shougun Magginesu
## 5801 Astroblast
## 5802 Blade II
## 5803 40 Winks
## 5804 The Legend of Heroes: Trails of Cold Steel
## 5805 Fate/Extra
## 5806 Shaun White Snowboarding: World Stage
## 5807 My Virtual Tutor: Reading Adventure Pre-K to Kindergarten
## 5808 Skylanders SWAP Force
## 5809 A Collection of Classic Games from the Intellivision
## 5810 Monsters vs. Aliens
## 5811 Silent Hill: Shattered Memories
## 5812 Bruce Lee: Quest of the Dragon
## 5813 Spin Jam
## 5814 KuruKuru Kururin
## 5815 Disney's The Emperor's New Groove
## 5816 Disney's Stitch: Experiment 626
## 5817 RPG Tsukuru 2
## 5818 Yuu Yuu Hakusho 2: Kakutou no Sho
## 5819 Orphen: Scion of Sorcery
## 5820 LEGO Legends of Chima: Laval's Journey
## 5821 Imagine: Family Doctor
## 5822 Magna Carta 2
## 5823 Ultimate Spider-Man
## 5824 Nicktoons: Battle for Volcano Island
## 5825 Midtown Madness 3
## 5826 Shrek Swamp Kart Speedway
## 5827 One Piece: Unlimited World Red
## 5828 Alien: Isolation
## 5829 Gameboy Gallery
## 5830 Virtua Cop 2
## 5831 Ehrgeiz
## 5832 Touhoku Daigaku Mirai Kagaku Gijutsu Kyoudou Kenkyuu Center Kawashima Ryuuta Kyouju Kanshu: Nou Ryoku Trainer Portable
## 5833 Karaoke Revolution Glee: Volume 3
## 5834 Spyro: Attack of the Rhynocs
## 5835 Army Men World War: Land, Sea, Air
## 5836 Dai-2-Ji Super Robot Taisen OG
## 5837 Stranglehold
## 5838 Trauma Center: New Blood
## 5840 Lumines ll
## 5841 NES Remix
## 5842 1701 A.D.
## 5843 Jumping Flash!
## 5844 Karaoke Revolution Party
## 5845 Batman: The Brave and the Bold the Videogame
## 5846 Burnout
## 5847 Lizzie McGuire 3: Homecoming Havoc
## 5848 Chaos Legion
## 5849 PowerUp Heroes
## 5850 NASCAR 2011: The Game
## 5851 Puyo Puyo 7
## 5852 Shrek: Forever After
## 5853 Charlie and the Chocolate Factory
## 5854 Neopets: The Darkest Faerie
## 5855 Blazing Heroes
## 5856 Rhythm Tengoku
## 5857 Super Robot Taisen W
## 5858 Cart World Series
## 5859 Invizimals: Shadow Zone
## 5860 24: The Game
## 5861 Spider-Man 3
## 5863 Famista '91
## 5864 Squinkies
## 5865 Zoo Tycoon 2 DS
## 5866 Looney Tunes: Duck Amuck
## 5867 Super Robot Taisen OG: Original Generations Gaiden
## 5868 Drakengard 3
## 5869 Decathlete
## 5870 The Sims 2
## 5872 Tom Clancy's Splinter Cell 3D
## 5873 DmC: Devil May Cry
## 5874 Jonas
## 5875 Dynasty Warriors 6
## 5876 Wacky Races: Crash & Dash
## 5877 Dynasty Warriors 8: Xtreme Legends
## 5878 Toukiden Kiwami
## 5879 Sengoku Basara: Samurai Heroes
## 5880 Romance of the Three Kingdoms VIII
## 5881 Fossil Fighters (JP sales)
## 5882 Daikaijyuu Monogatari
## 5883 Tropico 5
## 5884 Hard Hitter Tennis
## 5885 Glory of Heracles
## 5886 Monster Truck Madness 64
## 5887 Quake II
## 5888 Nounai Aeshe: IQ Suppli DS
## 5889 Crazy Taxi: Catch a Ride
## 5890 MySims Party
## 5891 Harry Potter and the Order of the Phoenix
## 5892 Skylanders: SuperChargers
## 5893 Macross Digital Mission VF-X
## 5894 One Piece Unlimited Cruise SP
## 5895 Rayman 2: Revolution
## 5896 Yu Yu Hakusho Ghost Files: Spirit Detective
## 5897 Super Bomberman 5
## 5898 N3: Ninety-Nine Nights
## 5899 Shin Megami Tensei: Persona 2: Innocent Sin
## 5900 Army Men: Air Attack 2
## 5901 Need for Speed: Most Wanted
## 5903 Pride FC: Fighting Championships
## 5904 Eternal Ring
## 5905 Dragon Force
## 5906 John Deere: Harvest in the Heartland
## 5907 Rabbids: Alive & Kicking
## 5908 Shin Megami Tensei: Devil Summoner - Soul Hackers
## 5909 Winning Post 2
## 5910 Star Gladiator Episode: I Final Crusade
## 5911 Spider-Man: Friend or Foe
## 5912 FIFA 15
## 5913 Dance Dance Revolution Universe 3
## 5915 We Sing Pop!
## 5916 Showdown: Legends of Wrestling
## 5917 Capcom Classics Collection Remixed
## 5918 Reel Fishing: Angler's Dream
## 5919 Call of Duty: Modern Warfare 3: Defiance
## 5920 SimCity 4
## 5921 Far East of Eden Zero
## 5922 Sword Art Online: Hollow Fragment
## 5923 Star Ocean 5: Integrity and Faithlessness
## 5924 Call of Juarez: The Cartel
## 5925 Full Spectrum Warrior
## 5926 Alvin and the Chipmunks: The Squeakquel
## 5927 Taiko no Tatsujin Wii: Minna de Party * 3-Yome!
## 5928 James Bond 007: Legends
## 5929 The Sims 2: Pets
## 5930 Dragon Quest Builders: Revive Alefgard
## 5931 The Suite Life of Zack & Cody: Circle of Spies
## 5932 Power Pro Kun Pocket 6
## 5933 Mega Man ZX
## 5934 Harvest Moon DS Cute (US sales)
## 5935 Power Pro Kun Pocket 10
## 5936 Wanted: Weapons of Fate
## 5937 Finding Nemo: The Continuing Adventures
## 5938 Spirit: Stallion of the Cimarron
## 5939 Dreamworks Madagascar Kartz
## 5940 Future Cop L.A.P.D.
## 5941 Guitar Hero: Van Halen
## 5942 Final Fantasy XI: Wings of the Goddess
## 5943 Hamster Tarou
## 5944 Shark Tale
## 5945 Fist of the North Star: Ken's Rage 2
## 5946 MLB SlugFest Loaded
## 5947 Teenage Mutant Ninja Turtles
## 5948 Trace Memory
## 5949 FIFA Street 3
## 5950 Mah Jong Quest: Expeditions
## 5951 Batman: The Brave and the Bold the Videogame
## 5952 Dragon Ball Z: Budokai Tenkaichi 2
## 5953 AMF Bowling 2004
## 5954 Thief (2014)
## 5955 Scooby-Doo! Night of 100 Frights
## 5956 Just Dance Kids 2
## 5957 RealSports Boxing
## 5958 Imagine: Makeup Artist
## 5959 Grandia II
## 5960 Syphon Filter: Dark Mirror
## 5961 Front Mission Evolved
## 5962 Tom and Jerry Tales
## 5963 Mini Ninjas
## 5964 NieR
## 5965 The BIGS 2
## 5966 X-Men Legends II: Rise of Apocalypse
## 5967 Junior Brain Trainer 2
## 5968 The Chronicles of Riddick: Assault on Dark Athena
## 5969 Need for Speed Underground
## 5970 Power Pro Kun Pocket 4
## 5971 The Godfather: Dons Edition
## 5972 Soul Sacrifice Delta
## 5973 Guardian Heroes
## 5974 Assassin's Creed IV: Black Flag
## 5975 MLB Power Pros
## 5976 Outlaw Golf
## 5977 The Amazing Spider-Man 2 (2014)
## 5978 Dynasty Warriors: Strikeforce
## 5979 Fisherman's Bait 2: Big Ol' Bass
## 5980 Lupin the 3rd: Treasure of the Sorcerer King
## 5981 Up
## 5982 Kurohyou: Ryu ga Gotoku Shinshou
## 5983 Prince of Persia: Rival Swords
## 5984 One Piece Unlimited Cruise 2: Awakening of a Hero
## 5985 Ben 10 Alien Force: Vilgax Attacks
## 5986 Majin and the Forsaken Kingdom
## 5987 NBA Street V3
## 5988 WinBack: Covert Operations
## 5989 Punch-Out!!
## 5990 FlatOut: Head On
## 5991 Kagero: Deception II
## 5992 Jikkyou Powerful Pro Yakyuu 2000 Kaimakuban
## 5993 The Bureau: XCOM Declassified
## 5994 NBA Live 06
## 5995 Guitar Hero: Van Halen
## 5996 J-League Victory Goal '96
## 5997 Shin Megami Tensei: Strange Journey
## 5998 Jeopardy! 2nd Edition
## 5999 SD Gundam G Century
## 6000 Ratchet & Clank: Size Matters
## 6001 Ben 10 Ultimate Alien: Cosmic Destruction
## 6002 Atelier Iris 3: Grand Phantasm (US Sales)
## 6003 Itadaki Street 2: Neon Sign wa Bara Iro ni
## 6004 Def Jam Rapstar
## 6005 Need for Speed: The Run
## 6006 From TV Animation One Piece: Treasure Battle!
## 6007 Starhawk
## 6008 Dolphin
## 6009 Imagine: Fashion Designer World Tour
## 6010 Area 51
## 6011 The Smurfs: Dance Party
## 6012 Disney Channel: All Star Party
## 6013 Ace Combat: Joint Assault
## 6014 Hamster Club 4: Shigessa Daidassou
## 6015 Medieval Moves: Deadmund's Quest
## 6016 Angry Birds Star Wars
## 6017 Mega Man X8
## 6018 CSI: Deadly Intent
## 6019 Ford Mustang: The Legend Lives
## 6020 Ys: Memories of Celceta
## 6021 FIFA Soccer 13
## 6022 Fast Food
## 6023 Jikkyou Powerful Pro Yakyuu 8
## 6024 Viz
## 6025 Top Gear Overdrive
## 6026 Xena: Warrior Princess - The Talisman of Fate
## 6027 Jeremy McGrath Supercross 2000
## 6028 The New Tetris
## 6029 Ken Griffey Jr.'s Slugfest
## 6030 Supercross 2000
## 6031 War Gods
## 6032 Bladestorm: The Hundred Years' War
## 6033 World of Tanks
## 6034 Jewel Quest Mysteries: Curse of the Emerald Tear
## 6035 Duel Masters: Sempai Legends
## 6036 Marvel Super Hero Squad
## 6037 Turning Point: Fall of Liberty
## 6038 Heroes of the Pacific
## 6039 Dead Rising: Chop Till You Drop
## 6040 The Lord of the Rings: The Third Age
## 6041 Disney Infinity
## 6042 Fable: The Journey
## 6044 Sonic Boom: Shattered Crystal
## 6045 Just Dance Wii 2
## 6046 Madden NFL 08
## 6047 DX Game of Life
## 6048 Pirates of the Caribbean
## 6049 Operation Flashpoint: Red River
## 6050 One Piece: Pirate Warriors 3
## 6051 The Punisher
## 6052 MLB Pennant Race
## 6053 Transformers: Dark of the Moon
## 6054 SD Gundam Gaiden: Knight Gundam Monogatari: Ooinaru Isan
## 6055 GRID 2
## 6056 WWII Aces
## 6057 Puzzle Quest: Challenge of the Warlords
## 6058 Shrek Super Party
## 6059 Sakura Wars 4: Koi Seyo,Otome
## 6060 Sakura Wars: So Long, My Love
## 6061 Dynasty Tactics
## 6062 The Urbz: Sims In the City (US weekly sales)
## 6063 Lightning Returns: Final Fantasy XIII
## 6064 Feel the Magic XY/XX
## 6065 Trivial Pursuit
## 6066 Neopets Puzzle Adventure
## 6067 Sonic & All-Stars Racing Transformed
## 6068 Shrek the Third
## 6069 Snowboarding
## 6070 Purr Pals
## 6071 Dragon Ball Heroes: Ultimate Mission
## 6072 Borderlands: The Pre-Sequel
## 6073 Surf's Up
## 6074 BlazBlue: Chrono Phantasma
## 6075 Looney Tunes Racing
## 6076 Final Fantasy X-2: International + Last Mission
## 6077 Namco Museum Vol.2
## 6078 Rayman 3: Hoodlum Havoc
## 6079 Penguin no Mondai: Saikyou Penguin Densetsu! A Penguin's Troubles
## 6080 Psi-Ops: The Mindgate Conspiracy
## 6081 I Spy: Spooky Mansion
## 6082 Tomba! 2: The Evil Swine Return
## 6083 SAW
## 6084 Wappy Dog
## 6085 Dragon Quest: Shounen Yangus to Fushigi no Dungeon
## 6086 BeatMania Append 4thMix: The beat goes on
## 6087 NASCAR 08
## 6088 World of Warcraft: Legion
## 6089 Romance of the Three Kingdoms III: Dragon of Destiny
## 6090 Power Pro Kun Pocket 11
## 6091 El Shaddai: Ascension of the Metatron
## 6092 Family Guy: Back to the Multiverse
## 6093 Spyro: A Hero's Tail
## 6094 Warriors Orochi 2
## 6095 Ratatouille: Food Frenzy
## 6096 Links 2004
## 6097 PGA Tour 97
## 6098 Bratz: Super Babyz
## 6099 Battle & Get! Pokemon Typing DS
## 6100 Kung Zhu
## 6101 Earthworm Jim
## 6102 Tales of Phantasia
## 6103 The Golden Compass
## 6104 F1 Race Stars
## 6105 All Star Cheer Squad
## 6106 Rugby World Cup 2011
## 6107 Ice Age: Dawn of the Dinosaurs
## 6108 Monster 4x4: Masters of Metal
## 6109 SingStar Country
## 6110 DeathSmiles
## 6111 VMX Racing
## 6112 Hot Shots Golf: World Invitational
## 6113 Disney's Extreme Skate Adventure
## 6114 Dragon Ball GT: Transformation
## 6115 Bratz Ponyz
## 6116 Super Fire ProWrestling X
## 6117 Baby Pals
## 6118 International Superstar Soccer
## 6119 Metal Gear Solid V: Ground Zeroes
## 6120 Tigger's Honey Hunt
## 6121 The Warriors
## 6122 Monopoly Streets
## 6123 Shadow Hearts
## 6124 NHL 2K11
## 6125 One Piece: Burning Blood
## 6127 Street Hoops
## 6128 Yu-Gi-Oh! Double Pack
## 6129 X-Men: Reign of Apocalypse
## 6130 R: Racing Evolution
## 6131 Tony Hawk: Shred
## 6132 Netsu Chu! Pro Yakyuu 2003
## 6133 ATV Quad Power Racing 2
## 6134 Digimon Adventure: Anode Tamer
## 6135 Fantastic 4: Flame On
## 6136 Siren: Blood Curse
## 6137 Pro Evolution Soccer 2017
## 6138 Chromehounds
## 6139 Marvel Nemesis: Rise of the Imperfects
## 6140 The King of Fighters '95
## 6141 Pirates of the Caribbean: Dead Man's Chest
## 6142 Assassin's Creed II: Discovery
## 6143 F/A-18F Super Hornet
## 6144 Avatar: The Last Airbender
## 6145 Final Fantasy VI Advance
## 6146 Polaris
## 6147 Viewtiful Joe
## 6148 Triple Play 2000
## 6149 Beyblade: Metal Masters
## 6150 Need for Speed: Most Wanted
## 6151 Arcade Hits: Frisky Tom
## 6152 Dead to Rights: Retribution
## 6153 Harry Potter and the Sorcerer's Stone
## 6155 Kung Fu Chaos
## 6156 Mega Man: Dr. Wily's Revenge
## 6157 Yu-Gi-Oh! World Championship 2008
## 6158 Naruto Shippuden: Ultimate Ninja Storm 4
## 6159 Godzilla: Domination!
## 6160 Sly Cooper: Thieves in Time
## 6161 Tales of the World: Radiant Mythology 3
## 6162 Famista '92
## 6163 Jissen Pachi-Slot Hisshouhou! Moujuu-Oh S
## 6164 Jackass the Game
## 6165 Mega Man II
## 6166 Lord of Darkness
## 6167 Hannah Montana: Spotlight World Tour
## 6168 Rocket Power: Beach Bandits
## 6169 Surf's Up
## 6170 Carol Vorderman's Sudoku
## 6171 MX SuperFly featuring Ricky Carmichael
## 6172 Remington Super Slam Hunting: Africa
## 6173 Army of Two: The Devil's Cartel
## 6174 Syphon Filter: Dark Mirror
## 6175 Conflict: Desert Storm II - Back to Bagdhad
## 6176 Guitar Hero Live
## 6177 Mission: Impossible - Operation Surma
## 6178 Sesame Street: Elmo's A-to-Zoo Adventure
## 6179 MLB 07: The Show
## 6180 Pitfall: The Mayan Adventure
## 6181 Driver: Parallel Lines
## 6182 Sing Party
## 6183 Shrek: Ogres & Dronkeys
## 6184 Monopoly
## 6185 Hot Wheels: Track Attack
## 6186 Backyard Wrestling 2: There Goes the Neighborhood
## 6187 Virtua Fighter 5 Online
## 6188 Disney's Treasure Planet
## 6189 Dead or Alive
## 6190 Wild ARMs 5
## 6191 Bionic Commando
## 6192 NFL Blitz 20-02
## 6193 Mega Man 7
## 6194 NCAA March Madness 2005
## 6195 Shadows of the Damned
## 6197 NBA In The Zone
## 6198 Corvette
## 6199 F1 ROC: Race of Champions
## 6200 Just Dance 2015
## 6201 The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 6202 Silent Hill 2: Restless Dreams
## 6203 Cabela's Big Game Hunter 2012
## 6204 Dragon Quest Heroes II: Twin Kings and the Prophecy's End
## 6205 Moshi Monsters: Moshlings Theme Park
## 6206 UEFA Euro 2016
## 6207 Soul Nomad & the World Eaters
## 6208 RollerCoaster Tycoon 3
## 6209 Bass Strike
## 6210 NHL Hitz 20-03
## 6211 Danganronpa Another Episode: Ultra Despair Girls
## 6213 Over the Hedge
## 6214 Real Pool
## 6215 iCarly 2: iJoin The Click!
## 6216 The Warriors
## 6217 Mister Mosquito
## 6218 Kakyuusei
## 6219 Patapon 3
## 6220 Sesame Street: Cookie's Counting Carnival
## 6221 Civilization II
## 6222 Guitar Hero: Van Halen
## 6223 Dynasty Warriors: Gundam
## 6224 Madagascar
## 6225 Transformers: Cybertron Adventures
## 6226 Indiana Jones and the Staff of Kings
## 6227 F-1 Grand Prix
## 6228 Mass Effect 3
## 6229 Pinkalicious
## 6230 SimCity 2000
## 6231 Deer Hunter
## 6232 Pokemon Box: Ruby & Sapphire
## 6233 Puyo Puyo! 15th Anniversary
## 6234 Yu-Gi-Oh! Monster Capsule Breed & Battle
## 6235 FIFA Soccer 07
## 6236 Mass Effect Trilogy
## 6237 Dave Mirra Freestyle BMX 2
## 6238 AC/DC LIVE: Rock Band Track Pack
## 6239 My Japanese Coach
## 6240 Puppeteer
## 6241 Warpath: Jurassic Park
## 6242 Tak and the Guardians of Gross
## 6243 True Crime: New York City
## 6244 Summer Heat Beach Volleyball
## 6245 NCAA Basketball 09
## 6246 One Piece Unlimited Cruise 1: The Treasure Beneath the Waves
## 6247 Marvel Super Hero Squad: The Infinity Gauntlet
## 6248 Dead Rising 2: Off the Record
## 6249 Power Pro Kun Pocket 3
## 6250 Myst III: Exile
## 6251 Castlevania: Aria of Sorrow
## 6252 NBA 2K12
## 6253 R.U.S.E.
## 6254 Mobile Suit Gundam Side Story I: Senritsu no Blue
## 6255 Armored Core: Project Phantasma
## 6256 Donkey Kong GB: Dinky Kong & Dixie Kong
## 6257 Kobitodzukan: Kobito Kansatsu Set
## 6258 ExciteBots: Trick Racing
## 6259 Pro Evolution Soccer 2013
## 6260 Deadpool
## 6261 Nichibutsu Arcade Classics
## 6262 Kenka Bancho: Badass Rumble
## 6263 Cabela's Trophy Bucks
## 6264 Moero! Nekketsu Rhythm Damashii: Osu! Tatakae! Ouendan! 2
## 6265 Q-Ball: Billiards Master
## 6266 Mr. Do!
## 6267 How to Train Your Dragon 2
## 6268 Boogie
## 6269 Tao Feng: Fist of the Lotus
## 6270 Rapala Pro Bass Fishing 2010
## 6271 Shin Nippon Pro Wrestling: Toukon Retsuden 2
## 6272 Dragon Ball Z: Budokai 2
## 6274 Motocross Maniacs Advance
## 6275 Resident Evil 2: Dual Shock Edition
## 6276 Dynasty Warriors
## 6277 M&M's Blast!
## 6278 Zumba Fitness: World Party
## 6279 Need for Speed: Most Wanted
## 6280 Final Fantasy X International
## 6281 Tiny Toon Adventures: Plucky's Big Adventure
## 6282 NHL Hitz 20-02
## 6283 Iron Man 2
## 6285 Littlest Pet Shop: Beach Friends
## 6286 Trivial Pursuit
## 6287 Suikoden Tierkreis
## 6288 Evil Dead: Hail to the King
## 6289 Dragon Ball GT: Final Bout
## 6290 Burstrick: Wake Boarding!!
## 6291 Dave Mirra Freestyle BMX: Maximum Remix
## 6292 Divinity: Original Sin
## 6293 R.U.S.E.
## 6294 Hatsune Miku: Project Diva f
## 6295 Resident Evil: Deadly Silence
## 6296 Pac-Pix
## 6297 Beamrider
## 6298 EyePet
## 6299 The Evil Within
## 6300 Athens 2004
## 6301 Gunship
## 6302 Jikkyou Powerful Pro Yakyuu Portable 4
## 6303 SD Gundam G Generation Portable
## 6304 Sydney 2000
## 6305 Pro Race Driver
## 6306 Baten Kaitos: Eternal Wings and the Lost Ocean
## 6307 Bishoujo Senshi Sailormoon R
## 6308 The Club
## 6309 Slam Dunk: Yonkyo Taiketsu!!
## 6310 Rhythm Thief & the Emperor's Treasure
## 6311 Rocky: Legends
## 6312 NickToons: Racing
## 6313 MotionSports: Adrenaline
## 6314 Tiger Woods PGA Tour 07
## 6316 NHL 07
## 6318 Bridge
## 6319 G-Force
## 6321 The Adventures of Tintin: The Game
## 6322 RalliSport Challenge 2
## 6323 Fushigi no Dungeon: Fuurai no Shiren GB: Tsukikagemura no Kaibutsu
## 6324 Wave Rally
## 6325 Over the Hedge
## 6326 Disgaea 5: Alliance of Vengeance
## 6327 Disney's Chicken Little
## 6328 Battle of Giants: Mutant Insects
## 6329 Ty the Tasmanian Tiger
## 6330 Sengoku Basara 4
## 6331 Yu-Gi-Oh! The Sacred Cards (JP weekly sales)
## 6332 WWE Road to WrestleMania X8
## 6333 Medarot 3: Kabuto / Kuwagata Version
## 6334 Fullmetal Alchemist 2: Curse of the Crimson Elixir
## 6335 Sherlock Holmes: Crimes & Punishments
## 6336 NASCAR 06: Total Team Control
## 6337 Bratz: The Movie
## 6338 BloodRayne 2
## 6339 Spider-Man: Web of Shadows
## 6340 NHL 2002
## 6341 Reader Rabbit Kindergarten
## 6342 Tropico 4
## 6343 NBA In The Zone '98
## 6344 Jikkyou Powerful Pro Yakyuu 5
## 6345 NBA Jam 99
## 6346 Shadow Man
## 6347 Command & Conquer
## 6348 Call of Juarez: The Cartel
## 6349 Shadow of Rome
## 6350 Tohoku Daigaku Karei Igaku Kenkyuusho - Kawashima Ryuuta Kyouju Kanshuu - Mono Sugoku Nou o Kitaeru 5-Funkan no Oni Training
## 6351 Tales of Eternia
## 6352 Harry Potter and the Order of the Phoenix
## 6353 Ben 10 Triple Pack
## 6354 Need for Speed Rivals
## 6355 Stuntman: Ignition
## 6356 Fantastic 4
## 6357 Mat Hoffman's Pro BMX
## 6358 MotoGP
## 6359 The Penguins of Madagascar
## 6360 Summer Athletics: The Ultimate Challenge (US sales)
## 6361 Rock Revolution
## 6362 Etrian Odyssey II: Heroes of Lagaard
## 6363 LEGO The Hobbit
## 6364 Jikkyou Powerful Pro Yakyuu 2
## 6365 The Incredible Hulk
## 6366 Resident Evil: Revelations
## 6367 Major League Baseball 2K10
## 6368 NASCAR 2011: The Game
## 6369 Thoroughbred Breeder II
## 6370 Shin Megami Tensei: Devil Survivor
## 6371 Magical Vacation
## 6372 XGIII: Extreme G Racing
## 6373 NBA Live 2004
## 6374 Dragon Ball: XenoVerse
## 6375 NASCAR Thunder 2003
## 6376 Section 8
## 6377 Superbike 2000
## 6378 America's Test Kitchen: Let's Get Cooking
## 6379 Final Fantasy XI: Ultimate Collection
## 6380 Fire Emblem: Shin Monshou no Nazo Hikari to Kage no Eiyuu
## 6381 F1 2016 (Codemasters)
## 6382 Connect Four / Perfection / Trouble
## 6383 Wipeout 2
## 6384 Ratatouille
## 6385 The Incredible Hulk
## 6386 Dora the Explorer: Dora Saves the Crystal Kingdom
## 6387 Alundra 2: A New Legend Begins
## 6388 Reign of Fire
## 6389 Scooby-Doo! and the Spooky Swamp
## 6390 Jikkyou Powerful Pro Yakyuu '98 Ketteiban
## 6391 Ace Attorney 6
## 6392 The Sims 2: Pets
## 6393 Cake Mania 2: Jill's Next Adventure!
## 6394 Batman: Arkham Origins Blackgate
## 6395 The BIGS
## 6396 Initial D: Special Stage
## 6397 Madden NFL 08
## 6398 Jurassic Park: Operation Genesis
## 6399 Family Feud: 2010 Edition
## 6400 Final Doom
## 6401 Deadly Premonition
## 6403 Are You Smarter than a 5th Grader? Game Time
## 6404 NBA ShootOut 2001
## 6405 Knockout Kings 2002
## 6406 Wipeout 2
## 6407 Payday 2
## 6408 Ultimate NES Remix
## 6409 Megamind: The Blue Defender
## 6410 NFL Street 3
## 6411 Battle Arena Toshinden 3
## 6412 Teenage Mutant Ninja Turtles: Danger of the Ooze
## 6413 Jade Cocoon: Story of the Tamamayu
## 6414 Super Nazo Puyo: Ruruu no Ruu
## 6415 Cabela's Big Game Hunter 2010
## 6416 InuYasha: Feudal Combat
## 6417 Duel Masters
## 6418 Ninja Gaiden Sigma
## 6419 Super Collapse! 3
## 6420 Superman Returns
## 6421 The Dog Island
## 6422 My Virtual Tutor: Reading Adventure Kindergarten to First
## 6423 Dynasty Warriors Next
## 6424 Major League Baseball 2K9
## 6425 Jikkyou Powerful Pro Yakyuu 2010
## 6426 Operation Armored Liberty
## 6427 Rory McIlroy PGA Tour
## 6428 Dynasty Warriors 7: Xtreme Legends
## 6429 Summer Sports 2: Island Sports Party
## 6430 Imagine: Fashion Party
## 6431 Fish Tycoon
## 6432 Scene It? Twilight
## 6433 And1 Streetball
## 6434 Don King Boxing
## 6435 Atelier Ayesha: The Alchemist of Dusk
## 6436 Angry Birds Trilogy
## 6437 Dragon Ball Z: Tenkaichi Tag Team
## 6438 Sonic X: Game Boy Advance Video Volume 1
## 6439 ESPN NBA Basketball
## 6440 Gallop Racer 2: One and Only Road to Victory
## 6441 NBA 07
## 6442 Lowrider
## 6443 Reload: Target Down
## 6444 All-Pro Football 2K8
## 6445 Dungeons & Dragons: Eye of the Beholder
## 6446 The Crew
## 6447 Barbie: Jet, Set & Style!
## 6448 Battlestations: Midway
## 6449 Rayman DS
## 6450 Gundam Breaker
## 6451 The House of the Dead 2
## 6452 Create
## 6453 A.C.E.: Another Century's Episode R
## 6454 Littlest Pet Shop: Friends
## 6455 Rune: Viking Warlord
## 6456 Panzer Dragoon Orta
## 6457 Jikkyou Powerful Pro Yakyuu '99 Ketteiban
## 6458 Dragon Age Origins: Awakening
## 6459 King's Field II
## 6460 Danganronpa 2: Goodbye Despair
## 6461 Aikatsu! 2-nin no My Princess
## 6462 Beyblade: Metal Fusion
## 6463 NCAA Gamebreaker
## 6464 Petz: Horsez 2
## 6465 NPPL: Championship Paintball 2009
## 6466 Skylanders: SuperChargers
## 6467 Zoo Tycoon 2: Ultimate Collection
## 6468 Tomba!
## 6469 Love Plus
## 6470 Tales of Innocence
## 6471 MLB SlugFest 2006
## 6472 J Stars Victory Vs.
## 6473 Rugrats: I Gotta Go Party
## 6474 Virtua Racing
## 6475 Crash Tag Team Racing
## 6476 Prison Break: The Conspiracy
## 6477 Bolt
## 6478 DS Bungaku Zenshuu
## 6479 We Cheer 2
## 6480 Nancy Drew: The Mystery of the Clue Bender Society
## 6481 Inazuma Eleven GO 3: Galaxy
## 6482 Ford Racing 3
## 6483 Michael Jackson: The Experience
## 6484 Phantasy Star Universe: Ambition of the Illuminus
## 6485 Project Runway
## 6486 Jikkyou Powerful Pro Yakyuu 2013
## 6487 The Adventures of Jimmy Neutron Boy Genius vs. Jimmy Negatron
## 6488 Sengoku Basara 2
## 6489 Naruto: Ultimate Ninja Heroes
## 6490 Inazuma Eleven Strikers
## 6491 Hey Arnold! The Movie
## 6492 Final Fantasy V Advance
## 6493 Need for Speed: Most Wanted
## 6494 Lumines: Electronic Symphony
## 6495 Star Trek: Invasion
## 6496 Final Fantasy Crystal Chronicles: Echoes of Time
## 6498 Babysitting Mania
## 6499 Star Wars: Bounty Hunter
## 6500 Tom and Jerry in War of the Whiskers
## 6501 Ace Attorney Investigations 2
## 6502 Minute to Win It
## 6503 Smart Girl's Playhouse
## 6504 Racquet Sports
## 6505 TouchMaster 3(Others sales)
## 6506 The Elder Scrolls IV: Oblivion
## 6507 Jikkyou Powerful Pro Yakyuu 2011
## 6508 Madden NFL 2005
## 6509 Skylanders: Trap Team
## 6510 Yu-Gi-Oh! Ultimate Masters: World Championship Tournament 2006
## 6511 Power Pro Kun Pocket 5
## 6512 Konjiki no Gashbell!! Makai no Bookmark
## 6513 Plants vs. Zombies
## 6514 Riding Spirits
## 6515 Disney Sing It: Pop Hits
## 6516 Indiana Jones and the Staff of Kings
## 6517 Etrian Odyssey Untold: The Millennium Girl
## 6518 Bust A Groove 2
## 6519 Hatsune Miku: Project Diva
## 6520 Juiced 2: Hot Import Nights
## 6521 Gundam Battle Universe
## 6522 Sengoku Basara: Battle Heroes
## 6523 Nightmare Creatures
## 6524 Star Wars Episode I: Battle for Naboo
## 6525 Duke Nukem: Zero Hour
## 6526 Armorines: Project S.W.A.R.M.
## 6527 NCAA March Madness 08
## 6528 Armored Core: Nexus
## 6529 Evolution Skateboarding
## 6530 Dora the Explorer: The Search for Pirate Pig's Treasure
## 6531 Muramasa: The Demon Blade
## 6532 Yakuza: Ishin
## 6533 Indiana Jones and the Staff of Kings
## 6534 Tony Hawk: Shred
## 6535 Outlaw Volleyball
## 6536 Batman: Vengeance
## 6537 The Amazing Spider-Man 2 (2014)
## 6538 RealSports Football
## 6539 Tiger Woods PGA Tour 10
## 6540 SD Gundam G Generation: Cross Drive
## 6541 Tom Clancy's Splinter Cell: Double Agent
## 6542 Monsters vs. Aliens
## 6543 Dungeons & Dragons Heroes
## 6544 The Testament of Sherlock Holmes
## 6545 Game of Thrones
## 6546 Loving Life with Hello Kitty & Friends
## 6547 McGrath Vs. Pastrana Freestyle Motocross
## 6548 Legaia 2: Duel Saga
## 6549 Crash Nitro Kart
## 6550 Karaoke Joysound Wii
## 6551 MLB 09: The Show
## 6552 Polarium
## 6553 Samurai Warriors 4
## 6554 F1 2014
## 6555 Classic NES Series: Bomberman
## 6556 Avatar: The Last Airbender - The Burning Earth
## 6557 Peter Jackson's King Kong: The Official Game of the Movie
## 6558 Bratz Ponyz 2
## 6559 A.C.E.: Another Century's Episode
## 6560 Frogger's Journey: The Forgotten Relic
## 6561 X-Men vs. Street Fighter
## 6562 Army of Two: The Devil's Cartel
## 6563 Dora the Explorer: Game Boy Advance Video Volume 1
## 6564 Oddworld: Stranger's Wrath
## 6565 Sega Rally Revo
## 6566 King of Fighters: Maximum Impact
## 6567 Marvel Super Heroes vs. Street Fighter
## 6568 Legendary
## 6569 J-League Pro Soccer Club wo Tsukurou!
## 6570 Daisy Fuentes Pilates
## 6571 Star Trek: The Game
## 6572 Drakan: The Ancients' Gates
## 6573 Dead or Alive Xtreme 2
## 6574 Petz: Crazy Monkeyz
## 6575 SpongeBob SquarePants: Lights, Camera, Pants!
## 6576 Choro Q3
## 6577 Tokyo Jungle
## 6578 Hunted: The Demon's Forge
## 6579 Lemony Snicket's A Series of Unfortunate Events
## 6580 Pirates of the Caribbean: Dead Man's Chest
## 6581 Bionicle: Matoran Adventures
## 6582 Armored Core: Master of Arena
## 6583 Fire Emblem: Thracia 776
## 6584 Desert Falcon
## 6585 NASCAR 09
## 6586 Tengai Makyou: Daishi no Mokushiroku - The Apocalypse IV
## 6587 A.C.E.: Another Century's Episode 3: The Final
## 6588 ATV: Quad Power Racing
## 6589 Mario & Sonic at the Rio 2016 Olympic Games
## 6590 The Backyardigans
## 6591 Backyard NFL Football
## 6592 All-Star Baseball 2003
## 6593 Silent Hunter 5: Battle of the Atlantic
## 6594 MTX Mototrax
## 6595 Tomb Raider: Underworld (Others sales)
## 6596 NHL Rock the Rink
## 6597 LEGO Star Wars III: The Clone Wars
## 6598 NBA ShootOut 2004
## 6599 TOCA Race Driver 2: Ultimate Racing Simulator
## 6600 Super Robot Taisen R
## 6601 Castlevania: Harmony of Dissonance
## 6602 Metroid Prime Pinball
## 6603 Formula One 2001
## 6604 Nickelodeon Dance
## 6605 Doukyuusei if
## 6606 Baldur's Gate: Dark Alliance II
## 6607 MVP Baseball 2004
## 6608 Super Street Fighter II: Turbo Revival
## 6609 Secret Weapons Over Normandy
## 6610 Combination Pro Soccer: J-League no Kantoku ni Natte Sekai wo Mezase!!
## 6611 NHL 08
## 6612 Kidou Senshi Gundam: Giren no Yabou
## 6613 Imagine: Ballet Star
## 6614 Teen Titans
## 6615 Percy Jackson and the Olympians: The Lightning Thief
## 6616 Spelling Challenges and more!
## 6617 Crusaders of Might and Magic
## 6618 Journey
## 6619 Tearaway Unfolded
## 6620 Star Wars The Clone Wars: Republic Heroes
## 6621 Bomberman Generation
## 6622 NASCAR 09
## 6623 Surfing H3O
## 6624 Romance of the Three Kingdoms II
## 6625 The Chronicles of Riddick: Assault on Dark Athena
## 6626 Resident Evil Archives: Resident Evil Zero
## 6627 Zoo Resort 3D
## 6628 Ice Age 2: The Meltdown
## 6629 The Suite Life of Zack & Cody: Tipton Trouble
## 6630 World Series of Poker
## 6631 Hatsune Miku: Project Diva F 2nd
## 6632 Galactic Attack
## 6633 Power Pro Kun Pocket 2
## 6634 Game of Thrones
## 6635 Happy Feet
## 6636 Walt Disney's The Jungle Book: Rhythm N'Groove
## 6637 Triple Play 2002
## 6638 Scrabble
## 6639 Evil Zone
## 6640 Spy Kids Challenger
## 6641 K-ON! Houkago Live!!
## 6642 A. IV Evolution: A Ressha de Ikou 4
## 6643 Exhibition
## 6644 Scrabble
## 6645 Tony Hawk's Proving Ground
## 6646 Amped 2
## 6647 Blaster Master: Blasting Again
## 6649 Cartoon Network Collection: Game Boy Advance Video Volume 1
## 6650 Cars
## 6651 Family Guy: Back to the Multiverse
## 6652 Kung Fu Panda 2
## 6653 Up
## 6654 Birds of Steel
## 6655 Madagascar: Escape 2 Africa
## 6656 WipEout XL
## 6657 Animal Paradise
## 6658 The Powerpuff Girls: Chemical X-Traction
## 6659 NHL 08
## 6660 Dynasty Warriors 6 (JP sales)
## 6661 Just Dance Kids 2
## 6662 FIFA 14
## 6663 Men of Valor
## 6664 Bomberman Tournament
## 6665 Medal of Honor European Assault
## 6666 Spider-Man: Web of Shadows
## 6667 Billy Hatcher and the Giant Egg
## 6668 Midway's Greatest Arcade Hits
## 6669 SpongeBob's Truth or Square (US sales)
## 6670 Final Fantasy II
## 6671 WipEout Fusion
## 6672 Spider-Man: Edge of Time
## 6673 UEFA Euro 2008 Austria-Switzerland
## 6674 Marie no Atelier: Salburg no Renkinjutsushi
## 6675 The Outfit
## 6676 Golden Nugget Casino
## 6677 NHL 06
## 6678 Atari Anthology
## 6679 Ultimate Fighting Championship
## 6680 XIII
## 6681 MotoGP '07
## 6682 Samurai Shodown II
## 6683 Mortal Kombat: Armageddon
## 6684 Don King Presents: Prizefighter
## 6685 Hybrid Heaven
## 6686 NBA Showtime: NBA on NBC
## 6687 Fox Sports College Hoops '99
## 6688 Wheel of Fortune
## 6689 MRC: Multi-Racing Championship
## 6690 F1 Pole Position 64
## 6691 Gex 64: Enter the Gecko
## 6692 Wayne Gretzky's 3D Hockey '98
## 6693 NBA Courtside 2 featuring Kobe Bryant
## 6694 J Stars Victory Vs.
## 6695 U-Sing: Girls Night
## 6696 The Mummy: Tomb of the Dragon Emperor
## 6697 Def Jam Vendetta
## 6698 Scooby-Doo! Unmasked
## 6699 Penny Racers
## 6700 The Sims 2
## 6701 Caesars Palace II
## 6702 Final Fantasy Type-0
## 6703 World Series Baseball 2K3
## 6704 Freshly-Picked: Tingle's Rosy Rupeeland
## 6705 Pro Yakyuu Team o Tsukurou!
## 6706 L.A. Noire: The Complete Edition
## 6707 Sentimental Graffiti
## 6708 Hitman: Absolution
## 6709 Bolt
## 6710 Marvel: Ultimate Alliance 2
## 6711 The Legend of Legacy
## 6712 Disgaea 2: Dark Hero Days
## 6713 Devil Kings
## 6714 Ultimate Band
## 6715 NBA Jam Tournament Edition
## 6716 Far Cry Instincts Predator
## 6717 Medabots AX: Metabee
## 6718 Tennis no Oji-Sama: Genius Boys Academy
## 6719 X-Men: Destiny
## 6720 Shadow Man
## 6721 X-Men Origins: Wolverine
## 6722 Netsu Chu! Pro Yakyuu 2002
## 6723 Ninja Gaiden 3
## 6724 Ben 10 Ultimate Alien: Cosmic Destruction
## 6725 Yakuza Zero: The Place of Oath
## 6726 Prince of Persia: The Forgotten Sands
## 6727 Dynasty Warriors 6
## 6728 Imagine: Zookeeper
## 6729 Porky's
## 6730 America's Army: Rise of a Soldier
## 6731 Grandia
## 6732 TV Superstars
## 6733 Armored Core 4
## 6734 F1 2000
## 6735 Littlest Pet Shop: Country Friends
## 6736 Dood's Big Adventure
## 6737 Pirates of the Caribbean: The Legend of Jack Sparrow
## 6738 We Love Golf!
## 6739 WRC: World Rally Championship
## 6740 Ed, Edd n Eddy: The Mis-Edventures
## 6741 Cars: Mater-National Championship
## 6742 Dreamworks Madagascar Kartz
## 6743 Harry Potter and the Order of the Phoenix
## 6744 Anno 2205
## 6745 Dune 2000
## 6746 Cradle of Rome
## 6747 Monster Hunter G
## 6748 Fuel
## 6749 Hasbro Family Game Night 3
## 6750 Pro Evolution Soccer 2014
## 6751 Project Overkill
## 6752 Jumping Flash! 2
## 6753 Nickelodeon Party Blast
## 6754 SBK Superbike World Championship
## 6755 Final Fantasy XI: Chains of Promathia
## 6756 Choro Q2
## 6757 Disney's A Christmas Carol
## 6758 Butt Ugly Martians: B.K.M. Battles
## 6759 Major League Baseball 2K7
## 6760 X-Men Legends II: Rise of Apocalypse
## 6761 Sorry! / Aggravation / Scrabble Junior
## 6762 Driver '76
## 6763 Turning Point: Fall of Liberty
## 6764 NBA Courtside 2002
## 6765 How to Train Your Dragon 2
## 6766 The Adventures of Tintin: The Game
## 6767 Classic NES Series: Excitebike
## 6768 Classic NES Series: Xevious
## 6769 Avatar: The Last Airbender - Into the Inferno
## 6770 Disney's Planes
## 6771 Dora the Explorer: Journey to the Purple Planet
## 6772 Tales of Hearts
## 6773 Digimon World: Data Squad
## 6774 Dynasty Warriors 7
## 6775 Catz
## 6776 Jikkyou Powerful Pro Yakyuu 2001
## 6777 Transformers: War for Cybertron (DS Version)
## 6779 Trials Fusion
## 6780 LEGO Ninjago: Shadow of Ronin
## 6781 Avalon Code
## 6782 That's So Raven: Psychic on the Scene
## 6783 Monster Jam: Path of Destruction
## 6784 Tongari Boushi to Oshare na Mahou Tsukai
## 6785 Panzer General
## 6786 Broken Sword: Shadow of the Templars - The Director's Cut
## 6787 Gallop Racer (JP)
## 6788 Spawn the Eternal
## 6789 MLB
## 6790 Army Men: Sarge's Heroes 2
## 6791 Command & Conquer 3: Kane's Wrath
## 6792 Dreamcast Collection
## 6793 Madden NFL 13
## 6794 Corpse Party: Blood Drive
## 6795 Homefront
## 6796 Disney Stitch Jam
## 6797 Bakugan: Battle Brawlers
## 6798 Britney's Dance Beat
## 6799 Guitar Freaks
## 6800 World Soccer Winning Eleven 7
## 6801 Ace Combat: Assault Horizon Legacy
## 6802 Cabela's Outdoor Adventures (2009)
## 6803 SRS: Street Racing Syndicate
## 6804 Namco Tennis Smash Court
## 6805 Vexx
## 6806 The Incredible Hulk
## 6808 Marvel vs. Capcom Origins
## 6809 Pro Yaky? Spirits 2011
## 6810 Imagine: Teacher Class Trip
## 6811 TimeSplitters: Future Perfect
## 6812 Final Fantasy Fables: Chocobo Tales
## 6813 Harvest Moon: Magical Melody
## 6814 Genma Onimusha
## 6815 DK: King of Swing
## 6816 K-1 Revenge
## 6817 G-Police
## 6818 Pure Futbol
## 6819 Spider-Man: Shattered Dimensions
## 6820 Corvette
## 6821 Atelier Meruru: Alchemist of Arland 3
## 6822 AC/DC LIVE: Rock Band Track Pack
## 6823 Deca Sports 3
## 6824 Harry Potter and the Goblet of Fire
## 6825 Midway Arcade Treasures: Extended Play
## 6826 F1 2015
## 6827 Skylanders SWAP Force
## 6828 Bass Pro Shops: The Hunt
## 6829 What Did I Do to Deserve This, My Lord!? 2
## 6830 Boogie SuperStar
## 6831 Burnout 2: Point of Impact
## 6832 Rock Band Track Pack Volume 1
## 6834 Super Monkey Ball Deluxe
## 6835 Street Fighter X Tekken
## 6836 Kill.Switch
## 6837 Ben 10 Ultimate Alien: Cosmic Destruction
## 6838 Metro 2033
## 6839 Peter Jackson's King Kong: The Official Game of the Movie
## 6840 Stella Glow
## 6841 Dancing With The Stars
## 6842 Summon Night 3
## 6843 Pro Yaky? Spirits 2010
## 6844 The Simpsons: Road Rage
## 6845 Megamind: Mega Team Unite
## 6846 PDC World Championship Darts 2008
## 6847 Jissen Pachi-Slot Hisshouhou! Hokuto no Ken SE
## 6848 Azurik: Rise of Perathia
## 6849 Luminous Arc
## 6850 All Grown Up!: Game Boy Advance Video Volume 1
## 6851 The Lord of the Rings: Aragorn's Quest
## 6852 Dragon Ball Z: Sagas
## 6853 Paws & Claws: Pet Resort
## 6854 Grand Slam Tennis 2
## 6855 Sakura Wars: Atsuki Chishio Ni
## 6856 Ms. Pac-Man: Maze Madness / Pac-Man World
## 6857 NHRA Championship Drag Racing
## 6858 The Price is Right 2010 Edition
## 6859 Monster Jam
## 6860 Valhalla Knights
## 6861 Harvest Moon: Another Wonderful Life
## 6862 NBA Live 10
## 6863 The Godfather (US & Others sales)
## 6864 Jikkyou Powerful Pro Yakyuu 15
## 6865 MX vs. ATV Reflex
## 6866 Bakugan: Battle Brawlers
## 6867 Front Line
## 6868 Paperboy
## 6869 South Park: Chef's Luv Shack
## 6870 Midway's Greatest Arcade Hits Volume 1
## 6871 Road Rash 64
## 6872 Ready 2 Rumble Boxing: Round 2
## 6873 Army Men: Air Combat
## 6874 Rock Band Track Pack Volume 2
## 6875 NCAA College Basketball 2K3
## 6876 Mobile Suit Gundam Battlefield Record U.C.0081
## 6877 Harry Potter and the Deathly Hallows - Part 2
## 6878 NCAA March Madness 2004
## 6879 Lucky Luke
## 6880 Fantastic 4
## 6881 Ashes Cricket 2009
## 6882 Ghost Rider
## 6883 Tony Hawk's American Sk8land
## 6884 Juiced 2: Hot Import Nights
## 6885 Are You Smarter than a 5th Grader? Game Time
## 6886 Amazing Adventures: The Forgotten Ruins
## 6887 Densetsu no Stafi 3
## 6888 Forsaken
## 6889 Ratchet & Clank: Going Commando (JP weekly sales)
## 6890 Pictionary: Ultimate Edition
## 6891 LEGO The Hobbit
## 6892 Samurai Warriors 4
## 6893 The Hobbit
## 6894 Dance Dance Revolution: Disney Channel Edition
## 6895 DiRT Showdown
## 6896 Divinity II: Ego Draconis
## 6897 Checkers
## 6898 Front Mission: Gun Hazard
## 6899 X-Men: Destiny
## 6900 Hello Kitty Seasons
## 6901 Chibi-Robo! Zip Lash
## 6902 4x4 EVO 2
## 6903 XS Airboat Racing
## 6904 Lunar: Silver Star Harmony
## 6905 Sherlock Holmes and the Mystery of Osborne House
## 6906 Grand Theft Auto
## 6907 Dora the Explorer: Super Star Adventures
## 6908 Viva Pinata: Party Animals
## 6909 Scrabble (Others sales)
## 6910 Asura's Wrath
## 6911 Lego Star Wars: The Force Awakens
## 6912 Dynasty Warriors 6 Empires
## 6913 My Street
## 6914 Wild 9
## 6915 Shadow Hearts: Covenant
## 6916 Tiger Woods PGA Tour 10
## 6917 Shrek's Carnival Craze Party Games
## 6918 Angry Birds
## 6919 Risen 2: Dark Waters
## 6921 Guitar Hero Live
## 6922 Game & Wario
## 6923 PGA Tour 96
## 6924 Onechanbara Z2: Chaos
## 6925 Fallout 3 Game Add-On Pack: Broken Steel and Point Lookout
## 6926 Covert Ops: Nuclear Dawn
## 6928 Pictionary: Ultimate Edition
## 6929 LEGO Harry Potter: Years 5-7
## 6930 TrackMania: Build to Race
## 6931 Nintendo Presents: Crossword Collection
## 6932 Galaga: Destination Earth
## 6933 G.I. Joe: The Rise of Cobra
## 6934 Ar tonelico Qoga: Knell of Ar Ciel
## 6935 FIFA World Cup Germany 2006
## 6936 Polly Pocket: Super Splash Island
## 6937 God Eater 2
## 6939 Sesame Street: Elmo's Number Journey
## 6940 Rampage
## 6941 Dark Cavern
## 6942 Jewels of the Tropical Lost Island
## 6943 Afro Samurai
## 6944 The Bureau: XCOM Declassified
## 6945 Sands of Destruction
## 6946 NASCAR 2011: The Game
## 6947 Silent Hill: Book of Memories
## 6948 Lunar Knights
## 6949 The Walking Dead: Season Two
## 6950 Epic Mickey 2: The Power of Two
## 6951 DC Universe Online
## 6952 NASCAR 08
## 6953 Madagascar: Escape 2 Africa
## 6954 New Carnival Games
## 6955 Need For Speed: Undercover
## 6956 LEGO Marvel's Avengers
## 6957 Naruto: Path of the Ninja 2
## 6958 Wallace & Gromit in Project Zoo
## 6959 Karaoke Revolution Volume 2
## 6960 Wizards of Waverly Place: Spellbound
## 6961 Love Plus +
## 6962 Etrian Mystery Dungeon
## 6963 Mobile Suit Gundam: Climax U.C.
## 6964 Street Fighter EX2 Plus
## 6965 The Smurfs 2
## 6966 Big Family Games
## 6968 Hot Wheels: Beat That!
## 6970 Super Robot Taisen D
## 6971 NASCAR Thunder 2004
## 6972 Buffy the Vampire Slayer
## 6973 LEGO Marvel's Avengers
## 6974 Star Wars: The Force Unleashed II
## 6975 Harry Potter and the Goblet of Fire
## 6976 Zumba Fitness: World Party
## 6977 Saint Seiya: Sanctuary Battle
## 6978 Girls Mode 3: Kirakira Code
## 6979 Meteos
## 6980 Virtua Tennis 4
## 6981 Kung Fu Panda 2
## 6982 Cross Edge
## 6983 Hotel for Dogs
## 6984 Cabela's Big Game Hunter 2012
## 6985 Pro Yakyuu Team o Tsukurou!
## 6986 Me & My Katamari
## 6987 Asphalt: Injection
## 6988 Total War: Attila
## 6989 SSX On Tour
## 6990 Vancouver 2010 - The Official Video Game of the Olympic Winter Games
## 6991 World Series Baseball
## 6992 SingStar Pop Edition
## 6993 Test Drive: Eve of Destruction
## 6994 Starsky & Hutch
## 6995 Dynasty Warriors: Gundam Reborn
## 6996 Hatsune Miku: Project Diva f
## 6997 The Club
## 6998 Carnival Island
## 6999 Jeremy McGrath Supercross World
## 7000 M&M's Kart Racing
## 7001 Rock Band Track Pack: Classic Rock
## 7002 The Scorpion King: Rise of the Akkadian
## 7003 Let's Make a Soccer Team!
## 7004 Looney Tunes: Acme Arsenal
## 7005 Monster Hunter G
## 7006 All-Star Baseball 2001
## 7007 Pinball Hall of Fame: The Gottlieb Collection
## 7008 Sword Art Online: Lost Song
## 7009 Star Wars Jedi Knight II: Jedi Outcast
## 7010 Tom Clancy's Splinter Cell
## 7011 Pitfall: The Big Adventure
## 7012 Rock Band Country Track Pack
## 7013 Worms: Battle Islands
## 7014 ESPN NHL Hockey
## 7015 Harvest Moon GB
## 7016 Imagine: Detective
## 7017 The Incredible Hulk: Ultimate Destruction
## 7018 Hannah Montana: The Movie
## 7019 NCAA GameBreaker 2003
## 7020 Skylanders: SuperChargers
## 7021 Gundam Battle Assault
## 7022 Virtua Fighter Kids
## 7023 Lunar: Silver Star Story
## 7024 Rocket Power: Beach Bandits
## 7025 Shaun White Snowboarding
## 7026 LEGO The Hobbit
## 7027 Ultimate Band
## 7028 NBA 2K6
## 7029 Age of Empires: The Age of Kings
## 7030 What's Cooking? Jamie Oliver
## 7031 Tom Clancy's Rainbow Six: Rogue Spear
## 7032 NHL FaceOff 2001
## 7033 Ultimate Duck Hunting: Hunting & Retrieving Ducks
## 7034 Yu-Gi-Oh! GX: Duel Academy
## 7035 FIFA 14
## 7037 Colony Wars: Vengeance
## 7038 Last Window: The Secret of Cape West
## 7039 Yu-Gi-Oh! GX: Tag Force 3
## 7040 Dynasty Warriors: Strikeforce
## 7041 Naruto Shippuden: Ultimate Ninja Storm Revolution
## 7042 I Love Horses
## 7043 Madden NFL 06
## 7044 Karaoke Revolution Glee 2: Road to Regionals
## 7045 NASCAR 08
## 7046 The King of Fighters '95 (CD)
## 7047 Perfect Weapon
## 7048 Luminous Arc 2
## 7049 Project CARS
## 7050 Major League Baseball 2K10
## 7051 Call of Duty: Black Ops 3
## 7052 Mafia
## 7053 Spider-Man: Edge of Time
## 7054 Deadly Creatures
## 7055 Airblade
## 7056 Cabela's Outdoor Adventures (2009)
## 7057 Mega Man & Bass
## 7058 NBA Live 15
## 7059 Neopets Puzzle Adventure
## 7060 Risen 2: Dark Waters
## 7061 Dragon Quest Heroes II: Twin Kings and the Prophecy's End
## 7062 Puss in Boots
## 7063 Family Fest presents: Movie Games
## 7064 AKB1/149: Love Election
## 7065 Tony Hawk's Proving Ground
## 7066 Tetris 2 (weekly jp sales)
## 7067 Pro Yakyuu Team o Tsukurou! 2
## 7068 Musou Orochi Z
## 7069 World Series of Poker 2008: Battle for the Bracelets
## 7070 WWE All Stars
## 7071 Naruto Shippuden: Ninja Council 4
## 7072 Genji: Dawn of the Samurai
## 7073 Rocket League
## 7074 Wipeout 2
## 7075 The Idolm@ster SP: Wandering Star / Perfect Sun / Missing Moon
## 7076 Critical Depth
## 7077 Barbie as The Island Princess
## 7078 Petz Rescue: Wildlife Vet
## 7079 Tales of VS.
## 7080 Saka-Tsuku DS: Touch and Direct
## 7081 Super Swing Golf
## 7082 The Italian Job
## 7083 Mega Man Battle Network 5: Team Colonel / Protoman
## 7084 Barbie and the Three Musketeers
## 7085 Star Ocean
## 7086 Freedom Fighters
## 7087 Naruto: Ninja Council 2 European Version
## 7088 Soldier of Fortune II: Double Helix
## 7089 pro evolution soccer 2011
## 7090 Disney Princess: Enchanted Journey
## 7091 Final Fantasy XI: Treasures of Aht Urhgan
## 7092 Alundra
## 7093 World Soccer Winning Eleven 2010: Aoki Samurai no Chousen
## 7094 Bratz: Girlz Really Rock
## 7095 Super R-Type
## 7096 Rampage 2: Universal Tour
## 7097 Super Robot Taisen F Kanketsuhen
## 7098 Tiger Woods PGA Tour 2003
## 7099 BlowOut
## 7100 NFL Blitz Pro
## 7101 MySims Party
## 7102 TRON: Evolution - Battle Grids
## 7103 The Raiden Project
## 7104 Hooked! Real Motion Fishing
## 7105 Pocket Fighter
## 7106 Bicycle Casino 2005
## 7107 Valhalla Knights 2
## 7108 .hack//G.U. Vol.2//Reminisce
## 7109 Disgaea: Afternoon of Darkness
## 7110 Ratchet & Clank: Full Frontal Assault
## 7111 NCAA Football 09
## 7112 Family Party: 30 Great Games Winter Fun
## 7113 NCAA GameBreaker 2004
## 7114 101-in-1 Party Megamix Wii
## 7115 The Polar Express
## 7116 Dinosaur King
## 7117 Buzz! Junior: RoboJam
## 7118 Child of Eden
## 7119 All Star Karate
## 7120 AC/DC LIVE: Rock Band Track Pack
## 7121 Tetris Attack
## 7122 NBA ShootOut 2003
## 7123 The Magic School Bus: Oceans
## 7124 Shin Nippon Pro Wrestling: Toukon Retsuden 3
## 7125 Senran Kagura: Estival Versus
## 7126 Digimon World DS (JP sales)
## 7127 NHL FaceOff 2003
## 7128 Jersey Devil
## 7129 Rogue Ops
## 7130 NBA Street: Showdown
## 7131 3rd Super Robot Wars Z Jigoku Hen
## 7132 Cars 2
## 7133 Petz Monkeyz House
## 7134 Spec Ops: The Line
## 7135 Legion: The Legend of Excalibur
## 7136 FaceBreaker K.O. Party
## 7137 Justice League Heroes
## 7138 Gekijouban Macross F: Sayonara no Tsubasa - Hybrid Pack
## 7139 TNA iMPACT!
## 7140 Yu-Gi-Oh! GX: Spirit Caller (American Sales)
## 7141 Def Jam: Fight for NY
## 7142 Sword Art Online: Infinity Moment
## 7143 Spartan: Total Warrior
## 7144 Killer is Dead
## 7145 EX Monopoly
## 7146 Star Trek: The Game
## 7147 64 de Hakken! Tamagotchi Minna de Tamagotchi World
## 7148 Mary-Kate and Ashley: Sweet 16 - Licenced to Drive
## 7149 Deadly Duck
## 7150 Assault
## 7151 Reactor
## 7152 Ys Seven
## 7153 Marvel Super Hero Squad: The Infinity Gauntlet
## 7154 Gundam Battle Chronicle
## 7155 G-Force
## 7156 Danball Senki Boost
## 7157 Kidz Bop Dance Party! The Video Game
## 7158 Conflict: Vietnam
## 7159 Whirl Tour
## 7160 Time Crisis: Crisis Zone
## 7161 Momotarou Dentetsu 15
## 7162 Dark Souls II
## 7163 Discovery Kids: Dolphin Discovery
## 7164 Ben 10 Ultimate Alien: Cosmic Destruction
## 7165 Hatsune Miku: Project Mirai 2
## 7166 Skies of Arcadia Legends
## 7167 Cloudy With a Chance of Meatballs
## 7168 MotoGP 08
## 7169 Madden NFL 12
## 7170 Sengoku Basara 3 Utage
## 7171 Breath of Fire
## 7172 Ragnarok DS
## 7173 Ford vs. Chevy
## 7174 NCAA Football 2005
## 7175 Hamtaro: Ham-Ham Games
## 7176 Danny Phantom: The Ultimate Enemy
## 7177 Petz Rescue: Endangered Paradise
## 7178 MotoGP 09/10
## 7179 Rune Factory: Tides of Destiny
## 7180 A Boy and His Blob
## 7181 Battleborn
## 7183 Atelier Escha & Logy: Alchemists of the Dusk Sky
## 7184 Hidden Mysteries: Buckingham Palace
## 7185 Crazy Climber
## 7186 Super Adventure Island
## 7187 Bust-A-Move 4
## 7188 The Legend of Spyro: The Eternal Night
## 7189 NFL Quarterback Club 97
## 7190 Rampage: Total Destruction
## 7191 Galactic Wrestling: Featuring Ultimate Muscle
## 7192 Petz: Horse Club
## 7193 Dino Stalker
## 7194 Rapala's Fishing Frenzy
## 7195 Mobile Suit Gundam Seed
## 7196 Shinobi
## 7197 Puss in Boots
## 7198 Tony Hawk's Downhill Jam
## 7199 Mega Man Zero 3
## 7200 LEGO The Lord of the Rings
## 7201 Hitman: HD Trilogy
## 7202 Aliens vs Predator: Requiem
## 7203 Castlevania: Lords of Shadow 2
## 7204 Barbie: Groom and Glam Pups
## 7205 KORG DS-10 Synthesizer
## 7206 Tenchu: Shadow Assassins
## 7207 Barbie Super Sports
## 7208 CSI: Fatal Conspiracy
## 7209 Nicktoons Collection: Game Boy Advance Video Volume 2
## 7210 Jackass the Game
## 7211 The Legend of Heroes: Trails of Cold Steel
## 7212 Tom Clancy's Rainbow Six: Siege
## 7213 Dungeon Hunter Alliance
## 7215 Duel Masters: Kaijudo Showdown
## 7216 Imagine: Boutique Owner
## 7217 The Walking Dead: Season Two
## 7218 The Lord of the Rings: The Third Age
## 7219 Cursed Mountain
## 7220 The Suffering
## 7221 Dragon Quest Builders: Revive Alefgard
## 7222 Tetris Worlds
## 7223 Teenage Mutant Ninja Turtles: Danger of the Ooze
## 7224 ECW Hardcore Revolution
## 7225 Mega Man 64
## 7226 Chou-Kuukan Night Pro Yakyuu King(higher JP sales)
## 7227 Rampage 2: Universal Tour
## 7228 Ms. Pac-Man: Maze Madness
## 7229 Tales of Graces
## 7230 Age of Empires: Mythologies
## 7231 Viewtiful Joe 2
## 7232 Where's Waldo? The Fantastic Journey
## 7233 ATV Quad Kings
## 7234 Mary-Kate and Ashley: Sweet 16 - Licenced to Drive
## 7235 Jewel Quest: Expeditions
## 7236 NBA Jam Extreme
## 7237 Dragon Ball: Origins (JP & incomplete US sales)
## 7238 Touch the Dead
## 7239 Tropico 3
## 7240 Nickelodeon Party Blast
## 7241 Ben 10 Alien Force: Vilgax Attacks
## 7242 NHL Championship 2000
## 7243 G.I. Joe: The Rise of Cobra
## 7244 Shellshock: Nam '67
## 7245 Hunted: The Demon's Forge
## 7246 Kartia: The Word of Fate
## 7247 Tales of Berseria
## 7248 All-Star Baseball 2002
## 7249 Magna Carta: Tears of Blood
## 7250 Lethal Skies Elite Pilot: Team SW
## 7251 Capcom vs. SNK
## 7252 NBA Live 09 All-Play
## 7253 Infinite Space
## 7254 Yoostar2
## 7255 Transformers: Devastation
## 7256 Tamagotchi no KiraKira Omisecchi
## 7257 From Russia With Love
## 7258 You Don't Know Jack
## 7259 Just Dance 2016
## 7260 Pinball Hall of Fame: The Williams Collection
## 7261 Guitar Hero: Smash Hits
## 7262 NFL Quarterback Club 2002
## 7263 Kirby's Star Stacker
## 7264 NCAA Basketball 09
## 7265 Full Auto
## 7266 Dead Island
## 7267 Growlanser: Heritage of War
## 7268 Hasbro Family Game Night
## 7269 Shin Megami Tensei x Fire Emblem
## 7270 Rugby 2004
## 7271 Disney's Magical Quest Starring Mickey and Minnie
## 7272 Spirit Camera: The Cursed Memoir
## 7273 NBA 06
## 7274 Naruto: Ninja Council
## 7275 Shin Megami Tensei: Persona
## 7276 DS Nishimura Kyotaro Suspense Shin Tantei Series: Kyoto Atami Zekkai no Kotou - Satsui no Wana
## 7277 Wreckless: ThE YaKuza MisSiOns
## 7278 Madden NFL 07
## 7279 Jikkyou Powerful Major League
## 7280 NFL 2K3
## 7281 Darksiders II
## 7282 Saltwater Sportfishing
## 7283 Yoshi Touch & Go (JP sales)
## 7284 Samurai Jack: The Amulet of Time
## 7285 Pass the Pigs
## 7286 J-League Winning Eleven 2008: Club Championship
## 7287 Jackie Chan: Stuntmaster
## 7288 Sports Car GT
## 7289 Lost Planet 3
## 7290 Order Up!
## 7291 Code Name: S.T.E.A.M.
## 7292 SBK X: Superbike World Championship
## 7293 NBA Live 14
## 7294 Scooby-Doo! Mystery Mayhem
## 7295 Kanzen Chuuki Pro Yakyuu Greatest Nine
## 7296 American Idol
## 7297 Summer Athletics: The Ultimate Challenge (Others sales)
## 7298 Britney's Dance Beat
## 7299 Shrek SuperSlam
## 7300 Sniper: Ghost Warrior 2
## 7301 Over G Fighters
## 7302 Sailor Moon
## 7303 Apache: Air Assault
## 7304 One Piece: Pirate Warriors 3
## 7305 Herdy Gerdy
## 7306 Armored Core V
## 7307 EVE Online
## 7308 Digimon World Re:Digitize
## 7309 Ninja Gaiden: Dragon Sword
## 7310 Ride
## 7311 Blue Dragon Plus
## 7312 Lords of the Fallen
## 7313 NBA in the Zone 2000
## 7314 Dark Summit
## 7315 Afrika
## 7316 Cabela's Big Game Hunter: Ultimate Challenge
## 7317 The Legend of Heroes: Trails in the Sky First Chapter
## 7318 Are You Smarter Than a 5th Grader? Back to School
## 7320 The Dukes of Hazzard: Return of the General Lee
## 7321 Pandemonium!
## 7322 SingStar: Back to the 80s
## 7323 Namco Museum: 50th Anniversary
## 7324 Crash 'N' Burn
## 7325 NBA
## 7326 Teenage Mutant Ninja Turtles: Smash-Up
## 7327 Pro Yakyuu Greatest Nine '97
## 7328 Transformers: Dark of the Moon
## 7329 Final Fantasy Fables: Chocobo's Dungeon
## 7330 Lunar: Silver Star Story Complete
## 7331 Dorabase DS: Dramatic Stadium
## 7332 Disaster Report
## 7333 EVE: burst error
## 7334 We Sing Robbie Williams
## 7335 Backyard NFL Football '09
## 7336 Pro Evolution Soccer 2012
## 7337 Akiba's Trip: Undead & Undressed
## 7338 Speed Racer: The Videogame
## 7339 College Hoops 2K7
## 7340 The Amazing Spider-Man 2 (2014)
## 7341 Big League Sports
## 7342 Bratz: Forever Diamondz
## 7343 WCW Backstage Assault
## 7344 UFC Undisputed 2010
## 7345 Baja: Edge of Control
## 7346 Wild Wild Racing
## 7347 Magician's Quest: Town of Magic
## 7348 The Bard's Tale
## 7349 NCAA March Madness 08
## 7350 Momotarou Dentetsu 16
## 7351 Robotech: The Macross Saga
## 7353 MTV Celebrity Deathmatch
## 7354 Gekijouban Macross F: Itsuwarino Utahime - Hybrid Pack
## 7355 Conflict Zone
## 7356 Tony Hawk's American Sk8land
## 7357 de Blob 2
## 7358 The BIGS 2
## 7359 BloodRayne
## 7360 Hannah Montana: The Movie
## 7361 50 Cent: Blood on the Sand
## 7362 Bratz: Girlz Really Rock
## 7363 NHL 2K6
## 7364 Tenchu: Return From Darkness
## 7365 World Poker Tour
## 7366 Prison Break: The Conspiracy
## 7367 Neo Contra
## 7368 MVP Baseball
## 7369 GRID Autosport
## 7372 RealSports Baseball
## 7373 Now! That's What I Call Music: Dance & Sing
## 7374 Yu-Gi-Oh! 5D's World Championship 2011: Over the Nexus
## 7375 Metal Gear Solid V: The Phantom Pain
## 7376 Hasbro Family Game Night 3
## 7377 G.I. Joe: The Rise of Cobra
## 7378 Rayman Raving Rabbids
## 7379 Viewtiful Joe 2
## 7380 Quake III: Revolution
## 7381 Pac-Man World 3
## 7382 Naruto: Clash of Ninja (JP sales)
## 7384 NOëL: NOT DiGITAL
## 7385 Transformer: Rise of the Dark Spark
## 7386 Dragon Ball Z Hyper Dimension
## 7387 Hidden Mysteries: Titanic - Secrets of the Fateful Voyage
## 7388 Senran Kagura 2: Deep Crimson
## 7389 Marvel Super Hero Squad
## 7390 The Chronicles of Narnia: Prince Caspian
## 7391 Champion Jockey: G1 Jockey & Gallop Racer
## 7392 HBO Boxing
## 7393 Yoga Wii
## 7394 Darkwatch
## 7395 Cabela's Survival: Shadows of Katmai
## 7396 Prince of Persia: Revelations
## 7397 Bass Pro Shops: The Strike
## 7398 Front Mission 5: Scars of the War
## 7399 Maximo vs Army of Zin
## 7400 The Fairly OddParents: Breakin' Da Rules
## 7401 Namco Museum Megamix
## 7402 Wedding Dash
## 7403 Hot Shots Tennis: Get a Grip
## 7404 Summoner 2
## 7405 The Land Before Time: Big Water Adventure
## 7406 Shadow of Destiny
## 7408 Cabela's Deer Hunt: 2004 Season
## 7409 Disney's Planes
## 7410 Brunswick Pro Bowling
## 7411 World Series of Poker
## 7412 ClayFighter 63 1/3
## 7413 Monopoly
## 7414 WCW Nitro
## 7415 Cruis'n Exotica
## 7416 Gex 3: Deep Cover Gecko
## 7417 WinBack: Covert Operations
## 7418 Heroes of Ruin
## 7419 WipeOut 3 The Game
## 7420 Bastard!! Utsuro Naru Kamigami no Utsuwa
## 7421 SBK Superbike World Championship
## 7422 The King of Fighters '96
## 7423 Bionicle
## 7425 Angel Blade: Neo Tokyo Guardians
## 7426 Threads of Fate
## 7427 PoPoLoCrois Monogatari II
## 7428 Famicom Mini: Ganbare Goemon! Karakuri Douchuu
## 7429 Vampire Rain
## 7430 Way of the Samurai 3
## 7431 Deus Ex: The Conspiracy
## 7432 Unreal II: The Awakening
## 7433 Rumble Racing
## 7434 Spider-Man: Web of Shadows
## 7435 Disgaea D2: A Brighter Darkness
## 7436 Batman Begins
## 7437 Just Dance: Greatest Hits
## 7438 J-League Winning Eleven 10 + Europa League 06-07
## 7439 Shrek: Reekin' Havoc
## 7440 Solatorobo: Red the Hunter
## 7441 Tales of Phantasia: Narikiri Dungeon X
## 7442 JSRF: Jet Set Radio Future
## 7443 NHL Hitz 20-02
## 7444 The Last Airbender
## 7445 NCAA Football 2003
## 7446 StokEd
## 7447 Rollcage
## 7448 ESPN Winter X Games: Snowboarding 2002
## 7449 Project: Snowblind
## 7450 Tony Hawk's Motion
## 7451 Super Robot Taisen K
## 7452 Mortal Kombat: Special Forces
## 7453 LEGO The Hobbit
## 7454 Rayman Legends
## 7455 Dragon Ball Z: Harukanaru Densetsu
## 7456 Wacky Races: Crash & Dash
## 7457 I Spy: Castle
## 7458 Shin Megami Tensei: Persona 3 (jp sales)
## 7459 Greg Hastings Paintball 2
## 7460 Evil Dead: Regeneration
## 7461 Dead to Rights: Retribution
## 7462 NCAA March Madness 07
## 7463 NHL 2003
## 7464 Marvel Super Hero Squad: Comic Combat
## 7465 X-Men: Children of the Atom
## 7466 Barbie Fashion Show: An Eye for Style
## 7467 Tiger Woods PGA Tour
## 7468 Yarudora Series Vol. 2: Kisetsu wo Dakishimete
## 7469 NHL 2K3
## 7470 Heisei Kyouiku linkai DS
## 7471 SpongeBob SquarePants: Game Boy Advance Video Volume 3
## 7472 Pro Yaky? Spirits 2010
## 7473 The Naked Brothers Band: The Video Game
## 7474 Final Fight One
## 7475 Rune Factory: Tides of Destiny
## 7476 The Amazing Spider-Man (Console Version)
## 7477 NCAA Football 10
## 7478 Gallop Racer 2003: A New Breed
## 7479 Dawn of Discovery
## 7480 BeyBlade VForce: Super Tournament Battle
## 7481 Outlaw Golf 2
## 7482 Little Battlers eXperience: Baku Boost
## 7483 Anarchy Reigns
## 7484 CSI: Deadly Intent
## 7485 Defiance
## 7486 J-League Pro Soccer Club o Tsukurou! 7 Euro Plus
## 7487 LEGO Ninjago: Shadow of Ronin
## 7488 Bugs Bunny & Taz: Time Busters
## 7489 Need for Speed Carbon: Own the City
## 7490 Dragon Ball Z: Sagas
## 7491 Kung Fu Rider
## 7492 Jikkyou Powerful Pro Yakyuu 2012
## 7493 X2: Wolverine's Revenge
## 7494 Power Rangers: Wild Force
## 7495 The Wolf Among Us
## 7496 Thrillville
## 7497 Battle of Giants: Dinosaurs Strike
## 7498 Attack on Titan (KOEI)
## 7499 The King of Fighters '95
## 7500 Discovery Kids: Pony Paradise
## 7501 Mary-Kate and Ashley: Girls Night Out
## 7502 Cabela's North American Adventures
## 7503 Enchanted Arms
## 7504 Beyblade G-Revolution
## 7505 WWE All Stars
## 7506 Trade & Battle: Card Hero
## 7507 World Championship Cards
## 7508 You Don't Know Jack
## 7509 Chronicles of Mystery: Curse of the Ancient Temple
## 7510 NBA Live 15
## 7511 Capcom Fighting Evolution
## 7512 Frogger 3D
## 7513 SD Gundam GNext
## 7514 Backyard NFL Football 2006
## 7515 NASCAR Heat 2002
## 7516 Planet 51
## 7517 Sloane to MacHale no Nazo no Monogatari
## 7518 DarkStar One: Broken Alliance
## 7519 My Fitness Coach 2: Exercise and Nutrition
## 7520 Sengoku Basara 2 Heroes
## 7521 Buzz! The Schools Quiz
## 7522 Two Worlds II
## 7523 Suikoden Tactics
## 7524 NCAA March Madness 06
## 7525 Major League Baseball 2K11
## 7526 Mobile Suit Gundam: Crossfire
## 7527 Phantasy Star Online
## 7528 Crazy Taxi 3: High Roller
## 7529 Dark Messiah of Might and Magic Elements
## 7530 Just Dance 2: Extra Songs
## 7531 Midnight Club 3: DUB Edition Remix
## 7532 International Superstar Soccer 2000
## 7533 Warhammer 40,000: Space Marine
## 7534 CandyLand / Chutes & Ladders / Memory
## 7535 The Bible Game
## 7536 Drift King Shutokou Battle '94
## 7537 Shining Blade
## 7538 Fairy Fencer F
## 7539 Atelier Shallie: Alchemists of the Dusk Sea
## 7540 The Ultimate Red Ball Challenge
## 7541 PBR: Out of the Chute
## 7542 The King of Fighters Collection: The Orochi Saga
## 7543 Jikkyou Powerful Pro Yakyuu 10 Chou Ketteiban: 2003 Memorial
## 7544 Arcana Heart 3
## 7545 Tekken 3D: Prime Edition
## 7546 Deal or No Deal: The Banker is Back!
## 7547 Jillian Michaels' Fitness Adventure
## 7548 MLB 10: The Show
## 7549 State of Decay
## 7550 Ashes Cricket 2009
## 7551 Saturday Night Speedway
## 7552 Bratz: Rock Angelz
## 7553 Langrisser III
## 7554 Samurai Spirits (CD)
## 7555 MLB SlugFest 20-03
## 7556 Dragon Ball: Revenge of King Piccolo
## 7557 Spectrobes: Origins
## 7558 Earth Defense Force: Insect Armageddon
## 7559 Pitfall: The Lost Expedition
## 7560 Marvel: Ultimate Alliance 2
## 7561 From TV Animation One Piece: Grand Battle! 3
## 7562 Assassin's Creed Syndicate
## 7563 Rocket Power: Zero Gravity Zone
## 7564 Le Mans 24 Hours
## 7565 XCOM 2
## 7566 International Cricket 2010
## 7567 ESPN MLB Baseball
## 7568 Neighborhood Games
## 7569 All Star Pro-Wrestling
## 7570 Way of the Samurai 4
## 7571 Clive Barker's Jericho
## 7572 Harvest Moon: More Friends of Mineral Town
## 7573 Captain America: Super Soldier
## 7574 MLB 12: The Show
## 7575 The Fairly Odd Parents: Shadow Showdown
## 7576 NHL 17
## 7577 Mobile Suit Gundam Side Story II: Aoi o Uketsugu Mono
## 7578 Camping Mama: Outdoor Adventures
## 7579 Kurohyou 2: Ryu ga Gotoku Ashura Hen
## 7580 NBA 2K2
## 7581 X2: Wolverine's Revenge
## 7582 7th Dragon 2020
## 7583 Cars
## 7584 Taiko no Tatsujin: Waku Waku Anime Matsuri
## 7585 Imagine: Babyz Fashion
## 7586 Spy Hunter
## 7587 Warriors Orochi
## 7588 Dead to Rights II
## 7589 Super Dodge Ball Advance
## 7590 Ogre Battle Saga Episode Five: The March of the Black Queen
## 7591 Ridge Racer 6
## 7592 Angry Birds Star Wars
## 7593 Ni Hao, Kai-lan: New Year's Celebration
## 7594 Press Your Luck 2010 Edition
## 7595 Treasure World
## 7596 Front Mission Evolved
## 7597 Body and Brain Connection
## 7598 MDK
## 7599 Monster Jam
## 7600 Afro Samurai
## 7601 Rock Band Track Pack: Classic Rock
## 7602 Zone of the Enders HD Collection
## 7603 Ty the Tasmanian Tiger 2: Bush Rescue
## 7604 Speed Punks
## 7605 The Legend of Heroes VII: The Trail of Blue
## 7606 No More Heroes: Heroes' Paradise
## 7607 Mahjongg Mysteries: Ancient Egypt
## 7608 Saints Row IV
## 7609 Injustice: Gods Among Us
## 7610 MVP Baseball 2003
## 7611 CSI: Unsolved!
## 7612 Star Wars: Battlefront
## 7613 NCAA Final Four 2004
## 7614 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 7615 Tigger's Honey Hunt
## 7617 Roadsters 99
## 7618 Magical Tetris Challenge
## 7619 Twisted Edge Extreme Snowboarding
## 7620 Disney's Tarzan
## 7621 South Park Rally
## 7622 Body Harvest
## 7623 San Francisco Rush 2049
## 7624 Super Robot Taisen 64
## 7625 Snowboard Kids
## 7626 NBA 07
## 7627 IHRA Drag Racing 2004
## 7628 Shining Hearts
## 7629 Magical ZhuZhu Princess: Carriages & Castles
## 7630 Code of Princess
## 7631 Tomb Raider: Underworld
## 7632 The Con
## 7633 Tony Hawk's Pro Skater 5
## 7634 Jissen Pachi-Slot Hisshouhou! Aladdin A
## 7635 Namco Museum: 50th Anniversary
## 7636 Ford Racing Off Road
## 7637 The Witch and the Hundred Knight
## 7638 Nobunaga no Yabou: Reppuuden
## 7639 Hot Wheels: Track Attack
## 7640 Schlag den Raab
## 7641 UFC Personal Trainer: The Ultimate Fitness System
## 7642 Total War: Shogun 2 - Fall of the Samurai
## 7643 The BIGS 2
## 7644 Mat Hoffman's Pro BMX 2
## 7645 Treasure Hunter G
## 7646 Untold Legends: Dark Kingdom
## 7647 From Russia With Love
## 7648 Wing Arms
## 7650 Pro Yaky? Spirits 2013
## 7651 We Wish You A Merry Christmas
## 7652 BioShock The Collection
## 7653 DanceDanceRevolution
## 7654 Cabela's Big Game Hunter (2008)
## 7655 Grandia II
## 7656 Namco Museum Vol.4
## 7657 The Cheetah Girls: Passport to Stardom
## 7658 UFC Personal Trainer: The Ultimate Fitness System
## 7659 How to Train Your Dragon 2
## 7660 Shark Tale
## 7661 NFL Street 2
## 7662 Pro Yaky? Spirits 2013
## 7663 Teenage Mutant Ninja Turtles 3: Mutant Nightmare
## 7664 My Secret World by Imagine
## 7665 Soldier of Fortune: Payback
## 7666 Ridge Racer
## 7667 Bleach: The 3rd Phantom
## 7668 Gladius
## 7669 Family Feud: 2012 Edition
## 7670 Dave Mirra Freestyle BMX 2
## 7671 Spore Hero Arena
## 7672 Pro Yaky? Spirits 2012
## 7673 Puzzle & Dragons X: God Chapter / Dragon Chapter
## 7674 SpongeBob SquarePants: Revenge of the Flying Dutchman
## 7675 Record of Agarest War
## 7676 Baja: Edge of Control
## 7677 Sid Meier's Pirates!
## 7678 Taiko no Tatsujin: Go! Go! Godaime
## 7679 Taiko Drum Master
## 7680 High School Musical 3: Senior Year DANCE!
## 7681 Harry Potter and the Goblet of Fire
## 7682 Bust-A-Move 2 Arcade Edition
## 7683 South Park: The Stick of Truth
## 7684 Tom Clancy's Splinter Cell: Essentials
## 7685 Tetris Worlds (Online Edition)
## 7686 Armored Core 4
## 7687 Sleeping Dogs
## 7688 Forgotten Realms: Demon Stone
## 7689 Super Baseball Simulator 1.000
## 7690 Barbie Horse Adventures: Riding Camp
## 7691 Resident Evil: Revelations
## 7692 Go Play: Lumberjacks
## 7693 Looney Tunes: Space Race
## 7694 Puzzle Challenge: Crosswords and More!
## 7695 NASCAR Unleashed
## 7696 Backyard Hockey
## 7697 Playboy: The Mansion
## 7698 Jikkyou Powerful Pro Yakyuu 2010
## 7699 Shiren the Wanderer
## 7700 Ore no Shikabane o Koete Yuke
## 7701 Shaman King: Spirit of Shamans
## 7702 Tiger Woods PGA Tour 06
## 7703 Conan
## 7704 Ratatouille
## 7705 The Fairly Odd Parents: Enter the Cleft
## 7706 Warriors Orochi
## 7707 MC Groovz Dance Craze
## 7708 The Thing
## 7709 Tom and Jerry in House Trap
## 7710 Power Rangers: Time Force
## 7711 101-in-1 Explosive Megamix
## 7712 X-Men Origins: Wolverine
## 7713 Jikkyou Powerful Pro Yakyuu 2011
## 7714 DS Kageyama Method: Dennou Hanpuku - Masu x Masu Hyaku Masu Keisan
## 7715 Baldur's Gate: Dark Alliance
## 7716 Family Guy
## 7717 Prince of Persia: Warrior Within
## 7718 UFC: Tapout
## 7719 Aikatsu! Cinderella Lesson
## 7720 Marvel Super Hero Squad: Comic Combat
## 7722 Mega Man Legacy Collection
## 7723 Predator: Concrete Jungle
## 7724 Beyblade: Metal Fusion - Battle Fortress
## 7725 WipeOut 3 The Game
## 7726 Big Mutha Truckers 2
## 7727 Shutter Island
## 7728 The Naked Brothers Band: The Video Game
## 7729 Demon Gaze
## 7730 Zombie Army Trilogy
## 7731 NHL FaceOff 2001
## 7732 Mana Khemia 2: Fall of Alchemy
## 7733 The Great Escape
## 7734 Dexter's Lab Chess Challenge
## 7735 Nostalgia
## 7736 DiRT Showdown
## 7737 Iron Chef America: Supreme Cuisine
## 7738 Arcade Shooting Gallery
## 7739 The Rise of the Argonauts
## 7740 Big Mutha Truckers
## 7741 ESA Foundation Compilation
## 7742 The Hobbit
## 7743 The King of Fighters XI
## 7744 Ninja Gaiden 3
## 7745 Metro: Last Light
## 7746 Dragon Ball Z: Idainaru Dragon Ball Densetsu
## 7747 Silent Hill HD Collection
## 7748 Bound By Flame
## 7749 Conflict: Denied Ops
## 7750 Saw II: Flesh & Blood
## 7751 Ice Age: Dawn of the Dinosaurs
## 7752 Sniper Elite
## 7753 Arc Rise Fantasia
## 7754 Ni Hao, Kai-lan: Super Game Day
## 7755 Kouchuu Ouja Mushi King: Greatest Champion e no Michi DS
## 7756 Dynasty Warriors: Gundam 2
## 7757 Petz Pony: Beauty Pageant
## 7758 Parlor! Mini 4
## 7759 Breath of Fire II
## 7760 The Spiderwick Chronicles
## 7761 Danganronpa 2: Goodbye Despair
## 7762 Aliens vs Predator
## 7763 Ice Age 2: The Meltdown
## 7765 Enchanted Arms
## 7766 Dinotopia: The Timestone Pirates
## 7767 Power Pro Kun Pocket 12
## 7768 J-League Jikkyou Winning Eleven 3
## 7769 The Sims 4: Get Together
## 7770 Jissen Pachi-Slot Hisshouhou
## 7771 Pac-Man & Galaga Dimensions
## 7772 Quantum Theory
## 7773 Manhunt
## 7774 NCAA Final Four 2003
## 7775 Air Conflicts: Secret Wars
## 7776 Rio
## 7777 Dream Salon
## 7778 Scene It? Twilight
## 7779 Disgaea DS
## 7780 Peter Jackson's King Kong: The Official Game of the Movie
## 7781 Space Invaders Extreme 2
## 7782 X-Men Origins: Wolverine
## 7783 Great Phoenix Wright: Ace Attorney - Naruhodou Ryuunosuke no Bouken
## 7784 Mystery Tales of Time Travel
## 7785 J-League Excite Stage '96
## 7786 Risen
## 7787 Hidden Mysteries: Vampire Secrets
## 7788 New Love Plus
## 7789 Final Fantasy XI
## 7790 Breath of Fire: Dragon Quarter
## 7791 Jikkyou J-League Perfect Striker
## 7792 Dante's Inferno
## 7793 Shrek: Forever After
## 7794 Rock Band Country Track Pack
## 7795 Super Robot Taisen: Scramble Commander
## 7796 Re-Volt
## 7797 Conception II: Children of the Seven Stars
## 7798 Descent
## 7799 Supreme Commander 2
## 7800 DanceMasters
## 7801 50 Cent: Blood on the Sand
## 7802 Disney's Magical Mirror Starring Mickey Mouse
## 7803 Need for Speed: The Run
## 7804 Jeep Thrills
## 7805 Conflict: Denied Ops
## 7806 FaceBreaker
## 7807 Major League Baseball 2K12
## 7808 Might & Magic: Clash of Heroes
## 7809 Avatar: The Last Airbender - Into the Inferno
## 7810 IHRA Professional Drag Racing 2005
## 7811 Mace Griffin: Bounty Hunter
## 7812 Legacy of Kain: Defiance
## 7813 Story of Seasons: Good Friends of the Three Villages
## 7814 Chaotic: Shadow Warriors
## 7815 Majin and the Forsaken Kingdom
## 7816 Trivial Pursuit unhinged
## 7817 Tales of the World: Narikiri Dungeon 2
## 7818 Spider-Man: Shattered Dimensions
## 7819 Aliens versus Predator: Extinction
## 7820 Plants vs. Zombies
## 7821 NBA Live 14
## 7822 Silent Scope 2: Dark Silhouette
## 7823 Dave Mirra Freestyle BMX 2
## 7824 Jikkyou Powerful Pro Yakyuu '96 Kaimakuban
## 7825 Tokimeki Memorial Girl's Side 3rd Story
## 7826 NHL Hitz Pro
## 7827 Tom Clancy's Splinter Cell: Blacklist
## 7828 Allied General
## 7829 Fire ProWrestling G
## 7830 Kamen Rider: Battride War
## 7831 Binary Domain
## 7832 IL-2 Sturmovik: Birds of Prey
## 7833 Farming Simulator 2015
## 7834 Armored Core: For Answer
## 7835 Mahjong: Journey Quest for Tikal
## 7836 uDraw Studio: Instant Artist
## 7837 Naruto: Ninja Destiny
## 7838 GunGriffon
## 7839 SingStar Pop Vol.2
## 7840 SNK Arcade Classics Vol. 1
## 7841 Darkstalkers 3
## 7842 SpongeBob's Surf & Skate Roadtrip
## 7843 Frequency
## 7844 Death Jr.
## 7845 Cars: Race-O-Rama
## 7846 Inazuma Eleven Strikers 2012 Xtreme
## 7847 The Polar Express
## 7848 2002 FIFA World Cup
## 7849 Kan Colle Kai
## 7850 SpongeBob SquigglePants 3D
## 7851 Jampack: Summer 2003 (RP-T)
## 7852 Need for Speed: Shift 2 Unleashed
## 7853 Monster 4x4: Stunt Racer
## 7854 Frogger's Adventures 2: The Lost Wand
## 7855 Sudeki
## 7856 Rango: The Video Game
## 7857 The Amazing Spider-Man (Console Version)
## 7858 Boku no Natsuyasumi 4: Seitouchi Shounen Tanteidan, Boku to Himitsu no Chizu
## 7859 Hyperdevotion Noire: Goddess Black Heart
## 7860 Hexen
## 7861 Mace: The Dark Age
## 7862 AeroFighters Assault
## 7863 Puyo Puyo Sun 64
## 7864 Chou-Kuukan Night Pro Yakyuu King (weekly JP sales)
## 7865 Quake
## 7866 Sesame Street: Elmo's Number Journey
## 7867 Disney Magic World 2
## 7868 Squeeballs Party
## 7869 Tottadoo! Yoiko no Mujintou Seikatsu
## 7870 Where's Waldo? The Fantastic Journey
## 7871 Family Game Night 4: The Game Show
## 7872 Teenage Mutant Ninja Turtles 2: Battle Nexus
## 7873 Saints Row IV
## 7874 Fighter Within
## 7875 Barbie Horse Adventures: Riding Camp
## 7876 SSX Tricky
## 7877 Kenka Banchou 4: Ichinen Sensou
## 7878 Warhammer: Shadow of the Horned Rat
## 7879 Shadows of the Damned
## 7880 NBA 2K11
## 7881 Pro Yakyuu Team o Tsukurou!
## 7882 Warriors: Legends of Troy
## 7883 Jeopardy!
## 7884 ESPN International Track & Field
## 7885 Lunar Legend
## 7886 Conflict: Global Terror
## 7887 Valhalla Knights 3
## 7888 Tamagotchi Party On!
## 7889 Hisshou Pachinko*Pachi-Slot Kouryaku Series Vol. 5: CR Shinseiki Evangelion * Pachi-Slot Shinseiki Evangelion
## 7890 Brunswick Pro Bowling
## 7891 Shaun White Skateboarding
## 7892 Hulk
## 7893 The Heavy Rain and Beyond: Two Souls Collection
## 7894 Cabela's Survival: Shadows of Katmai
## 7895 Shaun White Skateboarding
## 7896 Boogie
## 7897 Gungrave
## 7898 Phantasy Star Universe
## 7899 Transworld Surf
## 7900 God Eater Resurrection
## 7901 Tenchu: Fatal Shadows
## 7902 Active Health with Carol Vorderman
## 7903 Escape The Museum
## 7904 The Legend of Spyro: A New Beginning
## 7905 International Soccer
## 7906 Sing4: The Hits Edition
## 7907 Jewel Master: Cradle of Athena
## 7908 Princess Maker: Yumemiru Yosei
## 7910 Big Air
## 7911 Shining Force II
## 7912 Gallop Racer
## 7913 Harry Potter and the Prisoner of Azkaban
## 7914 NASCAR Unleashed
## 7915 3rd Super Robot Wars Z Jigoku Hen
## 7916 Sudoku Gridmaster (JP sales)
## 7917 Dynasty Warriors Gundam
## 7918 Taiko no Tatsujin: Wii U Version!
## 7919 Monsters vs. Aliens
## 7920 CSI: Fatal Conspiracy
## 7921 College Slam
## 7922 Arcania: Gothic 4
## 7923 Mushroom Men: The Spore Wars
## 7924 Zumba Fitness Rush
## 7925 Pro Yaky? Spirits 4
## 7926 Pictionary
## 7927 SoulCalibur Legends
## 7928 Daigasso! Band Brothers
## 7929 Rise of the Kasai
## 7930 Thoroughbred Breeder
## 7931 F1 2011
## 7932 Momotarou Dentetsu World
## 7933 Nobunaga no Yabou: Souzou
## 7934 Doctor Who: Return to Earth
## 7935 The Munchables
## 7936 We Dance
## 7937 Chibi-Robo! Park Patrol
## 7938 Bolt
## 7939 Singstar: Ultimate Party
## 7940 Mathews Bowhunting
## 7941 3rd Super Robot Wars Z: Tengoku-Hen
## 7942 One Piece: Unlimited Adventure
## 7943 Remington Super Slam Hunting: North America
## 7944 Crash & Spyro Superpack
## 7945 Earth Defense Force: Insect Armageddon
## 7946 Face Training
## 7948 ThunderStrike 2
## 7949 Disney's Meet the Robinsons
## 7950 Call of Duty: World at War
## 7951 Pro Yaky? Spirits 2012
## 7952 Kuma-Tomo
## 7953 Super Real Mahjong P V
## 7954 Thomas the Tank Engine & Friends
## 7955 Grand Slam Tennis 2
## 7956 Penguin no Mondai X: Tenkuu no 7 Senshi
## 7957 The Scorpion King: Sword of Osiris
## 7958 Bubsy 3D
## 7959 Reel Fishing Paradise 3D
## 7960 NCAA Final Four 2001
## 7961 Farmtopia
## 7962 Robin Hood: Defender of the Crown
## 7963 SD Gundam GX
## 7964 R-Type Final
## 7965 Jackie Chan Adventures: Legend of the Dark Hand
## 7966 MotoGP
## 7967 Sega GT 2002
## 7968 Ty the Tasmanian Tiger 3: Night of the Quinkan
## 7969 WWE SmackDown vs. Raw 2009
## 7970 Pro Evolution Soccer 2014
## 7971 Samurai Warriors 2: Empires
## 7972 Blood Omen 2
## 7973 Jurassic: The Hunted
## 7974 J-League Pro Soccer Club o Tsukurou! 5
## 7975 Harry Potter: Quidditch World Cup
## 7976 Dance Central: Spotlight
## 7977 Little Battlers eXperience W
## 7978 Magical Starsign (US sales)
## 7979 Tekken Tag Tournament 2
## 7980 Hot Wheels: Battle Force 5
## 7981 Dragon Blade: Wrath of Fire
## 7982 La Pucelle: Tactics
## 7983 Phantasy Star Nova
## 7984 SBK X: Superbike World Championship
## 7985 Samurai Warriors: State of War
## 7986 Tiger Woods PGA Tour 07
## 7987 Call of Juarez
## 7988 Star Wars: The Clone Wars & Tetris Worlds
## 7989 The Bee Game
## 7990 EverQuest Online Adventures: Frontiers
## 7991 Cabela's Survival: Shadows of Katmai
## 7992 NBA Ballers: Chosen One
## 7993 WWE All Stars
## 7994 Treasures of the Deep
## 7995 Phantasy Star Online Ver. 2
## 7996 EyePet & Friends
## 7997 The Lord of the Rings: War in the North
## 7998 Major League Baseball 2K10
## 7999 Fight Club
## 8000 Hello Kitty: Birthday Adventures
## 8001 Syndicate
## 8002 Dance Dance Revolution: Disney Grooves
## 8003 Pure Futbol
## 8004 Harvest Moon: A Wonderful Life Special Edition
## 8005 Sports Illustrated for Kids: Football
## 8006 The Last Airbender
## 8007 Happy Cooking
## 8008 .hack//Quarantine Part 4: The Final Chapter
## 8009 Close Combat: First to Fight
## 8010 MotoGP 14
## 8011 Indiana Jones and the Emperor's Tomb
## 8012 NBA Live 08
## 8013 Buffy the Vampire Slayer: Chaos Bleeds
## 8014 Half-Minute Hero
## 8015 Rock Band Track Pack Volume 2
## 8016 Reel Fishing II
## 8017 Ringling Bros. and Barnum & Bailey Circus
## 8018 The Walking Dead: Season One
## 8019 Ty the Tasmanian Tiger
## 8020 Dead or Alive
## 8021 Driving Emotion Type-S
## 8022 Siren
## 8023 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 8024 NARC
## 8025 Naruto Shippuden: Dragon Blade Chronicles
## 8026 Dynasty Warriors 8: Empires
## 8027 Super Robot Taisen J
## 8028 Evolve
## 8029 Nep League DS
## 8030 Ar tonelico 2: Melody of Metafalica
## 8031 de Blob 2
## 8032 Lips: Party Classics
## 8033 Casper: Friends Around the World
## 8034 Borderlands
## 8035 Jurassic Park III: Island Attack
## 8036 Chaotic: Shadow Warriors
## 8037 Ghostbusters: The Video Game
## 8038 GameBoy Wars
## 8039 Amplitude
## 8040 Alone in the Dark
## 8041 Company of Heroes: Anthology
## 8042 Shape Up
## 8043 Gauntlet: Seven Sorrows
## 8044 AirForce Delta Storm
## 8046 Monopoly Party
## 8047 Fear Effect 2: Retro Helix
## 8048 How to Train Your Dragon
## 8049 Remember Me
## 8050 International Superstar Soccer 2000 (JP weekly sales)
## 8051 Chocobo no Fushigi Dungeon for WonderSwan
## 8052 Klonoa: Door to Phantomile
## 8053 Vietcong: Purple Haze
## 8054 Hitman: HD Trilogy
## 8055 Atari Anniversary Advance
## 8056 Summer Athletics: The Ultimate Challenge
## 8057 Driver: San Francisco
## 8058 Metal Gear Ac!d 2
## 8059 Hatsune Miku and Future Stars: Project Mirai
## 8060 Let's TAP
## 8061 X-Men Origins: Wolverine
## 8062 TalkMan (Japan)
## 8063 Cabela's Adventure Camp
## 8064 LEGO Marvel's Avengers
## 8065 Bloody Roar: Primal Fury
## 8066 Shrek SuperSlam
## 8067 We Sing UK Hits
## 8068 Mega Man Soccer
## 8069 The Chronicles of Narnia: Prince Caspian
## 8070 ZhuZhu Puppies
## 8071 Rabbids Party Collection
## 8072 Trinity Universe
## 8073 Jewel Match
## 8074 FIFA Soccer 07
## 8075 Dungeon Travelers 2: The Royal Library & The Monster Seal
## 8076 Dying Light
## 8077 Vampire Savior: The Lord of Vampire
## 8078 Pokémon I Choose You / Squirtle Squad Game Boy Advance Video
## 8079 Super Robot Taisen UX
## 8080 Six Flags Fun Park
## 8081 Test Drive Off-Road Wide Open
## 8082 Guilty Gear Xrd: Sign
## 8083 Pro Yaky? Spirits 2011
## 8084 Ben 10 Ultimate Alien: Cosmic Destruction
## 8085 Dengeki Bunko Fighting Climax
## 8086 Battle Commander: Hachibushu Shura no Heihou
## 8088 Odin Sphere: Leifthrasir
## 8089 Bad Boys: Miami Takedown
## 8090 Jampack Vol. 1
## 8091 Spider-Man: Friend or Foe
## 8092 Mega Man X: Command Mission
## 8093 Tokyo Xtreme Racer DRIFT
## 8094 Moon
## 8095 FIFA Soccer 11
## 8096 LEGO Marvel Super Heroes
## 8097 Cabela's Big Game Hunter 2005 Adventures
## 8098 Disney Friends
## 8099 Sesame Street: Elmo's Letter Adventure
## 8100 Re-Volt
## 8101 Gokujou Parodius
## 8102 Hyperdimension Neptunia
## 8103 Gauntlet: Dark Legacy
## 8104 A.C.E.: Another Century's Episode 2
## 8105 Guitar Hero Live
## 8106 Shadow The Hedgehog
## 8107 Ridge Racer Unbounded
## 8108 Burnout Legends
## 8109 Horrid Henry: Missions of Mischief
## 8110 Batman: Vengeance
## 8111 Full Auto 2: Battlelines
## 8112 Soccer Tsuku Tokudai Gou: J-League Pro Soccer Club o Tsukurou
## 8113 The Adventures of Cookie & Cream
## 8114 Van Helsing
## 8115 Aliens: Colonial Marines
## 8116 Splatterhouse
## 8117 MindJack
## 8118 Dark Souls II
## 8119 Daigasso! Band Brothers P
## 8120 Gun
## 8121 World of Outlaws: Sprint Cars
## 8122 Marvel Super Hero Squad: Comic Combat
## 8123 SingStar Motown
## 8124 Cabela's Legendary Adventures
## 8125 F1 Challenge
## 8126 Transformers: Dark of the Moon
## 8127 Shadow Madness
## 8128 Tom Clancy's Ghost Recon: Future Soldier
## 8129 Tiger Woods PGA Tour 2004
## 8130 Aliens: Infestation
## 8131 Brink
## 8132 The Game of Life / Yahtzee / Payday
## 8133 American Chopper 2: Full Throttle
## 8134 Dynasty Warriors: Gundam 3
## 8135 FIFA 16
## 8136 Silent Hill 4: The Room
## 8137 Heavy Fire: Afghanistan
## 8138 Commandos 2: Men of Courage
## 8139 Doom (2016)
## 8140 Chuck E. Cheese's Party Games
## 8141 Pro Evolution Soccer 2013
## 8142 Pirates: Hunt For Blackbeard's Booty
## 8143 FIFA Soccer 2002
## 8144 Godzilla (2015)
## 8145 Race Pro
## 8146 Atari Anniversary Edition Redux
## 8147 Toukiden: The Age of Demons
## 8148 Fireblade
## 8149 Mercury Meltdown Revolution
## 8150 Disney's Tarzan Untamed
## 8151 WordJong Party
## 8152 Brunswick Circuit Pro Bowling
## 8153 Cabela's Dangerous Hunts 2009
## 8154 Velvet Assassin
## 8155 Ball Breakers
## 8156 Mobile Suit Gundam Seed Destiny: Generation of C.E.
## 8157 EyeToy: Groove
## 8159 Disgaea 4: A Promise Unforgotten
## 8160 Charlie and the Chocolate Factory
## 8161 Armored Core: Last Raven
## 8162 Tomb Raider: Underworld
## 8163 All Grown Up! Express Yourself
## 8164 College Hoops 2K7
## 8165 K-1 World Grand Prix
## 8166 Skate it
## 8167 Kidou Senshi Gundam: Senjou no Kizuna Portable
## 8169 Super Robot Taisen A Portable
## 8170 Juiced
## 8171 Looney Tunes: Back in Action
## 8172 Virtua Tennis
## 8173 Tales of the Tempest
## 8174 SimCity Creator (JP sales)
## 8175 Biohazard: Revival Selection
## 8176 Sonic Riders: Zero Gravity
## 8177 Driver: San Francisco
## 8178 UFC: Sudden Impact
## 8179 Shawn Johnson Gymnastics
## 8180 NBA Hoopz
## 8181 Captain America: Super Soldier
## 8182 TRON: Evolution
## 8183 Pac-Man World 3
## 8184 ESPN X Games Skateboarding
## 8185 Nancy Drew: The Hidden Staircase
## 8186 Brunswick Cosmic Bowling
## 8187 Star Wars: Battlefront II
## 8188 Speedball 2100
## 8189 LEGO Island 2: The Brickster's Revenge
## 8190 College Hoops 2K8
## 8191 FIFA 17
## 8192 Fancy Nancy: Tea Party Time!
## 8193 Backyard Basketball
## 8194 Madden NFL 09
## 8195 Scooby-Doo! Unmasked
## 8196 Summon Night 4
## 8197 Pro Yaky? Spirits 5
## 8198 NHL 2004
## 8199 Namco Museum: 50th Anniversary
## 8200 You Don't Know Jack
## 8201 Marvel Super Hero Squad: The Infinity Gauntlet
## 8202 NFL 2K2
## 8203 My French Coach
## 8204 Camp Rock: The Final Jam
## 8206 Castlevania Judgment
## 8207 Dead or Alive Paradise
## 8208 The Suffering: Ties That Bind
## 8209 Disney Sing It: Family Hits
## 8210 Ashes Cricket 2009
## 8211 EyeToy: Kinetic
## 8212 Petz: Horseshoe Ranch
## 8213 Army Men: Sarge's Heroes 2
## 8214 Stormrise
## 8215 Yu-Gi-Oh! Zexal World Duel Carnival
## 8216 Winning Eleven: Pro Evolution Soccer 2007
## 8217 Green Lantern: Rise of the Manhunters
## 8218 Monkey Island: Special Edition Collection
## 8219 Broken Sword: Shadows of the Templars - The Director's Cut
## 8220 The Wild Thornberrys: Animal Adventures
## 8221 MotoGP 10/11
## 8222 Jikkyou Powerful Pro Baseball 2016
## 8223 SEGA Bass Fishing Duel
## 8225 Hyperdimension Neptunia U: Action Unleashed
## 8226 Sports Illustrated for Kids: Baseball
## 8227 Fairytale Fights
## 8228 Mark Davis Pro Bass Challenge
## 8229 Rugrats: Royal Ransom
## 8230 Warriors of Might and Magic
## 8231 Open Season
## 8232 The Chronicles of Narnia: Prince Caspian
## 8233 Back to the Future: The Game
## 8234 Project Spark
## 8235 Backyard Sports Football: Rookie Rush
## 8236 Street Fighter: The Movie
## 8237 Lost in Blue 3
## 8238 World Championship Poker
## 8239 Global Defence Force
## 8240 Rapala Fishing Frenzy 2009
## 8241 Major League Baseball 2K6
## 8242 Major League Baseball 2K9
## 8243 SaGa 2: Hihou Densetsu - Goddess of Destiny
## 8244 Smash Court Tennis Pro Tournament
## 8245 The Cursed Crusade
## 8246 Super Robot Taisen L
## 8247 The Grim Adventures of Billy & Mandy
## 8248 NBA Inside Drive 2004
## 8249 The King of Fighters '97
## 8250 Dungeon Siege III
## 8251 Cabela's Big Game Hunter: Hunting Party
## 8252 Time Commando
## 8253 Professional Fisherman's Tour: Northern Hemisphere
## 8254 Iron Chef America: Supreme Cuisine
## 8255 Kekkaishi: Karasumori Ayakashi Kidan
## 8256 Gretzky NHL 2005
## 8257 FaceBreaker
## 8258 Squeeballs Party
## 8259 NCAA Football 09 All-Play
## 8260 Yakuza Zero: The Place of Oath
## 8261 The Hobbit
## 8262 The Secret World
## 8263 NHL 2K9
## 8264 X-Men: The Official Game
## 8265 True Crime: New York City
## 8266 Metal Arms: Glitch in the System
## 8267 PlayStation Move Heroes
## 8268 The Idolm@ster: Shiny Festa - Honey Sound / Funky Note / Groovy Tune
## 8269 Ice Age: Dawn of the Dinosaurs
## 8270 ESPN Final Round Golf 2002
## 8271 MDK2 Armageddon
## 8272 Exhibition Volume 02
## 8273 Watchmen: The End is Nigh - The Complete Experience
## 8274 Fight Night Round 2
## 8275 Sudoku Gridmaster
## 8276 Disney's Atlantis: The Lost Empire
## 8277 Power Pro Kun Pocket
## 8278 The King of Fighters '97
## 8279 Tamagotchi no Narikiri Challenge
## 8280 Goosebumps HorrorLand
## 8281 One Piece: Unlimited World Red
## 8282 Space Battleship Yamato: Harukanaru Hoshi Iscandar
## 8283 Sound Novel Evolution 1: Otogirisou Sosei-Hen
## 8284 Dementium: The Ward
## 8285 Psi-Ops: The Mindgate Conspiracy
## 8286 SWAT: Global Strike Team
## 8287 Despicable Me: The Game
## 8288 MX World Tour Featuring Jamie Little
## 8289 Goblin Commander: Unleash the Horde
## 8290 Hello Kitty: Happy Party Pals
## 8291 Ringling Bros. and Barnum & Bailey: Circus Friends
## 8292 Backyard NFL Football '09
## 8293 World Destruction League: Thunder Tanks
## 8294 Shin Megami Tensei IV: Final
## 8295 Age of Empires III: Complete Collection
## 8296 Finding Nemo: Escape to the Big Blue
## 8297 Backyard Baseball '10
## 8298 Resident Evil Director's Cut: Dual Shock Edition
## 8299 The Lord of the Rings: Aragorn's Quest
## 8300 Top Spin 2
## 8301 N3 II: Ninety-Nine Nights
## 8302 The King of Fighters '95
## 8303 RoadKill
## 8304 Hanjuku Eiyuu Tai 3D
## 8305 .hack//G.U. Vol.3//Redemption
## 8306 Chuck E. Cheese's Party Games
## 8307 Super Robot Taisen Compact 2 Dai-1-Bu
## 8308 Looney Tunes: Back in Action
## 8309 Tak: The Great Juju Challenge
## 8310 Macross Ultimate Frontier
## 8311 Cabela's Legendary Adventures
## 8312 Jillian Michaels Fitness Ultimatum 2011
## 8313 Pursuit Force: Extreme Justice
## 8315 Hunter: The Reckoning Redeemer
## 8316 The Rise of the Argonauts
## 8317 NHL 07
## 8318 Pro Evolution Soccer 2014
## 8319 Tokyo Xtreme Racer
## 8320 Fighter Maker
## 8321 Bee Movie Game
## 8322 Backyard NFL Football '10
## 8323 Professor Heinz Wolff's Gravity
## 8324 Thief: Deadly Shadows
## 8325 Buzz! Brain of the UK
## 8326 NBA 09: The Inside
## 8327 Transformers: Prime
## 8328 Batman Begins
## 8329 Transformer: Rise of the Dark Spark
## 8330 Glover
## 8331 Dragon Ball GT: Game Boy Advance Video Volume 1
## 8332 Luxor 3
## 8333 Bratz Kidz
## 8334 Fairytale Fights
## 8336 MotoGP 09/10
## 8337 Mahjong Fight Club
## 8338 World Driver Championship
## 8339 Bomberman 64: The Second Attack!
## 8340 Turok 3: Shadow of Oblivion
## 8341 Spawn: Armageddon
## 8342 Codename: Kids Next Door: Game Boy Advance Video Volume 1
## 8343 Zoo Hospital
## 8344 Pokémon Beach Blank-out Blastoise / Go West Young Meowth Game Boy Advance Video
## 8345 Time and Eternity
## 8346 Major League Baseball 2K9
## 8347 Gundam Assault Survive
## 8348 Disney TH!NK Fast: The Ultimate Trivia Showdown
## 8349 Fate/Stay Night [Réalta Nua]
## 8350 Disney's Home on the Range
## 8351 Sid Meier's Civilization IV
## 8352 Jikkyou Powerful Pro Yakyuu 2013
## 8353 Space Griffon VF-9
## 8354 Family Feud Decades
## 8355 NBA Live 16
## 8356 CSI: Fatal Conspiracy
## 8357 Solitaire Overload Plus
## 8358 .hack//G.U. Vol.1//Rebirth
## 8359 Gyakuten Saiban 3
## 8360 Tak: Mojo Mistake
## 8361 Gallop Racer 2001
## 8362 Nightmare Creatures II
## 8363 Marble Saga: Kororinpa
## 8364 Fuzion Frenzy 2
## 8365 Catwoman
## 8366 Monsters vs. Aliens
## 8367 Country Dance: All Stars
## 8368 Garfield: Lasagna World Tour
## 8369 Teenage Mutant Ninja Turtles: Game Boy Advance Video Volume 1
## 8370 Disney's Planes
## 8371 Bomberman Land
## 8372 Bomberman B-Daman
## 8373 Terminator 3: The Redemption
## 8374 World Destruction League: Thunder Tanks
## 8375 Beat Down: Fists of Vengeance
## 8376 Reloaded
## 8378 MotoGP 15
## 8379 SSX On Tour
## 8380 Hot Wheels: Beat That!
## 8381 G-Force
## 8382 James Bond 007: Everything or Nothing
## 8383 Naruto Shippuden: Ultimate Ninja 5
## 8384 Shrek Extra Large
## 8385 Final Fantasy V
## 8386 World Tour Soccer 2006
## 8387 Gunvalkyrie
## 8388 NickToons: Racing
## 8389 VR Golf '97
## 8390 Michael Jackson: The Experience 3D
## 8391 State of Emergency
## 8392 Digimon Story: Cyber Sleuth
## 8393 Off-World Interceptor Extreme
## 8394 Bakugan Battle Brawlers: Defenders of the Core
## 8395 Disney Golf
## 8396 The Naked Brothers Band: The Video Game
## 8397 Custom Robo Arena
## 8398 Clock Tower II: The Struggle Within
## 8399 Batman Beyond: Return of the Joker
## 8400 Surf's Up
## 8401 Jikkyou Powerful Pro Baseball 2016
## 8402 Mega Man Network Transmission
## 8403 I'm A Celebrity: Get Me Out of Here!
## 8404 Pursuit Force
## 8405 Densetsu no Stafi 4
## 8406 Shin Megami Tensei: Devil Summoner 2 - Raidou Kuzunoha vs. King Abaddon (JP sales)
## 8407 Naval Assault: The Killing Tide
## 8408 Tokimeki Memorial: Private Collection
## 8409 RC Revenge Pro
## 8410 Valkyria Chronicles
## 8411 Hellboy: The Science of Evil
## 8412 Backyard Wrestling: Don't Try This at Home
## 8413 Zoo Keeper
## 8414 Gauntlet: Dark Legacy
## 8415 Toukiden Kiwami
## 8416 Far East of Eden II: Manji Maru
## 8417 Lost Kingdoms
## 8418 WRC 2: FIA World Rally Championship
## 8419 Blood Bowl
## 8420 Matchbox Cross Town Heroes
## 8421 Wolfenstein 3D
## 8422 Nobunaga no Yabou: Tenshoki
## 8423 Learning to Spell
## 8424 Go, Diego, Go! Safari Rescue
## 8425 Super Power League
## 8426 Easy Piano
## 8427 Street Fighter Alpha 2
## 8428 Dragon Quest X
## 8429 Payday 2
## 8430 25 to Life
## 8431 Sumikko Gurashi: Koko ga Ochitsukundesu
## 8432 NASCAR '15
## 8433 TransFormers Animated: The Game
## 8434 Fracture
## 8435 Sega Superstars
## 8436 Midway Arcade Treasures
## 8437 Leisure Suit Larry: Magna Cum Laude
## 8438 Mousetrap / Operation / Simon
## 8439 Klonoa
## 8441 NBA 09: The Inside
## 8442 Spyro: Shadow Legacy
## 8443 Resident Evil
## 8444 Wildstar
## 8445 Dragon Ball: Fusions
## 8446 Apache: Air Assault
## 8447 TOEIC Test Training DS
## 8448 Jikkyou Powerful Pro Yakyuu 2014
## 8449 Senran Kagura: Estival Versus
## 8450 Itoi Shigesato no Bass Tsuri No. 1
## 8451 Cubivore: Survival of the Fittest
## 8452 The Sims 3: Seasons
## 8453 Anarchy Reigns
## 8454 FlatOut
## 8455 Project X Zone 2: Brave New World
## 8456 NCAA Basketball 09
## 8457 Bakugan Battle Brawlers: Defenders of the Core
## 8458 Mr. Do!'s Castle
## 8459 Death Trap
## 8460 Armor Ambush
## 8461 Parodius
## 8462 Thrillville: Off the Rails
## 8463 Hyperdimension Neptunia Victory
## 8464 Taz Wanted
## 8465 Mobile Suit Gundam: Extreme VS Force
## 8466 Sid Meier's Pirates!
## 8467 MLB 16: The Show
## 8468 Phantasy Star Online 2
## 8469 Vehicular Combat League presents Motor Mayhem
## 8470 PoPoLoCrois: Hajimari no Bouken
## 8471 Star Wars: Super Bombad Racing
## 8472 Hamster Heroes
## 8473 Hot Wheels Velocity X
## 8474 Ar Nosurge: Ode to an Unborn Star
## 8475 Chaotic: Shadow Warriors
## 8476 Leisure Suit Larry: Box Office Bust
## 8477 Alien Resurrection
## 8478 World Tour Soccer 2005
## 8479 Dungeon Siege: Throne of Agony
## 8480 Spider-Man: Web of Shadows - Amazing Allies Edition
## 8481 F1 2011
## 8482 Rio
## 8483 Gunslingers
## 8484 Create
## 8485 Lufia: Curse of the Sinistrals
## 8486 El Shaddai: Ascension of the Metatron
## 8487 ESPN College Hoops
## 8488 Thor: God of Thunder
## 8489 F1 Championship Season 2000
## 8490 Guilty Gear Judgment
## 8491 Pen 1 Grand Prix: Penguin no Mondai Special
## 8492 Clash of the Titans
## 8493 Around the World in 80 Days
## 8494 Robotech: Battlecry
## 8495 True Swing Golf
## 8496 Zapper: One Wicked Cricket!
## 8497 Bomberman Land
## 8498 Paws & Claws: Pet Resort
## 8499 Kya: Dark Lineage
## 8500 Dynasty Warriors 8: Xtreme Legends
## 8501 Curious George
## 8502 Monster Jam
## 8503 Medieval Games
## 8504 Stronghold 3
## 8505 The Amazing Spider-Man (Console Version)
## 8506 Kid Adventures: Sky Captain
## 8507 Lethal Skies II
## 8508 Doctor Lautrec and the Forgotten Knights
## 8509 Disney's American Dragon Jake Long: Attack of the Dark Dragon
## 8510 Godzilla Unleashed
## 8511 Kamaitachi no Yoru × 3
## 8512 Tom and Jerry: Infurnal Escape
## 8513 The Legend of Heroes VII: The Trail of Zero
## 8514 Warriors Orochi 3
## 8515 King's Field
## 8516 Hannah Montana: Rock Out the Show
## 8517 Let's Ride: Sunshine Stables
## 8518 World Stadium 4
## 8519 Midway Arcade Treasures 2
## 8520 Hot Wheels World Race
## 8521 San Goku Shi Taisen DS
## 8522 Kawa no Nushi Tsuri
## 8523 N2O: Nitrous Oxide
## 8524 Magic: The Gathering - Battlegrounds
## 8525 Heroes over Europe
## 8526 Dancing With The Stars
## 8527 Major League Baseball 2K12
## 8528 Pro Evolution Soccer 2015
## 8529 Bladestorm: Nightmare
## 8530 Otogirisou
## 8531 SD Gundam G Generation 3D
## 8532 Crash Tag Team Racing
## 8533 Grease Dance
## 8534 Ready 2 Rumble Revolution
## 8535 My Baby 3 & Friends
## 8536 NASCAR '14
## 8537 TimeSplitters: Future Perfect
## 8538 Midway Arcade Treasures 3
## 8539 Dr. Muto
## 8540 Beowulf: The Game
## 8541 Puzzle Quest: Galactrix
## 8542 DS Rakubiki Jiten
## 8543 SeaWorld Adventure Parks: Shamu's Deep Sea Adventure
## 8544 Fatal Frame II: Crimson Butterfly
## 8545 Angry Birds Trilogy
## 8546 Dewy's Adventure
## 8547 Shadow Man: 2econd Coming
## 8548 Yu-Gi-Oh! 5D's Tag Force 6
## 8549 NPPL: Championship Paintball 2009
## 8550 Dynasty Warriors 4
## 8551 Wakeboarding Unleashed Featuring Shaun Murray
## 8552 The Incredibles: Rise of the Underminer
## 8553 Jikkyou Powerful Pro Yakyuu 3 '97 Haru
## 8555 The BIGS
## 8556 Flushed Away
## 8557 Eragon
## 8558 Scarface: Money. Power. Respect.
## 8559 Summon Night EX-Thesis: Yoake no Tsubasa
## 8560 Pro Yaky? Spirits 3
## 8561 Silent Scope 3
## 8562 World Series of Poker: Tournament of Champions 2007 Edition
## 8563 NASCAR Heat 2002
## 8564 Namco Classic Fighter Collection
## 8565 International Superstar Soccer Deluxe
## 8566 TNA iMPACT!
## 8567 Intellivision Lives!
## 8568 Field Commander
## 8569 Robots
## 8570 Little League World Series Baseball 2009
## 8571 The King of Fighters XII
## 8572 Doctor Who: Evacuation Earth
## 8573 Murdered: Soul Suspect
## 8574 Ener-G: Dance Squad
## 8575 Our House
## 8576 SimEarth: The Living Planet
## 8577 Major League Baseball 2K11
## 8578 Sengoku Basara: Chronicle Heroes
## 8579 NBA 2K12
## 8580 The Wild Thornberrys: Chimp Chase
## 8581 Power Stakes
## 8582 Fighters Destiny
## 8583 Asteroids Hyper 64
## 8584 The Powerpuff Girls: Chemical X-Traction
## 8585 Jikkyou Powerful Pro Yakyuu Basic-han 2001
## 8586 Tom and Jerry in Fists of Furry
## 8587 Hydro Thunder
## 8588 Space Invaders
## 8589 Starcraft 64
## 8590 Destruction Derby 64
## 8591 Buck Bumble
## 8592 California Speed
## 8593 Wonder Project J2: Koruro no Mori no Josette
## 8594 Culdcept SAGA
## 8595 Take A Break's: Puzzle Master
## 8596 Dragon Ball: Origins 2
## 8597 Minna no DS Seminar: Kanpeki Kanji Ryoku
## 8598 Innocent Life: A Futuristic Harvest Moon
## 8599 The Crew
## 8600 Macross Ace Frontier
## 8601 Black & Bruised
## 8602 Sherlock Holmes vs. Jack the Ripper
## 8603 .hack//G.U. Vol.2//Reminisce (jp sales)
## 8604 Rapala Pro Fishing
## 8605 TimeShift
## 8606 Blitz: The League
## 8607 Scripps Spelling Bee
## 8608 MotionSports: Adrenaline
## 8609 Ener-G Horse Riders
## 8610 Time Hollow
## 8611 Farming Simulator 2013
## 8612 Rudolph the Red-Nosed Reindeer
## 8613 Shinobido 2: Tales of the Ninja
## 8614 SpongeBob's Truth or Square
## 8615 Ghost in the Shell: Stand Alone Complex
## 8616 Rondo of Swords (US sales)
## 8617 Bulletstorm
## 8618 Battle Soccer: Field no Hasha
## 8619 Shaun White Skateboarding
## 8620 MLB 11: The Show
## 8622 Amped 3
## 8623 Family Party: 30 Great Games Outdoor Fun
## 8624 FlatOut 2
## 8625 Naruto: Ultimate Ninja Heroes 2 - The Phantom Fortress
## 8626 FIFA Soccer 96
## 8627 Burger Island
## 8628 Dynasty Warriors 8
## 8629 NCAA Final Four 2001
## 8630 Tak and the Guardians of Gross
## 8631 Just Dance: Disney Party
## 8632 LEGO The Lord of the Rings
## 8633 Dengeki Bunko Fighting Climax
## 8634 J-League Jikkyou Winning Eleven 2000
## 8635 Eve: The Lost One
## 8636 Chessmaster: The Art of Learning
## 8637 Yu-Gi-Oh! 5D's: Duel Transer
## 8638 LEGO Legends of Chima: Laval's Journey
## 8639 Konami Krazy Racers
## 8640 Saturday Night Slam Masters
## 8641 Blitz: The League II
## 8642 F-Zero: GP Legend
## 8643 Racing Lagoon
## 8644 Victorious: Hollywood Arts Debut
## 8645 Mr. Driller 2
## 8646 Just Sing!
## 8647 Darksiders II
## 8648 Dragon's Lair Trilogy
## 8649 Trivial Pursuit: Bet You Know It
## 8650 Imagine: Ice Champions
## 8651 J-League Pro Soccer Club o Tsukurou! 6: Pride of J
## 8652 Nicktoons: MLB
## 8653 Sniper: Ghost Warrior
## 8654 Left Brain Right Brain: Use Both Hands Train Both Sides
## 8655 Rio
## 8656 Power Rangers Double Pack
## 8657 Mugen Souls
## 8658 Yakuza Kiwami
## 8659 Pachi-Slot Kanzen Kouryaku 3: Universal Koushiki Gaido Volume 3
## 8660 BCFX: The Black College Football Xperience, The Doug Williams Edition
## 8661 FIFA Soccer 97
## 8662 Saw II: Flesh & Blood
## 8663 Psychic Force
## 8664 Trigger Man
## 8665 Bomberman Land Touch! 2
## 8666 Michael Jackson: The Experience
## 8667 The Godfather: Blackhand Edition
## 8668 StarBlade α
## 8669 Kidou Senshi Gundam: Giren no Yabou - Axis no Kyoui
## 8670 Tiger Woods PGA Tour 2004
## 8671 Monster House
## 8672 Angry Birds Star Wars
## 8673 Backyard Sports: Sandlot Sluggers
## 8674 Guilty Gear Xrd: Sign
## 8675 Arcade Zone
## 8676 SpongeBob's Boating Bash
## 8677 7th Dragon III Code: VFD
## 8678 DiRT 3
## 8679 Culdcept
## 8680 Birds of Steel
## 8681 Rudolph the Red-Nosed Reindeer
## 8682 WWE '13
## 8683 MX 2002 Featuring Ricky Carmichael
## 8684 Halo Triple Pack
## 8685 Street Racer
## 8686 Bomberman
## 8687 NBA 2K3
## 8688 Arcana Heart
## 8689 NHL 2005
## 8690 World Soccer Winning Eleven 2010: Aoki Samurai no Chousen
## 8691 Infected
## 8692 Battlestar Galactica
## 8693 The Walking Dead: Season One
## 8694 Kingdom Hearts: Birth by Sleep - Final Mix
## 8695 Bust-A-Move Bash!
## 8696 Block Party
## 8697 Toriko: Gourmet Monsters!
## 8698 The Incredible Hulk: The Pantheon Saga
## 8699 Darksiders II
## 8700 Megamind: Ultimate Showdown
## 8701 The Idolm@ster 2
## 8702 Space Camp
## 8703 Imagine: Music Fest
## 8704 AC/DC LIVE: Rock Band Track Pack
## 8705 Senran Kagura: Sh?jo-tachi no Shinei
## 8706 Ultimate Spider-Man
## 8707 Fist of the North Star: Ken's Rage
## 8709 He-Man: Power of Grayskull
## 8710 WordJong
## 8711 Putty Squad
## 8712 Polaris SnoCross
## 8713 Wing Commander III: Heart of the Tiger
## 8714 Top Spin 4
## 8715 Prince of Persia: The Forgotten Sands
## 8716 Mat Hoffman's Pro BMX 2
## 8717 Muppet RaceMania
## 8718 Namco Museum Vol.5
## 8719 Courier Crisis
## 8720 Bleach: Dark Souls
## 8721 The Oregon Trail
## 8722 Digimon Battle Spirit 2
## 8723 Winning Post 3
## 8724 FIFA 06: Road to FIFA World Cup
## 8725 Driven
## 8726 F.E.A.R. 3
## 8727 de Blob 2
## 8728 Warhammer 40,000: Fire Warrior
## 8729 Hot Wheels: Battle Force 5
## 8730 James Noir's Hollywood Crimes
## 8731 Deadly Premonition
## 8732 Bomberman
## 8733 MTV Music Generator 2
## 8734 The Quest Trio
## 8735 Chaotic: Shadow Warriors
## 8736 Space Invaders Extreme
## 8737 Burnout 2: Point of Impact
## 8738 Paris-Dakar Rally
## 8739 All-Pro Football 2K8
## 8740 Dragon Ball Z: Harukanaru Densetsu (JP sales)
## 8741 Atelier Iris: Eternal Mana
## 8742 Blinx 2: Masters of Time & Space
## 8743 Stormrise
## 8744 NHL 2K10
## 8745 FIFA Street 2
## 8746 Tak: The Great Juju Challenge
## 8747 Deponia
## 8748 Harvest Moon: The Lost Valley
## 8749 Knockout Kings 2003
## 8750 NCAA Football 2004
## 8751 XGIII: Extreme G Racing
## 8752 NHL 17
## 8753 Jewel Quest Solitaire
## 8754 Metal Gear Solid V: Ground Zeroes
## 8755 Digimon World 4
## 8756 Cars: Race-O-Rama
## 8757 Disney's Story Studio: Disney's Mulan
## 8758 Klax
## 8759 Pressure Cooker
## 8760 Saturn Bomberman
## 8762 Jikkyou Powerful Pro Yakyuu Portable
## 8763 The Adventures of Tintin: The Game
## 8764 American Chopper
## 8765 Sonny with a Chance
## 8766 Murdered: Soul Suspect
## 8767 Farm Frenzy: Animal Country
## 8768 Kingdom Under Fire: Heroes
## 8769 Wolfenstein: The Old Blood
## 8770 The Terminator: Dawn of Fate
## 8771 Cartoon Network Collection: Game Boy Advance Video Special Edition
## 8772 Naruto Shippuden: Legends: Akatsuki Rising
## 8773 Scooby-Doo! Unmasked
## 8774 Streak: Hoverboard Racing
## 8775 Samurai Warriors: Katana
## 8776 Project Sylpheed: Arc of Deception
## 8777 Enthusia Professional Racing
## 8778 NCAA GameBreaker 2001
## 8779 Get On Da Mic
## 8780 Heroes of Mana
## 8781 Jurassic: The Hunted
## 8782 Army Men: Sarge's War
## 8783 Horse Life Adventures
## 8784 Amagami
## 8785 Ice Age 2: The Meltdown
## 8786 Jikkyou Powerful Pro Yakyuu 2009
## 8787 Blazing Angels 2: Secret Missions of WWII
## 8788 Bigfoot: Collision Course
## 8789 Marvel Super Hero Squad: The Infinity Gauntlet
## 8790 Kidou Senkan Nadesico
## 8791 Tears to Tiara II: Heir of the Overlord
## 8792 Frogger's Adventures: The Rescue
## 8793 The Incredibles: Rise of the Underminer
## 8794 Darksiders
## 8795 The Secret Saturdays: Beasts of the 5th Sun
## 8796 Countdown: The Game
## 8797 Active Life Explorer
## 8798 MLB Power Pros 2008
## 8799 The Fairly Odd Parents: Clash with the Anti-World
## 8800 Theatrhythm Dragon Quest
## 8801 Major League Baseball 2K10
## 8802 Naruto: Powerful Shippuden
## 8803 Disney's The Lion King: Simba's Mighty Adventure
## 8804 Family Party: Fitness Fun
## 8805 Thor: God of Thunder
## 8806 Fantastic Four: Rise of the Silver Surfer
## 8807 Metal Slug Anthology
## 8808 GoldenEye 007 (2010)
## 8809 Jikkyou Powerful Pro Yakyuu 2012
## 8810 All Japan Pro Wrestling featuring Virtua
## 8811 Rudra no Hihou
## 8812 Gundam Breaker 2
## 8813 Prince of Persia: The Sands of Time
## 8814 Cake Mania: In The Mix!
## 8815 Zoids: Battle Legends
## 8816 World Series Baseball 2K3
## 8817 Serious Sam
## 8818 Kowloon's Gate
## 8819 Killer7
## 8820 Kingdom of Paradise
## 8821 Hidden Mysteries: Salem Secrets - Witch Trials of 1692
## 8822 NBA Street Homecourt
## 8823 The Sims Medieval: Pirates and Nobles
## 8824 The Cursed Crusade
## 8825 Super Monkey Ball Adventure
## 8826 Kids Learn Math: A+ Edition
## 8827 FIFA Soccer 2002
## 8828 Build-A-Bear Workshop: Welcome to Hugsville
## 8829 Street Fighter Anniversary Collection
## 8830 Final Fantasy XI: Vana'diel Collection 2008
## 8831 Suzumiya Haruhi no Yakusoku
## 8832 Shadow Ops: Red Mercury
## 8833 Indigo Prophecy
## 8834 Mind Zero
## 8835 World League Soccer
## 8836 NBA ShootOut 2001
## 8837 Earth Defense Force 2025
## 8838 Spider-Man: Friend or Foe
## 8839 Ultimate Board Game Collection
## 8840 Syndicate
## 8841 Samurai Shodown Anthology
## 8842 NBA 09: The Inside
## 8843 Musashi: Samurai Legend
## 8844 Saint Seiya: Soldiers' Soul
## 8845 Terraria
## 8846 Castlevania: Lords of Shadow - Mirror of Fate
## 8847 3rd Super Robot Wars Z: Tengoku-Hen
## 8848 Fantasia: Music Evolved
## 8849 Pokémon: Johto Photo Finish: Game Boy Advance Video
## 8850 F1 2001
## 8851 The Legend of Heroes: Trails of Cold Steel II
## 8852 Top Gun: Combat Zones
## 8853 J-League Victory Goal
## 8854 Bakugan Battle Brawlers: Defenders of the Core
## 8855 Oreshika: Tainted Bloodlines
## 8856 White Knight Chronicles: Origins
## 8857 Return to PopoloCrois: A Story of Seasons Fairytale
## 8858 Spongebob Squarepants / Fairly Odd Parents Double Pack
## 8859 History Civil War: Secret Missions
## 8860 NHL 09
## 8861 Mirror's Edge Catalyst
## 8862 Derby Stallion 64
## 8863 Doraemon 3: Nobi Dai no Machi SOS!
## 8864 Space Station Silicon Valley
## 8865 Dark Rift
## 8866 Tokyo Xanadu
## 8867 All-Star Baseball 2003
## 8868 Burger Island
## 8869 Petz: Dogz Talent Show
## 8870 T'ai Fu: Wrath of the Tiger
## 8871 Rocky
## 8872 Ford Racing 2
## 8873 Odin Sphere: Leifthrasir
## 8874 Sam & Max: Season One
## 8875 Virtua Tennis 4
## 8876 Tetris Attack
## 8877 Candace Kane's Candy Factory
## 8878 BloodRayne 2
## 8879 Hot Wheels: Beat That!
## 8880 Soldier of Fortune: Payback
## 8881 Jaws Unleashed
## 8882 Pro Yaky? Spirits 6
## 8883 Star Trek: Voyager Elite Force
## 8884 X-Men: The Official Game
## 8885 Brain Boost: Gamma Wave
## 8886 Scarface: The World is Yours
## 8887 Rock Band: Metal Track Pack
## 8888 Chessmaster II
## 8889 All-Star Baseball 2003
## 8890 Scooby-Doo! Mystery Mayhem
## 8891 Winning Post 4
## 8892 Major League Baseball 2K13
## 8893 DreamWorks Super Star Kartz
## 8894 Pro Baseball Spirits 2015
## 8895 187: Ride or Die
## 8896 Curious George
## 8897 Strawberry Shortcake: Game Boy Advance Video Volume 1
## 8898 Armored Core: For Answer
## 8899 Geist
## 8901 Cardinal Syn
## 8902 Charm Girls Club: Pajama Party
## 8903 Street Fighter Alpha 3
## 8904 The Wizard of Oz: Beyond The Yellow Brick Road
## 8905 Mobile Suit Gundam Side Story III: Sabakareshi Mono
## 8906 Ridge Racer DS
## 8907 Warriors Orochi 3
## 8908 Nancy Drew: The White Wolf of Icicle Creek
## 8909 Super Street Fighter II
## 8910 Metal Gear Solid: Peace Walker HD Edition
## 8911 Battle Stadium D.O.N
## 8912 No.1 Muscle Ranking - Kinniku Banzuke Vol. 2: Aratanarugenkai Enochousen!
## 8913 Brain Boost: Beta Wave
## 8914 Power Pro Kun Pocket 9
## 8915 Rubik's World
## 8916 Gallop & Ride!
## 8917 Shenmue II
## 8918 Major League Baseball 2K8
## 8919 Capcom Classics Collection
## 8920 Fugitive Hunter: War on Terror
## 8921 The Incredible Hulk: Ultimate Destruction
## 8922 Prince of Persia: The Two Thrones
## 8923 Ore no Imouto ga Konna ni Kawaii wake ga Nai Portable
## 8924 Baseball Blast!
## 8925 Pac-Man World 3
## 8926 The Walking Dead: Season Two
## 8927 Harvest Moon: Hero of Leaf Valley
## 8928 Phantasy Star Online Episode I & II
## 8929 F1 2012
## 8931 Rayman Raving Rabbids
## 8932 Kung-Fu: High Impact
## 8933 SNK Arcade Classics Vol. 1
## 8934 Darkstalkers Chronicle: The Chaos Tower
## 8935 NHL 2K10
## 8936 Batman Begins
## 8937 Toy Story Racer
## 8938 Yakuza: Ishin
## 8939 F1 2011
## 8940 Disney's Donald Duck: Goin' Quackers
## 8941 Mobile Suit Gundam: Perfect One Year War
## 8942 Galerians
## 8943 Crash: Twinsanity
## 8944 DrumMania
## 8945 Yu-Gi-Oh! Nightmare Troubadour (US sales)
## 8946 Code:Realize - Sousei no Himegimi
## 8947 Hoppechan: Tsukutte! Asonde! Punipuni Town!!
## 8948 Deus Ex: Mankind Divided
## 8949 Arena Football
## 8950 Tamagotchi no Narikiri Channel
## 8951 Power Pro Kun Pocket 1+2
## 8952 Rayman Origins
## 8953 Thor: God of Thunder
## 8954 Medal of Honor: Infiltrator
## 8955 Risen 2: Dark Waters
## 8956 Blazing Dragons
## 8957 Geometry Wars: Galaxies
## 8958 Super Monkey Ball Deluxe
## 8959 Shin Megami Tensei: Devil Summoner - Soul Hackers
## 8960 Shin Chan: ¡Aventuras de Cine!
## 8961 Alien: Isolation
## 8962 High Velocity Bowling
## 8963 Tamagotchi Collection
## 8964 Pac-Man Party 3D
## 8965 NewU Fitness First Mind Body, Yoga & Pilates Workout
## 8966 Backyard Sports: Sandlot Sluggers
## 8967 Turbo Prop Racing
## 8968 Barbie Superpack: Secret Agent / Groovy Games
## 8969 Tom Clancy's Ghost Recon
## 8970 Dance Dance Revolution (North America)
## 8971 Bakugan Battle Brawlers: Defenders of the Core
## 8972 Mad Dash Racing
## 8973 Dreamworks 2-in-1 Party Pack
## 8974 Summon Night 5
## 8975 MotoGP 2: Ultimate Racing Technology
## 8976 Black * Rock Shooter: The Game
## 8977 Travel Games For Dummies
## 8978 BMX XXX
## 8979 SafeCracker: The Ultimate Puzzle Adventure
## 8980 Tiger Woods PGA Tour
## 8981 Dragon Ball Z: Idainaru Dragon Ball Densetsu
## 8982 Sonic Advance & Sonic Pinball Party Combo Pack
## 8983 Boktai: The Sun is in Your Hand
## 8984 Cars: Mater-National Championship
## 8985 Making History: The Great War
## 8986 Drawn to Life Collection
## 8987 Guilty Gear X2 #Reload
## 8988 Wizardry VII: Gadeia no Houshu
## 8989 Dynasty Warriors 8: Xtreme Legends
## 8990 Moshi Monsters: Katsuma Unleashed
## 8991 Elf: The Movie
## 8992 Metal Slug 7
## 8993 MLB SlugFest 20-03
## 8994 Tamagotchi no Appare! Niji Venture
## 8995 Grabbed by the Ghoulies
## 8996 Ys: The Oath in Felghana
## 8997 Shadow Hearts: From The New World
## 8998 Mega Man Powered Up
## 8999 CSI: 3 Dimensions of Murder
## 9000 Barbarian
## 9001 QuickSpot
## 9002 Deception IV: Blood Ties
## 9003 Tennis no Oji-Sama: Aim at The Victory!
## 9004 L.A. Rush
## 9005 Lunar 2: Eternal Blue(sales, but wrong system)
## 9006 Where the Wild Things Are
## 9007 Pipe Dreams 3D
## 9008 Derby Stallion Gold
## 9009 Adventure Time: Explore the Dungeon Because I Don't Know!
## 9010 Lost Dimension
## 9011 Fox Sports Golf '99
## 9012 Jurassic: The Hunted
## 9013 Power Rangers: Super Legends
## 9014 Sakura Wars GB
## 9015 Shining Force CD
## 9016 Rayman 3
## 9017 Fatal Frame
## 9018 The Fifth Element
## 9019 Kung Fu Panda 2
## 9020 Fast Food Panic
## 9021 Diner Dash: Flo on the Go
## 9022 Adrenalin Misfits
## 9023 Okaeri! Chibi-Robo! Happy Richie Oosouji
## 9024 Wild ARMs 4
## 9025 Haunted House
## 9026 Ratatouille
## 9027 G.I. Joe: The Rise of Cobra
## 9028 Casper: Spirit Dimensions
## 9029 Super Robot Taisen OG Saga: Endless Frontier (JP sales)
## 9030 Sengoku Musou 3 Empires
## 9031 Dream Pinball 3D
## 9032 Thunder Truck Rally
## 9033 Dishonored
## 9034 Klonoa: Empire of Dreams
## 9035 G.I. Joe: The Rise of Cobra
## 9036 Dragon Age: Origins - Ultimate Edition
## 9037 Balloon Pop
## 9038 Disney Infinity 2.0: Marvel Super Heroes
## 9039 Iron & Blood
## 9040 Asphalt: Urban GT 2
## 9041 Pinball Hall of Fame: The Gottlieb Collection
## 9042 Second Sight
## 9043 Spider-Man: Edge of Time
## 9044 Monster House
## 9045 Phantom Brave
## 9046 Just Cause
## 9047 ArmA II
## 9048 Championship Motocross 2001 featuring Ricky Carmichael
## 9049 Kenka Banchou 5: Otoko no Housoku
## 9050 Legend of the Guardians: The Owls of Ga'Hoole
## 9051 Doshin the Giant
## 9052 Shrek 2 and Shark Tale 2-in-1 Pack
## 9053 Star Ocean: Blue Sphere
## 9054 Mojo!
## 9055 Destroy All Humans! Big Willy Unleashed
## 9056 Age of Empires: Collector's Edition
## 9057 Ford Racing Off Road
## 9058 Kamen Rider Ryuki
## 9059 Front Mission Alternative
## 9060 World Championship Poker: Howard Lederer - All In
## 9061 FIFA Soccer 2005
## 9062 Cave Story 3D
## 9063 The Orange Box
## 9064 Super Dodgeball Brawlers
## 9065 Victorious Boxers: Revolution
## 9066 Record of Agarest War 2
## 9067 SBK 2011: FIM Superbike World Championship
## 9068 Power Stone
## 9069 Jonny Moseley Mad Trix
## 9070 Monster Lab
## 9071 Uta no * Prince-Sama: Repeat
## 9072 Senran Kagura Burst: Guren no Sh?jo-tachi
## 9073 MTV Music Generator 3: This Is the Remix
## 9074 Cake Mania 3
## 9075 .hack//Link
## 9076 Terminator 3: Rise of the Machines
## 9077 Star Wars: Knights of the Old Republic
## 9078 SSX On Tour
## 9079 NCAA College Basketball 2K3
## 9080 Class of Heroes
## 9081 Yogi Bear: The Video Game
## 9083 The Legend of Heroes II: Prophecy of the Moonlight Witch
## 9084 Cranium Kabookii
## 9085 Hero's Saga Laevatein Tactics
## 9086 Doom
## 9087 Gundam Breaker 2
## 9088 TRINITY: Souls of Zill O'll
## 9089 Mary-Kate and Ashley: Winners Circle
## 9090 PaRappa The Rapper 2
## 9091 Hexyz Force
## 9092 OutRun 2
## 9093 Okami
## 9094 Marvel vs. Capcom 2: New Age of Heroes
## 9095 Hitman: Blood Money
## 9096 Soukaigi
## 9097 Naruto Shippuden: Ninja Destiny 3
## 9098 Xevious 3D/G+
## 9099 Pipe Mania
## 9100 Gretzky NHL 06
## 9101 Shonen Jump's Shaman King: Master of Spirits
## 9102 PANGYA: Fantasy Golf
## 9103 NFL Blitz 20-03
## 9104 Sumikko Gurashi: Omise Hajimerundesu
## 9105 Pirates: The Legend of Black Kat
## 9106 Fur Fighters: Viggo's Revenge
## 9107 Krull
## 9108 Yu-Gi-Oh! Monster Capture GB
## 9109 Risen
## 9110 Top Spin 3
## 9111 Zapper: One Wicked Cricket!
## 9112 The Da Vinci Code
## 9113 Watch Dogs
## 9114 Mr. Driller: Drill Spirits
## 9115 Arctic Tale
## 9116 Scooby-Doo! Night of 100 Frights
## 9117 MX vs. ATV Reflex
## 9118 Anno 1701: Dawn of Discovery
## 9119 Chicken Shoot
## 9120 Dead to Rights
## 9121 Sphinx and the Cursed Mummy
## 9122 Cabela's Outdoor Adventures (2009)
## 9123 T.R.A.G. - Tactical Rescue Assault Group: Mission of Mercy
## 9124 Naruto RPG 2: Chidori vs Rasengan
## 9125 Destruction Derby Raw
## 9126 Project V6
## 9127 Farming Simulator 2012
## 9128 NFL Head Coach 09
## 9129 World Tour Soccer 2003
## 9130 Akiba's Trip
## 9131 Bravo Air Race
## 9132 Onimusha Essentials
## 9133 Blazing Angels 2: Secret Missions of WWII
## 9134 Gundam: The Battle Master
## 9135 Spyro: A Hero's Tail
## 9136 ¡Shin Chan Flipa en colores!
## 9137 Just Cause 3
## 9138 Eternal Poison
## 9139 Lord of the Rings: Tactics
## 9140 X-Blades
## 9141 Gretzky NHL 06
## 9142 Gungrave: Overdose
## 9143 Kidou Senshi Gundam: Shin Gihren no Yabou
## 9144 How to Train Your Dragon
## 9145 Your Shape: Fitness Evolved 2013
## 9146 My Fitness Coach: Club
## 9147 NBA ShootOut 2002
## 9148 SingStar Vol. 3
## 9149 The Granstream Saga
## 9150 Scene It? Bright Lights! Big Screen!
## 9151 Holy Invasion of Privacy, Badman! What Did I Do to Deserve This?
## 9153 Micro Machines 64 Turbo
## 9154 Bassmasters 2000
## 9155 Baldur's Gate: Dark Alliance
## 9156 Bio FREAKS
## 9157 Eternal Eyes
## 9158 Injustice: Gods Among Us
## 9159 Fate/Unlimited Codes
## 9160 Atari's Greatest Hits: Volume 1
## 9161 The Operative: No One Lives Forever
## 9162 International Cricket 2010
## 9163 Epidemic
## 9164 Monster House
## 9165 Dead or Alive 2
## 9166 Buck Fever
## 9167 NCAA Basketball Final Four 97
## 9168 Ecco the Dolphin: Defender of the Future
## 9169 Heroes over Europe
## 9170 The Bombing Islands
## 9171 Earth Defense Force 2: Invaders from Planet Space
## 9173 Monster Jam
## 9174 Robots
## 9175 Gyakuten Saiban 2
## 9176 Godzilla: Save the Earth
## 9177 Skylanders Giants
## 9178 Eragon
## 9179 Micro Machines
## 9180 Detective Barbie: The Mystery Cruise
## 9181 Jim Henson's the Muppets: On With the Show!
## 9182 Desire
## 9183 Valhalla Knights: Eldar Saga
## 9184 Lips: I Love The 80s
## 9185 Monster Hunter Diary: Poka Poka Airou Village DX
## 9186 Frank Thomas Big Hurt Baseball
## 9187 Tim Burton's The Nightmare Before Christmas: The Pumpkin King
## 9188 Power Pro Kun Pocket 8
## 9189 Sid Meier's Pirates!
## 9190 Enclave
## 9191 Bottom of the 9th
## 9192 Pro Yaky? Spirits 2014
## 9193 Dino Crisis 3
## 9194 Syberia
## 9195 Zoobles! Spring to Life!
## 9196 NFL Blitz 20-03
## 9197 The King of Fighters '94 (CD)
## 9198 The Walking Dead: Season Two
## 9199 Master Jin Jin's IQ Challenge
## 9200 The Darkness II
## 9201 Create
## 9202 Karaoke Revolution Glee: Volume 3
## 9203 Barbie Explorer
## 9204 Rango: The Video Game
## 9205 Disney's Chicken Little
## 9206 Power Gig: Rise of the SixString
## 9207 Transformers: Prime
## 9208 Agile Warrior F-111X
## 9209 NCIS
## 9210 Jikkyou Powerful Pro Yakyuu Wii
## 9211 Reality Fighters
## 9212 Dynasty Warriors 7: Empires
## 9213 Cabela's African Safari
## 9214 Ben 10 Galactic Racing
## 9215 College Hoops 2K8
## 9216 Super Puzzle Fighter II Turbo
## 9217 Ninjatown
## 9218 Star Wars: Jedi Power Battles
## 9219 Ultimate Muscle - The Kinnikuman Legacy: Legends vs New Generation
## 9220 Hard Rock Casino
## 9221 Space Venus starring Morning Musume
## 9222 To Heart
## 9223 Wild ARMs XF
## 9224 Doukyuusei
## 9225 RockMan & Forte
## 9226 Persona 4: Arena Ultimax
## 9227 NBA 2K13
## 9228 Science Papa
## 9229 Yu-Gi-Oh! Nightmare Troubadour (JP sales)
## 9230 MySims Collection
## 9231 Cities: Skylines
## 9232 Football Manager 2012
## 9233 Ape Escape Academy (jp sales)
## 9234 FIFA 06 Soccer
## 9235 Rayman Arena
## Platform Year Genre Publisher NA_Sales
## 1 Wii 2006 Sports Nintendo 41.49
## 2 NES 1985 Platform Nintendo 29.08
## 3 Wii 2008 Racing Nintendo 15.85
## 4 Wii 2009 Sports Nintendo 15.75
## 5 GB 1996 Role-Playing Nintendo 11.27
## 6 GB 1989 Puzzle Nintendo 23.20
## 7 DS 2006 Platform Nintendo 11.38
## 8 Wii 2006 Misc Nintendo 14.03
## 9 Wii 2009 Platform Nintendo 14.59
## 10 NES 1984 Shooter Nintendo 26.93
## 11 DS 2005 Simulation Nintendo 9.07
## 12 DS 2005 Racing Nintendo 9.81
## 13 GB 1999 Role-Playing Nintendo 9.00
## 14 Wii 2007 Sports Nintendo 8.94
## 15 Wii 2009 Sports Nintendo 9.09
## 16 X360 2010 Misc Microsoft Game Studios 14.97
## 17 PS3 2013 Action Take-Two Interactive 7.01
## 18 PS2 2004 Action Take-Two Interactive 9.43
## 19 SNES 1990 Platform Nintendo 12.78
## 20 DS 2005 Misc Nintendo 4.75
## 21 DS 2006 Role-Playing Nintendo 6.42
## 22 GB 1989 Platform Nintendo 10.83
## 23 NES 1988 Platform Nintendo 9.54
## 24 X360 2013 Action Take-Two Interactive 9.63
## 25 PS2 2002 Action Take-Two Interactive 8.41
## 26 GBA 2002 Role-Playing Nintendo 6.06
## 27 DS 2010 Role-Playing Nintendo 5.57
## 28 DS 2005 Puzzle Nintendo 3.44
## 29 PS2 2001 Racing Sony Computer Entertainment 6.85
## 30 X360 2011 Shooter Activision 9.03
## 31 GB 1998 Role-Playing Nintendo 5.89
## 32 X360 2010 Shooter Activision 9.67
## 33 3DS 2013 Role-Playing Nintendo 5.17
## 34 PS4 2015 Shooter Activision 5.77
## 35 PS3 2012 Shooter Activision 4.99
## 36 X360 2012 Shooter Activision 8.25
## 37 X360 2009 Shooter Activision 8.52
## 38 PS3 2011 Shooter Activision 5.54
## 39 PS2 2001 Action Take-Two Interactive 6.99
## 40 Wii 2008 Fighting Nintendo 6.75
## 41 PS3 2010 Shooter Activision 5.98
## 42 DS 2005 Simulation Nintendo 2.55
## 43 3DS 2011 Racing Nintendo 4.74
## 44 X360 2007 Shooter Microsoft Game Studios 7.97
## 45 PS4 2014 Action Take-Two Interactive 3.80
## 46 DS 2009 Action Nintendo 4.40
## 47 N64 1996 Platform Nintendo 6.91
## 48 PS2 2004 Racing Sony Computer Entertainment 3.01
## 49 Wii 2007 Platform Nintendo 6.16
## 50 3DS 2014 Role-Playing Nintendo 4.23
## 51 GB 1992 Adventure Nintendo 6.16
## 52 X360 2008 Action Take-Two Interactive 6.76
## 53 PS 1997 Racing Sony Computer Entertainment 4.02
## 54 3DS 2011 Platform Nintendo 4.89
## 55 PS3 2010 Racing Sony Computer Entertainment 2.96
## 56 PS3 2009 Shooter Activision 4.99
## 57 PS3 2008 Action Take-Two Interactive 4.76
## 58 SNES 1993 Platform Nintendo 5.99
## 59 GBA 2004 Role-Playing Nintendo 4.34
## 60 DS 2004 Platform Nintendo 5.08
## 61 Wii 2011 Misc Ubisoft 6.05
## 62 X360 2013 Shooter Activision 6.72
## 63 X360 2010 Shooter Microsoft Game Studios 7.03
## 64 N64 1996 Racing Nintendo 5.55
## 65 3DS 2012 Platform Nintendo 3.66
## 66 X360 2012 Shooter Microsoft Game Studios 6.63
## 67 PS 1997 Role-Playing Sony Computer Entertainment 3.01
## 68 PS3 2013 Shooter Activision 4.09
## 69 Wii 2010 Misc Ubisoft 5.84
## 70 PS 1999 Racing Sony Computer Entertainment 3.88
## 71 X360 2007 Shooter Activision 5.91
## 72 SNES 1994 Platform Nintendo 4.36
## 73 X360 2013 Misc Microsoft Game Studios 5.58
## 74 3DS 2012 Simulation Nintendo 2.01
## 75 DS 2007 Misc Nintendo 4.46
## 76 X360 2011 Role-Playing Bethesda Softworks 5.03
## 77 SNES 1992 Racing Nintendo 3.54
## 78 PS4 2015 Sports Electronic Arts 1.11
## 79 Wii 2010 Misc Nintendo 1.79
## 80 XB 2004 Shooter Microsoft Game Studios 6.82
## 81 Wii 2007 Misc Nintendo 3.81
## 82 DS 2012 Role-Playing Nintendo 2.91
## 83 PS3 2012 Action Electronic Arts 1.06
## 84 PC 2009 Simulation Electronic Arts 0.98
## 85 N64 1997 Shooter Nintendo 5.80
## 86 Wii 2007 Sports Sega 2.58
## 87 PS2 2001 Role-Playing Sony Computer Entertainment 2.91
## 88 PS 1999 Role-Playing SquareSoft 2.28
## 89 DS 2008 Role-Playing Nintendo 2.82
## 90 2600 1982 Puzzle Atari 7.28
## 91 PSP 2005 Action Take-Two Interactive 2.90
## 92 Wii 2010 Platform Nintendo 3.66
## 93 PS4 2015 Shooter Electronic Arts 2.93
## 94 PS4 2014 Shooter Activision 2.80
## 95 N64 1998 Action Nintendo 4.10
## 96 PS 1997 Platform Sony Computer Entertainment 3.78
## 97 NES 1988 Platform Nintendo 5.39
## 98 3DS 2014 Fighting Nintendo 3.24
## 99 X360 2008 Shooter Activision 4.79
## 100 X360 2011 Shooter Electronic Arts 4.46
## 101 Wii 2006 Action Nintendo 3.83
## 102 XOne 2015 Shooter Activision 4.52
## 103 Wii 2009 Misc Ubisoft 3.51
## 104 PS3 2011 Shooter Electronic Arts 2.85
## 105 PS2 2003 Racing Electronic Arts 3.27
## 106 PS 1998 Fighting Sony Computer Entertainment 3.27
## 107 PS 1998 Platform Sony Computer Entertainment 3.68
## 108 GC 2001 Fighting Nintendo 4.41
## 109 WiiU 2014 Racing Nintendo 3.13
## 110 PS4 2015 Role-Playing Bethesda Softworks 2.47
## 111 GC 2003 Racing Nintendo 4.12
## 112 Wii 2012 Misc Ubisoft 4.14
## 113 PS3 2013 Sports Electronic Arts 0.78
## 114 PS2 2004 Racing Electronic Arts 2.71
## 115 PS2 2002 Shooter Electronic Arts 2.93
## 116 PS3 2011 Action Sony Computer Entertainment 2.77
## 117 PS 1996 Platform Sony Computer Entertainment 3.23
## 118 Wii 2010 Sports 505 Games 3.50
## 119 X360 2008 Shooter Microsoft Game Studios 4.15
## 120 PS3 2009 Action Sony Computer Entertainment 3.27
## 121 PS3 2007 Shooter Activision 3.10
## 122 PS3 2011 Sports Electronic Arts 0.84
## 123 DS 2005 Misc Nintendo 1.67
## 124 PS3 2010 Action Take-Two Interactive 2.79
## 125 PS4 2014 Sports Electronic Arts 0.79
## 126 Wii 2010 Platform Nintendo 3.25
## 127 PS3 2011 Role-Playing Bethesda Softworks 2.55
## 128 NES 1986 Action Nintendo 3.74
## 129 PS3 2012 Action Ubisoft 2.64
## 130 XB 2001 Shooter Microsoft Game Studios 4.98
## 131 GBA 2004 Role-Playing Nintendo 2.57
## 132 PS2 2002 Role-Playing Sony Computer Entertainment 3.64
## 133 GB 2000 Role-Playing Nintendo 2.55
## 134 X360 2009 Shooter Microsoft Game Studios 4.34
## 135 X360 2010 Action Take-Two Interactive 3.70
## 136 GC 2002 Platform Nintendo 4.01
## 137 SNES 1992 Fighting Capcom 2.47
## 138 PC 2004 Role-Playing Activision 0.07
## 139 PS 1999 Action GT Interactive 3.11
## 140 X360 2010 Sports Microsoft Game Studios 3.92
## 141 X360 2011 Shooter Microsoft Game Studios 4.05
## 142 X360 2006 Shooter Microsoft Game Studios 3.54
## 143 PS2 2001 Action Konami Digital Entertainment 2.45
## 144 GEN 1992 Platform Sega 4.47
## 145 PS3 2008 Action Konami Digital Entertainment 2.63
## 146 PS 1998 Action Konami Digital Entertainment 3.18
## 147 PS3 2013 Action Sony Computer Entertainment Europe 2.41
## 148 PS2 2006 Role-Playing Square Enix 1.88
## 149 PS3 2008 Platform Sony Computer Entertainment 2.80
## 150 DS 2009 Role-Playing Nintendo 0.66
## 151 Wii 2007 Action LucasArts 3.66
## 152 PS 1998 Action Virgin Interactive 1.88
## 153 PS 1996 Fighting Sony Computer Entertainment 2.26
## 154 DS 2006 Simulation 505 Games 3.13
## 155 PS4 2014 Shooter Activision 2.49
## 156 NES 1988 Puzzle Nintendo 2.97
## 157 PS3 2009 Action Ubisoft 2.54
## 158 N64 1999 Fighting Nintendo 2.95
## 159 X360 2007 Adventure Ubisoft 3.28
## 160 PS3 2011 Action Warner Bros. Interactive Entertainment 2.70
## 161 X360 2009 Racing Microsoft Game Studios 2.99
## 162 PSP 2008 Role-Playing Capcom 0.47
## 163 GBA 2001 Platform Nintendo 3.14
## 164 GBA 2001 Racing Nintendo 2.62
## 165 GBA 2001 Platform Nintendo 3.21
## 166 N64 1999 Strategy Nintendo 3.18
## 167 PS3 2008 Shooter Activision 2.72
## 168 PS2 2001 Platform Universal Interactive 2.07
## 169 PS3 2014 Misc Sony Computer Entertainment 1.97
## 170 PS3 2009 Role-Playing Square Enix 1.74
## 171 GB 1989 Puzzle Nintendo 2.18
## 172 GB 1999 Misc Nintendo 3.02
## 173 X360 2012 Action Ubisoft 3.13
## 174 PS 2000 Role-Playing SquareSoft 1.62
## 175 PS2 2003 Role-Playing Electronic Arts 1.92
## 176 N64 1999 Platform Nintendo 3.33
## 177 X360 2009 Action Ubisoft 3.10
## 178 DS 2007 Puzzle Nintendo 1.22
## 179 PS 1997 Action Eidos Interactive 2.30
## 181 PS2 2004 Role-Playing Square Enix 0.65
## 182 PC 2012 Role-Playing Activision 2.43
## 183 GBA 2003 Platform Nintendo 2.93
## 184 WiiU 2012 Platform Nintendo 2.32
## 185 GB 1994 Platform Nintendo 2.49
## 186 X360 2012 Action Electronic Arts 1.08
## 187 DS 2007 Action Nintendo 1.90
## 188 SNES 1995 Platform Nintendo 2.10
## 189 3DS 2013 Simulation Nintendo 0.96
## 190 DS 2008 Sports Sega 1.64
## 191 PS2 2003 Shooter Electronic Arts 1.98
## 192 GB 1992 Platform Nintendo 2.71
## 193 X360 2010 Role-Playing Microsoft Game Studios 3.59
## 194 XOne 2014 Shooter Activision 3.21
## 195 PC 1996 Simulation Microsoft Game Studios 3.22
## 196 PS2 2006 Misc RedOctane 3.81
## 197 PS3 2009 Action Capcom 1.96
## 198 XOne 2014 Action Take-Two Interactive 2.66
## 199 PSP 2006 Action Take-Two Interactive 1.70
## 200 PS3 2010 Sports Electronic Arts 0.60
## 201 GB 1999 Platform Nintendo 3.40
## 202 PS 1996 Action Virgin Interactive 2.05
## 203 PS 1999 Sports Activision 3.42
## 204 WiiU 2014 Fighting Nintendo 2.59
## 205 PS 1999 Strategy Eidos Interactive 2.79
## 206 PS 1998 Platform Sony Computer Entertainment 3.36
## 207 Wii 2007 Shooter Nintendo 3.06
## 208 PS2 2007 Misc Activision 3.49
## 209 X360 2008 Role-Playing Bethesda Softworks 3.39
## 210 DS 2007 Role-Playing Nintendo 1.85
## 211 PS3 2007 Action Sony Computer Entertainment 2.31
## 212 PS2 2005 Sports Electronic Arts 3.98
## 213 DS 2007 Action LucasArts 2.89
## 214 N64 1997 Racing Nintendo 2.91
## 215 PSP 2010 Role-Playing Capcom 0.00
## 216 NES 1990 Puzzle Nintendo 2.62
## 217 PS3 2010 Action Sony Computer Entertainment 2.74
## 218 PC 2010 Strategy Activision 2.56
## 219 PS3 2007 Adventure Ubisoft 1.91
## 220 PS3 2014 Sports Electronic Arts 0.57
## 221 PS 1999 Racing Sony Computer Entertainment 2.57
## 222 PS4 2016 Sports Electronic Arts 0.28
## 223 X360 2011 Action Warner Bros. Interactive Entertainment 2.99
## 224 PS 2000 Action Atari 2.36
## 225 PS2 2003 Racing Vivendi Games 1.73
## 226 PS 2000 Sports Activision 3.05
## 227 Wii 2008 Simulation Nintendo 1.87
## 228 PS2 2002 Action Electronic Arts 1.94
## 229 X360 2011 Racing Microsoft Game Studios 2.08
## 230 PS 1996 Action Eidos Interactive 2.29
## 231 Wii 2007 Misc Activision 3.06
## 232 SNES 1991 Action Nintendo 2.42
## 233 GC 2002 Action Nintendo 2.60
## 234 Wii 2009 Sports Sega 1.89
## 235 3DS 2013 Action Nintendo 1.78
## 236 WiiU 2015 Shooter Nintendo 1.55
## 237 PS4 2014 Action Sony Computer Entertainment 1.78
## 238 X360 2007 Misc Activision 3.19
## 239 PS2 2004 Sports Electronic Arts 4.18
## 240 2600 1981 Platform Activision 4.21
## 241 PS2 2006 Sports Electronic Arts 3.63
## 242 PS2 2002 Action Activision 2.71
## 243 PS 2000 Role-Playing Enix Corporation 0.20
## 244 PS4 2015 Action Sony Computer Entertainment 1.96
## 245 PS3 2014 Shooter Activision 1.54
## 246 PS2 2005 Action Sony Computer Entertainment 2.71
## 247 WiiU 2012 Misc Nintendo 2.55
## 248 Wii 2010 Misc Ubisoft 2.67
## 249 PS2 2001 Sports Activision 2.66
## 250 PS2 2006 Sports Konami Digital Entertainment 0.10
## 251 X360 2006 Role-Playing Take-Two Interactive 2.82
## 252 NES 1987 Adventure Nintendo 2.19
## 253 PS2 2005 Racing Electronic Arts 2.03
## 254 PS3 2006 Shooter Sony Computer Entertainment 1.73
## 255 GEN 1991 Platform Sega 3.03
## 256 PS2 2005 Role-Playing Square Enix 2.20
## 257 X360 2013 Sports Electronic Arts 0.92
## 258 X360 2014 Shooter Activision 2.75
## 259 2600 1980 Shooter Atari 4.00
## 260 X360 2008 Role-Playing Microsoft Game Studios 2.51
## 261 XOne 2015 Shooter Microsoft Game Studios 2.64
## 262 WiiU 2013 Platform Nintendo 2.11
## 263 PS3 2009 Action Eidos Interactive 2.23
## 264 PS3 2011 Action Ubisoft 1.41
## 265 GBA 2001 Misc Namco Bandai Games 3.00
## 266 PS2 2004 Action Konami Digital Entertainment 1.46
## 267 PSP 2006 Platform Sony Computer Entertainment 2.45
## 268 PC 1995 Strategy Activision 1.70
## 269 3DS 2011 Action Nintendo 2.03
## 270 PS2 2005 Sports Electronic Arts 0.78
## 271 PS2 2003 Misc Sony Computer Entertainment 0.88
## 272 PS4 2016 Shooter Sony Computer Entertainment 1.30
## 273 PS3 2007 Racing Sony Computer Entertainment 1.28
## 274 X360 2011 Action Ubisoft 2.25
## 275 PS3 2009 Fighting Capcom 2.02
## 276 X360 2011 Sports Electronic Arts 0.84
## 277 NES 1989 Action Palcom 3.38
## 278 NES 1984 Racing Nintendo 2.04
## 279 PS 1997 Action Hasbro Interactive 3.79
## 280 PS2 2002 Sports Electronic Arts 3.36
## 281 PS4 2014 Action Ubisoft 1.40
## 282 PC 1997 Shooter Vivendi Games 4.03
## 283 SNES 1995 Platform Nintendo 1.65
## 284 PS2 2006 Sports Electronic Arts 0.71
## 285 Wii 2011 Action Nintendo 2.14
## 286 SNES 1992 Fighting Capcom 1.42
## 287 Wii 2007 Misc Take-Two Interactive 2.13
## 288 XOne 2015 Role-Playing Bethesda Softworks 2.45
## 289 PC 2007 Role-Playing Activision 2.57
## 290 X360 2010 Role-Playing Bethesda Softworks 2.65
## 291 PS2 2007 Action Sony Computer Entertainment 2.32
## 292 X360 2007 Racing Microsoft Game Studios 2.35
## 293 PS2 2005 Sports Konami Digital Entertainment 0.12
## 294 PS 1996 Misc Sony Computer Entertainment 2.28
## 295 PS2 2000 Fighting Namco Bandai Games 1.68
## 296 PS4 2014 Shooter Ubisoft 1.12
## 297 N64 1997 Shooter Nintendo 2.78
## 298 PS4 2014 Misc Sony Computer Entertainment Europe 1.38
## 299 NES 1984 Sports Nintendo 1.22
## 300 PS3 2008 Role-Playing Bethesda Softworks 2.15
## 301 DS 2007 Puzzle Nintendo 0.92
## 302 X360 2009 Shooter Electronic Arts 2.67
## 303 PS2 2005 Misc Namco Bandai Games 2.08
## 304 Wii 2009 Sports Electronic Arts 2.10
## 305 PS4 2014 Action Ubisoft 1.18
## 306 GB 1994 Platform Nintendo 1.97
## 307 PS2 2003 Sports Activision 2.29
## 308 PS3 2013 Action Ubisoft 1.33
## 309 3DS 2014 Role-Playing Nintendo 0.67
## 310 PS3 2006 Racing Sony Computer Entertainment 1.53
## 311 PC 2011 Role-Playing Bethesda Softworks 1.15
## 312 PS2 2005 Fighting Namco Bandai Games 0.93
## 313 NES 1988 Role-Playing Enix Corporation 0.10
## 314 PS3 2010 Sports Sony Computer Entertainment 2.12
## 315 PS4 2015 Sports Take-Two Interactive 2.48
## 316 PS2 2004 Sports Konami Digital Entertainment 0.16
## 317 DS 2007 Misc Nintendo 0.87
## 318 PS 1995 Misc Sony Computer Entertainment 2.12
## 319 GB 1992 Action Nintendo 2.21
## 320 DS 2009 Role-Playing Nintendo 2.26
## 321 Wii 2007 Misc Nintendo 1.06
## 322 3DS 2011 Simulation Nintendo 1.44
## 323 PS4 2015 Action Warner Bros. Interactive Entertainment 1.49
## 324 Wii 2011 Sports Sega 1.14
## 325 X360 2008 Action Activision 2.40
## 326 PS 1996 Action Virgin Interactive 1.82
## 327 PSP 2007 Platform Sony Computer Entertainment 1.40
## 328 Wii 2013 Misc Ubisoft 1.98
## 329 PC 2002 Simulation Electronic Arts 2.03
## 330 Wii 2007 Platform Nintendo 1.98
## 331 PS 2001 Action Electronic Arts 1.37
## 332 PS4 2015 Role-Playing Namco Bandai Games 0.96
## 333 PS 1999 Action Eidos Interactive 1.30
## 334 PS 2000 Platform Sony Computer Entertainment 1.93
## 335 PS2 2004 Sports Electronic Arts 0.58
## 336 GB 1998 Strategy Nintendo 1.49
## 337 PS3 2013 Shooter Electronic Arts 1.30
## 338 DS 2007 Simulation Electronic Arts 1.59
## 339 DS 2009 Misc Nintendo 0.00
## 340 PS2 2002 Sports Activision 2.13
## 341 PSP 2005 Racing Take-Two Interactive 1.65
## 342 N64 1998 Platform Nintendo 1.87
## 343 PS2 2002 Shooter Sony Computer Entertainment 2.53
## 344 Wii 2008 Misc Activision 2.33
## 345 PS3 2013 Racing Sony Computer Entertainment 0.71
## 346 PS2 2001 Platform Sony Computer Entertainment 2.08
## 347 N64 1999 Simulation Nintendo 2.23
## 348 PS3 2009 Sports Electronic Arts 0.60
## 349 PS2 2007 Sports Konami Digital Entertainment 0.05
## 350 PS4 2013 Shooter Activision 1.78
## 351 PS2 2005 Action Capcom 2.08
## 352 PS4 2016 Shooter Ubisoft 1.28
## 353 PS2 2004 Shooter LucasArts 1.93
## 354 PC 1994 Shooter Virgin Interactive 2.05
## 355 PS2 2001 Racing Electronic Arts 2.02
## 356 DS 2007 Simulation 505 Games 1.61
## 357 GC 2001 Action Nintendo 2.38
## 358 PS2 2005 Shooter LucasArts 2.18
## 359 PS 2000 Fighting THQ 2.01
## 360 PS 1997 Platform Fox Interactive 1.57
## 361 PS2 2006 Action Take-Two Interactive 1.56
## 362 PS2 2002 Action Sony Computer Entertainment 1.23
## 363 PS 1997 Action Eidos Interactive 1.66
## 364 PS2 2001 Shooter Electronic Arts 1.90
## 365 PS2 2005 Action Eidos Interactive 1.98
## 366 X360 2013 Shooter Electronic Arts 2.14
## 367 X360 2010 Sports Electronic Arts 0.71
## 368 PS 2000 Action THQ 1.96
## 369 PS 1999 Platform Sony Computer Entertainment 2.14
## 370 X360 2008 Shooter Electronic Arts 2.66
## 371 DS 2009 Sports Sega 1.22
## 372 X360 2009 Action Capcom 2.11
## 373 SNES 1996 Platform Nintendo 1.17
## 374 X360 2010 Action Ubisoft 2.84
## 375 NES 1985 Action Nintendo 1.64
## 376 X360 2009 Action Eidos Interactive 2.20
## 377 DS 2006 Misc Nintendo 0.59
## 379 XOne 2015 Shooter Electronic Arts 1.94
## 380 X360 2010 Shooter Electronic Arts 2.09
## 381 DS 2008 Misc Activision 2.11
## 382 XOne 2014 Action Ubisoft 2.26
## 383 PS3 2012 Shooter Ubisoft 0.88
## 384 3DS 2013 Role-Playing Capcom 0.00
## 385 X360 2009 Shooter Take-Two Interactive 2.39
## 386 PS2 2002 Fighting Namco Bandai Games 1.55
## 387 PS4 2013 Shooter Electronic Arts 1.34
## 388 PS3 2011 Platform Sony Computer Entertainment 1.82
## 389 PS 1998 Action Take-Two Interactive 1.13
## 390 SNES 1994 Role-Playing SquareSoft 0.86
## 391 PS2 2004 Action Activision 1.75
## 392 GB 1990 Racing Nintendo 1.73
## 393 PS2 2002 Sports Electronic Arts 0.46
## 394 PS 2000 Misc Sony Computer Entertainment 1.56
## 395 X360 2008 Action Warner Bros. Interactive Entertainment 2.03
## 396 PS4 2015 Action Konami Digital Entertainment 1.08
## 397 DS 2009 Action Nintendo 1.43
## 398 PS 1998 Fighting Acclaim Entertainment 2.47
## 399 N64 2000 Action Nintendo 1.90
## 400 DS 2008 Puzzle Nintendo 0.65
## 401 PS 1998 Adventure THQ 1.63
## 402 X360 2013 Action Ubisoft 1.90
## 403 DS 2006 Misc Nintendo 0.00
## 404 PS2 2002 Shooter Electronic Arts 1.45
## 405 PS2 2002 Platform Sony Computer Entertainment 1.44
## 406 Wii 2012 Misc Nintendo 1.15
## 407 PS2 2005 Action LucasArts 1.47
## 408 PS2 2001 Shooter Take-Two Interactive 1.99
## 409 PS2 2003 Action Electronic Arts 1.50
## 410 PS4 2015 Action Ubisoft 0.80
## 411 XOne 2014 Shooter Activision 2.13
## 412 PS2 2003 Action Activision 1.89
## 413 Wii 2008 Misc Nintendo 1.36
## 414 PSP 2009 Racing Sony Computer Entertainment 0.50
## 415 3DS 2015 Action Capcom 0.25
## 416 PS 1995 Fighting Sony Computer Entertainment 0.95
## 417 XOne 2015 Sports Electronic Arts 0.88
## 418 PS3 2011 Adventure Take-Two Interactive 1.27
## 419 PS4 2015 Sports Electronic Arts 2.33
## 420 3DS 2014 Role-Playing Nintendo 0.03
## 421 PS 1999 Shooter Electronic Arts 1.72
## 422 NES 1983 Sports Nintendo 0.73
## 423 SNES 1995 Fighting Nintendo 2.26
## 424 PS 2000 Fighting THQ 1.76
## 425 PSP 2007 Role-Playing Square Enix 1.35
## 426 PSP 2008 Action Sony Computer Entertainment 1.48
## 427 SNES 1995 Role-Playing Enix Corporation 0.00
## 428 X360 2010 Misc MTV Games 2.15
## 429 PS2 2003 Action Atari 1.78
## 430 WiiU 2015 Platform Nintendo 1.18
## 431 PS3 2010 Role-Playing Bethesda Softworks 1.52
## 433 DS 2008 Misc Nintendo 0.58
## 434 PS2 2001 Simulation Sony Computer Entertainment Europe 2.06
## 435 DS 2008 Adventure Disney Interactive Studios 1.88
## 436 GC 2001 Simulation Nintendo 1.92
## 437 DS 2008 Action Warner Bros. Interactive Entertainment 1.79
## 438 DS 2005 Platform Sega 1.22
## 439 PS3 2012 Shooter Capcom 0.88
## 440 XOne 2014 Shooter Microsoft Game Studios 1.89
## 441 PS2 2007 Sports Electronic Arts 0.68
## 442 PS 2000 Action Activision 1.70
## 443 PS 1998 Racing Electronic Arts 2.14
## 444 N64 1999 Racing Nintendo 2.31
## 445 DS 2006 Misc Nintendo 0.91
## 446 PS3 2007 Role-Playing Ubisoft 1.69
## 447 NES 1990 Role-Playing Enix Corporation 0.08
## 448 PS3 2010 Adventure Sony Computer Entertainment 1.29
## 449 X360 2010 Role-Playing Electronic Arts 1.99
## 450 X360 2014 Sports Electronic Arts 0.78
## 451 PS2 2002 Fighting Atari 2.17
## 452 PS2 2001 Sports Electronic Arts 2.50
## 453 NES 1986 Sports Namco Bandai Games 1.92
## 454 X360 2012 Shooter Take-Two Interactive 1.89
## 455 3DS 2013 Action Nintendo 1.40
## 456 GB 1994 Platform Nintendo 1.57
## 457 PC 2002 Simulation Electronic Arts 1.72
## 458 X360 2012 Role-Playing Electronic Arts 1.94
## 459 X360 2008 Action Activision 1.91
## 460 X360 2012 Shooter Ubisoft 1.38
## 461 Wii 2010 Platform Disney Interactive Studios 2.06
## 462 X360 2008 Action THQ 1.94
## 463 PS 1995 Platform Ubisoft 1.54
## 464 PS3 2009 Shooter Sony Computer Entertainment 1.40
## 465 XB 2002 Action Ubisoft 1.85
## 466 NES 1987 Fighting Nintendo 2.03
## 467 PS2 2002 Sports THQ 1.45
## 468 XOne 2015 Shooter Microsoft Game Studios 2.38
## 469 X360 2012 Sports Take-Two Interactive 2.60
## 470 PS2 2007 Fighting Atari 1.15
## 472 PS4 2014 Action Warner Bros. Interactive Entertainment 1.01
## 473 SNES 1993 Shooter Nintendo 1.61
## 474 PC 2000 Misc Electronic Arts 1.67
## 475 PS2 2002 Sports Konami Digital Entertainment 0.12
## 476 PS2 2001 Action Capcom 1.36
## 477 3DS 2015 Simulation Nintendo 0.47
## 478 PS3 2010 Shooter Electronic Arts 1.33
## 479 PC 2014 Simulation Electronic Arts 0.96
## 480 PC 2011 Role-Playing Electronic Arts 1.58
## 481 PS2 2003 Platform Sega 1.04
## 482 DS 2008 Platform Nintendo 1.57
## 483 PS2 2002 Action Eidos Interactive 1.36
## 484 X360 2009 Fighting Capcom 1.82
## 485 N64 1996 Racing Nintendo 1.98
## 486 PS2 2003 Shooter Sony Computer Entertainment 2.22
## 487 PS2 2005 Fighting THQ 1.45
## 488 PS3 2009 Action Sony Computer Entertainment 1.76
## 489 GBA 2001 Puzzle Atari 2.07
## 490 X360 2007 Role-Playing Microsoft Game Studios 1.83
## 491 Wii 2006 Puzzle Nintendo 0.87
## 492 Wii 2007 Simulation 505 Games 1.43
## 493 GBA 2002 Platform Nintendo 1.75
## 494 PS4 2013 Sports Electronic Arts 0.61
## 495 XOne 2014 Shooter Electronic Arts 1.84
## 496 PS2 2004 Misc Sega 1.54
## 497 X360 2008 Sports Sega 1.75
## 498 PS2 2003 Sports Konami Digital Entertainment 0.08
## 499 PS3 2012 Racing Electronic Arts 0.71
## 500 PS2 2001 Sports Sony Computer Entertainment 0.99
## 501 PS2 2004 Shooter Activision 1.51
## 502 Wii 2011 Sports Majesco Entertainment 1.54
## 503 PS 1999 Shooter Sony Computer Entertainment 2.03
## 504 DS 2007 Simulation Ubisoft 1.30
## 505 PS 1998 Racing Codemasters 0.09
## 506 XOne 2013 Shooter Activision 1.87
## 507 X360 2012 Sports Electronic Arts 2.53
## 508 XB 2002 Role-Playing Ubisoft 2.09
## 509 PS3 2011 Fighting Warner Bros. Interactive Entertainment 1.98
## 510 SNES 1990 Racing Nintendo 1.37
## 511 N64 1997 Platform Nintendo 1.29
## 512 PC 1996 Strategy Virgin Interactive 1.37
## 513 Wii 2011 Action Activision 1.40
## 514 PS3 2015 Sports Electronic Arts 0.40
## 515 PS3 2010 Action Ubisoft 1.87
## 516 X360 2007 Shooter Take-Two Interactive 1.65
## 517 X360 2009 Sports Electronic Arts 2.52
## 518 PS3 2010 Shooter Electronic Arts 1.28
## 519 PS2 2002 Fighting THQ 1.32
## 520 GC 2002 Shooter Nintendo 1.96
## 521 GBA 2003 Action THQ 1.59
## 522 PC 1994 Adventure Red Orb 0.02
## 523 PS3 2010 Racing Electronic Arts 1.05
## 524 DS 2007 Simulation Ubisoft 1.32
## 525 PS2 2003 Fighting THQ 1.32
## 526 X360 2008 Action LucasArts 1.74
## 527 DS 2006 Platform Nintendo 1.47
## 528 PS 1997 Sports Sony Computer Entertainment 0.29
## 529 PS3 2011 Shooter Sony Computer Entertainment 1.45
## 530 PS 1998 Platform Sony Computer Entertainment 1.96
## 531 PS2 2001 Fighting THQ 1.19
## 532 SNES 1992 Role-Playing Enix Corporation 0.00
## 533 PS 1996 Fighting GT Interactive 1.98
## 534 PC 2011 Shooter Electronic Arts 0.89
## 535 PS2 2001 Sports Electronic Arts 2.19
## 536 DS 2009 Puzzle Nintendo 0.30
## 537 3DS 2011 Role-Playing Nintendo 0.46
## 538 PS2 2003 Platform Sony Computer Entertainment 1.68
## 539 PS4 2014 Action Sony Computer Entertainment 1.27
## 540 PS2 2003 Platform Sony Computer Entertainment 1.44
## 541 PS3 2009 Fighting Namco Bandai Games 1.20
## 542 PS2 2003 Simulation Electronic Arts 1.41
## 543 Wii 2007 Platform Sega 1.24
## 544 X360 2011 Action THQ 1.25
## 545 2600 1980 Shooter Atari 2.56
## 546 SNES 1992 Misc Nintendo 1.43
## 547 PS4 2013 Action Ubisoft 1.07
## 548 N64 2000 Strategy Nintendo 1.02
## 549 NES 1986 Action Nintendo 1.33
## 550 X360 2011 Adventure Take-Two Interactive 1.52
## 551 X360 2006 Shooter Activision 1.49
## 552 GBA 2002 Action Nintendo 1.75
## 553 PS2 2001 Action Virgin Interactive 0.99
## 554 PS4 2015 Fighting Warner Bros. Interactive Entertainment 1.47
## 555 N64 1998 Misc Nintendo 1.25
## 556 X360 2011 Sports Electronic Arts 2.42
## 557 PS2 2006 Action LucasArts 1.85
## 558 X360 2010 Sports Electronic Arts 2.38
## 559 DS 2010 Puzzle Nintendo 1.63
## 560 X360 2010 Sports Electronic Arts 1.46
## 561 PS2 2004 Racing Electronic Arts 1.23
## 562 3DS 2014 Role-Playing Level 5 0.00
## 563 PS3 2009 Racing Electronic Arts 0.69
## 564 PS3 2011 Role-Playing Square Enix 0.78
## 565 GEN 1992 Fighting Arena Entertainment 1.95
## 566 PS2 2005 Shooter Activision 1.48
## 567 X360 2008 Misc Activision 1.78
## 568 PS 1998 Shooter Electronic Arts 1.44
## 569 XB 2004 Role-Playing Microsoft Game Studios 1.99
## 570 DS 2006 Action Disney Interactive Studios 1.59
## 571 PS2 2003 Action Ubisoft 1.15
## 572 Wii 2012 Action Activision 1.56
## 573 PSP 2006 Shooter Electronic Arts 0.86
## 574 NES 1986 Platform Nintendo 0.00
## 575 N64 1996 Action Nintendo 2.00
## 576 X360 2007 Action LucasArts 1.53
## 577 PS2 2000 Racing Take-Two Interactive 2.00
## 578 PSP 2006 Fighting Sony Computer Entertainment 0.76
## 579 X360 2009 Strategy Microsoft Game Studios 1.53
## 580 PS3 2009 Action Sony Computer Entertainment 1.70
## 581 PS2 2004 Sports Sega 2.15
## 582 Wii 2007 Sports Nintendo 1.07
## 583 X360 2010 Shooter Electronic Arts 1.55
## 584 X360 2009 Sports Electronic Arts 0.59
## 585 X360 2011 Sports Take-Two Interactive 2.31
## 586 DS 2008 Simulation Nintendo 0.63
## 587 PS2 2002 Action Electronic Arts 0.90
## 588 Wii 2010 Platform Nintendo 1.02
## 589 GEN 1990 Action Sega 1.86
## 590 PS3 2008 Sports Electronic Arts 0.48
## 591 PS3 2007 Platform Sony Computer Entertainment 0.93
## 592 PS2 2004 Sports Electronic Arts 2.03
## 593 PSP 2009 Platform Sony Computer Entertainment 0.64
## 594 PS4 2013 Shooter Sony Computer Entertainment 0.89
## 595 X360 2009 Action Take-Two Interactive 1.04
## 596 PSP 2007 Role-Playing Capcom 0.37
## 597 PS2 2006 Fighting THQ 1.40
## 598 PS2 2004 Platform Sony Computer Entertainment 1.31
## 599 DS 2010 Misc Nintendo 0.28
## 600 X360 2009 Role-Playing Electronic Arts 1.76
## 601 PS2 2007 Sports Electronic Arts 2.14
## 602 GC 2001 Platform Sega 1.70
## 603 NES 1987 Role-Playing Enix Corporation 0.15
## 604 PS3 2012 Sports Electronic Arts 2.11
## 605 GC 2003 Role-Playing Nintendo 1.21
## 606 Wii 2008 Sports Konami Digital Entertainment 1.13
## 607 X360 2008 Sports Electronic Arts 2.21
## 609 PS2 2001 Racing Acclaim Entertainment 1.13
## 610 N64 2000 Action Nintendo 1.55
## 611 Wii 2007 Misc Midway Games 1.50
## 612 NES 1986 Role-Playing Capcom 0.49
## 613 PS3 2013 Action Square Enix 0.60
## 614 X360 2006 Role-Playing Activision 2.29
## 615 PS2 2008 Sports Konami Digital Entertainment 0.13
## 616 N64 1999 Misc Nintendo 1.28
## 617 PS3 2011 Action THQ 0.86
## 618 XB 2003 Action Take-Two Interactive 1.84
## 619 Wii 2010 Action Warner Bros. Interactive Entertainment 1.29
## 620 PS2 2002 Fighting Midway Games 1.81
## 621 PS3 2008 Shooter Sony Computer Entertainment 1.15
## 622 X360 2008 Racing Disney Interactive Studios 1.38
## 623 PS 1998 Action Eidos Interactive 1.15
## 624 PS3 2012 Sports Take-Two Interactive 1.72
## 626 X360 2013 Sports Take-Two Interactive 2.10
## 627 GC 2002 Misc Nintendo 1.13
## 628 Wii 2010 Misc THQ 1.67
## 629 PS3 2008 Racing Take-Two Interactive 1.55
## 630 SNES 1992 Role-Playing SquareSoft 0.00
## 631 PS 1997 Role-Playing SquareSoft 0.93
## 632 PS 1996 Racing Sony Computer Entertainment 2.12
## 633 X360 2011 Shooter Microsoft Game Studios 1.44
## 634 PSP 2006 Racing Electronic Arts 0.87
## 635 PS2 2003 Simulation Electronic Arts 1.07
## 636 PC 1997 Adventure Red Orb 1.52
## 637 X360 2008 Shooter Ubisoft 1.56
## 638 DC 1998 Platform Sega 1.26
## 639 NES 1988 Sports Nintendo 1.27
## 640 PS3 2010 Sports Konami Digital Entertainment 0.29
## 641 PS2 2003 Fighting Atari 1.63
## 642 PS2 2001 Racing Sony Computer Entertainment 2.07
## 643 PS 1998 Action Capcom 0.81
## 644 XOne 2014 Misc Microsoft Game Studios 1.43
## 645 PS2 2007 Racing Electronic Arts 0.69
## 646 XOne 2015 Sports Electronic Arts 2.07
## 647 PS 1996 Puzzle JVC 2.10
## 648 NES 1987 Fighting Nintendo 0.77
## 649 PC 1997 Strategy Electronic Arts 2.30
## 651 PS4 2015 Racing Electronic Arts 0.49
## 652 X360 2010 Sports 505 Games 1.74
## 654 PC 1994 Misc Hasbro Interactive 1.49
## 655 PS3 2013 Action Warner Bros. Interactive Entertainment 1.07
## 656 X360 2011 Action Deep Silver 1.48
## 657 PS2 2005 Misc RedOctane 1.67
## 658 PS3 2007 Action LucasArts 1.02
## 659 X360 2011 Misc Microsoft Game Studios 1.73
## 660 N64 1998 Fighting THQ 1.94
## 661 PS4 2015 Action Sony Computer Entertainment 1.00
## 662 PS4 2014 Sports Take-Two Interactive 1.46
## 663 PS3 2010 Sports Electronic Arts 2.04
## 664 PS2 2001 Misc Konami Digital Entertainment 1.16
## 665 X360 2007 Sports Electronic Arts 2.18
## 666 PC 2004 Shooter Vivendi Games 2.28
## 667 PS2 2004 Action THQ 0.96
## 668 PS2 2004 Sports Activision 1.25
## 669 PS3 2009 Sports Electronic Arts 2.03
## 670 X360 2011 Sports Microsoft Game Studios 1.38
## 671 GB 1995 Platform Nintendo 0.69
## 672 DS 2010 Action Warner Bros. Interactive Entertainment 1.07
## 673 GB 1996 Platform Nintendo 1.39
## 674 GB 1998 Role-Playing Eidos Interactive 0.00
## 675 X360 2008 Racing Take-Two Interactive 1.68
## 676 Wii 2013 Platform Activision 1.32
## 677 PS2 2007 Fighting THQ 0.92
## 678 Wii 2008 Sports Ubisoft 1.20
## 679 PS2 2001 Action Capcom 1.08
## 680 X360 2010 Simulation Electronic Arts 1.27
## 681 3DS 2015 Action Nintendo 1.14
## 682 XOne 2015 Sports Take-Two Interactive 1.93
## 683 Wii 2010 Misc Ubisoft 1.57
## 684 N64 2000 Sports Nintendo 0.78
## 685 PS 1997 Action Take-Two Interactive 0.79
## 686 PS2 2004 Shooter Electronic Arts 0.85
## 687 DS 2004 Puzzle Nintendo 0.52
## 688 PS 1999 Racing Electronic Arts 1.58
## 689 SNES 1995 Role-Playing SquareSoft 0.28
## 690 PS 1998 Sports 989 Studios 1.65
## 691 X360 2013 Action Warner Bros. Interactive Entertainment 1.24
## 692 PC 2012 Action NCSoft 0.95
## 693 DS 2008 Role-Playing Nintendo 0.95
## 694 PS3 2011 Action Deep Silver 1.08
## 695 PC 1997 Action Eidos Interactive 0.91
## 696 PS3 2013 Action Sony Computer Entertainment 1.23
## 697 XB 2004 Racing Electronic Arts 1.38
## 698 PS3 2009 Sports Konami Digital Entertainment 0.30
## 699 Wii 2014 Misc Ubisoft 1.11
## 700 3DS 2015 Action Level 5 0.00
## 701 NES 1983 Platform Nintendo 0.51
## 702 PS2 2008 Sports Electronic Arts 0.38
## 703 PS3 2008 Action LucasArts 1.01
## 704 PS3 2012 Shooter Take-Two Interactive 1.05
## 705 PS 1997 Racing Codemasters 0.07
## 706 3DS 2012 Role-Playing Nintendo 1.12
## 707 PS3 2009 Misc Sega 1.34
## 708 Wii 2006 Misc Sega 1.07
## 709 GBA 2002 Platform Nintendo 1.22
## 710 GBA 2001 Platform Nintendo 0.90
## 711 PS3 2007 Misc Activision 1.40
## 713 Wii 2007 Action Capcom 1.34
## 714 PSV 2014 Misc Sony Computer Entertainment Europe 0.28
## 715 PS2 2002 Adventure Capcom 0.62
## 716 PS 1997 Sports UEP Systems 1.52
## 717 GC 2004 Role-Playing Nintendo 1.48
## 718 PS3 2011 Sports Electronic Arts 1.93
## 719 Wii 2009 Role-Playing Nintendo 0.67
## 720 PSP 2008 Fighting Square Enix 0.51
## 721 GBA 2001 Platform Sega 1.19
## 722 GBA 2001 Platform Vivendi Games 1.29
## 723 NES 1990 Action Konami Digital Entertainment 1.74
## 724 DS 2008 Action Activision 1.42
## 725 PS2 2009 Simulation Konami Digital Entertainment 1.09
## 726 WiiU 2013 Platform Nintendo 1.27
## 727 PS2 2003 Action Ubisoft 0.88
## 728 DS 2009 Puzzle Warner Bros. Interactive Entertainment 1.71
## 729 GB 1998 Adventure Nintendo 1.00
## 730 X360 2010 Racing Electronic Arts 1.03
## 731 X360 2010 Shooter Take-Two Interactive 1.45
## 732 XOne 2013 Action Ubisoft 1.47
## 733 PS2 2006 Action Capcom 1.06
## 734 X360 2008 Misc Electronic Arts 1.78
## 735 2600 1981 Action Parker Bros. 2.06
## 736 X360 2007 Misc Activision 2.01
## 737 GB 2000 Platform Nintendo 1.11
## 738 NES 1986 Sports Namco Bandai Games 0.15
## 739 Wii 2008 Platform Sega 1.28
## 740 DS 2007 Puzzle Disney Interactive Studios 1.06
## 741 PS3 2011 Action Konami Digital Entertainment 0.34
## 742 X360 2006 Action THQ 1.17
## 743 XB 2003 Role-Playing Activision 1.68
## 744 GB 1992 Misc Nintendo 0.87
## 745 GB 2000 Platform Nintendo 1.04
## 746 PS3 2012 Action Square Enix 0.59
## 747 GB 2000 Role-Playing Konami Digital Entertainment 0.00
## 748 PS2 2002 Racing THQ 1.92
## 749 XOne 2013 Racing Microsoft Game Studios 1.21
## 750 X360 2013 Sports Electronic Arts 1.97
## 751 DS 2006 Role-Playing Nintendo 1.29
## 752 GBA 2003 Role-Playing Nintendo 1.48
## 753 X360 2010 Role-Playing Square Enix 1.27
## 754 N64 1998 Simulation Nintendo 1.60
## 755 NES 1984 Sports Nintendo 0.48
## 756 PC 2001 Simulation Electronic Arts 1.23
## 757 Wii 2009 Sports Ubisoft 1.51
## 758 PS 2000 Shooter Sony Computer Entertainment 1.50
## 759 PS4 2015 Shooter Ubisoft 0.54
## 760 NES 1987 Sports Nintendo 0.14
## 761 XOne 2014 Sports Electronic Arts 0.60
## 762 PSP 2007 Shooter Activision 0.52
## 763 SNES 1996 Role-Playing Nintendo 0.66
## 764 NES 1983 Misc Nintendo 0.01
## 765 NES 1988 Racing Nintendo 1.47
## 766 PC 1992 Simulation Maxis 1.20
## 767 2600 1981 Shooter Imagic 1.99
## 768 PS2 2004 Simulation Konami Digital Entertainment 1.04
## 769 DS 2006 Puzzle Nintendo 0.64
## 770 GBA 2003 Role-Playing SquareSoft 0.82
## 771 PS4 2016 Action Ubisoft 0.59
## 772 DS 2010 Action Disney Interactive Studios 0.93
## 773 DS 2006 Role-Playing Square Enix 0.91
## 774 Wii 2010 Platform Nintendo 1.47
## 775 XB 2001 Racing Microsoft Game Studios 1.37
## 776 GB 1989 Sports Nintendo 0.83
## 777 PS3 2011 Sports Take-Two Interactive 1.61
## 778 PS3 2009 Shooter Take-Two Interactive 1.20
## 779 N64 2000 Sports Activision 1.68
## 780 PS3 2008 Sports Konami Digital Entertainment 0.11
## 781 PS2 2002 Racing Electronic Arts 1.68
## 782 Wii 2010 Sports Nintendo 0.90
## 784 PS2 2003 Action Tecmo Koei 0.63
## 785 X360 2011 Fighting Warner Bros. Interactive Entertainment 1.63
## 786 PS 1998 Role-Playing SquareSoft 0.94
## 787 PS2 2002 Platform THQ 1.17
## 788 XB 2002 Action Microsoft Game Studios 1.54
## 789 PSP 2005 Racing Electronic Arts 1.77
## 790 X360 2011 Shooter Valve Software 1.41
## 791 PS2 2005 Action Capcom 0.99
## 792 PS 1997 Sports ASCII Entertainment 0.00
## 793 X360 2006 Action Capcom 1.16
## 794 PS2 2003 Action THQ 1.26
## 795 X360 2010 Action Take-Two Interactive 1.84
## 796 Wii 2009 Misc Mindscape 1.97
## 797 DS 2006 Simulation Electronic Arts 0.92
## 798 PS4 2015 Shooter Electronic Arts 0.70
## 799 PSP 2010 Action Konami Digital Entertainment 0.46
## 800 PC 2010 Role-Playing Activision 1.77
## 801 PS2 2002 Puzzle THQ 1.11
## 802 PS3 2008 Racing Electronic Arts 0.63
## 803 Wii 2007 Simulation Konami Digital Entertainment 1.36
## 804 GC 2003 Misc Nintendo 0.97
## 805 PS3 2010 Action Take-Two Interactive 0.59
## 806 PC 1998 Strategy Electronic Arts 2.04
## 807 PC 1994 Strategy Activision 0.89
## 808 PS3 2010 Sports Electronic Arts 0.79
## 809 PS 2002 Shooter Take-Two Interactive 1.54
## 810 PSP 2010 Role-Playing Square Enix 0.63
## 811 X360 2009 Fighting THQ 1.48
## 812 PS3 2011 Role-Playing Namco Bandai Games 0.75
## 813 GBA 2001 Strategy Konami Digital Entertainment 1.64
## 814 X360 2007 Racing Electronic Arts 1.04
## 815 PS3 2010 Simulation Electronic Arts 0.73
## 816 X360 2010 Action Ubisoft 1.20
## 817 GBA 2005 Role-Playing Nintendo 0.71
## 818 GBA 2004 Action THQ 1.15
## 819 PS 1998 Racing Namco Bandai Games 0.68
## 820 PS2 2003 Fighting Namco Bandai Games 1.06
## 821 3DS 2013 Role-Playing Nintendo 0.89
## 822 PS3 2007 Racing Electronic Arts 0.73
## 823 DS 2008 Misc Take-Two Interactive 1.23
## 824 PS3 2013 Sports Take-Two Interactive 1.43
## 825 DS 2005 Role-Playing Nintendo 1.16
## 826 GC 2002 Misc Infogrames 1.47
## 827 PS3 2013 Role-Playing Activision 0.71
## 828 GEN 1992 Sports Arena Entertainment 1.75
## 829 X360 2007 Racing Microsoft Game Studios 0.48
## 830 DS 2009 Role-Playing Square Enix 1.11
## 831 X360 2011 Misc Microsoft Game Studios 1.45
## 832 Wii 2008 Misc Ubisoft 0.73
## 833 PS2 2006 Shooter Sony Computer Entertainment 1.74
## 834 PS2 2005 Action Ubisoft 0.71
## 835 GBA 2003 Platform Nintendo 1.20
## 836 PS3 2011 Action Electronic Arts 0.58
## 837 PS4 2014 Sports Electronic Arts 1.53
## 838 N64 1998 Sports Nintendo 1.25
## 839 X360 2011 Misc Ubisoft 1.47
## 840 PS2 2003 Sports Electronic Arts 1.57
## 841 PS3 2008 Action Electronic Arts 1.05
## 842 X360 2005 Shooter Activision 1.81
## 843 X360 2014 Sports Electronic Arts 1.76
## 844 X360 2012 Racing Microsoft Game Studios 0.82
## 845 DS 2007 Puzzle Midway Games 0.49
## 846 XOne 2016 Shooter Ubisoft 1.20
## 847 PS3 2013 Action Warner Bros. Interactive Entertainment 0.77
## 848 3DS 2012 Role-Playing Nintendo 0.89
## 849 PS4 2014 Racing Sony Computer Entertainment 0.35
## 850 SNES 1993 Fighting Nintendo 0.52
## 851 PS3 2008 Fighting Midway Games 1.48
## 852 PS 1997 Action Activision 0.95
## 853 GB 1989 Sports Nintendo 0.75
## 854 GBA 2002 Action Electronic Arts 1.21
## 855 PS 2002 Action Electronic Arts 0.75
## 856 SNES 1991 Simulation Nintendo 0.93
## 857 XOne 2013 Shooter Electronic Arts 1.25
## 858 X360 2012 Shooter Capcom 1.11
## 859 PS4 2014 Role-Playing Electronic Arts 0.72
## 860 DS 2010 Platform Sega 0.99
## 861 PS2 2002 Platform Universal Interactive 0.74
## 862 Wii 2008 Shooter Activision 1.20
## 863 PS2 2003 Action Capcom 0.71
## 864 PS3 2008 Racing Electronic Arts 1.01
## 865 2600 1981 Action Atari 1.84
## 866 X360 2013 Shooter Take-Two Interactive 1.22
## 867 PSP 2004 Sports Sony Computer Entertainment 0.50
## 868 NES 1986 Racing Nintendo 1.13
## 869 NES 1985 Sports Nintendo 0.18
## 870 DS 2006 Platform Nintendo 0.79
## 871 X360 2006 Shooter Ubisoft 1.09
## 872 X360 2014 Shooter Activision 1.30
## 873 PS2 2003 Racing Vivendi Games 0.74
## 874 XB 2005 Action Take-Two Interactive 1.26
## 875 PC 1994 Shooter LucasArts 1.09
## 876 PS2 2003 Sports Electronic Arts 1.69
## 877 PS2 2003 Fighting Electronic Arts 0.95
## 878 X360 2008 Sports Electronic Arts 0.49
## 879 PC 1999 Misc Disney Interactive Studios 1.94
## 880 PS 2001 Adventure THQ 0.59
## 881 GB 1989 Puzzle Nintendo 0.96
## 882 PS2 2004 Fighting Atari 1.09
## 883 PS 1997 Racing Sony Computer Entertainment 1.41
## 884 PS2 2002 Shooter Ubisoft 1.42
## 885 PS2 2004 Role-Playing Activision 1.00
## 886 X360 2013 Action Warner Bros. Interactive Entertainment 1.15
## 887 PS3 2008 Misc Activision 1.10
## 888 SNES 1993 Fighting Acclaim Entertainment 1.48
## 889 SAT 1995 Fighting Sega 0.34
## 890 GB 1998 Puzzle Nintendo 1.06
## 891 X360 2008 Fighting Midway Games 1.53
## 892 PS3 2014 Action Ubisoft 0.56
## 893 Wii 2008 Sports Nintendo 1.51
## 894 X360 2013 Action Square Enix 0.86
## 895 GB 2001 Action Nintendo 0.92
## 896 X360 2009 Racing Electronic Arts 0.73
## 897 Wii 2008 Misc Electronic Arts 0.87
## 898 PS2 2001 Shooter THQ 0.76
## 899 PC 2003 Simulation Electronic Arts 1.03
## 900 PS2 2004 Racing THQ 0.94
## 901 PS 1996 Misc Sony Computer Entertainment 0.26
## 902 Wii 2009 Misc Disney Interactive Studios 1.06
## 903 N64 2000 Misc Nintendo 0.72
## 904 Wii 2008 Action LucasArts 1.14
## 905 Wii 2008 Misc Midway Games 1.30
## 906 PS4 2015 Shooter Activision 0.77
## 907 Wii 2011 Action LucasArts 1.08
## 908 GC 2001 Simulation LucasArts 1.03
## 909 PS3 2012 Shooter Take-Two Interactive 0.59
## 910 PS4 2013 Racing Electronic Arts 0.73
## 911 PS3 2008 Sports Electronic Arts 1.56
## 912 3DS 2013 Role-Playing Nintendo 0.21
## 913 PS3 2009 Platform Sony Computer Entertainment 1.05
## 914 PS 1999 Role-Playing Konami Digital Entertainment 1.37
## 915 PS2 2004 Fighting Midway Games 0.92
## 916 PS 1999 Sports Sony Computer Entertainment 0.25
## 917 PS2 2005 Shooter Electronic Arts 0.89
## 918 PS 1998 Fighting THQ 1.42
## 919 PS2 2007 Misc Disney Interactive Studios 0.47
## 920 GC 2002 Adventure Nintendo 0.96
## 921 PS 1998 Sports Electronic Arts 0.22
## 922 PS2 2001 Action THQ 0.53
## 923 3DS 2013 Platform Nintendo 0.73
## 924 GB 2001 Adventure Nintendo 0.87
## 925 XB 2005 Sports Electronic Arts 1.75
## 926 PS2 2004 Platform Activision 1.12
## 927 PS 1999 Role-Playing Sony Computer Entertainment 0.94
## 928 N64 1997 Platform Acclaim Entertainment 1.37
## 929 PS2 2004 Misc Sony Computer Entertainment 0.00
## 930 PS4 2014 Platform Sony Computer Entertainment 0.64
## 931 PS2 2001 Sports Electronic Arts 0.91
## 932 DS 2009 Action Disney Interactive Studios 1.34
## 933 PS 1999 Role-Playing SquareSoft 0.62
## 934 Wii 2010 Action Activision 0.85
## 935 3DS 2013 Misc Nintendo 0.61
## 936 PS2 2004 Platform Sony Computer Entertainment 1.33
## 937 Wii 2007 Misc Ubisoft 0.83
## 938 GBA 2004 Role-Playing Square Enix 1.26
## 939 NES 1984 Action Nintendo 0.80
## 940 PS3 2011 Action Sony Computer Entertainment 1.05
## 941 PS2 2001 Racing Unknown 0.00
## 942 PS3 2009 Role-Playing Namco Bandai Games 0.97
## 943 PS2 2005 Sports Electronic Arts 1.53
## 944 N64 1998 Simulation Nintendo 0.83
## 945 GBA 2005 Misc THQ 1.31
## 946 PC 2012 Role-Playing Activision 0.84
## 947 PS 1996 Racing Sony Computer Entertainment 1.33
## 948 PS4 2015 Action Square Enix 0.46
## 949 SNES 1993 Role-Playing SquareSoft 0.25
## 950 X360 2007 Shooter Electronic Arts 1.09
## 951 PS 1995 Simulation Sony Computer Entertainment 0.92
## 952 3DS 2014 Platform Nintendo 0.61
## 953 GEN 1994 Platform Sega 1.24
## 954 PS2 2001 Misc Namco Bandai Games 1.73
## 955 PC 2001 Simulation Electronic Arts 1.81
## 956 Wii 2007 Shooter Nintendo 0.91
## 957 DS 2010 Role-Playing Nintendo 0.22
## 958 PS4 2014 Action Bethesda Softworks 0.55
## 959 PS2 2003 Simulation Konami Digital Entertainment 1.05
## 960 DC 2000 Racing Sega 1.10
## 961 PS2 2002 Fighting Sega 0.78
## 962 PS2 2004 Platform Sony Computer Entertainment 0.88
## 963 PS2 2008 Misc Activision 1.00
## 964 GBA 2002 Platform Sega 0.93
## 965 X360 2006 Sports Electronic Arts 1.66
## 966 PS3 2010 Action Take-Two Interactive 1.41
## 967 PS 1999 Sports 989 Studios 1.00
## 968 PS3 2015 Shooter Activision 0.49
## 969 SNES 1994 Platform Virgin Interactive 1.26
## 970 PS3 2013 Adventure Sony Computer Entertainment 0.52
## 971 X360 2012 Action Microsoft Game Studios 1.05
## 972 PS2 2003 Racing Take-Two Interactive 1.25
## 973 DS 2006 Role-Playing Square Enix 0.23
## 974 PS 2001 Action THQ 1.12
## 975 PS2 2004 Action Sony Computer Entertainment 0.39
## 976 3DS 2011 Puzzle Nintendo 0.32
## 977 PS3 2010 Action Square Enix 0.45
## 978 PS3 2012 Role-Playing Capcom 0.41
## 979 WiiU 2013 Action Nintendo 0.93
## 980 PS2 2005 Action Vivendi Games 0.85
## 981 Wii 2007 Misc Disney Interactive Studios 1.16
## 982 WiiU 2013 Misc Nintendo 0.31
## 983 PS3 2013 Sports Electronic Arts 1.59
## 984 SNES 1991 Role-Playing Square 0.24
## 985 N64 2000 Platform Nintendo 0.63
## 986 XB 2001 Fighting Microsoft Game Studios 1.19
## 987 PS3 2009 Fighting THQ 1.07
## 988 GB 1991 Adventure Nintendo 0.85
## 989 PS 1998 Fighting Acclaim Entertainment 1.27
## 990 PS2 2004 Platform THQ 1.06
## 991 GBA 2001 Role-Playing Nintendo 0.93
## 992 GEN 1994 Platform Sega 1.02
## 993 NES 1986 Platform Nintendo 0.53
## 994 PS2 2004 Fighting Electronic Arts 0.86
## 995 XB 2002 Shooter Ubisoft 1.23
## 996 PS2 2002 Action Take-Two Interactive 0.86
## 997 PS3 2013 Shooter Take-Two Interactive 0.72
## 998 X360 2012 Action Square Enix 0.68
## 999 GBA 2007 Action THQ 1.26
## 1000 X360 2015 Shooter Activision 1.11
## 1001 PS2 2004 Simulation Electronic Arts 0.52
## 1002 PS3 2007 Sports Electronic Arts 0.35
## 1003 PS2 2001 Simulation Activision 0.61
## 1004 PS 1998 Sports Electronic Arts 1.68
## 1005 PS3 2013 Role-Playing Square Enix 0.90
## 1006 XB 2004 Shooter Activision 1.24
## 1007 PS2 2001 Sports Konami Digital Entertainment 0.06
## 1008 X360 2007 Shooter Microsoft Game Studios 1.00
## 1009 NES 1991 Puzzle Nintendo 0.70
## 1010 SNES 1993 Platform Capcom 0.94
## 1011 NES 1993 Platform Nintendo 0.79
## 1012 DS 2009 Simulation 505 Games 0.83
## 1013 PS2 2008 Simulation Konami Digital Entertainment 0.85
## 1014 GBA 2004 Misc THQ 1.25
## 1015 PS 1999 Adventure LucasArts 0.72
## 1016 PS2 2002 Role-Playing Namco Bandai Games 0.63
## 1017 PS3 2011 Shooter Valve 0.83
## 1018 Wii 2009 Misc MTV Games 1.19
## 1019 XOne 2015 Racing Microsoft Game Studios 0.69
## 1020 Wii 2010 Platform Sega 0.96
## 1021 N64 1996 Racing Nintendo 1.69
## 1022 PS 1998 Sports Electronic Arts 1.66
## 1023 PS4 2014 Role-Playing Activision 0.49
## 1024 PSV 2011 Shooter Sony Computer Entertainment 0.59
## 1025 PS3 2014 Shooter Activision 0.67
## 1026 PS2 2001 Sports Electronic Arts 0.85
## 1027 PS4 2016 Shooter Activision 0.64
## 1028 PS 1998 Action 989 Studios 1.48
## 1029 GB 2001 Action Electronic Arts 0.94
## 1030 Wii 2013 Action Disney Interactive Studios 1.15
## 1031 GBA 2002 Platform Universal Interactive 0.95
## 1032 X360 2012 Action Bethesda Softworks 1.06
## 1033 PS2 2003 Action Take-Two Interactive 0.85
## 1034 PS4 2015 Shooter Sony Computer Entertainment 0.61
## 1035 PS4 2015 Role-Playing Bethesda Softworks 0.66
## 1036 PS2 2008 Shooter Activision 0.61
## 1037 DS 2008 Simulation Ubisoft 0.70
## 1038 PC 2011 Shooter Activision 0.41
## 1039 XB 2004 Sports Electronic Arts 1.61
## 1040 PS2 2003 Role-Playing Ubisoft 0.80
## 1041 PC 2010 Simulation Electronic Arts 0.59
## 1042 Wii 2009 Puzzle Warner Bros. Interactive Entertainment 1.43
## 1043 PS 1998 Platform Activision 0.99
## 1044 DS 2007 Misc Mindscape 1.15
## 1045 PS2 2004 Simulation Sony Computer Entertainment Europe 0.88
## 1046 XB 2003 Racing Electronic Arts 1.09
## 1047 DS 2006 Misc Nintendo 0.00
## 1048 GBA 2001 Puzzle THQ 1.25
## 1049 Wii 2009 Sports Activision Value 1.58
## 1050 PS4 2014 Racing Ubisoft 0.34
## 1051 PS2 2009 Sports Electronic Arts 0.23
## 1052 Wii 2008 Sports Namco Bandai Games 0.99
## 1053 DS 2007 Puzzle Nintendo 0.49
## 1054 Wii 2011 Platform Nintendo 0.62
## 1055 SNES 1993 Puzzle Banpresto 0.00
## 1056 DS 2007 Action D3Publisher 0.69
## 1057 PS2 2006 Sports Electronic Arts 1.41
## 1058 PS2 2005 Shooter Sony Computer Entertainment 1.22
## 1059 XOne 2014 Sports Take-Two Interactive 1.36
## 1060 PS3 2008 Action THQ 0.88
## 1061 X360 2013 Action Deep Silver 1.01
## 1062 PS 1999 Misc Sony Computer Entertainment 0.94
## 1063 PS3 2009 Role-Playing Electronic Arts 0.96
## 1064 X360 2015 Sports Electronic Arts 0.55
## 1065 N64 1997 Fighting THQ 1.37
## 1066 PS 1998 Fighting THQ 1.10
## 1067 GBA 2001 Action Electronic Arts 0.87
## 1068 X360 2008 Racing Electronic Arts 0.79
## 1069 GBA 2002 Role-Playing Infogrames 1.52
## 1070 PC 2010 Strategy Take-Two Interactive 0.98
## 1071 GC 2005 Action Capcom 0.98
## 1072 PSV 2012 Action Activision 0.80
## 1073 PSP 2007 Shooter LucasArts 0.90
## 1074 PS2 2006 Misc Oxygen Interactive 0.82
## 1075 PS 1997 Sports Sony Computer Entertainment 1.58
## 1076 X360 2012 Action Warner Bros. Interactive Entertainment 0.90
## 1077 GB 1992 Puzzle Nintendo 0.59
## 1078 PS 1997 Shooter Namco Bandai Games 0.38
## 1079 PC 2003 Simulation Electronic Arts 1.67
## 1080 Wii 2008 Action LucasArts 1.23
## 1081 Wii 2007 Simulation Electronic Arts 0.91
## 1082 GBA 2002 Action Nintendo 1.18
## 1083 Wii 2008 Sports Ubisoft 0.94
## 1084 PS2 2003 Sports Electronic Arts 0.93
## 1085 Wii 2008 Sports THQ 0.45
## 1086 PS 2000 Sports Electronic Arts 1.58
## 1087 PS3 2006 Fighting Electronic Arts 0.81
## 1088 PS4 2013 Platform Sony Computer Entertainment Europe 0.43
## 1089 XB 2005 Shooter Activision 1.22
## 1090 NES 1989 Platform Capcom 0.91
## 1091 PS 2001 Sports Activision 1.09
## 1092 GBA 2001 Adventure THQ 0.59
## 1093 PC 2013 Strategy Activision 0.82
## 1094 XB 2003 Racing Microsoft Game Studios 0.97
## 1095 PS2 2001 Racing Midway Games 1.13
## 1096 PS2 2003 Sports Electronic Arts 1.35
## 1097 PS2 2003 Platform THQ 1.08
## 1098 PS4 2015 Action Warner Bros. Interactive Entertainment 0.63
## 1099 PS3 2007 Action Sony Computer Entertainment 0.57
## 1100 GEN 1992 Fighting Sega 1.00
## 1101 PS2 2000 Sports Electronic Arts 0.78
## 1102 X360 2012 Shooter Take-Two Interactive 0.86
## 1103 PS2 2004 Sports Midway Games 0.81
## 1104 X360 2006 Racing Electronic Arts 0.76
## 1105 PS2 2002 Sports Electronic Arts 1.25
## 1106 PS2 2005 Fighting Atari 0.96
## 1107 2600 1981 Puzzle Atari 1.54
## 1108 GC 2004 Misc Nintendo 0.90
## 1109 SNES 1991 Shooter Nintendo 1.06
## 1110 Wii 2011 Misc Namco Bandai Games 0.48
## 1111 PS2 2004 Role-Playing Enix Corporation 0.00
## 1112 X360 2008 Shooter Electronic Arts 1.09
## 1113 DS 2007 Role-Playing Square Enix 0.32
## 1114 GBA 2004 Platform Nintendo 0.80
## 1115 Wii 2011 Action Disney Interactive Studios 0.76
## 1116 2600 1982 Puzzle Atari 1.52
## 1117 PS 1999 Shooter Red Storm Entertainment 0.93
## 1118 NES 1986 Action Capcom 0.74
## 1119 PS2 2002 Sports Electronic Arts 0.80
## 1120 PS2 2005 Sports Electronic Arts 1.44
## 1121 PS2 2004 Action Ubisoft 0.54
## 1122 X360 2010 Simulation Microsoft Game Studios 1.02
## 1123 PS4 2015 Adventure Sony Computer Entertainment Europe 0.44
## 1124 XB 2004 Sports Sega 1.54
## 1125 X360 2006 Simulation Microsoft Game Studios 0.45
## 1126 GC 2001 Strategy Nintendo 0.78
## 1128 PS3 2011 Platform Sega 0.60
## 1129 PS2 2003 Sports Electronic Arts 1.18
## 1130 PS 1999 Platform Sony Computer Entertainment 0.71
## 1131 X360 2014 Sports Take-Two Interactive 1.33
## 1132 PS2 2004 Sports Electronic Arts 1.32
## 1133 X360 2010 Action Square Enix 0.59
## 1135 PS2 2005 Sports Activision 0.80
## 1136 X360 2011 Shooter Bethesda Softworks 0.82
## 1137 DS 2006 Sports Nintendo 0.99
## 1138 GC 2003 Racing Nintendo 1.01
## 1139 PS 1998 Racing Electronic Arts 0.90
## 1140 Wii 2006 Role-Playing Nintendo 0.80
## 1141 PS2 2004 Sports Electronic Arts 0.79
## 1142 X360 2013 Shooter Microsoft Game Studios 0.92
## 1143 GB 1989 Sports Nintendo 0.66
## 1144 GB 1998 Strategy Konami Digital Entertainment 0.00
## 1145 GC 2005 Sports Nintendo 0.98
## 1146 PS2 2005 Misc Sony Computer Entertainment 0.00
## 1147 DS 2007 Action THQ 1.50
## 1148 XOne 2014 Shooter Ubisoft 0.79
## 1149 Wii 2008 Simulation Konami Digital Entertainment 0.95
## 1150 DS 2011 Misc Activision 0.40
## 1151 PS2 2005 Action Take-Two Interactive 1.30
## 1152 X360 2008 Action Ubisoft 0.71
## 1153 N64 1998 Racing Video System 0.46
## 1154 2600 1981 Shooter Activision 1.49
## 1155 PS 1999 Action Konami Digital Entertainment 0.71
## 1156 DS 2008 Role-Playing Square Enix 0.19
## 1157 PS4 2016 Action Hello Games 0.58
## 1158 GC 2003 Platform Sega 1.05
## 1159 PS2 2004 Sports Global Star 1.26
## 1160 PC 1996 Role-Playing Activision 0.01
## 1161 GC 2006 Action Nintendo 1.15
## 1162 PS 1996 Fighting Sony Computer Entertainment 0.61
## 1163 PS3 2008 Action Capcom 0.58
## 1164 2600 1982 Platform Atari 1.48
## 1165 PS3 2007 Sports Konami Digital Entertainment 0.04
## 1166 X360 2008 Fighting Ubisoft 0.92
## 1167 X360 2010 Action Warner Bros. Interactive Entertainment 0.95
## 1168 PS 1999 Racing Electronic Arts 0.88
## 1169 PS4 2014 Shooter Bethesda Softworks 0.47
## 1170 Wii 2008 Sports Take-Two Interactive 0.87
## 1171 DS 2008 Misc Activision 0.85
## 1172 DS 2008 Simulation Electronic Arts 0.81
## 1173 PS 2000 Misc Sony Computer Entertainment 0.88
## 1174 X360 2012 Racing Electronic Arts 0.62
## 1175 Wii 2009 Misc Activision 0.94
## 1176 DS 2008 Misc Disney Interactive Studios 0.64
## 1177 3DS 2012 Action Square Enix 0.88
## 1178 DS 2007 Action Disney Interactive Studios 1.06
## 1179 DS 2009 Role-Playing Nintendo 0.58
## 1180 GBA 2002 Platform Vivendi Games 0.85
## 1181 PS2 2009 Sports Konami Digital Entertainment 0.10
## 1182 PS2 2001 Sports Electronic Arts 0.77
## 1183 PS2 2002 Shooter Gotham Games 0.98
## 1184 GC 2005 Misc Nintendo 0.95
## 1185 PS3 2012 Sports Konami Digital Entertainment 0.18
## 1186 PS2 2000 Racing Take-Two Interactive 0.77
## 1187 PS2 2006 Fighting Electronic Arts 1.07
## 1188 NES 1988 Platform Nintendo 0.59
## 1189 PS 1995 Action Sony Computer Entertainment 1.32
## 1190 PS4 2016 Role-Playing Namco Bandai Games 0.58
## 1191 SNES 1990 Action Capcom 0.67
## 1192 GB 2001 Role-Playing Enix Corporation 0.00
## 1193 GBA 2003 Misc Nintendo 0.68
## 1194 PS4 2013 Action Warner Bros. Interactive Entertainment 0.59
## 1195 X360 2010 Action Take-Two Interactive 0.84
## 1196 PS3 2012 Action Bethesda Softworks 0.72
## 1197 PS2 2002 Racing Atari 0.76
## 1198 XB 2003 Shooter Ubisoft 0.91
## 1199 Wii 2008 Sports Atari 0.79
## 1200 PS3 2010 Shooter Take-Two Interactive 0.85
## 1201 N64 2000 Action Electronic Arts 1.13
## 1202 PS 2001 Action Activision 0.57
## 1203 XOne 2014 Action Ubisoft 0.90
## 1204 PS3 2010 Action LucasArts 0.80
## 1205 PS3 2011 Role-Playing Namco Bandai Games 0.60
## 1206 PC 1999 Strategy Westwood Studios 1.55
## 1207 DS 2011 Strategy Warner Bros. Interactive Entertainment 1.07
## 1208 WiiU 2015 Misc Nintendo 0.69
## 1209 XOne 2013 Action Microsoft Game Studios 1.06
## 1210 Wii 2007 Action Capcom 0.68
## 1211 3DS 2015 Role-Playing Nintendo 0.71
## 1212 PS2 2000 Role-Playing Sony Computer Entertainment 0.83
## 1213 PC 2003 Strategy Activision 0.58
## 1214 X360 2006 Shooter Ubisoft 1.40
## 1215 DS 2008 Adventure Disney Interactive Studios 0.86
## 1216 PS2 2005 Sports Electronic Arts 1.26
## 1217 PS 1996 Shooter Fox Interactive 0.85
## 1218 PC 2012 Shooter Activision 0.63
## 1219 PS3 2009 Fighting Electronic Arts 0.92
## 1220 Wii 2008 Simulation Electronic Arts 0.71
## 1221 DS 2007 Action Electronic Arts 0.57
## 1222 SNES 1994 Fighting Acclaim Entertainment 1.19
## 1223 PS 1998 Sports 989 Studios 1.44
## 1224 Wii 2009 Shooter Activision 0.95
## 1225 XOne 2016 Sports Electronic Arts 0.17
## 1226 GC 2003 Sports Nintendo 1.09
## 1227 PS 1997 Sports Electronic Arts 0.85
## 1228 WiiU 2014 Platform Nintendo 0.73
## 1229 X360 2011 Shooter Electronic Arts 0.94
## 1230 PSP 2007 Racing Sega 0.44
## 1231 PS 1997 Fighting Electronic Arts 1.07
## 1232 PS2 2002 Sports Electronic Arts 0.36
## 1233 PS 1996 Racing Electronic Arts 1.43
## 1234 NES 1984 Racing Nintendo 0.00
## 1235 NES 1984 Shooter Namco Bandai Games 0.18
## 1236 PS 1998 Racing Electronic Arts 1.45
## 1237 PS 1998 Sports Electronic Arts 1.43
## 1238 PS3 2010 Action Take-Two Interactive 0.50
## 1239 PS3 2006 Shooter Activision 0.60
## 1240 GC 2002 Puzzle Atari 1.11
## 1241 PS2 2002 Action Namco Bandai Games 1.26
## 1242 XOne 2014 Sports Electronic Arts 1.30
## 1243 Wii 2010 Racing Sega 0.65
## 1244 X360 2011 Action LucasArts 0.84
## 1245 PC 2011 Sports Sega 0.02
## 1246 3DS 2013 Role-Playing GungHo 0.00
## 1247 NES 1988 Action Capcom 0.93
## 1248 PS 2001 Fighting Electronic Arts 0.23
## 1249 PS 1997 Sports Electronic Arts 1.41
## 1250 PS2 2007 Action Electronic Arts 0.35
## 1251 PS 1997 Misc Hasbro Interactive 1.18
## 1252 GC 2003 Fighting Namco Bandai Games 0.99
## 1253 PS3 2011 Shooter Sony Computer Entertainment 0.64
## 1254 PS2 2000 Racing Crave Entertainment 0.66
## 1255 PC 2010 Role-Playing Square Enix 0.86
## 1256 PS 1998 Sports Midway Games 1.41
## 1257 PS2 2002 Shooter THQ 0.49
## 1258 DS 2010 Puzzle Warner Bros. Interactive Entertainment 1.08
## 1259 PS2 2000 Sports Electronic Arts 1.19
## 1260 N64 2000 Fighting THQ 1.20
## 1261 NES 1985 Platform Nintendo 0.46
## 1262 SCD 1993 Platform Sega 1.00
## 1263 NES 1986 Platform Hudson Soft 0.00
## 1264 X360 2010 Action Capcom 0.75
## 1265 PS3 2008 Misc MTV Games 1.13
## 1266 PS 1998 Action Namco Bandai Games 1.21
## 1267 Wii 2009 Misc Disney Interactive Studios 1.08
## 1268 GC 2003 Role-Playing Nintendo 0.72
## 1269 XB 2002 Shooter Electronic Arts 1.00
## 1270 PS2 2008 Sports Electronic Arts 1.22
## 1271 DS 2008 Adventure THQ 1.00
## 1272 N64 2000 Platform Nintendo 0.82
## 1273 PS2 2006 Misc Sony Computer Entertainment 0.00
## 1274 X360 2008 Action Activision 0.82
## 1275 Wii 2010 Simulation Electronic Arts 0.61
## 1276 Wii 2009 Sports Nintendo 0.37
## 1277 DS 2006 Adventure THQ 0.43
## 1278 PS2 2006 Shooter Square Enix 0.47
## 1279 NES 1990 Sports Nintendo 0.28
## 1280 N64 1999 Fighting THQ 1.20
## 1281 GB 1997 Platform Nintendo 0.70
## 1282 PS3 2011 Role-Playing Electronic Arts 0.78
## 1283 PS2 2005 Sports Take-Two Interactive 0.72
## 1284 PS2 2004 Fighting Electronic Arts 1.08
## 1285 XB 2004 Action Ubisoft 0.82
## 1286 DS 2007 Simulation Ubisoft 0.39
## 1287 PSV 2012 Action Ubisoft 0.58
## 1288 PS3 2008 Fighting Ubisoft 0.72
## 1289 N64 1999 Action Nintendo 0.62
## 1290 GBA 2003 Platform THQ 1.04
## 1291 X360 2006 Fighting Electronic Arts 1.33
## 1292 PS3 2013 Action Konami Digital Entertainment 0.45
## 1293 DS 2008 Role-Playing Square Enix 0.69
## 1294 X360 2010 Action LucasArts 0.95
## 1295 Wii 2008 Shooter Sega 0.78
## 1296 DS 2007 Adventure Disney Interactive Studios 1.15
## 1297 PSV 2012 Platform Sony Computer Entertainment 0.40
## 1298 PS 1998 Role-Playing SquareSoft 0.29
## 1299 GBA 2004 Platform THQ 1.02
## 1300 X360 2012 Shooter Ubisoft 0.93
## 1301 X360 2008 Shooter Electronic Arts 0.81
## 1302 PS2 2003 Misc Midway Games 0.72
## 1303 DS 2008 Platform THQ 0.46
## 1305 X360 2011 Shooter THQ 0.83
## 1306 GC 2001 Puzzle Atari 0.95
## 1307 2600 1981 Platform Coleco 1.36
## 1308 PS 1998 Fighting GT Interactive 0.81
## 1309 GC 2005 Sports Nintendo 0.93
## 1310 PS3 2012 Role-Playing Electronic Arts 0.63
## 1311 Wii 2012 Action Warner Bros. Interactive Entertainment 0.94
## 1312 PS3 2012 Action Electronic Arts 0.47
## 1313 PS 1998 Fighting THQ 1.17
## 1314 PSP 2006 Fighting Sega 0.53
## 1315 3DS 2013 Platform Nintendo 0.51
## 1316 PS2 2004 Action Capcom 0.37
## 1317 X360 2013 Role-Playing Activision 0.89
## 1318 XOne 2015 Action Warner Bros. Interactive Entertainment 0.86
## 1319 PS3 2008 Shooter Take-Two Interactive 0.75
## 1320 PS2 2004 Shooter Take-Two Interactive 0.71
## 1321 PC 2011 Strategy Ubisoft 0.00
## 1322 PS2 2003 Action Capcom 0.54
## 1323 Wii 2007 Misc Electronic Arts 0.53
## 1324 GB 1996 Simulation Namco Bandai Games 0.00
## 1325 NES 1984 Misc Nintendo 0.00
## 1326 SNES 1993 Fighting Namco Bandai Games 0.00
## 1327 GB 1997 Simulation Namco Bandai Games 0.00
## 1328 N64 1999 Misc Namco Bandai Games 1.24
## 1329 Wii 2008 Puzzle Electronic Arts 0.97
## 1330 DS 2010 Role-Playing Square Enix 0.11
## 1331 PS2 2005 Sports Activision 1.38
## 1332 DS 2007 Misc Ubisoft 0.37
## 1333 DS 2007 Misc Rising Star Games 0.79
## 1334 PS2 2007 Misc Sony Computer Entertainment 0.04
## 1335 PSP 2006 Racing Sega 0.73
## 1336 PC 2013 Simulation Electronic Arts 0.48
## 1337 SNES 1996 Platform Nintendo 0.26
## 1338 PS3 2014 Shooter Ubisoft 0.33
## 1339 X360 2007 Fighting THQ 0.92
## 1340 X360 2010 Racing Microsoft Game Studios 0.92
## 1341 Wii 2006 Misc Ubisoft 1.23
## 1342 PS3 2013 Racing Electronic Arts 0.33
## 1343 PS2 2004 Sports Electronic Arts 1.03
## 1344 PS3 2011 Shooter Electronic Arts 0.73
## 1345 PS2 2002 Sports Electronic Arts 1.16
## 1346 PS 1999 Action Hasbro Interactive 0.80
## 1347 X360 2013 Action Disney Interactive Studios 0.96
## 1348 Wii 2009 Action Activision 0.91
## 1349 X360 2009 Misc Sega 0.85
## 1350 Wii 2008 Sports Electronic Arts 0.81
## 1351 GB 1988 Platform Capcom 0.82
## 1352 GBA 2004 Platform Nintendo 0.00
## 1353 PS 1999 Sports Electronic Arts 0.79
## 1354 3DS 2013 Role-Playing Square Enix 0.07
## 1355 PS2 2002 Sports Activision 0.70
## 1356 PS3 2010 Fighting THQ 0.80
## 1357 PS2 2005 Sports Electronic Arts 1.35
## 1358 GBA 2004 Action Nintendo 0.89
## 1359 PS2 2004 Sports Electronic Arts 1.15
## 1360 X360 2011 Platform Sega 0.71
## 1361 SNES 1994 Action Nintendo 0.57
## 1362 NES 1987 Sports Namco Bandai Games 0.12
## 1363 X360 2008 Action Electronic Arts 0.89
## 1364 GC 2002 Action Capcom 0.63
## 1365 DS 2009 Role-Playing Nintendo 0.00
## 1366 PS4 2014 Action Square Enix 0.47
## 1367 PSP 2006 Action LucasArts 0.58
## 1368 Wii 2010 Action Disney Interactive Studios 0.64
## 1369 X360 2009 Fighting Electronic Arts 0.95
## 1370 GC 2005 Action Eidos Interactive 1.09
## 1371 X360 2013 Fighting Warner Bros. Interactive Entertainment 0.97
## 1372 PS3 2014 Sports Electronic Arts 1.07
## 1373 GEN 1994 Platform Virgin Interactive 0.97
## 1374 PSP 2004 Racing Sony Computer Entertainment 0.36
## 1375 Wii 2010 Action Nintendo 0.87
## 1376 PS 1999 Fighting Electronic Arts 1.02
## 1377 PS2 2003 Racing Sony Computer Entertainment 0.00
## 1378 PS2 2001 Racing Sony Computer Entertainment 1.19
## 1379 PS2 2004 Racing Electronic Arts 0.69
## 1380 Wii 2010 Shooter Activision 0.82
## 1381 XB 2002 Action Activision 1.07
## 1382 PS2 2008 Racing Electronic Arts 0.38
## 1383 PS 1996 Sports Sony Computer Entertainment 1.15
## 1384 PS3 2008 Action Ubisoft 0.43
## 1385 GBA 2004 Platform THQ 0.74
## 1386 NES 1990 Role-Playing SquareSoft 0.00
## 1387 PC 2013 Shooter Electronic Arts 0.38
## 1388 PS2 2002 Racing Codemasters 0.03
## 1389 PS 2001 Sports Electronic Arts 0.78
## 1390 PS4 2016 Shooter Bethesda Softworks 0.49
## 1391 DS 2007 Role-Playing Square Enix 0.34
## 1392 DS 2009 Action Activision 1.27
## 1393 PS3 2011 Shooter Square Enix 0.50
## 1394 SNES 1994 Sports Acclaim Entertainment 1.19
## 1395 NES 1991 Action Konami Digital Entertainment 1.05
## 1396 PS2 2005 Action Tecmo Koei 0.24
## 1397 Wii 2007 Action Disney Interactive Studios 0.87
## 1398 PS3 2012 Action THQ 0.51
## 1399 X360 2011 Shooter Square Enix 0.76
## 1400 XB 2003 Action Activision 0.96
## 1401 PSP 2005 Simulation Electronic Arts 0.49
## 1402 N64 2000 Role-Playing Nintendo 0.58
## 1403 3DS 2012 Role-Playing Nintendo 0.50
## 1404 X360 2014 Shooter Electronic Arts 0.87
## 1405 PS 1998 Shooter Take-Two Interactive 0.77
## 1406 PSV 2012 Role-Playing Atlus 0.46
## 1407 PS3 2010 Action Capcom 0.43
## 1408 Wii 2009 Misc Electronic Arts 0.71
## 1409 Wii 2007 Adventure Disney Interactive Studios 1.24
## 1410 DS 2009 Puzzle 505 Games 0.80
## 1411 PS2 2001 Sports Acclaim Entertainment 0.67
## 1412 X360 2011 Action Electronic Arts 0.63
## 1413 PS2 2008 Action LucasArts 0.60
## 1414 PS3 2014 Action Ubisoft 0.46
## 1415 PS3 2006 Racing Namco Bandai Games 0.24
## 1416 PS 1998 Misc Activision 0.76
## 1417 XOne 2014 Racing Microsoft Game Studios 0.50
## 1418 PS3 2008 Racing Sony Computer Entertainment 0.43
## 1419 DS 2010 Platform Sega 0.74
## 1420 XB 2004 Role-Playing Activision 0.99
## 1421 PS3 2010 Action Warner Bros. Interactive Entertainment 0.55
## 1422 N64 1998 Strategy Nintendo 0.00
## 1423 PS3 2014 Sports Take-Two Interactive 0.86
## 1424 XB 2004 Shooter Ubisoft 0.86
## 1425 GBA 2003 Platform Vivendi Games 0.63
## 1426 X360 2008 Racing Electronic Arts 0.63
## 1427 PS2 2008 Misc Sony Computer Entertainment 0.23
## 1428 NES 1986 Shooter Konami Digital Entertainment 0.27
## 1429 SNES 1996 Role-Playing Enix Corporation 0.00
## 1430 2600 1981 Shooter Atari 1.26
## 1431 3DS 2014 Platform Nintendo 0.47
## 1432 XOne 2013 Action Microsoft Game Studios 0.82
## 1433 PS2 2002 Shooter Electronic Arts 0.67
## 1435 PS3 2011 Fighting Capcom 0.81
## 1436 PS 1999 Simulation Konami Digital Entertainment 0.00
## 1437 PS3 2010 Racing Codemasters 0.25
## 1438 PS 1997 Sports Electronic Arts 1.29
## 1439 PSP 2008 Sports Electronic Arts 0.23
## 1440 DS 2007 Misc Atari 1.18
## 1441 PSP 2007 Sports Electronic Arts 0.20
## 1442 DS 2009 Action Take-Two Interactive 0.59
## 1443 X360 2010 Action Microsoft Game Studios 0.66
## 1444 PS3 2008 Shooter Electronic Arts 0.76
## 1445 XOne 2015 Fighting Warner Bros. Interactive Entertainment 1.00
## 1446 PS2 2004 Action Electronic Arts 0.22
## 1447 XB 2003 Racing Vivendi Games 0.70
## 1448 X360 2008 Action Capcom 0.79
## 1449 PS3 2008 Shooter Ubisoft 0.66
## 1450 PSP 2005 Role-Playing Capcom 0.24
## 1451 X360 2011 Action Electronic Arts 0.70
## 1452 PS 1997 Role-Playing SquareSoft 0.15
## 1453 PS2 2004 Misc Sony Computer Entertainment 0.00
## 1454 X360 2007 Sports Electronic Arts 0.31
## 1455 PS3 2011 Adventure Sony Computer Entertainment 0.67
## 1456 PS2 2002 Racing Atari 0.95
## 1457 DS 2005 Role-Playing Nintendo 0.77
## 1458 X360 2006 Shooter Capcom 1.09
## 1459 GEN 1994 Fighting Acclaim Entertainment 1.03
## 1460 XB 2005 Shooter Activision 0.85
## 1461 GC 2004 Platform Nintendo 0.84
## 1462 PS2 2006 Racing Electronic Arts 1.22
## 1463 PS2 2003 Shooter Take-Two Interactive 0.65
## 1464 PC 2000 Strategy Electronic Arts 1.32
## 1465 PS2 2004 Sports Electronic Arts 1.10
## 1466 PS3 2007 Fighting THQ 0.62
## 1467 PS2 2004 Platform Sony Computer Entertainment 1.27
## 1468 X360 2010 Sports Ubisoft 0.79
## 1469 PS3 2011 Shooter Bethesda Softworks 0.47
## 1470 X360 2013 Platform Activision 0.86
## 1471 PS4 2013 Sports Take-Two Interactive 0.89
## 1472 GBA 2002 Action Activision 0.92
## 1473 N64 1998 Fighting Acclaim Entertainment 1.08
## 1474 GB 2000 Sports Activision 0.90
## 1475 GBA 2003 Simulation Electronic Arts 0.93
## 1476 PS 2000 Sports Electronic Arts 0.74
## 1477 GC 2004 Shooter Nintendo 0.87
## 1478 X360 2010 Fighting THQ 0.90
## 1479 PS3 2013 Role-Playing Square Enix 0.43
## 1480 PS2 2004 Racing TDK Mediactive 0.65
## 1481 DS 2007 Simulation Ubisoft 0.71
## 1482 DS 2010 Role-Playing Nintendo 0.51
## 1483 XOne 2014 Action Warner Bros. Interactive Entertainment 0.72
## 1484 PSP 2005 Racing Electronic Arts 0.69
## 1485 PS3 2008 Action Warner Bros. Interactive Entertainment 0.72
## 1486 PS3 2014 Role-Playing Namco Bandai Games 0.40
## 1487 PC 2008 Role-Playing Activision 0.01
## 1488 PS3 2014 Role-Playing Square Enix 0.52
## 1489 X360 2014 Action Warner Bros. Interactive Entertainment 0.69
## 1490 PS 1998 Racing Codemasters 0.03
## 1491 NES 1985 Puzzle Nintendo 0.73
## 1492 PS2 2002 Sports Atari 1.06
## 1493 PS 1997 Fighting Eidos Interactive 0.73
## 1494 GBA 2003 Role-Playing Capcom 0.31
## 1495 PS3 2010 Shooter Sony Computer Entertainment 0.77
## 1496 PS 1996 Sports Electronic Arts 0.73
## 1497 DS 2011 Racing Disney Interactive Studios 0.72
## 1498 X360 2012 Action Activision 0.75
## 1500 PS 1996 Racing ASC Games 0.73
## 1501 PS2 2002 Racing Bethesda Softworks 0.64
## 1502 X360 2009 Misc MTV Games 0.97
## 1503 X360 2009 Fighting Namco Bandai Games 0.71
## 1504 X360 2009 Action Activision 0.84
## 1505 Wii 2009 Misc Zoo Games 1.22
## 1506 PS2 2005 Platform Activision 0.78
## 1507 PS 1999 Adventure THQ 0.57
## 1508 DS 2009 Strategy Warner Bros. Interactive Entertainment 0.81
## 1509 2600 1983 Platform Activision 1.22
## 1510 PS2 2002 Shooter Acclaim Entertainment 0.64
## 1511 Wii 2008 Misc Disney Interactive Studios 0.68
## 1512 Wii 2008 Sports Ubisoft 1.11
## 1513 XB 2004 Racing Electronic Arts 0.84
## 1515 GBA 2002 Role-Playing Konami Digital Entertainment 0.94
## 1516 PS3 2011 Action Electronic Arts 0.45
## 1517 PS2 2006 Sports Electronic Arts 1.07
## 1518 PS3 2013 Action Deep Silver 0.56
## 1519 PS2 2005 Misc Sony Computer Entertainment 0.27
## 1520 Wii 2007 Sports Electronic Arts 0.69
## 1521 PS 1997 Racing Accolade 1.05
## 1522 SNES 1995 Role-Playing SquareSoft 0.00
## 1523 Wii 2010 Sports Electronic Arts 0.78
## 1524 PS 1999 Role-Playing Namco Bandai Games 0.56
## 1525 XOne 2015 Adventure Square Enix 0.53
## 1526 Wii 2006 Racing Electronic Arts 0.46
## 1527 WiiU 2015 Platform Nintendo 0.61
## 1528 GBA 2002 Role-Playing Capcom 0.39
## 1529 PS3 2012 Sports Electronic Arts 0.11
## 1530 GC 2002 Action Capcom 0.54
## 1531 X360 2005 Racing Electronic Arts 1.00
## 1532 XOne 2015 Shooter Ubisoft 0.73
## 1533 GBA 2003 Platform TDK Mediactive 0.93
## 1534 PS2 2004 Shooter Atari 0.63
## 1535 Wii 2008 Misc Activision 1.04
## 1536 DS 2008 Adventure Nintendo 0.76
## 1537 PS3 2008 Role-Playing Sega 0.71
## 1538 PS2 2005 Racing Take-Two Interactive 1.22
## 1539 PS2 2004 Role-Playing Sony Online Entertainment 0.63
## 1540 X360 2014 Action Ubisoft 0.72
## 1541 DS 2008 Simulation Ubisoft 0.55
## 1542 PS4 2014 Action Konami Digital Entertainment 0.45
## 1543 GB 1989 Misc Nintendo 0.00
## 1544 XOne 2015 Action Ubisoft 0.61
## 1545 PS 1999 Action 3DO 1.10
## 1546 X360 2012 Action THQ 0.72
## 1547 PS 1999 Racing 989 Studios 1.07
## 1548 PS2 2003 Action Take-Two Interactive 0.63
## 1549 3DS 2012 Action Nintendo 0.48
## 1550 PS2 2001 Action Konami Digital Entertainment 0.62
## 1551 PS3 2008 Action Eidos Interactive 0.45
## 1552 PS 1997 Platform Konami Digital Entertainment 0.58
## 1553 PC 2005 Simulation Electronic Arts 1.22
## 1554 PS2 2008 Action Warner Bros. Interactive Entertainment 0.72
## 1555 PS 1995 Racing Electronic Arts 0.71
## 1556 3DS 2012 Role-Playing Nintendo 0.44
## 1557 2600 1981 Shooter Imagic 1.18
## 1558 X360 2008 Sports Take-Two Interactive 1.00
## 1559 X360 2011 Fighting THQ 0.74
## 1560 XB 2003 Sports Activision 0.85
## 1561 NES 1984 Shooter Nintendo 0.68
## 1562 XOne 2015 Role-Playing Bethesda Softworks 0.77
## 1563 Wii 2008 Sports Deep Silver 0.96
## 1564 PS2 2002 Role-Playing Atari 0.49
## 1565 Wii 2007 Sports Take-Two Interactive 0.39
## 1566 GC 2003 Platform Sega 0.87
## 1567 PS2 2004 Action Sony Computer Entertainment 0.62
## 1568 PS 1994 Fighting Sony Computer Entertainment 0.39
## 1569 3DS 2016 Action Level 5 0.00
## 1570 DS 2008 Action Activision 0.56
## 1571 DS 2005 Simulation Atari 0.10
## 1572 PC 2010 Sports Sega 0.00
## 1573 PS 1998 Puzzle THQ 0.05
## 1574 DS 2007 Simulation Square Enix 0.54
## 1575 WiiU 2014 Action Nintendo 0.61
## 1576 PS3 2006 Racing Electronic Arts 0.49
## 1577 PC 2003 Sports Eidos Interactive 0.00
## 1578 PS 1998 Sports Codemasters 0.02
## 1579 DS 2007 Action THQ 0.50
## 1580 PS 1998 Misc Hasbro Interactive 0.99
## 1581 X360 2012 Action Warner Bros. Interactive Entertainment 0.63
## 1582 Wii 2007 Sports RTL 0.45
## 1583 PS3 2008 Shooter Sony Computer Entertainment 0.94
## 1584 PS 2000 Sports Electronic Arts 0.70
## 1585 PS2 2008 Action LucasArts 0.49
## 1587 PS3 2007 Shooter Ubisoft 0.47
## 1588 NES 1988 Role-Playing Namco Bandai Games 0.00
## 1589 NES 1987 Role-Playing Namco Bandai Games 0.00
## 1590 PS 1996 Sports Natsume 0.99
## 1591 PS3 2013 Fighting Warner Bros. Interactive Entertainment 0.48
## 1592 GC 2005 Role-Playing Nintendo 0.71
## 1593 PS2 2006 Shooter Electronic Arts 1.01
## 1594 PC 2002 Strategy Atari 1.19
## 1595 PS2 2003 Action Eidos Interactive 0.61
## 1596 PS2 2004 Action Ubisoft 0.52
## 1597 PS 1998 Racing Electronic Arts 1.05
## 1598 PS2 2005 Shooter Sony Computer Entertainment 0.85
## 1599 PS2 2001 Role-Playing Virgin Interactive 0.61
## 1600 DS 2007 Action Activision 1.12
## 1601 PS3 2011 Role-Playing Namco Bandai Games 0.29
## 1602 DS 2007 Racing Nintendo 1.10
## 1603 PS3 2009 Action Activision 0.65
## 1604 PSP 2009 Action Ubisoft 0.43
## 1605 PS 1997 Platform GT Interactive 0.75
## 1606 XOne 2015 Role-Playing Namco Bandai Games 0.66
## 1607 PS2 2000 Action Namco Bandai Games 0.24
## 1608 PS2 2008 Fighting THQ 0.69
## 1609 GB 1992 Puzzle Nintendo 0.56
## 1610 XB 2005 Action Activision 0.82
## 1611 Wii 2007 Action D3Publisher 0.55
## 1612 PS2 2001 Platform Konami Digital Entertainment 0.60
## 1613 PS3 2010 Sports Electronic Arts 0.30
## 1614 XB 2004 Action Microsoft Game Studios 0.92
## 1615 XB 2002 Platform Universal Interactive 0.59
## 1616 PS2 2004 Racing Atari 0.60
## 1617 PS 2003 Misc Sony Computer Entertainment 0.69
## 1618 PC 2014 Simulation Focus Home Interactive 0.08
## 1619 X360 2008 Misc Activision 1.00
## 1620 PS3 2007 Shooter Electronic Arts 0.25
## 1621 GB 2000 Puzzle Nintendo 0.29
## 1622 GBA 2003 Platform THQ 0.88
## 1623 PS 1998 Racing Activision 0.68
## 1624 NES 1986 Platform Konami Digital Entertainment 0.54
## 1625 GBA 2004 Platform Nintendo 0.79
## 1626 PS3 2009 Action Sega 0.44
## 1627 GBA 2003 Puzzle Nintendo 0.40
## 1628 PSP 2005 Shooter LucasArts 1.05
## 1629 PS4 2016 Sports Electronic Arts 0.92
## 1630 Wii 2008 Puzzle Electronic Arts 0.72
## 1631 PC 2015 Role-Playing Bethesda Softworks 0.50
## 1632 Wii 2007 Simulation Electronic Arts 0.45
## 1633 PS3 2012 Action Warner Bros. Interactive Entertainment 0.50
## 1634 PS3 2010 Fighting Namco Bandai Games 0.42
## 1635 GC 2004 Sports Nintendo 0.58
## 1636 PS 1997 Puzzle Sony Computer Entertainment 0.13
## 1637 GB 1997 Misc Nintendo 0.76
## 1638 GB 1999 Misc Nintendo 0.79
## 1639 NES 1984 Puzzle Namco Bandai Games 0.27
## 1640 PS2 2006 Adventure Alchemist 0.59
## 1641 PS3 2011 Racing Codemasters 0.12
## 1642 PSP 2006 Racing THQ 0.72
## 1643 PS 1997 Sports Electronic Arts 1.13
## 1644 PS 1997 Role-Playing SquareSoft 0.00
## 1645 GBA 2002 Role-Playing Nintendo 0.61
## 1646 PS 1996 Simulation Maxis 0.68
## 1647 XB 2001 Shooter Take-Two Interactive 0.98
## 1648 PS 1998 Fighting Electronic Arts 0.68
## 1649 PS2 2002 Sports Sega 0.59
## 1651 3DS 2011 Fighting Capcom 0.55
## 1652 PS2 2006 Racing THQ 1.01
## 1653 XB 2001 Misc Microsoft Game Studios 0.93
## 1654 XB 2004 Shooter Activision 0.78
## 1655 PSP 2010 Sports Electronic Arts 0.13
## 1656 PS2 2002 Platform Sony Computer Entertainment 1.03
## 1657 DS 2009 Action Activision 0.66
## 1658 SNES 1992 Platform Capcom 0.66
## 1659 PS 2001 Role-Playing Enix Corporation 0.00
## 1660 PS 1999 Action LucasArts 0.66
## 1661 PS 2000 Action Virgin Interactive 0.34
## 1662 GC 2003 Racing Electronic Arts 0.69
## 1663 GBA 2007 Misc N/A 0.87
## 1664 PS 1997 Racing Electronic Arts 0.67
## 1665 PSP 2006 Sports Electronic Arts 0.24
## 1666 PSP 2005 Sports Konami Digital Entertainment 0.01
## 1667 PS2 2002 Action Black Label Games 0.59
## 1668 PS3 2011 Action LucasArts 0.52
## 1669 PS2 2004 Racing SouthPeak Games 1.00
## 1670 GC 2004 Strategy Nintendo 0.48
## 1671 Wii 2015 Misc Ubisoft 0.52
## 1672 Wii 2008 Misc Disney Interactive Studios 0.77
## 1673 XOne 2015 Shooter Electronic Arts 0.72
## 1674 PS4 2015 Sports Take-Two Interactive 0.41
## 1675 SNES 1993 Fighting Namco Bandai Games 0.00
## 1676 NES 1986 Shooter Konami Digital Entertainment 0.00
## 1677 NES 1986 Platform Konami Digital Entertainment 0.00
## 1678 DC 1999 Sports Sega 1.12
## 1679 GB 1989 Shooter Nintendo 0.40
## 1680 XB 2003 Action Atari 0.72
## 1681 PS2 2001 Sports Electronic Arts 0.59
## 1682 DS 2006 Puzzle Nintendo 0.74
## 1683 Wii 2009 Adventure Nintendo 0.55
## 1684 PS3 2012 Action Namco Bandai Games 0.01
## 1685 PS3 2013 Sports Take-Two Interactive 0.49
## 1686 PSP 2006 Action Konami Digital Entertainment 0.38
## 1687 PS 1997 Simulation Electronic Arts 0.66
## 1688 WiiU 2014 Puzzle Nintendo 0.56
## 1689 PSP 2007 Fighting THQ 0.45
## 1690 GBA 2003 Racing THQ 0.86
## 1691 Wii 2008 Sports Konami Digital Entertainment 0.09
## 1692 GBA 2002 Platform THQ 0.92
## 1693 3DS 2012 Sports Sega 0.18
## 1694 PS2 2006 Action Vivendi Games 0.99
## 1695 N64 1998 Sports Nintendo 1.02
## 1696 NES 1990 Platform Capcom 0.68
## 1697 PS 1999 Racing Ubisoft 0.99
## 1699 XOne 2013 Sports Electronic Arts 0.41
## 1700 GC 2002 Action Activision 0.86
## 1701 GBA 2004 Role-Playing Nintendo 0.64
## 1702 PS4 2016 Sports Take-Two Interactive 0.83
## 1703 3DS 2015 Role-Playing Nintendo 0.46
## 1704 X360 2012 Misc Ubisoft 0.90
## 1705 PS 1999 Adventure Konami Digital Entertainment 0.66
## 1706 2600 1982 Racing Atari 1.10
## 1707 PS3 2012 Action Capcom 0.48
## 1708 PSP 2008 Action LucasArts 0.40
## 1709 NES 1988 Sports Namco Bandai Games 0.10
## 1710 DC 1999 Adventure Sega 0.52
## 1711 GB 2000 Sports Nintendo 0.50
## 1712 GBA 2001 Sports Activision 0.85
## 1713 PS3 2011 Fighting THQ 0.53
## 1714 PS3 2009 Fighting THQ 0.48
## 1715 DS 2011 Strategy Mastertronic 0.95
## 1716 PS3 2006 Platform Sega 0.41
## 1717 SNES 1991 Platform Capcom 0.50
## 1718 PC 2008 Strategy Electronic Arts 0.03
## 1719 PS 1996 Simulation Electronic Arts 0.65
## 1720 X360 2011 Sports Ubisoft 0.70
## 1721 PS3 2008 Shooter Electronic Arts 0.74
## 1722 PS2 2005 Shooter Activision 0.98
## 1723 PS2 2002 Platform Electronic Arts 0.57
## 1724 Wii 2008 Platform Nintendo 0.60
## 1725 DS 2007 Platform Sega 0.54
## 1726 X360 2012 Action Electronic Arts 0.58
## 1727 NES 1990 Platform Capcom 0.68
## 1728 PS4 2016 Platform Sony Computer Entertainment 0.32
## 1729 N64 1997 Action Ocean 0.74
## 1730 SNES 1993 Role-Playing SquareSoft 0.00
## 1731 PS2 2003 Sports Zoo Digital Publishing 0.57
## 1732 PS 1998 Sports 989 Studios 0.65
## 1733 PS 1996 Racing Sony Computer Entertainment 0.16
## 1734 XB 2003 Shooter Electronic Arts 0.76
## 1735 PC 2012 Sports Sega 0.00
## 1736 PS 1996 Racing Psygnosis 0.65
## 1737 X360 2008 Platform Electronic Arts 0.51
## 1738 XOne 2015 Shooter Activision 0.82
## 1739 GBA 2004 Puzzle Nintendo 0.68
## 1740 PS3 2008 Action Activision 0.43
## 1741 Wii 2009 Sports Electronic Arts 0.78
## 1742 PC 2010 Role-Playing Bethesda Softworks 0.58
## 1743 PSV 2012 Racing Electronic Arts 0.38
## 1744 PSP 2007 Role-Playing Square Enix 0.45
## 1745 PS2 2006 Racing Take-Two Interactive 0.97
## 1746 PS2 2004 Shooter Ubisoft 0.57
## 1747 PS3 2007 Misc Sony Computer Entertainment 0.45
## 1748 PS 1997 Fighting Sony Computer Entertainment 0.39
## 1749 DS 2011 Action LucasArts 0.66
## 1750 PS2 2001 Racing Electronic Arts 0.57
## 1751 N64 1999 Shooter Nintendo 0.78
## 1752 SNES 1993 Platform Capcom 0.57
## 1753 GBA 2002 Role-Playing Konami Digital Entertainment 0.84
## 1754 SAT 1995 Racing Sega 0.21
## 1755 PS 1997 Racing Eidos Interactive 0.65
## 1756 PSP 2007 Shooter Electronic Arts 0.50
## 1757 X360 2010 Shooter City Interactive 0.54
## 1758 PS3 2011 Misc Ubisoft 0.52
## 1759 XB 2005 Action Eidos Interactive 0.83
## 1760 PSP 2009 Sports Electronic Arts 0.15
## 1761 X360 2014 Shooter Electronic Arts 0.51
## 1762 PC 2008 Simulation Sega 0.00
## 1763 PS3 2011 Simulation Konami Digital Entertainment 0.52
## 1764 PS2 2001 Action Midway Games 0.56
## 1765 PS3 2007 Action Eidos Interactive 0.57
## 1766 PS2 2004 Shooter Empire Interactive 0.56
## 1767 2600 1980 Misc Activision 1.07
## 1768 PS3 2010 Action Take-Two Interactive 0.44
## 1769 Wii 2009 Platform Sega 0.69
## 1770 PC 2007 Shooter Activision 0.00
## 1771 GB 1990 Puzzle Nintendo 0.51
## 1772 SNES 1995 Sports ASCII Entertainment 0.00
## 1773 NES 1986 Action Hudson Soft 0.00
## 1774 DS 2008 Misc Disney Interactive Studios 0.50
## 1775 PS3 2011 Platform Sony Computer Entertainment 0.75
## 1776 GC 2003 Misc Nintendo 0.50
## 1777 PS3 2011 Fighting Electronic Arts 0.45
## 1778 SNES 1993 Role-Playing Enix Corporation 0.00
## 1779 PS2 2003 Platform THQ 0.56
## 1780 PS 1998 Shooter Success 0.64
## 1781 PS 1997 Puzzle Compile 0.00
## 1782 3DS 2011 Action Nintendo 0.47
## 1783 PS 2000 Action Take-Two Interactive 0.64
## 1784 PS2 2003 Action Activision 0.44
## 1785 PS2 2005 Action Sony Computer Entertainment 0.78
## 1786 PS 1998 Role-Playing SquareSoft 0.25
## 1787 PS3 2007 Sports Sony Computer Entertainment 0.31
## 1788 PS2 2005 Simulation Konami Digital Entertainment 0.95
## 1789 PS3 2008 Platform Electronic Arts 0.31
## 1790 Wii 2009 Platform Ubisoft 0.26
## 1791 N64 1998 Shooter Acclaim Entertainment 0.90
## 1792 NES 1986 Action Capcom 0.71
## 1793 SNES 1990 Simulation Nintendo 0.46
## 1794 DC 2000 Action Eidos Interactive 0.41
## 1795 GB 1991 Racing Nintendo 0.58
## 1796 XB 2003 Action Electronic Arts 0.71
## 1797 GBA 2005 Action Eidos Interactive 0.82
## 1798 PS2 2005 Role-Playing Take-Two Interactive 0.00
## 1799 X360 2009 Misc Activision 0.65
## 1800 PS2 2001 Simulation Atari 0.12
## 1801 GC 2004 Racing Electronic Arts 0.70
## 1802 XB 2002 Simulation Microsoft Game Studios 1.01
## 1803 PS3 2010 Racing Sony Computer Entertainment 0.50
## 1804 3DS 2011 Action LucasArts 0.61
## 1805 PS 1999 Sports ASCII Entertainment 0.00
## 1806 GBA 2006 Racing THQ 0.81
## 1807 3DS 2012 Role-Playing Nintendo 0.33
## 1808 XB 2004 Shooter Ubisoft 0.99
## 1809 PS4 2014 Sports Take-Two Interactive 0.38
## 1810 NES 1983 Platform Nintendo 0.23
## 1811 PS 1998 Misc Sony Computer Entertainment 0.63
## 1812 X360 2013 Sports Take-Two Interactive 0.64
## 1813 PS4 2014 Shooter Sega 0.34
## 1814 PS3 2009 Action Sega 0.21
## 1815 GBA 2005 Role-Playing Nintendo 0.81
## 1816 PS3 2009 Misc MTV Games 0.67
## 1817 X360 2011 Action Electronic Arts 0.72
## 1818 2600 1982 Shooter Atari 1.05
## 1819 PS2 2001 Racing Activision 0.55
## 1820 N64 1996 Simulation Nintendo 0.56
## 1821 X360 2010 Shooter Microsoft Game Studios 0.63
## 1822 PS3 2013 Role-Playing Square Enix 0.36
## 1823 PS3 2010 Action Konami Digital Entertainment 0.50
## 1824 X360 2011 Misc Ubisoft 0.84
## 1825 X360 2014 Action Disney Interactive Studios 0.62
## 1826 PSP 2005 Shooter Sony Computer Entertainment 1.03
## 1827 XB 2005 Shooter Activision 0.66
## 1828 NES 1992 Puzzle Nintendo 0.41
## 1829 PS2 2009 Misc Activision 0.28
## 1830 PC 2007 Sports Russel 0.00
## 1831 XB 2004 Action Activision 0.82
## 1832 XB 2003 Shooter Microsoft Game Studios 0.85
## 1833 PS4 2015 Action Warner Bros. Interactive Entertainment 0.32
## 1834 PS2 2007 Action Activision 0.63
## 1835 PS3 2008 Racing Codemasters 0.31
## 1836 PS2 2007 Misc RedOctane 0.92
## 1837 XOne 2014 Shooter Microsoft Game Studios 0.62
## 1839 XB 2005 Action Ubisoft 0.68
## 1840 NES 1983 Platform Nintendo 0.33
## 1841 PS 1995 Role-Playing Sony Computer Entertainment 0.00
## 1842 GEN 1994 Sports Acclaim Entertainment 0.95
## 1843 Wii 2007 Racing Electronic Arts 0.54
## 1844 WiiU 2013 Strategy Nintendo 0.45
## 1845 PS 1999 Role-Playing SquareSoft 0.18
## 1846 PSP 2004 Puzzle Ubisoft 0.52
## 1847 PS3 2010 Action Disney Interactive Studios 0.51
## 1848 PS3 2009 Misc Activision 0.53
## 1849 2600 1981 Shooter Activision 1.03
## 1850 X360 2007 Shooter Electronic Arts 0.45
## 1851 3DS 2015 Action Nintendo 0.52
## 1852 2600 1982 Platform Atari 1.03
## 1853 PS 1997 Sports Electronic Arts 0.61
## 1854 PS3 2012 Action Warner Bros. Interactive Entertainment 0.36
## 1855 DS 2007 Simulation Ubisoft 0.47
## 1856 PS3 2010 Fighting THQ 0.44
## 1857 GB 1999 Strategy Konami Digital Entertainment 0.00
## 1858 NES 1984 Puzzle Hudson Soft 0.00
## 1859 GB 1989 Role-Playing SquareSoft 0.00
## 1860 NES 1989 Role-Playing Namco Bandai Games 0.00
## 1861 N64 1998 Racing Nintendo 0.45
## 1862 NES 1983 Platform Nintendo 0.51
## 1863 Wii 2008 Shooter Electronic Arts 0.92
## 1864 PS2 2001 Sports Electronic Arts 0.52
## 1865 PS2 2006 Misc Sony Computer Entertainment 0.12
## 1866 PS2 2006 Misc Sony Computer Entertainment 0.00
## 1867 GC 2003 Role-Playing Nintendo 0.54
## 1868 PSP 2005 Role-Playing Activision 0.54
## 1869 PS 1998 Role-Playing Sony Computer Entertainment 0.26
## 1870 PS3 2013 Role-Playing Square Enix 0.31
## 1871 PSP 2008 Action LucasArts 0.43
## 1872 DS 2008 Simulation Ubisoft 0.63
## 1873 PSP 2007 Action Electronic Arts 0.24
## 1874 PS2 2006 Adventure Sega 0.05
## 1875 X360 2009 Sports Electronic Arts 0.82
## 1876 GBA 2003 Role-Playing Atari 0.78
## 1877 PS3 2007 Fighting Sega 0.29
## 1878 DC 2000 Sports Sega 1.02
## 1879 PS 1998 Simulation Konami Digital Entertainment 0.00
## 1880 PSP 2005 Misc Sony Computer Entertainment 0.75
## 1881 DS 2006 Action LucasArts 0.96
## 1882 XB 2003 Sports Electronic Arts 1.02
## 1883 PC 2009 Strategy Sega 0.01
## 1884 PS2 2006 Action Electronic Arts 0.89
## 1885 Wii 2009 Sports Electronic Arts 0.61
## 1886 PS2 2002 Shooter LucasArts 0.53
## 1887 PS 1997 Simulation Taito 0.00
## 1888 PS3 2010 Action Electronic Arts 0.64
## 1889 DS 2010 Racing Sega 0.44
## 1890 PS3 2012 Action Activision 0.35
## 1891 Wii 2007 Adventure Nintendo 0.44
## 1892 PS 1998 Sports Midway Games 0.60
## 1893 X360 2010 Racing Sega 0.74
## 1894 PS2 2003 Racing Electronic Arts 0.53
## 1895 PS3 2008 Action Ubisoft 0.47
## 1896 PS2 2002 Platform THQ 0.53
## 1897 PC 2015 Action Take-Two Interactive 0.36
## 1898 Wii 2009 Sports THQ 0.87
## 1899 PS2 2002 Sports Agetec 0.53
## 1900 DS 2009 Adventure Electronic Arts 0.55
## 1901 Wii 2009 Action Capcom 0.48
## 1902 X360 2012 Action Electronic Arts 1.02
## 1903 PSP 2009 Action Take-Two Interactive 0.28
## 1904 Wii 2010 Sports Electronic Arts 0.26
## 1905 PS3 2007 Shooter Electronic Arts 0.28
## 1906 2600 1982 Platform Atari 1.01
## 1907 X360 2008 Action Eidos Interactive 0.53
## 1908 PS2 2004 Shooter Ubisoft 0.64
## 1909 PS3 2011 Racing Codemasters 0.27
## 1910 WiiU 2013 Platform Nintendo 0.47
## 1911 DS 2008 Simulation Electronic Arts 0.67
## 1912 PS 1998 Sports Midway Games 0.60
## 1913 GBA 2003 Fighting Atari 0.77
## 1914 GBA 2002 Platform Ubisoft 0.77
## 1915 GC 2005 Shooter Nintendo 0.68
## 1916 PS3 2008 Fighting Namco Bandai Games 0.49
## 1917 X360 2011 Fighting Capcom 0.79
## 1918 X360 2013 Sports Electronic Arts 1.01
## 1919 PS 1999 Misc Sony Computer Entertainment 0.00
## 1920 PS2 2006 Shooter Activision 0.89
## 1921 DS 2008 Simulation Ubisoft 0.65
## 1922 X360 2010 Action Take-Two Interactive 0.57
## 1923 X360 2008 Action Take-Two Interactive 0.53
## 1924 SAT 1994 Fighting Sega 0.17
## 1925 PC 1999 Sports Eidos Interactive 0.00
## 1926 PS2 2009 Fighting THQ 0.53
## 1927 X360 2007 Sports Konami Digital Entertainment 0.08
## 1928 DS 2005 Platform Nintendo 0.72
## 1929 PS 1997 Sports Electronic Arts 0.59
## 1930 PS2 2005 Fighting Namco Bandai Games 0.74
## 1931 PS3 2013 Platform Activision 0.43
## 1932 PS3 2012 Racing Codemasters 0.12
## 1933 PSP 2005 Sports Sony Computer Entertainment 0.10
## 1934 Wii 2011 Action Disney Interactive Studios 0.67
## 1935 PS 1995 Racing Sony Computer Entertainment 0.17
## 1936 X360 2011 Action Disney Interactive Studios 0.54
## 1937 PS 1999 Racing Electronic Arts 0.59
## 1938 PS 1998 Sports Electronic Arts 0.59
## 1939 PS2 2006 Fighting Midway Games 0.88
## 1940 X360 2010 Shooter Sega 0.55
## 1941 PS2 2002 Racing Electronic Arts 0.52
## 1942 DS 2008 Misc GSP 0.23
## 1943 X360 2010 Action THQ 0.67
## 1944 PS3 2007 Racing Codemasters 0.16
## 1945 DS 2007 Shooter Activision 0.96
## 1946 PS 1998 Misc D3Publisher 0.00
## 1947 Wii 2008 Sports Sega 0.28
## 1948 PS2 2005 Sports Electronic Arts 0.52
## 1949 PS3 2012 Action Square Enix 0.31
## 1950 X360 2008 Shooter Electronic Arts 0.65
## 1951 PS 1999 Strategy Microprose 0.18
## 1952 PS2 2003 Action Universal Interactive 0.52
## 1953 PS3 2008 Action Activision 0.44
## 1954 N64 1998 Sports Midway Games 1.02
## 1955 N64 1997 Sports Acclaim Entertainment 1.01
## 1956 X360 2009 Misc Activision 0.56
## 1957 DS 2007 Platform Take-Two Interactive 0.97
## 1958 PC 2001 Role-Playing Vivendi Games 1.03
## 1959 PS4 2016 Fighting Namco Bandai Games 0.39
## 1960 GBA 2004 Action Activision 0.76
## 1961 PS3 2007 Sports Sega 0.23
## 1962 PS2 2002 Racing Play It 0.52
## 1963 PS3 2007 Simulation Sony Computer Entertainment 0.49
## 1964 DS 2007 Adventure Capcom 0.32
## 1965 X360 2014 Action Ubisoft 0.58
## 1966 2600 1981 Shooter Imagic 0.99
## 1967 PSP 2006 Shooter Sony Computer Entertainment 0.81
## 1968 Wii 2014 Action Activision 0.42
## 1969 PS3 2010 Shooter Sega 0.41
## 1970 2600 1980 Misc Atari 0.99
## 1971 Wii 2010 Misc Ubisoft 0.27
## 1972 NES 1986 Platform Hudson Soft 0.00
## 1973 PS 1996 Role-Playing Sony Computer Entertainment 0.00
## 1974 NES 1985 Fighting Namco Bandai Games 0.00
## 1975 SNES 1996 Sports ASCII Entertainment 0.00
## 1976 PS3 2012 Action THQ 0.55
## 1977 PS2 2002 Sports Sega 0.51
## 1978 PS4 2015 Fighting Namco Bandai Games 0.30
## 1979 XB 2001 Racing Electronic Arts 0.78
## 1980 PS 2000 Sports Acclaim Entertainment 0.91
## 1981 DS 2007 Simulation Ubisoft 0.45
## 1982 X360 2009 Fighting THQ 0.56
## 1983 XB 2005 Racing Microsoft Game Studios 0.52
## 1984 X360 2006 Platform Sega 0.44
## 1985 Wii 2009 Adventure Electronic Arts 0.62
## 1986 PS 1998 Simulation Sony Computer Entertainment 0.19
## 1987 DS 2012 Role-Playing Nintendo 0.58
## 1988 X360 2007 Action Electronic Arts 0.54
## 1989 Wii 2008 Action Warner Bros. Interactive Entertainment 0.46
## 1990 PS2 2003 Sports Electronic Arts 0.51
## 1992 Wii 2007 Fighting Atari 0.33
## 1993 DS 2010 Action Disney Interactive Studios 0.58
## 1994 PS 1997 Role-Playing Namco Bandai Games 0.09
## 1995 PS 2000 Racing Acclaim Entertainment 0.58
## 1996 DS 2009 Adventure Disney Interactive Studios 0.57
## 1997 PS 1996 Action Virgin Interactive 0.45
## 1998 GC 2003 Fighting Nintendo 0.44
## 1999 PS2 2006 Simulation Konami Digital Entertainment 0.87
## 2000 X360 2011 Shooter Bethesda Softworks 0.59
## 2001 GBA 2001 Racing Nintendo 0.39
## 2002 N64 1997 Puzzle Hudson Soft 0.50
## 2003 PS 1998 Racing Acclaim Entertainment 0.91
## 2004 X360 2009 Action Activision 0.62
## 2005 PS4 2015 Racing Slightly Mad Studios 0.17
## 2006 XB 2005 Racing Electronic Arts 0.53
## 2007 DS 2011 Platform Nintendo 0.52
## 2008 XOne 2013 Action Warner Bros. Interactive Entertainment 0.61
## 2009 DS 2010 Simulation Activision 0.68
## 2010 PS3 2007 Shooter Ubisoft 0.34
## 2011 PSP 2009 Racing Sony Computer Entertainment 0.16
## 2012 PSP 2005 Racing Sony Computer Entertainment 0.47
## 2013 PS4 2014 Sports Electronic Arts 0.46
## 2014 PS2 2005 Racing THQ 0.86
## 2015 PS3 2008 Platform Sega 0.56
## 2016 Wii 2007 Sports Electronic Arts 0.94
## 2017 PS3 2011 Platform Ubisoft 0.33
## 2018 Wii 2012 Action Disney Interactive Studios 0.72
## 2019 PS2 2003 Sports Electronic Arts 0.50
## 2021 NES 1985 Puzzle Hudson Soft 0.18
## 2022 Wii 2007 Action Electronic Arts 0.45
## 2023 PC 1996 Action Eidos Interactive 0.96
## 2024 Wii 2008 Misc MTV Games 0.94
## 2025 PS 1998 Fighting Virgin Interactive 0.38
## 2026 X360 2011 Shooter Electronic Arts 0.61
## 2027 Wii 2007 Sports Electronic Arts 0.32
## 2028 Wii 2007 Fighting Tomy Corporation 0.45
## 2029 X360 2007 Shooter Ubisoft 0.87
## 2030 WiiU 2012 Action Ubisoft 0.53
## 2031 GC 2004 Platform Activision 0.73
## 2032 DS 2007 Simulation Ubisoft 0.51
## 2033 PS3 2010 Role-Playing Namco Bandai Games 0.28
## 2034 SNES 1993 Action Capcom 0.39
## 2035 Wii 2008 Platform THQ 0.51
## 2036 PS 1997 Action Electronic Arts 0.57
## 2037 X360 2007 Simulation Atari 0.69
## 2038 XB 2006 Sports Electronic Arts 0.97
## 2039 PS3 2014 Action Disney Interactive Studios 0.44
## 2040 PS2 2004 Action Electronic Arts 0.50
## 2041 PS 1998 Puzzle Hasbro Interactive 0.56
## 2042 WiiU 2014 Action Nintendo 0.34
## 2043 X360 2008 Action Ubisoft 0.54
## 2044 PSP 2010 Action Sony Computer Entertainment 0.41
## 2045 3DS 2011 Platform Sega 0.44
## 2046 X360 2008 Action Tecmo Koei 0.65
## 2047 SNES 1995 Sports Acclaim Entertainment 0.87
## 2048 PC 2003 Sports Eidos Interactive 0.00
## 2049 Wii 2010 Misc Activision 0.48
## 2050 DS 2006 Misc Sega 0.00
## 2051 PS 1997 Simulation Tecmo Koei 0.12
## 2052 PS3 2014 Action Warner Bros. Interactive Entertainment 0.33
## 2053 PS3 2009 Racing Codemasters 0.27
## 2054 PS4 2014 Platform Ubisoft 0.21
## 2055 Wii 2009 Shooter Electronic Arts 0.93
## 2056 PS2 2003 Racing Empire Interactive 0.49
## 2057 PS 1997 Role-Playing Capcom 0.29
## 2058 X360 2008 Sports Konami Digital Entertainment 0.13
## 2059 PS2 2000 Fighting Tecmo Koei 0.30
## 2060 NES 1985 Shooter Capcom 0.65
## 2061 N64 2000 Racing Nintendo 0.65
## 2062 NES 1991 Sports Nintendo 0.41
## 2063 GB 1997 Misc Nintendo 0.63
## 2064 PS2 2004 Misc Sammy Corporation 0.00
## 2065 XB 2003 Fighting Namco Bandai Games 0.78
## 2066 PS3 2008 Shooter Ubisoft 0.49
## 2067 X360 2012 Action THQ 0.72
## 2068 X360 2006 Sports Konami Digital Entertainment 0.08
## 2069 PS 1995 Racing Electronic Arts 0.56
## 2070 PS 2000 Sports Sony Computer Entertainment 0.56
## 2071 PSV 2013 Shooter Sony Computer Entertainment Europe 0.25
## 2072 PS 1996 Sports Electronic Arts 0.55
## 2073 PS2 2002 Action Tecmo Koei 0.13
## 2074 DS 2005 Strategy THQ 0.86
## 2075 PS3 2013 Misc Ubisoft 0.51
## 2076 PS3 2013 Action Electronic Arts 0.44
## 2077 Wii 2010 Misc THQ 0.89
## 2078 PS3 2013 Action Disney Interactive Studios 0.48
## 2079 X360 2011 Role-Playing Namco Bandai Games 0.64
## 2080 DS 2008 Puzzle Ubisoft 0.17
## 2081 PS 2000 Misc Sony Computer Entertainment 0.55
## 2082 X360 2013 Action Electronic Arts 0.64
## 2083 DS 2005 Adventure Capcom 0.49
## 2084 XB 2000 Sports Microsoft Game Studios 0.74
## 2085 GC 2003 Racing Vivendi Games 0.77
## 2086 DS 2008 Simulation Electronic Arts 0.59
## 2088 X360 2013 Action Ubisoft 0.57
## 2089 PSP 2006 Simulation Namco Bandai Games 0.37
## 2090 X360 2011 Sports Electronic Arts 0.94
## 2091 PS3 2011 Action Disney Interactive Studios 0.36
## 2092 Wii 2009 Misc Activision 0.60
## 2093 Wii 2009 Racing THQ 0.61
## 2094 PS 1998 Platform GT Interactive 0.55
## 2095 PS3 2009 Simulation Sony Computer Entertainment 0.35
## 2096 Wii 2009 Action Warner Bros. Interactive Entertainment 0.88
## 2097 PSP 2008 Racing Take-Two Interactive 0.52
## 2098 PS2 2000 Action Sony Computer Entertainment 0.30
## 2099 PS3 2008 Misc Activision 0.73
## 2100 Wii 2007 Fighting THQ 0.38
## 2101 Wii 2009 Sports Electronic Arts 0.23
## 2102 GC 2005 Platform Sega 0.76
## 2103 PC 2012 Simulation Focus Home Interactive 0.00
## 2104 PC 2008 Role-Playing Bethesda Softworks 0.02
## 2105 DS 2006 Racing THQ 0.85
## 2106 PSP 2008 Sports Konami Digital Entertainment 0.02
## 2107 PC 2012 Shooter Ubisoft 0.21
## 2108 Wii 2010 Role-Playing Nintendo 0.49
## 2109 X360 2013 Misc Ubisoft 0.72
## 2110 GBA 2005 Misc Nintendo 0.50
## 2111 PS3 2010 Racing Sega 0.36
## 2112 NES 1993 Puzzle Nintendo 0.62
## 2113 N64 1998 Racing Electronic Arts 0.94
## 2116 DS 2010 Role-Playing Square Enix 0.56
## 2117 PS3 2014 Role-Playing Ubisoft 0.42
## 2118 PS3 2011 Racing Ubisoft 0.24
## 2119 PS3 2012 Shooter 505 Games 0.38
## 2120 X360 2014 Shooter Ubisoft 0.45
## 2121 PC 2005 Action Take-Two Interactive 0.00
## 2122 PS3 2013 Action Ubisoft 0.34
## 2123 PS3 2013 Action Konami Digital Entertainment 0.03
## 2124 X360 2015 Sports Electronic Arts 0.82
## 2125 PS2 2009 Sports Electronic Arts 0.88
## 2126 X360 2009 Action Electronic Arts 0.62
## 2127 DS 2006 Simulation Namco Bandai Games 0.09
## 2128 PS4 2015 Role-Playing Square Enix 0.37
## 2129 PS3 2007 Sports Electronic Arts 0.89
## 2130 Wii 2008 Platform THQ 0.50
## 2131 XB 2005 Sports Electronic Arts 0.73
## 2132 PC 2012 Role-Playing Electronic Arts 0.40
## 2133 X360 2009 Sports Take-Two Interactive 0.88
## 2134 GBA 2003 Strategy Nintendo 0.49
## 2136 X360 2011 Action Activision 0.53
## 2137 Wii 2010 Sports Disney Interactive Studios 0.56
## 2138 PS2 2003 Sports Electronic Arts 0.47
## 2139 PS2 2007 Action Take-Two Interactive 0.78
## 2140 X360 2015 Sports Take-Two Interactive 0.77
## 2141 XB 2004 Sports Electronic Arts 0.33
## 2142 Wii 2012 Action Warner Bros. Interactive Entertainment 0.52
## 2143 SNES 1992 Role-Playing SquareSoft 0.00
## 2144 2600 1981 Platform Atari 0.90
## 2145 GC 2006 Action LucasArts 0.75
## 2147 PSV 2013 Role-Playing Square Enix 0.21
## 2148 PS 2000 Shooter Electronic Arts 0.54
## 2149 DS 2005 Simulation Electronic Arts 0.82
## 2150 PS2 2002 Role-Playing Sony Computer Entertainment 0.38
## 2151 PS 1999 Misc Sony Computer Entertainment 0.54
## 2152 PS3 2012 Action Sony Computer Entertainment 0.50
## 2153 PS 1999 Simulation Konami Digital Entertainment 0.00
## 2154 DS 2011 Misc THQ 0.72
## 2155 Wii 2012 Role-Playing Square Enix 0.00
## 2156 DS 2011 Action Disney Interactive Studios 0.37
## 2157 PSP 2006 Adventure Sony Computer Entertainment 0.30
## 2158 N64 1996 Fighting GT Interactive 0.72
## 2159 NES 1986 Shooter Hudson Soft 0.32
## 2160 X360 2008 Platform Sega 0.54
## 2161 PS3 2010 Shooter Capcom 0.29
## 2162 PS2 2000 Sports Electronic Arts 0.47
## 2163 3DS 2012 Role-Playing Square Enix 0.00
## 2164 DS 2008 Sports Ubisoft 0.30
## 2165 PS3 2012 Shooter Ubisoft 0.41
## 2166 DS 2006 Action Capcom 0.39
## 2167 PS2 2002 Platform Sony Computer Entertainment 0.36
## 2168 XB 2002 Fighting Midway Games 0.77
## 2169 PC 2011 Action Namco Bandai Games 0.25
## 2170 3DS 2011 Simulation Nintendo 0.40
## 2171 PS3 2013 Fighting Namco Bandai Games 0.32
## 2172 X360 2015 Action Warner Bros. Interactive Entertainment 0.47
## 2173 XB 2004 Sports Global Star 0.88
## 2175 PS2 2004 Misc Play It 0.80
## 2176 PS2 2005 Action Ubisoft 0.36
## 2177 GC 2003 Platform THQ 0.74
## 2178 X360 2014 Role-Playing Ubisoft 0.57
## 2179 DS 2008 Action Koch Media 0.65
## 2180 PS3 2008 Misc Sony Computer Entertainment 0.27
## 2181 Wii 2011 Racing Disney Interactive Studios 0.46
## 2182 PS 1996 Role-Playing Sony Computer Entertainment 0.26
## 2183 PS2 2000 Strategy Electronic Arts 0.27
## 2184 GBA 2003 Misc Konami Digital Entertainment 0.68
## 2185 PS 1999 Sports Electronic Arts 0.53
## 2186 PS3 2009 Action Electronic Arts 0.54
## 2187 PS3 2011 Action Activision 0.39
## 2188 Wii 2009 Misc Activision 0.41
## 2189 PS4 2015 Shooter Take-Two Interactive 0.35
## 2190 PS3 2008 Fighting THQ 0.51
## 2191 X360 2010 Shooter Electronic Arts 0.62
## 2192 Wii 2009 Sports Activision 0.70
## 2193 X360 2014 Action Warner Bros. Interactive Entertainment 0.48
## 2194 Wii 2011 Misc Nintendo 0.24
## 2195 PS2 2004 Shooter Sony Computer Entertainment 0.79
## 2196 PS3 2011 Action Square Enix 0.27
## 2197 PS2 2003 Racing Codemasters 0.01
## 2198 3DS 2011 Shooter Nintendo 0.48
## 2199 GC 2004 Platform THQ 0.73
## 2200 X360 2013 Misc Ubisoft 0.69
## 2201 PS 1996 Misc GT Interactive 0.52
## 2202 Wii 2006 Racing THQ 0.83
## 2203 PC 2012 Action Ubisoft 0.28
## 2204 PS2 2003 Action Konami Digital Entertainment 0.46
## 2205 3DS 2012 Sports Nintendo 0.26
## 2206 X360 2012 Action Namco Bandai Games 0.48
## 2207 X360 2009 Action Sega 0.51
## 2208 PS2 2005 Shooter THQ 0.78
## 2209 XB 2005 Sports Electronic Arts 0.70
## 2210 PS 1999 Role-Playing SquareSoft 0.10
## 2211 X360 2009 Sports Electronic Arts 0.87
## 2212 PS 1999 Sports Sony Computer Entertainment 0.52
## 2213 WiiU 2016 Action Nintendo 0.48
## 2214 PS2 2006 Action Take-Two Interactive 0.75
## 2215 XB 2003 Action Ubisoft 0.57
## 2216 PSP 2008 Role-Playing Sega 0.19
## 2217 PS2 2003 Sports Sony Computer Entertainment 0.46
## 2218 PS2 2006 Sports Sony Computer Entertainment 0.78
## 2219 PS2 2002 Sports Electronic Arts 0.46
## 2220 X360 2009 Shooter Codemasters 0.36
## 2221 Wii 2010 Sports Take-Two Interactive 0.78
## 2222 PS3 2009 Misc Sony Computer Entertainment 0.16
## 2223 GBA 2005 Misc N/A 0.67
## 2224 XB 2002 Sports Activision 0.59
## 2225 PC 2012 Shooter Take-Two Interactive 0.42
## 2226 Wii 2009 Sports Electronic Arts 0.29
## 2227 PS3 2008 Role-Playing Sony Computer Entertainment 0.33
## 2228 PS3 2012 Sports Electronic Arts 0.35
## 2229 Wii 2008 Racing Sega 0.50
## 2230 PS3 2015 Action Warner Bros. Interactive Entertainment 0.34
## 2231 DS 2007 Simulation Game Factory 0.85
## 2232 GBA 2004 Racing THQ 0.67
## 2233 2600 1981 Action Parker Bros. 0.87
## 2234 NES 1991 Platform Capcom 0.51
## 2235 NES 1987 Platform Konami Digital Entertainment 0.45
## 2236 N64 1999 Platform Activision 0.71
## 2237 GBA 2003 Action Unknown 0.67
## 2238 PS2 2007 Sports Sony Computer Entertainment 0.77
## 2239 X360 2014 Action Activision 0.54
## 2240 GC 2006 Racing THQ 0.72
## 2241 PS3 2008 Shooter Ubisoft 0.44
## 2242 DS 2010 Role-Playing Level 5 0.00
## 2243 WiiU 2016 Fighting Namco Bandai Games 0.47
## 2244 PS 1999 Racing Ubisoft 0.52
## 2245 PS2 2003 Action Konami Digital Entertainment 0.45
## 2246 PS2 2001 Simulation Titus 0.45
## 2247 X360 2006 Role-Playing Microsoft Game Studios 0.30
## 2248 PS 2000 Action Electronic Arts 0.51
## 2249 X360 2010 Sports Electronic Arts 0.86
## 2250 PS 1997 Sports Electronic Arts 0.51
## 2251 X360 2012 Sports Electronic Arts 0.17
## 2252 PS3 2010 Sports Electronic Arts 0.52
## 2253 PSP 2006 Action THQ 0.55
## 2254 X360 2008 Fighting THQ 0.58
## 2255 X360 2010 Action Electronic Arts 0.63
## 2256 X360 2011 Misc Activision 0.87
## 2257 PS 1996 Sports Acclaim Entertainment 0.51
## 2258 Wii 2008 Action Activision 0.50
## 2259 N64 1999 Fighting Electronic Arts 0.63
## 2260 NES 1985 Platform Nintendo 0.39
## 2261 PC 2008 Adventure Ubisoft 0.01
## 2262 3DS 2013 Adventure Nintendo 0.16
## 2263 X360 2013 Shooter Electronic Arts 0.51
## 2264 PS4 2014 Action Warner Bros. Interactive Entertainment 0.37
## 2265 PS3 2011 Action Tecmo Koei 0.25
## 2266 PS3 2014 Action Bethesda Softworks 0.26
## 2267 PS3 2012 Sports Sony Computer Entertainment 0.86
## 2268 GC 2006 Racing Sega 0.71
## 2269 PS2 2003 Racing Empire Interactive 0.45
## 2270 PS 1996 Fighting Sony Computer Entertainment 0.12
## 2271 X360 2007 Role-Playing Microsoft Game Studios 0.45
## 2272 PS4 2015 Sports Sony Computer Entertainment 0.67
## 2273 PS3 2009 Shooter Codemasters 0.23
## 2274 PS3 2011 Shooter THQ 0.32
## 2275 Wii 2007 Sports Bethesda Softworks 0.85
## 2276 PS2 2002 Sports Activision 0.45
## 2277 PS3 2009 Action Ubisoft 0.32
## 2278 3DS 2012 Action Marvelous Entertainment 0.41
## 2279 X360 2008 Strategy Ubisoft 0.58
## 2280 PS2 2002 Sports Electronic Arts 0.45
## 2281 PS2 2003 Racing Genki 0.35
## 2282 PS3 2009 Action Activision 0.47
## 2283 PS 2000 Racing Codemasters 0.02
## 2284 N64 1998 Platform Hasbro Interactive 0.72
## 2285 PS3 2009 Racing THQ 0.52
## 2286 X360 2015 Adventure Mojang 0.46
## 2288 X360 2009 Role-Playing Activision 0.68
## 2289 DS 2008 Shooter Activision 0.57
## 2290 SNES 1994 Simulation Hudson Soft 0.00
## 2291 XB 2004 Misc Sega 0.61
## 2292 PS3 2009 Misc Activision 0.42
## 2293 XOne 2014 Role-Playing Electronic Arts 0.55
## 2294 PS3 2007 Action Electronic Arts 0.38
## 2295 PS2 2002 Sports Electronic Arts 0.44
## 2297 SNES 1996 Racing ASCII Entertainment 0.00
## 2298 PS2 2004 Sports Sony Computer Entertainment 0.44
## 2299 PS3 2011 Shooter Sony Computer Entertainment 0.66
## 2300 PS2 2005 Racing Electronic Arts 0.75
## 2301 PS3 2008 Misc Sony Computer Entertainment 0.28
## 2302 Wii 2008 Sports Atari 0.38
## 2303 PS 1995 Racing Psygnosis 0.50
## 2304 DS 2008 Puzzle Midway Games 0.30
## 2305 PS3 2013 Shooter Electronic Arts 0.26
## 2306 PS 1999 Action 989 Studios 0.50
## 2307 PS2 2006 Sports Sony Computer Entertainment 0.17
## 2308 XB 2003 Platform Sega 0.41
## 2309 PSP 2009 Shooter Sony Computer Entertainment 0.27
## 2310 PS3 2011 Sports Electronic Arts 0.52
## 2311 DS 2008 Action LucasArts 0.51
## 2312 N64 1998 Sports Electronic Arts 0.84
## 2313 PS2 2007 Platform Activision 0.74
## 2314 XB 2002 Shooter Electronic Arts 0.65
## 2315 Wii 2008 Misc Sega 0.42
## 2316 PC 2014 Role-Playing Bethesda Softworks 0.32
## 2317 PS3 2008 Racing Disney Interactive Studios 0.42
## 2318 Wii 2008 Sports Electronic Arts 0.29
## 2319 DS 2008 Role-Playing Nintendo 0.84
## 2320 PS3 2012 Action Sony Computer Entertainment 0.42
## 2321 XB 2004 Role-Playing Activision 0.62
## 2322 XB 2004 Sports Electronic Arts 0.81
## 2323 PS2 2003 Sports Electronic Arts 0.44
## 2324 X360 2010 Sports THQ 0.73
## 2325 GBA 2005 Platform Activision 0.62
## 2326 PS3 2009 Shooter Ubisoft 0.35
## 2327 PSP 2006 Shooter Sony Computer Entertainment 0.44
## 2328 Wii 2007 Sports Electronic Arts 0.82
## 2329 PS2 2005 Sports Unknown 0.74
## 2330 PS4 2015 Action Warner Bros. Interactive Entertainment 0.32
## 2331 GBA 2001 Platform Konami Digital Entertainment 0.60
## 2332 DS 2008 Role-Playing Sega 0.51
## 2333 PS2 2005 Sports Electronic Arts 0.74
## 2334 GBA 2004 Adventure Nintendo 0.46
## 2335 PS3 2012 Platform Sony Computer Entertainment 0.60
## 2336 GBA 2004 Strategy Nintendo 0.42
## 2337 GB 2001 Strategy Nintendo 0.00
## 2338 GC 2003 Action THQ 0.69
## 2339 Wii 2008 Adventure Ubisoft 0.36
## 2340 PS 1997 Simulation Sony Computer Entertainment 0.16
## 2341 Wii 2009 Racing Codemasters 0.15
## 2342 PS2 2001 Sports Sega 0.44
## 2343 PS4 2016 Sports Electronic Arts 0.28
## 2344 PSP 2011 Fighting Square Enix 0.21
## 2345 3DS 2013 Action Warner Bros. Interactive Entertainment 0.42
## 2346 X360 2010 Racing Codemasters 0.18
## 2347 Wii 2006 Racing Ubisoft 0.81
## 2348 PC 2009 Shooter Activision 0.01
## 2349 WiiU 2013 Sports Nintendo 0.39
## 2350 X360 2012 Role-Playing Electronic Arts 0.55
## 2351 Wii 2011 Shooter Activision 0.60
## 2352 PS 2000 Sports Sony Computer Entertainment 0.49
## 2353 PS2 2006 Misc Sony Computer Entertainment 0.00
## 2354 SNES 1995 Role-Playing SquareSoft 0.00
## 2355 PS 1996 Platform Capcom 0.44
## 2356 X360 2010 Fighting THQ 0.44
## 2357 X360 2012 Action Square Enix 0.38
## 2358 PC 2008 Action Take-Two Interactive 0.01
## 2359 DS 2008 Misc Pinnacle 0.00
## 2360 X360 2011 Misc Ubisoft 0.62
## 2361 Wii 2009 Action Atari 0.60
## 2362 X360 2010 Misc MTV Games 0.73
## 2363 3DS 2012 Action Capcom 0.30
## 2364 PS2 2005 Action Take-Two Interactive 0.43
## 2365 PS2 2007 Misc Sony Computer Entertainment 0.32
## 2366 Wii 2009 Simulation Nintendo 0.47
## 2367 PS 1996 Shooter CTO SpA 0.49
## 2368 XOne 2015 Action Square Enix 0.42
## 2369 PSP 2004 Strategy Konami Digital Entertainment 0.32
## 2370 Wii 2008 Simulation 505 Games 0.51
## 2371 PS3 2012 Fighting Namco Bandai Games 0.28
## 2372 PS2 2004 Sports Global Star 0.43
## 2373 X360 2008 Racing Codemasters 0.33
## 2374 PSP 2009 Role-Playing Sega 0.08
## 2375 XB 2003 Simulation Microsoft Game Studios 0.65
## 2376 PS 2001 Shooter TalonSoft 0.49
## 2377 PS 1995 Platform Crystal Dynamics 0.49
## 2378 XOne 2013 Sports Take-Two Interactive 0.70
## 2379 X360 2007 Racing Codemasters 0.38
## 2380 SNES 1994 Sports ASCII Entertainment 0.00
## 2381 Wii 2010 Sports Ubisoft 0.71
## 2382 X360 2009 Shooter THQ 0.48
## 2383 XB 2003 Shooter Ubisoft 0.61
## 2384 PS3 2008 Shooter Electronic Arts 0.29
## 2385 PS 1997 Racing Infogrames 0.43
## 2386 PS2 2008 Role-Playing Square Enix 0.73
## 2387 Wii 2010 Puzzle THQ 0.61
## 2388 PS3 2012 Action Electronic Arts 0.82
## 2389 PS3 2012 Role-Playing Electronic Arts 0.37
## 2390 PS 1996 Sports Sony Computer Entertainment 0.48
## 2391 PS3 2008 Sports Sega 0.14
## 2392 Wii 2009 Shooter Sega 0.46
## 2393 PS2 2006 Sports Activision 0.72
## 2394 PS4 2013 Fighting Warner Bros. Interactive Entertainment 0.46
## 2395 PS 1998 Sports Electronic Arts 0.48
## 2396 PSP 2008 Misc Sony Computer Entertainment 0.20
## 2397 X360 2008 Shooter Ubisoft 0.47
## 2398 PS2 2005 Fighting Electronic Arts 0.72
## 2399 DS 2009 Misc Disney Interactive Studios 0.59
## 2400 DS 2009 Action Warner Bros. Interactive Entertainment 0.63
## 2401 XB 2002 Shooter SCi 0.48
## 2402 PS2 2002 Sports Electronic Arts 0.43
## 2403 PS 2000 Role-Playing Crave Entertainment 0.30
## 2404 PSP 2006 Puzzle Sony Computer Entertainment 0.12
## 2405 PS2 2007 Action Tecmo Koei 0.11
## 2406 X360 2010 Misc Activision 0.47
## 2407 2600 1982 Misc Quelle 0.81
## 2408 PS3 2012 Role-Playing Namco Bandai Games 0.20
## 2409 PS2 2007 Misc Sony Computer Entertainment 0.10
## 2410 3DS 2015 Action mixi, Inc 0.00
## 2411 Wii 2007 Action Eidos Interactive 0.12
## 2412 PSP 2006 Sports Konami Digital Entertainment 0.01
## 2413 PS3 2012 Action THQ 0.35
## 2414 PS3 2009 Action Sony Computer Entertainment 0.34
## 2415 DS 2007 Role-Playing Square Enix 0.54
## 2417 PS2 2002 Fighting Rage Software 0.42
## 2418 3DS 2015 Role-Playing Square Enix 0.00
## 2419 PS 2001 Racing Empire Interactive 0.48
## 2420 N64 1997 Sports Electronic Arts 0.81
## 2421 PS 1998 Sports Sony Computer Entertainment 0.48
## 2422 PS3 2008 Fighting Atari 0.22
## 2424 DS 2008 Platform Nintendo 0.61
## 2425 X360 2010 Sports Electronic Arts 0.32
## 2426 PS2 2003 Action Tecmo Koei 0.17
## 2427 PS3 2009 Action Ubisoft Annecy 0.52
## 2428 X360 2014 Racing Microsoft Game Studios 0.35
## 2429 PS3 2009 Sports Electronic Arts 0.46
## 2430 DS 2007 Sports Electronic Arts 0.10
## 2431 PS 1999 Action 3DO 0.47
## 2432 Wii 2009 Racing Electronic Arts 0.46
## 2433 Wii 2008 Sports Electronic Arts 0.78
## 2434 X360 2007 Sports Take-Two Interactive 0.79
## 2435 XOne 2016 Action Ubisoft 0.46
## 2436 PS 1996 Fighting Virgin Interactive 0.14
## 2437 XB 2004 Sports Electronic Arts 0.64
## 2438 PS3 2010 Shooter Electronic Arts 0.44
## 2439 Wii 2007 Simulation Ubisoft 0.74
## 2440 NES 1989 Platform Konami Digital Entertainment 0.40
## 2441 DS 2007 Action Electronic Arts 0.28
## 2442 PS 1997 Action GT Interactive 0.47
## 2443 PSP 2005 Racing Electronic Arts 0.70
## 2444 PS3 2014 Sports Take-Two Interactive 0.36
## 2445 XOne 2016 Shooter Activision 0.52
## 2446 PS2 2007 Action THQ 0.31
## 2447 PS 1995 Sports Sony Computer Entertainment 0.47
## 2448 PS2 2002 Racing Acclaim Entertainment 0.42
## 2449 3DS 2016 Action Nintendo 0.26
## 2450 PS2 2000 Fighting Virgin Interactive 0.32
## 2451 Wii 2010 Misc Konami Digital Entertainment 0.52
## 2452 X360 2012 Shooter 505 Games 0.46
## 2453 PS4 2014 Action Square Enix 0.28
## 2454 GC 2004 Action Activision 0.65
## 2455 DS 2010 Role-Playing Nintendo 0.56
## 2456 PS3 2010 Sports Electronic Arts 0.37
## 2457 PS3 2012 Action Capcom 0.42
## 2458 PS4 2016 Action Sony Computer Entertainment 0.68
## 2459 PS3 2009 Sports Take-Two Interactive 0.75
## 2460 WiiU 2015 Role-Playing Nintendo 0.36
## 2461 DS 2008 Simulation Ubisoft 0.46
## 2462 GC 2004 Action THQ 0.65
## 2463 PS3 2010 Sports Electronic Arts 0.79
## 2464 PS3 2011 Action Electronic Arts 0.40
## 2465 PS2 2003 Racing Acclaim Entertainment 0.41
## 2466 Wii 2007 Simulation Rising Star Games 0.69
## 2467 NES 1987 Role-Playing SquareSoft 0.32
## 2468 PS3 2012 Fighting Capcom 0.42
## 2469 PS 2001 Sports THQ 0.47
## 2470 X360 2011 Shooter Take-Two Interactive 0.52
## 2471 PS2 2002 Racing Empire Interactive 0.41
## 2472 PS4 2015 Shooter Take-Two Interactive 0.36
## 2473 PS2 2005 Role-Playing Sony Computer Entertainment 0.24
## 2474 PS2 2004 Sports Sega 0.41
## 2475 GBA 2004 Adventure Nintendo 0.60
## 2476 PSV 2014 Sports Electronic Arts 0.13
## 2477 PS3 2007 Shooter Namco Bandai Games 0.32
## 2478 PS2 2007 Action D3Publisher 0.09
## 2479 X360 2013 Racing Electronic Arts 0.37
## 2480 PS 1999 Puzzle Atari 0.46
## 2481 Wii 2008 Fighting THQ 0.44
## 2482 PS 1999 Simulation Sony Computer Entertainment 0.22
## 2483 PS2 2000 Action THQ 0.24
## 2484 DS 2008 Strategy Ubisoft 0.38
## 2486 GBA 2004 Action Disney Interactive Studios 0.60
## 2487 PSV 2014 Shooter Take-Two Interactive 0.43
## 2488 PS2 2000 Sports Electronic Arts 0.27
## 2489 XB 2003 Shooter Microsoft Game Studios 0.62
## 2490 X360 2012 Misc Microsoft Game Studios 0.57
## 2491 GB 2000 Misc Konami Digital Entertainment 0.00
## 2492 PS 1998 Misc Unknown 0.46
## 2493 PS 1997 Adventure Capcom 0.39
## 2494 PS3 2011 Sports Electronic Arts 0.78
## 2495 PS2 2005 Platform Sony Computer Entertainment 0.69
## 2496 Wii 2008 Misc Ubisoft 0.77
## 2497 X360 2008 Strategy Take-Two Interactive 0.58
## 2499 DS 2007 Puzzle Scholastic Inc. 0.77
## 2500 PS3 2012 Action Activision 0.31
## 2501 PS3 2010 Fighting Namco Bandai Games 0.42
## 2502 PS 1998 Platform Sony Computer Entertainment 0.46
## 2503 PS 1996 Adventure Interplay 0.46
## 2504 Wii 2009 Sports Hudson Soft 0.33
## 2505 XB 2002 Shooter Electronic Arts 0.58
## 2506 XOne 2016 Sports Electronic Arts 0.72
## 2507 PSP 2005 Sports Activision 0.46
## 2508 GC 2001 Sports Activision 0.64
## 2509 PS2 2006 Role-Playing Activision 0.69
## 2510 Wii 2009 Action LucasArts 0.44
## 2511 X360 2010 Misc Activision 0.64
## 2512 PS4 2016 Fighting Capcom 0.35
## 2513 XB 2002 Racing Electronic Arts 0.68
## 2514 NES 1984 Puzzle Nintendo 0.42
## 2515 N64 1996 Fighting Nintendo 0.61
## 2516 XB 2001 Sports Microsoft Game Studios 0.69
## 2517 2600 1981 Action Mystique 0.76
## 2518 PSP 2005 Adventure Sony Computer Entertainment 0.19
## 2519 PS3 2013 Action Capcom 0.24
## 2520 3DS 2011 Role-Playing Namco Bandai Games 0.42
## 2521 PS2 2002 Platform THQ 0.40
## 2522 PS3 2010 Misc Activision 0.33
## 2523 Wii 2010 Misc Electronic Arts 0.47
## 2524 PS3 2015 Sports Electronic Arts 0.56
## 2525 X360 2007 Shooter Midway Games 0.40
## 2526 DS 2008 Simulation Ubisoft 0.40
## 2527 PS2 2008 Role-Playing Atlus 0.34
## 2528 PS3 2008 Misc Sony Computer Entertainment 0.29
## 2530 PS4 2013 Sports Electronic Arts 0.62
## 2531 PS3 2012 Action Sony Computer Entertainment 0.67
## 2532 GB 2000 Role-Playing Enix Corporation 0.00
## 2533 DS 2006 Action Disney Interactive Studios 0.73
## 2534 PS2 2000 Fighting Midway Games 0.40
## 2535 SNES 1994 Adventure ChunSoft 0.00
## 2536 PSP 2007 Misc Sony Computer Entertainment 0.33
## 2537 PS 2000 Role-Playing Namco Bandai Games 0.06
## 2538 SNES 1994 Puzzle Hudson Soft 0.00
## 2539 PS 2000 Racing Electronic Arts 0.45
## 2540 Wii 2010 Sports Electronic Arts 0.77
## 2541 GC 2004 Action Nintendo 0.63
## 2542 PS 1999 Sports Konami Digital Entertainment 0.00
## 2543 PS4 2015 Misc Activision 0.32
## 2544 PS 1999 Role-Playing Enix Corporation 0.07
## 2545 PSP 2011 Role-Playing Unknown 0.00
## 2546 X360 2009 Sports Konami Digital Entertainment 0.12
## 2547 N64 1999 Action 3DO 0.68
## 2548 NES 1987 Platform Capcom 0.45
## 2549 PS2 2004 Shooter Ubisoft 0.40
## 2550 PS3 2014 Action Warner Bros. Interactive Entertainment 0.33
## 2551 SNES 1994 Role-Playing Nintendo 0.00
## 2552 X360 2009 Racing Codemasters 0.32
## 2553 3DS 2012 Puzzle Level 5 0.20
## 2554 PS 1998 Puzzle Atari 0.45
## 2555 XOne 2015 Action Warner Bros. Interactive Entertainment 0.43
## 2556 PS3 2009 Sports Electronic Arts 0.75
## 2557 Wii 2008 Action Koch Media 0.52
## 2558 PS 1998 Sports Konami Digital Entertainment 0.00
## 2559 PS2 2007 Role-Playing Square Enix 0.35
## 2560 PS2 2005 Simulation Electronic Arts 0.67
## 2561 X360 2009 Misc Activision 0.52
## 2562 PS3 2013 Sports Electronic Arts 0.75
## 2563 Wii 2009 Action Sega 0.46
## 2564 X360 2011 Fighting Electronic Arts 0.40
## 2565 PS 2000 Misc Eidos Interactive 0.45
## 2566 PS2 2005 Action Sega 0.03
## 2567 GC 2003 Simulation LucasArts 0.62
## 2568 Wii 2011 Misc Ubisoft 0.19
## 2569 PS 1997 Racing Electronic Arts 0.45
## 2570 PS2 2004 Shooter Eidos Interactive 0.39
## 2571 PSP 2006 Simulation Electronic Arts 0.19
## 2572 PS 1999 Role-Playing Square EA 0.45
## 2573 X360 2013 Shooter Sega 0.36
## 2574 PSP 2009 Sports Konami Digital Entertainment 0.09
## 2575 X360 2012 Action Activision 0.48
## 2576 X360 2010 Racing Sega 0.37
## 2577 PS3 2011 Shooter Activision 0.33
## 2578 PS3 2015 Sports Take-Two Interactive 0.44
## 2579 Wii 2008 Sports THQ 0.43
## 2580 PSP 2007 Simulation Electronic Arts 0.08
## 2581 XB 2004 Action Ubisoft 0.48
## 2582 X360 2012 Role-Playing Capcom 0.42
## 2583 X360 2012 Action THQ 0.45
## 2584 PS3 2013 Action Capcom 0.14
## 2585 DS 2007 Misc Ubisoft 0.73
## 2586 PS 2000 Strategy Banpresto 0.00
## 2588 GC 2002 Racing Electronic Arts 0.68
## 2589 Wii 2010 Action LucasArts 0.54
## 2590 X360 2009 Misc Activision 0.51
## 2591 WiiU 2013 Sports Nintendo 0.39
## 2592 PS2 2002 Role-Playing Namco Bandai Games 0.00
## 2593 SNES 1993 Sports Nintendo 0.00
## 2594 PS3 2011 Shooter City Interactive 0.26
## 2595 X360 2009 Action Electronic Arts 0.47
## 2596 PSP 2010 Sports Konami Digital Entertainment 0.05
## 2597 2600 1981 Action 20th Century Fox Video Games 0.74
## 2598 PS2 2006 Fighting Atari 0.66
## 2599 PS3 2012 Adventure Avanquest Software 0.40
## 2600 X360 2011 Platform Ubisoft 0.38
## 2601 PS2 2008 Misc Activision 0.61
## 2602 PS 1994 Racing Sony Computer Entertainment 0.00
## 2603 DS 2007 Role-Playing Square Enix 0.42
## 2604 GC 2003 Role-Playing Ubisoft 0.61
## 2605 PS 1997 Simulation Hudson Entertainment 0.00
## 2606 PSP 2009 Strategy Sony Computer Entertainment 0.17
## 2607 PS 2001 Racing Take-Two Interactive 0.44
## 2608 PS3 2009 Sports Electronic Arts 0.42
## 2609 DS 2008 Action LucasArts 0.62
## 2610 N64 1999 Fighting Electronic Arts 0.63
## 2611 NES 1992 Platform Capcom 0.39
## 2612 X360 2009 Role-Playing Square Enix 0.32
## 2613 PS2 2007 Simulation Konami Digital Entertainment 0.64
## 2614 PS2 2000 Simulation Ubisoft 0.28
## 2615 3DS 2014 Role-Playing Square Enix 0.00
## 2616 Wii 2007 Shooter Sega 0.42
## 2617 X360 2013 Action Deep Silver 0.44
## 2618 DS 2007 Action THQ 0.71
## 2619 N64 1998 Sports Nintendo 0.75
## 2620 Wii 2011 Sports Electronic Arts 0.16
## 2621 X360 2008 Role-Playing Microsoft Game Studios 0.38
## 2622 PS3 2008 Strategy Take-Two Interactive 0.49
## 2623 PS2 2007 Sports Electronic Arts 0.65
## 2624 XB 2003 Sports Electronic Arts 0.24
## 2625 DS 2008 Sports Nintendo 0.22
## 2626 X360 2010 Fighting Namco Bandai Games 0.43
## 2627 Wii 2011 Action Nintendo 0.27
## 2628 3DS 2013 Puzzle Nintendo 0.00
## 2629 X360 2006 Action Ubisoft 0.67
## 2630 2600 1982 Shooter Atari 0.73
## 2631 X360 2008 Misc Microsoft Game Studios 0.12
## 2632 GBA 2002 Platform Vivendi Games 0.56
## 2633 DS 2006 Shooter Nintendo 0.58
## 2634 PC 1992 Adventure Virgin Interactive 0.01
## 2635 PS 1994 Shooter Infogrames 0.43
## 2636 PS2 2007 Misc Sony Computer Entertainment 0.17
## 2637 DS 2009 Puzzle Ubisoft 0.41
## 2638 DS 2008 Adventure THQ 0.72
## 2639 Wii 2009 Misc Nordic Games 0.00
## 2640 PS 1999 Fighting Capcom 0.43
## 2641 PS3 2012 Action Sony Computer Entertainment 0.72
## 2642 PS 1997 Strategy Electronic Arts 0.43
## 2643 DS 2010 Puzzle Nintendo 0.29
## 2644 PS4 2015 Sports Konami Digital Entertainment 0.13
## 2645 PSP 2006 Strategy THQ 0.11
## 2646 PSP 2009 Shooter LucasArts 0.38
## 2647 X360 2011 Sports THQ 0.53
## 2648 X360 2012 Action Capcom 0.55
## 2649 PS2 2006 Sports Take-Two Interactive 0.65
## 2650 PSP 2008 Racing Electronic Arts 0.24
## 2651 X360 2010 Action Disney Interactive Studios 0.41
## 2652 SNES 1993 Role-Playing ChunSoft 0.00
## 2653 2600 1983 Puzzle Atari 0.72
## 2654 GC 2002 Shooter Electronic Arts 0.60
## 2655 X360 2008 Platform Microsoft Game Studios 0.32
## 2656 PS 1998 Sports Sony Computer Entertainment 0.43
## 2657 X360 2009 Action Ubisoft 0.34
## 2658 Wii 2009 Action Electronic Arts 0.28
## 2659 Wii 2009 Misc Activision 0.47
## 2660 X360 2005 Shooter Microsoft Game Studios 0.66
## 2661 2600 1982 Shooter Atari 0.72
## 2662 PS 1996 Racing Electronic Arts 0.43
## 2663 PS 2000 Misc Interplay 0.43
## 2664 XOne 2013 Sports Electronic Arts 0.67
## 2665 2600 1981 Action Men-A-Vision 0.72
## 2666 PSP 2008 Racing Electronic Arts 0.23
## 2667 PS3 2011 Shooter Take-Two Interactive 0.33
## 2668 PSV 2014 Role-Playing Sony Computer Entertainment 0.22
## 2669 PS2 2005 Fighting Electronic Arts 0.64
## 2670 2600 1980 Fighting Activision 0.72
## 2671 PS 1999 Racing Electronic Arts 0.43
## 2672 PS3 2009 Fighting Namco Bandai Games 0.37
## 2673 2600 1983 Action Atari 0.72
## 2674 N64 2001 Platform THQ 0.53
## 2675 GB 1999 Role-Playing Enix Corporation 0.00
## 2676 GBA 2002 Action THQ 0.55
## 2677 DS 2008 Simulation Nobilis 0.61
## 2678 DS 2012 Action Warner Bros. Interactive Entertainment 0.43
## 2679 PSP 2005 Action Sony Computer Entertainment 0.71
## 2680 PS2 2003 Shooter SCi 0.38
## 2681 PS2 2001 Platform Capcom 0.38
## 2682 DS 2004 Racing Nintendo 0.21
## 2683 GBA 2005 Platform Nintendo 0.45
## 2684 PS2 2002 Sports Acclaim Entertainment 0.38
## 2685 PS2 2002 Role-Playing Atari 0.10
## 2686 PS2 2003 Sports Activision Value 0.37
## 2687 PS2 2008 Platform Sega 0.37
## 2688 PS 1996 Racing Psygnosis 0.18
## 2689 PS3 2014 Shooter Electronic Arts 0.22
## 2690 Wii 2010 Adventure Ubisoft 0.22
## 2691 3DS 2011 Simulation Electronic Arts 0.30
## 2692 XB 2004 Racing Atari 0.36
## 2693 PS2 2005 Action LucasArts 0.64
## 2694 PS2 2003 Fighting Gotham Games 0.37
## 2695 PS 1995 Fighting Virgin Interactive 0.17
## 2696 PSV 2012 Fighting Warner Bros. Interactive Entertainment 0.47
## 2697 PS 1998 Sports Konami Digital Entertainment 0.00
## 2698 X360 2010 Shooter Capcom 0.38
## 2699 PS3 2012 Fighting Namco Bandai Games 0.35
## 2700 PC 2011 Shooter Valve Software 0.33
## 2701 DS 2005 Misc Sega 0.70
## 2702 PS4 2014 Sports Konami Digital Entertainment 0.09
## 2703 Wii 2009 Puzzle THQ 0.29
## 2704 PS3 2009 Action Electronic Arts 0.38
## 2705 NES 1988 Role-Playing SquareSoft 0.00
## 2706 N64 2001 Sports Activision 0.59
## 2707 PS2 2002 Misc Namco Bandai Games 0.00
## 2708 GBA 2005 Role-Playing Capcom 0.09
## 2709 PS2 2004 Shooter Sony Computer Entertainment 0.37
## 2710 PS2 2010 Sports Electronic Arts 0.11
## 2711 Wii 2009 Sports Big Ben Interactive 0.67
## 2712 X360 2007 Shooter Eidos Interactive 0.36
## 2713 PC 2011 Action Ubisoft 0.14
## 2714 XB 2004 Fighting Midway Games 0.61
## 2715 DS 2009 Adventure Capcom 0.27
## 2716 GBA 2004 Adventure Disney Interactive Studios 0.54
## 2717 Wii 2014 Sports Electronic Arts 0.24
## 2718 PS2 2002 Fighting Capcom 0.31
## 2719 PSP 2009 Racing Electronic Arts 0.16
## 2720 PS3 2007 Shooter Eidos Interactive 0.29
## 2721 X360 2014 Role-Playing Namco Bandai Games 0.48
## 2722 PS2 2005 Action Activision 0.57
## 2723 PS2 2001 Fighting Acclaim Entertainment 0.37
## 2724 X360 2006 Sports Take-Two Interactive 0.28
## 2725 Wii 2010 Misc Electronic Arts 0.24
## 2726 PS3 2006 Action Sony Computer Entertainment 0.18
## 2727 Wii 2008 Simulation Rising Star Games 0.60
## 2728 GB 1991 Role-Playing SquareSoft 0.00
## 2729 PC 2013 Strategy Sega 0.12
## 2730 XOne 2015 Misc Microsoft Game Studios 0.47
## 2731 DS 2007 Role-Playing Disney Interactive Studios 0.67
## 2732 PS2 2008 Platform THQ 0.21
## 2733 PSP 2008 Fighting THQ 0.41
## 2734 PS3 2009 Misc Activision 0.41
## 2735 PS 2000 Platform Capcom 0.30
## 2736 PSV 2013 Adventure Sony Computer Entertainment Europe 0.17
## 2737 PS3 2010 Misc Activision 0.47
## 2738 PS3 2009 Action Electronic Arts 0.41
## 2739 Wii 2009 Fighting THQ 0.51
## 2740 X360 2008 Action Touchstone 0.46
## 2741 PS3 2012 Action Activision 0.36
## 2742 PS2 2004 Action Activision 0.37
## 2743 N64 1997 Racing GT Interactive 0.63
## 2744 X360 2012 Action Activision 0.43
## 2745 PS2 2001 Shooter Konami Digital Entertainment 0.30
## 2746 PS3 2009 Shooter THQ 0.33
## 2747 PS 1997 Fighting Virgin Interactive 0.28
## 2748 PSP 2005 Sports Electronic Arts 0.69
## 2749 PSP 2005 Shooter Konami Digital Entertainment 0.28
## 2750 XB 2004 Sports Activision 0.48
## 2751 X360 2008 Role-Playing Atari 0.32
## 2752 PS3 2009 Action Activision 0.31
## 2753 DS 2008 Action Activision 0.42
## 2754 PS3 2010 Racing Disney Interactive Studios 0.31
## 2755 PS2 2001 Fighting Capcom 0.22
## 2756 PS2 2006 Sports Electronic Arts 0.62
## 2757 WiiU 2014 Misc Ubisoft 0.40
## 2758 X360 2014 Shooter Take-Two Interactive 0.46
## 2759 PS3 2014 Platform Sony Computer Entertainment 0.20
## 2760 PS3 2009 Role-Playing Activision 0.49
## 2761 DS 2008 Sports Sega 0.29
## 2762 X360 2012 Adventure Avanquest Software 0.55
## 2763 PS3 2011 Action Namco Bandai Games 0.30
## 2764 DS 2006 Fighting Nintendo 0.00
## 2765 PS2 2001 Misc Sony Computer Entertainment 0.36
## 2766 PS3 2010 Role-Playing Sega 0.20
## 2767 PS2 2001 Racing Acclaim Entertainment 0.36
## 2768 PSP 2007 Shooter Ubisoft 0.42
## 2769 X360 2011 Role-Playing Square Enix 0.36
## 2770 3DS 2012 Action Warner Bros. Interactive Entertainment 0.41
## 2771 PSP 2006 Fighting Midway Games 0.67
## 2772 3DS 2015 Role-Playing Nintendo 0.16
## 2773 GBA 2001 Misc Konami Digital Entertainment 0.42
## 2774 PS3 2011 Shooter Bethesda Softworks 0.29
## 2775 WiiU 2013 Action Warner Bros. Interactive Entertainment 0.31
## 2776 PS3 2010 Racing Activision 0.22
## 2778 Wii 2007 Misc Atari 0.68
## 2779 XB 2005 Racing Take-Two Interactive 0.61
## 2780 PC 2011 Action Electronic Arts 0.16
## 2781 GBA 2002 Action Electronic Arts 0.53
## 2782 PS2 2001 Sports Electronic Arts 0.36
## 2783 Wii 2009 Action Activision 0.36
## 2784 PS 1999 Racing Sony Computer Entertainment 0.41
## 2785 PS3 2012 Fighting Namco Bandai Games 0.27
## 2786 XB 2002 Shooter Atari 0.59
## 2788 PS3 2007 Action Disney Interactive Studios 0.17
## 2789 PS3 2007 Sports Electronic Arts 0.22
## 2790 PS3 2012 Fighting Atlus 0.30
## 2791 GBA 2003 Role-Playing Nintendo 0.31
## 2792 DS 2007 Simulation Rising Star Games 0.44
## 2793 PS3 2010 Role-Playing Square Enix 0.28
## 2794 DS 2007 Simulation Electronic Arts 0.63
## 2795 PS 1997 Sports Electronic Arts 0.14
## 2796 SNES 1993 Fighting Namco Bandai Games 0.00
## 2797 GBA 2004 Platform Nintendo 0.40
## 2798 PC 2013 Shooter Activision 0.23
## 2799 GB 1991 Puzzle Nintendo 0.00
## 2800 N64 1998 Fighting GT Interactive 0.55
## 2801 X360 2011 Racing Codemasters 0.11
## 2802 Wii 2009 Sports Electronic Arts 0.63
## 2803 DS 2005 Platform Nintendo 0.37
## 2804 PS 1999 Platform Fox Interactive 0.41
## 2805 DS 2007 Misc Nintendo 0.00
## 2806 XB 2001 Platform Atari 0.54
## 2807 2600 1981 Shooter Atari 0.68
## 2808 X360 2010 Sports Electronic Arts 0.61
## 2809 PC 2014 Role-Playing Electronic Arts 0.32
## 2810 DS 2009 Adventure Activision 0.67
## 2811 X360 2011 Racing Codemasters 0.23
## 2812 X360 2006 Sports Electronic Arts 0.67
## 2813 Wii 2011 Misc Nintendo 0.00
## 2814 XB 2004 Strategy THQ 0.54
## 2815 PS2 2004 Puzzle Namco Bandai Games 0.47
## 2816 GBA 2003 Action Atari 0.52
## 2817 PS3 2012 Action Sony Computer Entertainment 0.47
## 2818 Wii 2009 Action Ubisoft 0.33
## 2819 PS2 2001 Sports Codemasters 0.36
## 2820 X360 2009 Racing THQ 0.52
## 2821 DS 2008 Simulation Ubisoft 0.34
## 2822 X360 2012 Sports Electronic Arts 0.38
## 2823 3DS 2012 Simulation Nintendo 0.16
## 2824 GC 2002 Shooter Electronic Arts 0.56
## 2825 PC 2012 Strategy Take-Two Interactive 0.26
## 2826 DS 2009 Platform Ubisoft 0.35
## 2827 GBA 2005 Action Ubisoft 0.52
## 2828 PS2 2005 Action Activision 0.60
## 2829 Wii 2012 Action Electronic Arts 0.19
## 2830 PSP 2010 Action Unknown 0.00
## 2831 PS4 2014 Role-Playing Square Enix 0.32
## 2832 PS 1998 Strategy Namco Bandai Games 0.00
## 2833 PS 1996 Shooter GT Interactive 0.40
## 2834 PS2 2007 Sports Electronic Arts 0.59
## 2835 XB 2002 Shooter Electronic Arts 0.53
## 2836 PS2 2006 Sports Electronic Arts 0.60
## 2837 PS 1999 Racing Atari 0.40
## 2838 GBA 2005 Action Sega 0.00
## 2840 X360 2007 Sports Spike 0.67
## 2841 PS 2001 Fighting Activision 0.40
## 2842 X360 2013 Action 505 Games 0.35
## 2843 PS2 2001 Misc Sony Computer Entertainment 0.35
## 2844 2600 1982 Platform Atari 0.67
## 2845 PS3 2010 Shooter Activision 0.18
## 2846 PSP 2007 Action D3Publisher 0.23
## 2847 X360 2007 Sports Electronic Arts 0.62
## 2848 GBA 2002 Puzzle Atari 0.51
## 2849 X360 2011 Racing Ubisoft 0.25
## 2850 PS3 2009 Sports Sony Computer Entertainment 0.66
## 2851 WiiU 2012 Role-Playing Nintendo 0.26
## 2852 PS2 2003 Simulation Namco Bandai Games 0.05
## 2853 PS3 2011 Adventure Deep Silver 0.30
## 2854 PS 1998 Action Eidos Interactive 0.40
## 2855 DS 2010 Sports Electronic Arts 0.13
## 2856 PC 2007 Shooter Electronic Arts 0.00
## 2857 PC 2010 Shooter Electronic Arts 0.19
## 2858 XB 2002 Action Electronic Arts 0.45
## 2859 XB 2002 Sports Electronic Arts 0.67
## 2860 Wii 2007 Role-Playing Square Enix 0.18
## 2861 PS3 2013 Sports Sony Computer Entertainment 0.66
## 2862 X360 2011 Simulation Konami Digital Entertainment 0.42
## 2863 PS4 2015 Action Square Enix 0.16
## 2864 PS2 2003 Fighting Sega 0.35
## 2865 PS3 2011 Sports Take-Two Interactive 0.17
## 2866 PS 2000 Action Eidos Interactive 0.23
## 2867 PS3 2007 Action Tecmo Koei 0.18
## 2868 PS2 2002 Racing Jester Interactive 0.35
## 2869 3DS 2014 Role-Playing Nippon Ichi Software 0.33
## 2870 PSP 2007 Sports Electronic Arts 0.60
## 2871 GC 2002 Fighting Atari 0.55
## 2872 PS 2000 Racing Acclaim Entertainment 0.40
## 2873 XB 2005 Adventure Microsoft Game Studios 0.49
## 2874 PS2 2003 Action Konami Digital Entertainment 0.35
## 2875 PSP 2008 Sports Electronic Arts 0.65
## 2876 PS4 2015 Role-Playing Square Enix 0.29
## 2877 GC 2002 Strategy Konami Digital Entertainment 0.49
## 2878 Wii 2009 Misc Warner Bros. Interactive Entertainment 0.42
## 2879 PS3 2010 Sports Sony Computer Entertainment 0.66
## 2880 GC 2002 Platform Universal Interactive 0.55
## 2881 GBA 2004 Action THQ 0.51
## 2882 PS2 2004 Action THQ 0.35
## 2883 3DS 2015 Misc Nintendo 0.00
## 2884 N64 1999 Racing LEGO Media 0.51
## 2885 N64 1999 Fighting Acclaim Entertainment 0.57
## 2886 N64 1997 Action Nintendo 0.39
## 2887 PSP 2010 Action Warner Bros. Interactive Entertainment 0.14
## 2888 SNES 1995 Role-Playing Quest 0.00
## 2889 GC 2003 Puzzle Nintendo 0.20
## 2890 PC 2013 Sports Sega 0.00
## 2891 PS 1995 Fighting Sony Computer Entertainment 0.15
## 2892 PSP 2010 Fighting THQ 0.22
## 2893 PS 1997 Misc Hasbro Interactive 0.39
## 2894 PS 1998 Shooter Acclaim Entertainment 0.39
## 2895 XOne 2015 Action Konami Digital Entertainment 0.37
## 2896 X360 2007 Role-Playing SouthPeak Games 0.41
## 2897 XB 2005 Shooter Activision 0.53
## 2898 X360 2008 Sports Electronic Arts 0.65
## 2899 X360 2008 Sports Electronic Arts 0.50
## 2900 PS3 2013 Shooter Sony Computer Entertainment 0.30
## 2901 PSP 2005 Action Activision 0.35
## 2902 PS3 2014 Sports Electronic Arts 0.15
## 2903 PS3 2012 Sports Sega 0.06
## 2904 X360 2011 Sports Electronic Arts 0.55
## 2905 GC 2003 Sports Activision 0.54
## 2906 X360 2008 Role-Playing Square Enix 0.34
## 2907 SNES 1994 Puzzle Hudson Soft 0.00
## 2908 PS 1998 Strategy Virgin Interactive 0.39
## 2909 DS 2008 Simulation Electronic Arts 0.32
## 2910 XB 2001 Action Activision 0.52
## 2911 X360 2007 Sports Electronic Arts 0.65
## 2912 PS2 2003 Shooter Sony Computer Entertainment 0.34
## 2913 DS 2011 Simulation Activision 0.54
## 2914 GC 2004 Sports Electronic Arts 0.54
## 2915 GBA 2001 Action Majesco Entertainment 0.50
## 2916 PS2 2001 Racing Atari 0.34
## 2917 PS 1997 Sports Electronic Arts 0.39
## 2918 XB 2005 Role-Playing Microsoft Game Studios 0.48
## 2919 PS3 2009 Shooter Activision 0.28
## 2920 DS 2010 Simulation Electronic Arts 0.39
## 2921 WiiU 2014 Action Activision 0.39
## 2922 PS3 2010 Action Ubisoft 0.19
## 2923 PS 1998 Role-Playing SquareSoft 0.04
## 2924 GBA 2001 Strategy Nintendo 0.50
## 2925 DS 2009 Adventure Disney Interactive Studios 0.38
## 2926 DS 2009 Simulation THQ 0.43
## 2927 PSP 2005 Platform Sony Computer Entertainment 0.52
## 2928 PS2 2000 Racing Electronic Arts 0.34
## 2929 PS3 2009 Simulation 505 Games 0.34
## 2930 PS3 2012 Action Sony Computer Entertainment 0.13
## 2931 PS 2000 Sports Electronic Arts 0.39
## 2932 PS2 2004 Action Illusion Softworks 0.34
## 2933 PS2 2000 Simulation Namco Bandai Games 0.16
## 2934 PS3 2015 Action Konami Digital Entertainment 0.21
## 2935 PS2 2002 Shooter Eidos Interactive 0.34
## 2936 X360 2010 Sports Ubisoft 0.38
## 2937 PS3 2008 Sports Sony Computer Entertainment 0.64
## 2938 GBA 2004 Adventure Nintendo 0.37
## 2939 SNES 1994 Role-Playing Nintendo 0.00
## 2940 GBA 2005 Platform Disney Interactive Studios 0.50
## 2941 2600 1981 Action Tigervision 0.65
## 2942 X360 2014 Sports Take-Two Interactive 0.38
## 2943 3DS 2014 Action Warner Bros. Interactive Entertainment 0.28
## 2944 X360 2009 Action Activision 0.42
## 2945 PSP 2007 Action Konami Digital Entertainment 0.26
## 2946 Wii 2010 Action Disney Interactive Studios 0.47
## 2947 X360 2007 Action Activision 0.54
## 2949 PS 1997 Racing Electronic Arts 0.39
## 2950 XB 2005 Shooter Microsoft Game Studios 0.54
## 2951 PS3 2015 Adventure Mojang 0.25
## 2952 PS2 2005 Action Midway Games 0.58
## 2953 PSP 2006 Racing THQ 0.64
## 2954 PS3 2014 Action Activision 0.24
## 2955 GBA 2004 Misc Nintendo 0.50
## 2956 NES 1984 Platform Namco Bandai Games 0.00
## 2957 SNES 1993 Sports Namco Bandai Games 0.00
## 2958 GC 2003 Fighting Atari 0.53
## 2959 PS 1998 Sports Sony Computer Entertainment 0.38
## 2960 PS3 2010 Platform Sony Computer Entertainment 0.52
## 2961 PS3 2013 Action Namco Bandai Games 0.00
## 2962 PC 2013 Action Ubisoft 0.22
## 2963 GC 2002 Action Electronic Arts 0.53
## 2964 PS3 2011 Racing Electronic Arts 0.20
## 2965 GC 2003 Action Electronic Arts 0.53
## 2966 3DS 2015 Misc Nintendo 0.01
## 2967 X360 2007 Racing THQ 0.55
## 2968 X360 2008 Role-Playing Square Enix 0.25
## 2969 DS 2013 Platform Disney Interactive Studios 0.28
## 2970 PC 2011 Simulation Electronic Arts 0.27
## 2971 PS2 2004 Role-Playing Interplay 0.34
## 2972 GBA 2004 Action Activision 0.49
## 2973 XOne 2014 Shooter Electronic Arts 0.39
## 2974 Wii 2012 Action Nintendo 0.34
## 2975 Wii 2009 Action Activision 0.60
## 2976 PS 1997 Action LucasArts 0.38
## 2977 Wii 2011 Role-Playing Nintendo 0.32
## 2978 XB 2003 Sports Electronic Arts 0.62
## 2979 PS3 2008 Action Sega 0.32
## 2980 PS4 2015 Action Disney Interactive Studios 0.21
## 2981 PS3 2007 Platform Activision 0.26
## 2982 XB 2004 Sports Electronic Arts 0.63
## 2983 PS 1997 Fighting GT Interactive 0.38
## 2984 WiiU 2013 Platform Ubisoft 0.26
## 2985 GC 2003 Fighting Tomy Corporation 0.53
## 2986 PS2 2005 Action Ubisoft 0.57
## 2987 PSP 2007 Sports Sony Computer Entertainment 0.21
## 2988 PS4 2014 Action Deep Silver 0.22
## 2989 DS 2010 Role-Playing Nintendo 0.32
## 2990 XB 2005 Action LucasArts 0.54
## 2991 PS4 2014 Shooter 505 Games 0.22
## 2992 XOne 2016 Shooter Bethesda Softworks 0.39
## 2993 PS 1998 Fighting SquareSoft 0.25
## 2994 PS 1998 Role-Playing Konami Digital Entertainment 0.15
## 2995 XOne 2015 Racing Electronic Arts 0.30
## 2996 DS 2007 Racing THQ 0.63
## 2997 XB 2005 Sports Electronic Arts 0.29
## 2998 DS 2009 Adventure GSP 0.19
## 2999 Wii 2006 Shooter Ubisoft 0.55
## 3000 XB 2004 Fighting Electronic Arts 0.51
## 3001 PS2 2006 Racing Sony Computer Entertainment 0.28
## 3002 PC 2008 Role-Playing Electronic Arts 0.00
## 3003 PS2 2002 Role-Playing Atari 0.23
## 3004 Wii 2011 Misc Funbox Media 0.59
## 3005 PS3 2008 Action Touchstone 0.35
## 3006 PS2 2004 Misc Midway Games 0.33
## 3007 DS 2008 Misc Nintendo 0.13
## 3008 PS3 2007 Shooter Midway Games 0.33
## 3009 DS 2007 Role-Playing Square Enix 0.22
## 3010 XB 2003 Shooter Activision 0.49
## 3011 XOne 2013 Racing Electronic Arts 0.45
## 3012 PS3 2012 Action Warner Bros. Interactive Entertainment 0.26
## 3013 PS3 2007 Shooter Take-Two Interactive 0.20
## 3014 PS 1998 Sports Electronic Arts 0.37
## 3015 DS 2010 Adventure Disney Interactive Studios 0.40
## 3016 PS 1996 Shooter Konami Digital Entertainment 0.37
## 3017 PS3 2006 Simulation Ubisoft 0.35
## 3018 XB 2004 Fighting Electronic Arts 0.46
## 3019 XOne 2014 Shooter Bethesda Softworks 0.33
## 3020 Wii 2010 Sports THQ 0.49
## 3021 DS 2006 Misc Rocket Company 0.00
## 3022 PS 1998 Action Sony Computer Entertainment 0.37
## 3023 XB 2005 Shooter Activision 0.48
## 3024 PS2 2002 Simulation Metro 3D 0.22
## 3025 Wii 2008 Racing Electronic Arts 0.27
## 3026 Wii 2008 Misc Namco Bandai Games 0.00
## 3027 PC 2015 Role-Playing Namco Bandai Games 0.20
## 3028 PSP 2005 Sports Sega 0.16
## 3029 PS4 2014 Action Warner Bros. Interactive Entertainment 0.24
## 3030 PSP 2007 Action THQ 0.22
## 3031 PC 2011 Role-Playing Unknown 0.44
## 3032 PS 1999 Role-Playing Sony Computer Entertainment 0.19
## 3033 Wii 2008 Sports Ubisoft 0.00
## 3034 X360 2010 Action Konami Digital Entertainment 0.42
## 3035 PC 2013 Shooter Take-Two Interactive 0.28
## 3036 PS4 2015 Adventure Mojang 0.23
## 3037 Wii 2008 Puzzle Ubisoft 0.18
## 3038 DS 2010 Simulation 505 Games 0.40
## 3039 Wii 2008 Action Activision 0.30
## 3040 Wii 2010 Misc MTV Games 0.56
## 3041 PC 2008 Strategy Electronic Arts 0.01
## 3042 PS2 2003 Platform THQ 0.33
## 3043 PSP 2006 Fighting THQ 0.33
## 3044 DS 2010 Misc Ubisoft 0.00
## 3045 2600 1981 Action Mattel Interactive 0.63
## 3046 DS 2007 Adventure Capcom 0.33
## 3047 X360 2012 Sports Electronic Arts 0.51
## 3048 PS3 2014 Shooter Take-Two Interactive 0.25
## 3049 PC 2010 Simulation Electronic Arts 0.01
## 3051 DS 2006 Misc IE Institute 0.00
## 3052 PS 1999 Simulation Take-Two Interactive 0.37
## 3053 XB 2004 Sports Electronic Arts 0.49
## 3054 PS3 2008 Sports Ubisoft 0.31
## 3055 WiiU 2014 Action Warner Bros. Interactive Entertainment 0.35
## 3056 PS2 2007 Sports Activision 0.55
## 3057 PS2 2003 Sports Sony Computer Entertainment 0.32
## 3058 PS2 2007 Fighting Atari 0.26
## 3059 PS 1998 Sports Electronic Arts 0.37
## 3060 PS 2001 Role-Playing Electronic Arts 0.37
## 3061 PS2 2002 Sports Electronic Arts 0.32
## 3062 XB 2003 Action THQ 0.48
## 3063 PS2 2006 Strategy Atari 0.55
## 3064 X360 2009 Sports Electronic Arts 0.51
## 3065 PS2 2000 Sports Konami Digital Entertainment 0.00
## 3066 GC 2005 Platform Activision 0.52
## 3067 Wii 2012 Puzzle Namco Bandai Games 0.00
## 3068 GBA 2003 Role-Playing Enix Corporation 0.00
## 3069 GBA 2004 Adventure Majesco Entertainment 0.47
## 3070 PS3 2013 Platform Ubisoft 0.14
## 3071 PC 2013 Misc Ubisoft 0.35
## 3072 PS2 2004 Fighting Capcom 0.32
## 3073 PS 1998 Role-Playing Sony Computer Entertainment 0.37
## 3074 PC 2010 Strategy Sega 0.02
## 3075 PS3 2010 Action Ubisoft Annecy 0.06
## 3076 DS 2007 Platform Nintendo 0.28
## 3077 PSP 2010 Action Disney Interactive Studios 0.27
## 3078 GC 2003 Simulation Electronic Arts 0.43
## 3079 PS3 2008 Sports Electronic Arts 0.34
## 3080 2600 1982 Action Activision 0.62
## 3081 PSV 2013 Action Warner Bros. Interactive Entertainment 0.15
## 3082 Wii 2008 Strategy Nintendo 0.29
## 3083 GBA 2002 Action TDK Mediactive 0.47
## 3084 PS2 2004 Role-Playing Konami Digital Entertainment 0.17
## 3085 PSP 2010 Action Namco Bandai Games 0.03
## 3086 GBA 2004 Platform Disney Interactive Studios 0.47
## 3087 PS 1998 Misc Sony Computer Entertainment 0.12
## 3088 XB 2005 Shooter Ubisoft 0.49
## 3089 PSP 2009 Sports Electronic Arts 0.50
## 3090 PSP 2007 Action Activision 0.23
## 3091 DS 2007 Misc Namco Bandai Games 0.00
## 3092 PS4 2015 Racing Codemasters 0.09
## 3093 X360 2008 Misc Microsoft Game Studios 0.33
## 3094 PS 1998 Sports ASC Games 0.36
## 3095 WiiU 2014 Action Disney Interactive Studios 0.38
## 3096 PS3 2012 Sports Electronic Arts 0.33
## 3097 PS2 2008 Action Activision 0.24
## 3098 PS3 2008 Strategy Ubisoft 0.32
## 3099 XOne 2014 Action Bethesda Softworks 0.35
## 3100 X360 2008 Sports Electronic Arts 0.35
## 3101 PS2 2005 Role-Playing Square Enix 0.18
## 3102 GC 2003 Racing Nintendo 0.41
## 3103 PS2 2005 Platform Disney Interactive Studios 0.32
## 3104 PSP 2008 Platform THQ 0.29
## 3105 GBA 2004 Platform Nintendo 0.25
## 3106 DS 2009 Action THQ 0.31
## 3107 PS2 2002 Racing Ubisoft 0.32
## 3108 Wii 2009 Action Rondomedia 0.56
## 3109 GBA 2005 Misc THQ 0.47
## 3110 PS 1999 Role-Playing Enix Corporation 0.02
## 3111 DS 2009 Puzzle THQ 0.45
## 3112 PS4 2014 Sports Sony Computer Entertainment America 0.58
## 3113 X360 2009 Sports Electronic Arts 0.39
## 3114 GBA 2003 Strategy Nintendo 0.47
## 3115 DS 2008 Role-Playing Nintendo 0.31
## 3116 PS 1998 Shooter Atari 0.36
## 3117 PS2 2003 Role-Playing Square Enix 0.19
## 3118 PS2 2007 Misc Sony Computer Entertainment 0.00
## 3119 2600 1987 Action Activision 0.60
## 3120 PS2 2005 Role-Playing Sony Online Entertainment 0.32
## 3121 PS2 2005 Action Electronic Arts 0.54
## 3122 PS2 2007 Misc Sony Computer Entertainment 0.00
## 3123 PS 2000 Adventure Acclaim Entertainment 0.36
## 3124 PSP 2007 Racing THQ 0.35
## 3125 Wii 2010 Misc Disney Interactive Studios 0.50
## 3126 PS3 2012 Fighting Tecmo Koei 0.23
## 3127 PSP 2007 Role-Playing Square Enix 0.20
## 3128 PS2 2002 Strategy Banpresto 0.00
## 3129 PS3 2014 Role-Playing Electronic Arts 0.26
## 3130 Wii 2011 Misc Ubisoft 0.39
## 3131 DS 2008 Misc Namco Bandai Games 0.00
## 3132 PS3 2010 Action Capcom 0.17
## 3133 PC 2013 Shooter Electronic Arts 0.17
## 3134 DS 2007 Simulation THQ 0.60
## 3135 PS2 2009 Action Electronic Arts 0.13
## 3136 GBA 2004 Platform Vivendi Games 0.46
## 3137 XOne 2014 Role-Playing Activision 0.35
## 3138 PS2 2004 Platform Vivendi Games 0.32
## 3139 PSP 2007 Action Vivendi Games 0.25
## 3140 PS3 2013 Shooter Sega 0.20
## 3141 PS2 2004 Platform Vivendi Games 0.32
## 3143 XB 2003 Shooter Take-Two Interactive 0.47
## 3144 X360 2010 Fighting Namco Bandai Games 0.49
## 3145 PS2 2004 Shooter Electronic Arts 0.54
## 3146 XOne 2016 Sports Take-Two Interactive 0.54
## 3147 PS3 2008 Shooter Capcom 0.31
## 3148 X360 2012 Strategy Take-Two Interactive 0.36
## 3149 3DS 2011 Platform Ubisoft 0.23
## 3150 PS4 2016 Action Warner Bros. Interactive Entertainment 0.25
## 3151 XB 2004 Shooter Electronic Arts 0.43
## 3152 PS2 2003 Platform Activision 0.31
## 3153 X360 2007 Racing THQ 0.25
## 3154 XB 2005 Sports Electronic Arts 0.57
## 3155 PC 2011 Action Electronic Arts 0.23
## 3156 X360 2006 Action LucasArts 0.55
## 3157 N64 1999 Shooter Red Storm Entertainment 0.48
## 3158 N64 1999 Platform Konami Digital Entertainment 0.44
## 3159 N64 1999 Platform Ubisoft 0.40
## 3160 GBA 2004 Misc N/A 0.46
## 3161 X360 2009 Action Electronic Arts 0.37
## 3162 XB 2002 Shooter Eidos Interactive 0.29
## 3163 PS2 2006 Action Capcom 0.15
## 3164 PS3 2010 Role-Playing Square Enix 0.17
## 3165 DS 2009 Platform Disney Interactive Studios 0.41
## 3166 PS3 2007 Racing Sega 0.07
## 3167 GBA 2004 Misc N/A 0.46
## 3168 PSV 2012 Action Sony Computer Entertainment 0.26
## 3169 GBA 2002 Misc Konami Digital Entertainment 0.46
## 3170 PS3 2010 Role-Playing Sony Computer Entertainment 0.23
## 3171 PS3 2009 Shooter Activision 0.25
## 3172 PS2 2005 Misc Sony Computer Entertainment 0.31
## 3173 PS4 2015 Action Warner Bros. Interactive Entertainment 0.22
## 3174 PS3 2010 Misc Sony Computer Entertainment 0.07
## 3175 N64 1998 Racing Nintendo 0.59
## 3176 N64 2000 Sports Electronic Arts 0.60
## 3177 PS3 2007 Sports Electronic Arts 0.56
## 3178 X360 2013 Shooter Activision 0.46
## 3179 Wii 2007 Racing Nintendo 0.20
## 3180 Wii 2008 Action Capcom 0.45
## 3181 PS2 2004 Platform Activision 0.31
## 3182 PS3 2014 Action Warner Bros. Interactive Entertainment 0.20
## 3183 Wii 2009 Misc Ubisoft 0.59
## 3184 Wii 2010 Shooter Ubisoft 0.36
## 3185 PS2 2005 Role-Playing Activision 0.53
## 3186 PS 1997 Action Sony Computer Entertainment 0.35
## 3187 PS2 2009 Misc Sony Computer Entertainment 0.08
## 3188 X360 2014 Misc Ubisoft 0.41
## 3189 PS3 2013 Racing Codemasters 0.01
## 3190 X360 2007 Racing THQ 0.22
## 3191 XB 2001 Sports Activision 0.41
## 3192 PS 1999 Strategy Electronic Arts 0.35
## 3193 XB 2002 Sports Electronic Arts 0.20
## 3194 X360 2009 Action Atari 0.43
## 3196 PS2 2005 Racing Electronic Arts 0.53
## 3197 PS3 2006 Sports Activision 0.30
## 3198 GBA 2004 Simulation Ubisoft 0.45
## 3199 PS3 2011 Action Disney Interactive Studios 0.30
## 3200 PS3 2009 Misc Activision 0.28
## 3201 PSP 2008 Action Sega 0.46
## 3202 3DS 2012 Misc Namco Bandai Games 0.00
## 3203 DS 2009 Action Electronic Arts 0.21
## 3204 N64 1998 Platform Activision 0.49
## 3205 SNES 1991 Platform Konami Digital Entertainment 0.32
## 3206 Wii 2010 Misc Activision 0.49
## 3207 3DS 2012 Action Activision 0.38
## 3208 X360 2008 Action Sega 0.38
## 3209 Wii 2007 Sports Activision 0.58
## 3210 PS2 2003 Fighting Namco Bandai Games 0.00
## 3211 PS3 2011 Misc Ubisoft 0.33
## 3212 DS 2010 Shooter Activision 0.54
## 3213 PS4 2015 Action Sony Computer Entertainment 0.23
## 3214 PS2 2002 Platform Sony Computer Entertainment 0.12
## 3215 Wii 2009 Shooter Nintendo 0.43
## 3216 2600 1982 Action Universal Gamex 0.58
## 3217 X360 2009 Shooter Activision 0.34
## 3219 PC 2011 Simulation Electronic Arts 0.40
## 3220 XOne 2014 Racing Ubisoft 0.24
## 3221 DS 2009 Strategy Ubisoft 0.31
## 3222 3DS 2016 Role-Playing Square Enix 0.00
## 3223 X360 2012 Racing Sega 0.20
## 3224 PS2 2007 Role-Playing Tecmo Koei 0.22
## 3225 PS2 2001 Sports Electronic Arts 0.31
## 3226 PSP 2009 Role-Playing Ghostlight 0.18
## 3227 PS 1997 Role-Playing Square 0.00
## 3228 X360 2011 Sports Electronic Arts 0.40
## 3229 PS2 2006 Action Capcom 0.11
## 3230 PS 2000 Sports Electronic Arts 0.35
## 3231 Wii 2009 Simulation THQ 0.41
## 3232 XOne 2015 Action Warner Bros. Interactive Entertainment 0.35
## 3233 PS3 2009 Shooter Bethesda Softworks 0.22
## 3234 DS 2009 Racing Electronic Arts 0.26
## 3235 PS 2000 Platform Activision 0.35
## 3236 GC 2002 Misc Namco Bandai Games 0.48
## 3237 SNES 1993 Strategy Tecmo Koei 0.30
## 3238 SAT 1995 Shooter Sega 0.00
## 3240 XB 2005 Sports Activision 0.40
## 3241 PS 1996 Fighting Acclaim Entertainment 0.35
## 3242 X360 2010 Action Ubisoft 0.30
## 3243 PS3 2010 Shooter Sega 0.21
## 3244 PS2 2002 Role-Playing Ubisoft 0.16
## 3245 PS 1997 Sports Sony Computer Entertainment 0.35
## 3246 PS3 2009 Role-Playing Deep Silver 0.22
## 3247 GC 2006 Sports Electronic Arts 0.48
## 3248 PC 2014 Shooter Ubisoft 0.15
## 3249 2600 1982 Shooter Atari 0.58
## 3250 XB 2003 Sports Electronic Arts 0.47
## 3251 3DS 2011 Action Disney Interactive Studios 0.29
## 3252 PS3 2014 Sports Konami Digital Entertainment 0.10
## 3253 XOne 2015 Shooter Take-Two Interactive 0.36
## 3254 PS2 2004 Platform THQ 0.30
## 3255 PS3 2013 Action Deep Silver 0.26
## 3256 PS3 2011 Action Ubisoft Annecy 0.00
## 3257 DS 2008 Adventure Disney Interactive Studios 0.35
## 3258 GC 2003 Action Capcom 0.38
## 3259 GBA 2004 Simulation Electronic Arts 0.37
## 3260 N64 1999 Racing Electronic Arts 0.40
## 3261 PSV 2012 Sports Electronic Arts 0.17
## 3262 PS 2000 Platform Eidos Interactive 0.34
## 3263 DS 2010 Misc Activision 0.58
## 3264 PS2 2004 Sports Play It 0.30
## 3265 Wii 2007 Action THQ 0.57
## 3266 PS3 2014 Action Konami Digital Entertainment 0.14
## 3267 2600 1982 Action Wizard Video Games 0.58
## 3268 PS3 2011 Fighting Namco Bandai Games 0.27
## 3269 PSP 2009 Fighting THQ 0.25
## 3270 PS 1999 Sports ASCII Entertainment 0.21
## 3271 PS2 2004 Racing Eidos Interactive 0.30
## 3272 GB 1995 Puzzle Nintendo 0.00
## 3273 GC 2003 Misc Namco Bandai Games 0.48
## 3274 PS4 2014 Misc Ubisoft 0.34
## 3275 SAT 1996 Fighting Sega 0.00
## 3276 SNES 1996 Role-Playing SquareSoft 0.00
## 3277 X360 2008 Platform THQ 0.29
## 3278 PC 1998 Action Eidos Interactive 0.59
## 3279 3DS 2012 Adventure Namco Bandai Games 0.00
## 3280 DS 2011 Role-Playing Square Enix 0.00
## 3281 N64 1998 Sports Acclaim Entertainment 0.59
## 3282 PS 2001 Strategy Banpresto 0.00
## 3283 PS3 2006 Racing Sony Computer Entertainment 0.00
## 3284 Wii 2009 Role-Playing Rising Star Games 0.33
## 3285 PS3 2008 Sports Take-Two Interactive 0.56
## 3286 PS2 2008 Misc Sony Computer Entertainment 0.00
## 3287 PS4 2015 Sports Electronic Arts 0.35
## 3288 PS4 2014 Shooter Electronic Arts 0.21
## 3289 XB 2002 Sports Microsoft Game Studios 0.46
## 3290 PS2 2006 Action Tecmo Koei 0.02
## 3291 PS3 2013 Action Tecmo Koei 0.12
## 3292 Wii 2010 Misc Disney Interactive Studios 0.39
## 3293 GBA 2005 Misc THQ 0.44
## 3294 PS2 2002 Shooter TDK Mediactive 0.30
## 3295 GBA 2004 Platform Gotham Games 0.44
## 3296 Wii 2010 Misc Take-Two Interactive 0.35
## 3297 X360 2009 Sports Activision 0.46
## 3298 WiiU 2013 Misc Ubisoft 0.33
## 3299 3DS 2011 Simulation 505 Games 0.50
## 3300 GBA 2004 Misc Majesco Entertainment 0.44
## 3301 PS2 2003 Shooter Namco Bandai Games 0.30
## 3302 Wii 2010 Sports Activision 0.58
## 3303 DS 2007 Misc Nintendo 0.00
## 3304 X360 2010 Sports Konami Digital Entertainment 0.09
## 3305 Wii 2008 Platform Nintendo 0.24
## 3306 PS 1998 Platform Electronic Arts 0.34
## 3307 PS3 2011 Shooter Sega 0.09
## 3308 DS 2008 Simulation Electronic Arts 0.31
## 3309 XB 2005 Shooter Electronic Arts 0.37
## 3310 PS 1997 Shooter GT Interactive 0.34
## 3311 Wii 2010 Misc Namco Bandai Games 0.47
## 3312 PSP 2009 Platform Sony Computer Entertainment 0.18
## 3313 X360 2008 Sports Bethesda Softworks 0.56
## 3314 DS 2007 Simulation Electronic Arts 0.33
## 3315 X360 2009 Sports Spike 0.56
## 3316 DS 2008 Simulation Ubisoft 0.56
## 3317 X360 2010 Racing Disney Interactive Studios 0.32
## 3318 GBA 2005 Role-Playing Nintendo 0.27
## 3319 GBA 2002 Sports Electronic Arts 0.44
## 3320 PS 1999 Action Eidos Interactive 0.34
## 3321 GBA 2005 Action Electronic Arts 0.44
## 3322 GBA 2004 Action Atari 0.44
## 3323 GC 2001 Sports Electronic Arts 0.47
## 3324 Wii 2009 Misc Activision 0.33
## 3325 Wii 2008 Misc Disney Interactive Studios 0.37
## 3326 GBA 2001 Action Activision 0.43
## 3327 N64 1999 Sports Electronic Arts 0.58
## 3328 X360 2007 Action Activision 0.51
## 3329 GBA 2002 Misc Nintendo 0.43
## 3330 DS 2008 Simulation Electronic Arts 0.34
## 3331 PS2 2003 Fighting Atari 0.50
## 3332 X360 2010 Fighting Ubisoft 0.31
## 3333 X360 2009 Shooter Ubisoft 0.30
## 3334 Wii 2009 Strategy Nintendo 0.11
## 3335 GBA 2003 Sports Activision 0.43
## 3336 PSV 2011 Sports Sony Computer Entertainment 0.19
## 3337 GBA 2004 Racing Majesco Entertainment 0.43
## 3338 PS2 2005 Platform Sega 0.50
## 3339 GC 2001 Racing Nintendo 0.40
## 3340 PS2 2003 Fighting Eidos Interactive 0.30
## 3341 XB 2005 Fighting Electronic Arts 0.42
## 3342 PSP 2010 Role-Playing Capcom 0.00
## 3343 DS 2007 Action Sega 0.28
## 3344 PS2 2007 Sports Take-Two Interactive 0.50
## 3345 Wii 2011 Action Disney Interactive Studios 0.36
## 3346 WiiU 2013 Action Disney Interactive Studios 0.33
## 3348 DS 2009 Misc Nintendo 0.18
## 3349 PS3 2009 Sports Activision 0.38
## 3350 3DS 2015 Action Warner Bros. Interactive Entertainment 0.31
## 3351 PS3 2011 Adventure Electronic Arts 0.22
## 3352 PS4 2014 Action Warner Bros. Interactive Entertainment 0.12
## 3353 PS 1995 Role-Playing Konami Digital Entertainment 0.21
## 3354 PS2 2009 Platform Sony Computer Entertainment 0.13
## 3355 PS2 2001 Racing Ubisoft 0.29
## 3356 PSP 2009 Action Ubisoft 0.22
## 3357 PS2 2006 Action THQ 0.50
## 3358 SAT 1997 Puzzle Compile 0.00
## 3359 PS2 2001 Shooter Vivendi Games 0.29
## 3360 XOne 2014 Action Square Enix 0.34
## 3361 N64 2000 Racing Nintendo 0.37
## 3362 N64 1997 Sports Konami Digital Entertainment 0.09
## 3363 WiiU 2013 Platform Activision 0.40
## 3364 PS2 2001 Racing Infogrames 0.29
## 3365 Wii 2008 Misc Disney Interactive Studios 0.32
## 3366 PS 2002 Fighting Namco Bandai Games 0.00
## 3367 PS 1998 Simulation Konami Digital Entertainment 0.00
## 3368 X360 2005 Racing Microsoft Game Studios 0.49
## 3369 PS3 2012 Strategy Take-Two Interactive 0.24
## 3370 X360 2010 Racing Activision 0.25
## 3371 PS 1998 Adventure Electronic Arts 0.33
## 3372 3DS 2012 Action Warner Bros. Interactive Entertainment 0.55
## 3373 SNES 1995 Strategy SquareSoft 0.00
## 3374 PS3 2010 Sports Electronic Arts 0.40
## 3375 X360 2012 Adventure Microsoft Game Studios 0.38
## 3376 X360 2008 Misc Electronic Arts 0.34
## 3377 PS4 2014 Action Disney Interactive Studios 0.26
## 3378 PS2 2007 Sports Spike 0.29
## 3379 DS 2004 Racing Ubisoft 0.31
## 3380 PS3 2010 Fighting Sony Computer Entertainment 0.29
## 3381 PS2 2003 Strategy Banpresto 0.00
## 3382 DS 2005 Puzzle Nintendo 0.26
## 3383 PC 2008 Action Electronic Arts 0.00
## 3384 PS2 2004 Racing THQ 0.29
## 3385 PSV 2012 Platform Ubisoft 0.13
## 3386 X360 2012 Sports Sega 0.07
## 3387 X360 2008 Sports Sega 0.15
## 3388 PS2 2005 Strategy Banpresto 0.00
## 3389 Wii 2010 Misc THQ 0.56
## 3390 PS 1997 Sports Konami Digital Entertainment 0.00
## 3391 PC 2011 Action Ubisoft 0.15
## 3392 PS 1998 Sports Electronic Arts 0.33
## 3393 PS 2001 Misc Sony Computer Entertainment 0.33
## 3394 GC 2002 Shooter Electronic Arts 0.46
## 3395 DS 2009 Role-Playing Square Enix 0.23
## 3396 Wii 2008 Action Sega 0.31
## 3397 PS3 2010 Shooter Square Enix 0.17
## 3398 PS 2000 Sports Midway Games 0.33
## 3399 PC 2011 Strategy Sega 0.19
## 3400 PS 1998 Sports Konami Digital Entertainment 0.00
## 3401 PS2 2008 Misc MTV Games 0.29
## 3402 PS3 2012 Action Sega 0.00
## 3403 PSP 2009 Action Activision 0.21
## 3404 2600 1981 Puzzle Mattel Interactive 0.55
## 3405 X360 2008 Action Ubisoft 0.24
## 3406 PS2 2002 Sports Electronic Arts 0.21
## 3407 XB 2004 Sports Electronic Arts 0.44
## 3408 GC 2002 Platform Universal Interactive 0.46
## 3409 2600 1981 Action Coleco 0.55
## 3410 DS 2007 Misc 505 Games 0.54
## 3411 Wii 2008 Action Take-Two Interactive 0.53
## 3412 Wii 2007 Action Activision 0.52
## 3413 N64 1997 Racing Acclaim Entertainment 0.47
## 3414 N64 1999 Sports Midway Games 0.47
## 3415 X360 2013 Shooter 505 Games 0.33
## 3416 XB 2003 Sports Microsoft Game Studios 0.36
## 3417 PS2 2004 Role-Playing Namco Bandai Games 0.00
## 3418 X360 2012 Fighting Namco Bandai Games 0.39
## 3419 PS3 2011 Sports Electronic Arts 0.36
## 3420 PS3 2015 Role-Playing Namco Bandai Games 0.05
## 3421 PS2 2010 Action Konami Digital Entertainment 0.13
## 3423 Wii 2008 Sports Electronic Arts 0.51
## 3424 X360 2010 Misc Warner Bros. Interactive Entertainment 0.36
## 3425 PS 1999 Action Sony Computer Entertainment 0.33
## 3426 X360 2008 Action Ubisoft 0.18
## 3427 PS2 2004 Platform Capcom 0.29
## 3428 PSP 2007 Role-Playing Square Enix 0.39
## 3429 PS4 2015 Role-Playing Namco Bandai Games 0.20
## 3430 PSP 2008 Action Koch Media 0.35
## 3431 PC 2011 Shooter Square Enix 0.25
## 3432 PS3 2010 Sports 505 Games 0.28
## 3433 GBA 2003 Simulation Ubisoft 0.34
## 3434 PS2 2003 Sports Atari 0.29
## 3435 DS 2009 Sports Electronic Arts 0.14
## 3436 SNES 1994 Sports Nintendo 0.00
## 3437 PS3 2012 Shooter Bethesda Softworks 0.26
## 3438 PS2 2003 Action Capcom 0.22
## 3439 Wii 2008 Action Take-Two Interactive 0.15
## 3440 Wii 2007 Simulation Ubisoft 0.53
## 3441 PS2 2008 Action THQ 0.29
## 3442 Wii 2009 Shooter Sega 0.29
## 3443 WiiU 2015 Misc Ubisoft 0.28
## 3444 PS 1995 Simulation Konami Digital Entertainment 0.00
## 3445 PS 1997 Role-Playing Electronic Arts 0.29
## 3446 Wii 2010 Sports Activision 0.53
## 3447 PS4 2014 Sports Electronic Arts 0.30
## 3448 2600 1982 Puzzle Parker Bros. 0.55
## 3449 PS2 2005 Role-Playing Square Enix 0.06
## 3450 PS2 2004 Role-Playing Electronic Arts 0.49
## 3451 DS 2008 Simulation Rising Star Games 0.35
## 3452 Wii 2009 Misc Electronic Arts 0.21
## 3453 Wii 2008 Platform Vivendi Games 0.35
## 3454 PC 2009 Simulation Electronic Arts 0.02
## 3455 XOne 2014 Sports Microsoft Game Studios 0.30
## 3456 Wii 2011 Platform Ubisoft 0.23
## 3457 XOne 2015 Sports Take-Two Interactive 0.31
## 3458 PC 2014 Shooter Electronic Arts 0.21
## 3459 PS3 2008 Sports Electronic Arts 0.54
## 3460 X360 2009 Action Ubisoft 0.31
## 3461 PS 2000 Sports 3DO 0.32
## 3462 3DS 2013 Platform Disney Interactive Studios 0.27
## 3463 PS2 2003 Action Atari 0.28
## 3464 X360 2010 Shooter Activision 0.37
## 3465 DS 2010 Simulation Natsume 0.27
## 3466 N64 1997 Sports Electronic Arts 0.15
## 3467 N64 1998 Sports Electronic Arts 0.14
## 3468 N64 1998 Sports Konami Digital Entertainment 0.06
## 3470 PS2 2000 Shooter Infogrames 0.28
## 3471 PS 2000 Role-Playing Namco Bandai Games 0.23
## 3472 PS 1998 Role-Playing Namco Bandai Games 0.00
## 3473 XB 2005 Action Ubisoft 0.33
## 3474 PS2 2004 Role-Playing Sony Computer Entertainment 0.28
## 3475 PS 1998 Platform BMG Interactive Entertainment 0.32
## 3476 GBA 2004 Adventure Activision 0.42
## 3477 DS 2007 Action Capcom 0.25
## 3478 PS3 2013 Fighting Namco Bandai Games 0.05
## 3479 DS 2009 Simulation Ubisoft 0.53
## 3480 PS2 2002 Shooter Konami Digital Entertainment 0.28
## 3481 PS 1998 Racing THQ 0.32
## 3482 SNES 1992 Role-Playing Namco Bandai Games 0.00
## 3483 X360 2006 Sports Take-Two Interactive 0.53
## 3484 PS3 2015 Sports Take-Two Interactive 0.21
## 3485 DS 2006 Adventure Capcom 0.24
## 3486 SNES 1996 Strategy Nintendo 0.00
## 3487 PS3 2010 Misc MTV Games 0.43
## 3488 PS3 2011 Role-Playing Nippon Ichi Software 0.27
## 3489 PS3 2009 Fighting PQube 0.36
## 3490 PS 2000 Action Activision 0.32
## 3491 GC 2002 Sports Activision 0.45
## 3492 PS3 2011 Sports Sony Computer Entertainment 0.54
## 3493 PS2 2006 Action Namco Bandai Games 0.28
## 3494 PS2 2005 Sports Electronic Arts 0.48
## 3495 PS3 2009 Sports Electronic Arts 0.38
## 3496 DS 2010 Adventure Nintendo 0.10
## 3497 Wii 2009 Sports Activision 0.52
## 3498 PS 1999 Role-Playing SquareSoft 0.32
## 3499 Wii 2010 Puzzle Nintendo 0.34
## 3500 N64 1999 Sports Midway Games 0.55
## 3501 PS3 2008 Platform Sony Computer Entertainment 0.00
## 3503 PS2 2009 Sports Electronic Arts 0.28
## 3504 PS3 2008 Action Take-Two Interactive 0.08
## 3505 3DS 2013 Role-Playing Atlus 0.28
## 3506 PS 1994 Simulation Electronic Arts 0.24
## 3507 X360 2007 Shooter Midway Games 0.29
## 3508 X360 2007 Platform Activision 0.49
## 3509 PSP 2005 Racing SouthPeak Games 0.53
## 3510 XB 2005 Shooter Ubisoft 0.32
## 3511 PS2 2008 Puzzle Electronic Arts 0.28
## 3512 GBA 2002 Sports Activision 0.41
## 3513 Wii 2009 Action THQ 0.23
## 3514 PS2 2005 Role-Playing Namco Bandai Games 0.00
## 3515 X360 2011 Action Disney Interactive Studios 0.37
## 3516 X360 2008 Action Sega 0.27
## 3517 PS 2000 Strategy Namco Bandai Games 0.00
## 3518 GBA 2004 Action Vivendi Games 0.41
## 3519 PS3 2010 Action Namco Bandai Games 0.24
## 3520 DS 2008 Action THQ 0.53
## 3521 PS 1995 Role-Playing Sony Computer Entertainment 0.11
## 3522 PS2 2008 Action Koch Media 0.22
## 3523 PSP 2007 Action Eidos Interactive 0.21
## 3524 X360 2011 Shooter THQ 0.25
## 3525 GC 2005 Sports Electronic Arts 0.44
## 3526 Wii 2007 Action Rising Star Games 0.30
## 3527 PC 2010 Action Ubisoft 0.01
## 3528 DS 2008 Simulation Ubisoft 0.52
## 3529 PS2 2004 Fighting Namco Bandai Games 0.47
## 3530 X360 2013 Shooter Trion Worlds 0.38
## 3531 DS 2006 Simulation Ubisoft 0.51
## 3532 PS3 2009 Role-Playing SouthPeak Games 0.36
## 3533 NES 1986 Action Nintendo 0.00
## 3534 N64 1997 Sports GT Interactive 0.48
## 3535 Wii 2009 Sports Majesco Entertainment 0.52
## 3536 PSP 2011 Action Konami Digital Entertainment 0.10
## 3537 Wii 2010 Misc 505 Games 0.27
## 3538 XB 2001 Shooter Microsoft Game Studios 0.43
## 3539 PS2 2005 Action Tecmo Koei 0.11
## 3540 3DS 2011 Action Activision 0.32
## 3541 Wii 2008 Platform Take-Two Interactive 0.50
## 3542 PS2 2002 Misc Sony Computer Entertainment 0.28
## 3543 PS2 2006 Sports Electronic Arts 0.47
## 3544 XB 2002 Racing Activision 0.42
## 3545 SNES 1992 Puzzle Hudson Soft 0.00
## 3546 XB 2003 Platform THQ 0.45
## 3547 PS3 2012 Shooter Take-Two Interactive 0.19
## 3548 PS2 2002 Strategy Namco Bandai Games 0.00
## 3549 DS 2007 Adventure THQ 0.29
## 3550 XB 2002 Racing Microsoft Game Studios 0.39
## 3551 PS2 2004 Action Capcom 0.19
## 3552 PS 2000 Action THQ 0.31
## 3553 PS2 2003 Shooter Ubisoft 0.28
## 3554 PS3 2013 Sports Electronic Arts 0.28
## 3555 X360 2009 Misc Warner Bros. Interactive Entertainment 0.40
## 3556 Wii 2008 Adventure Disney Interactive Studios 0.19
## 3557 X360 2008 Action Take-Two Interactive 0.09
## 3558 PS3 2009 Action Ubisoft 0.21
## 3559 X360 2015 Action Warner Bros. Interactive Entertainment 0.24
## 3560 PS 2000 Role-Playing Capcom 0.11
## 3561 GC 2003 Action Activision 0.44
## 3562 PS2 2007 Role-Playing Square Enix 0.23
## 3563 DS 2007 Platform Nintendo 0.26
## 3564 GBA 2003 Action Universal Interactive 0.40
## 3565 GBA 2004 Puzzle Zoo Digital Publishing 0.40
## 3566 PS2 2006 Sports Electronic Arts 0.28
## 3567 GBA 2003 Action Electronic Arts 0.40
## 3568 PS2 2001 Sports Midway Games 0.28
## 3569 GBA 2004 Puzzle Nintendo 0.31
## 3570 XB 2003 Simulation Electronic Arts 0.40
## 3571 PS2 2007 Sports Electronic Arts 0.28
## 3572 PS 2001 Platform Sony Computer Entertainment 0.31
## 3573 PS2 2006 Misc Electronic Arts 0.28
## 3574 PSP 2006 Sports Activision 0.41
## 3575 GBA 2004 Misc Konami Digital Entertainment 0.40
## 3576 PS2 2004 Sports Activision 0.28
## 3577 DS 2007 Adventure Nintendo 0.27
## 3578 PS2 2001 Fighting Electronic Arts 0.28
## 3579 PS 1999 Action 3DO 0.31
## 3580 DS 2011 Action Disney Interactive Studios 0.32
## 3581 PS2 2007 Simulation Ubisoft 0.28
## 3582 XB 2005 Shooter Electronic Arts 0.39
## 3583 X360 2009 Shooter Activision 0.28
## 3584 PS2 2001 Sports Acclaim Entertainment 0.27
## 3585 GBA 2002 Sports Infogrames 0.40
## 3586 GC 2005 Racing Electronic Arts 0.43
## 3587 PS 2000 Racing Electronic Arts 0.31
## 3588 Wii 2010 Sports Activision 0.41
## 3589 X360 2007 Sports Activision 0.49
## 3590 XB 2003 Fighting THQ 0.43
## 3591 N64 1999 Action Virgin Interactive 0.39
## 3592 SNES 1993 Platform Laguna 0.09
## 3593 PS2 2007 Action Take-Two Interactive 0.27
## 3594 3DS 2015 Role-Playing Nintendo 0.26
## 3595 PS2 2003 Role-Playing Square Enix 0.15
## 3596 Wii 2011 Misc THQ 0.44
## 3597 PSP 2011 Role-Playing Square Enix 0.13
## 3598 X360 2008 Shooter THQ 0.34
## 3599 X360 2009 Misc Microsoft Game Studios 0.15
## 3600 GB 2001 Role-Playing Nintendo 0.00
## 3601 PS2 2005 Action Electronic Arts 0.27
## 3602 DS 2008 Simulation THQ 0.27
## 3603 PS2 2003 Misc Vivendi Games 0.27
## 3604 GBA 2002 Misc Universal Interactive 0.40
## 3605 GBA 2003 Strategy Konami Digital Entertainment 0.40
## 3606 XB 2002 Platform Microsoft Game Studios 0.39
## 3607 Wii 2008 Action Activision 0.32
## 3608 PSP 2005 Puzzle Ignition Entertainment 0.17
## 3609 PS2 2003 Sports Sega 0.27
## 3610 SNES 1994 Fighting Takara 0.00
## 3611 DS 2006 Simulation Ubisoft 0.49
## 3612 XB 2005 Sports Take-Two Interactive 0.52
## 3613 DS 2008 Misc Nintendo 0.00
## 3614 XOne 2014 Sports Take-Two Interactive 0.28
## 3615 DS 2008 Simulation Ubisoft 0.48
## 3616 PSV 2013 Role-Playing Sony Computer Entertainment 0.18
## 3617 DS 2009 Action Disney Interactive Studios 0.27
## 3618 Wii 2010 Sports Electronic Arts 0.24
## 3619 PS2 2001 Shooter Codemasters 0.27
## 3620 DS 2006 Role-Playing Rising Star Games 0.37
## 3621 Wii 2010 Racing Activision 0.50
## 3622 Wii 2006 Sports Activision 0.51
## 3623 PS2 2001 Racing THQ 0.27
## 3624 DS 2007 Simulation THQ 0.18
## 3625 XB 2006 Sports Electronic Arts 0.42
## 3626 PS3 2011 Action Sony Computer Entertainment 0.39
## 3627 X360 2011 Racing THQ 0.37
## 3628 PS 1998 Role-Playing Kadokawa Shoten 0.27
## 3629 PS3 2015 Fighting Namco Bandai Games 0.15
## 3630 PS 1999 Sports Midway Games 0.31
## 3631 DS 2010 Simulation Activision 0.41
## 3632 X360 2014 Role-Playing Electronic Arts 0.35
## 3633 PS2 2001 Action Eidos Interactive 0.27
## 3634 PS2 2005 Action Konami Digital Entertainment 0.34
## 3635 PS3 2013 Platform Sony Computer Entertainment Europe 0.35
## 3636 XB 2006 Action Electronic Arts 0.42
## 3637 SAT 1994 Racing Sega 0.00
## 3638 Wii 2010 Action Electronic Arts 0.22
## 3639 PS3 2012 Sports Electronic Arts 0.24
## 3640 XB 2002 Fighting THQ 0.40
## 3641 PS 1996 Role-Playing Banpresto 0.00
## 3642 DS 2005 Fighting Nintendo 0.00
## 3643 PS3 2009 Fighting THQ 0.30
## 3644 2600 1982 Sports Activision 0.52
## 3645 PS 2001 Shooter D3Publisher 0.31
## 3646 DS 2009 Misc Destineer 0.52
## 3647 PS 1999 Action Eidos Interactive 0.31
## 3648 SAT 1996 Adventure Sega 0.00
## 3649 3DS 2016 Action Level 5 0.00
## 3650 PS2 2001 Action Sony Computer Entertainment 0.21
## 3651 PS2 2001 Adventure Ubisoft 0.27
## 3652 PSV 2012 Shooter Sony Computer Entertainment 0.29
## 3653 Wii 2010 Fighting Capcom 0.32
## 3654 X360 2007 Action Ubisoft 0.47
## 3655 PS3 2007 Shooter Vivendi Games 0.18
## 3656 PSP 2008 Platform Sony Computer Entertainment 0.33
## 3657 PC 2014 Action Ubisoft 0.17
## 3658 PS2 2004 Sports Enterbrain 0.00
## 3659 PS3 2007 Sports Take-Two Interactive 0.50
## 3660 DS 2008 Sports Activision 0.51
## 3661 DS 2008 Puzzle Deep Silver 0.51
## 3662 XB 2002 Sports Activision 0.34
## 3663 GBA 2002 Platform Capcom 0.22
## 3664 PS 2000 Fighting 3DO 0.31
## 3665 PS4 2014 Action Activision 0.20
## 3666 PS 1996 Shooter LucasArts 0.31
## 3667 PS 1999 Strategy Namco Bandai Games 0.00
## 3668 SAT 1997 Strategy Banpresto 0.00
## 3669 XB 2004 Platform Activision 0.40
## 3670 PS2 2002 Sports Sega 0.00
## 3671 PS3 2010 Shooter Namco Bandai Games 0.18
## 3672 GBA 2001 Action THQ 0.39
## 3673 SAT 1998 Strategy Banpresto 0.00
## 3674 X360 2010 Action Namco Bandai Games 0.30
## 3675 3DS 2012 Role-Playing Xseed Games 0.31
## 3676 Wii 2008 Sports Ubisoft 0.49
## 3677 GBA 2003 Platform THQ 0.39
## 3678 PS3 2010 Action Tecmo Koei 0.11
## 3679 PS 1995 Fighting Sony Computer Entertainment 0.29
## 3680 XB 2002 Shooter Acclaim Entertainment 0.39
## 3681 PS2 2005 Racing Sony Computer Entertainment 0.45
## 3682 X360 2010 Shooter THQ 0.22
## 3683 Wii 2008 Misc THQ 0.51
## 3684 PS2 2003 Misc Codemasters 0.27
## 3685 PS 1996 Misc Microprose 0.30
## 3686 XB 2004 Shooter Take-Two Interactive 0.40
## 3687 PSP 2006 Fighting Atari 0.26
## 3688 PS3 2014 Action Warner Bros. Interactive Entertainment 0.12
## 3689 PS2 2008 Action Sega 0.36
## 3690 PS2 2008 Misc Sony Computer Entertainment 0.00
## 3691 X360 2007 Sports Electronic Arts 0.49
## 3692 PS3 2009 Sports Electronic Arts 0.46
## 3693 XB 2004 Platform THQ 0.40
## 3694 XB 2006 Sports Electronic Arts 0.16
## 3695 PS2 2000 Sports SquareSoft 0.00
## 3696 GB 1999 Role-Playing Imagineer 0.00
## 3697 Wii 2006 Racing Nintendo 0.40
## 3698 X360 2009 Role-Playing Deep Silver 0.29
## 3699 Wii 2008 Racing System 3 Arcade Software 0.07
## 3700 XB 2003 Simulation Konami Digital Entertainment 0.42
## 3701 PSP 2010 Racing Sony Computer Entertainment 0.11
## 3702 PS2 2005 Racing Vivendi Games 0.27
## 3703 X360 2011 Role-Playing Unknown 0.40
## 3704 PS3 2012 Racing Sega 0.08
## 3705 PS3 2011 Misc Ubisoft 0.25
## 3706 PS2 2003 Strategy Square Enix 0.14
## 3707 GBA 2003 Platform THQ 0.39
## 3708 PS3 2015 Action Warner Bros. Interactive Entertainment 0.15
## 3709 DS 2008 Role-Playing Nintendo 0.00
## 3710 DS 2010 Role-Playing Level 5 0.00
## 3711 XOne 2015 Adventure Mojang 0.29
## 3712 PS4 2015 Action Capcom 0.13
## 3713 Wii 2007 Action Take-Two Interactive 0.25
## 3714 PS2 2004 Racing Namco Bandai Games 0.26
## 3715 DS 2010 Puzzle D3Publisher 0.42
## 3717 2600 1982 Action CPG Products 0.50
## 3718 N64 1999 Action Midway Games 0.43
## 3719 N64 1998 Sports Electronic Arts 0.11
## 3720 PS3 2011 Fighting Namco Bandai Games 0.00
## 3721 X360 2011 Fighting Namco Bandai Games 0.39
## 3722 PS3 2013 Role-Playing Namco Bandai Games 0.21
## 3723 PS 1998 Misc Sony Computer Entertainment 0.09
## 3724 GC 2005 Action Nintendo 0.29
## 3725 PS2 2002 Role-Playing Enix Corporation 0.00
## 3726 DS 2008 Misc Ubisoft 0.24
## 3727 PS 1999 Misc Aruze Corp 0.00
## 3728 X360 2013 Sports Electronic Arts 0.40
## 3729 PSP 2010 Role-Playing Sega 0.12
## 3730 X360 2014 Action Warner Bros. Interactive Entertainment 0.28
## 3731 Wii 2012 Sports Electronic Arts 0.51
## 3732 DS 2008 Role-Playing Rising Star Games 0.33
## 3733 PS3 2009 Shooter Warner Bros. Interactive Entertainment 0.13
## 3734 PS3 2011 Racing Disney Interactive Studios 0.22
## 3735 GBA 2004 Misc THQ 0.39
## 3736 DS 2010 Action Activision 0.32
## 3737 GC 2001 Sports Electronic Arts 0.42
## 3738 DS 2009 Fighting THQ 0.35
## 3739 XB 2004 Shooter Activision 0.46
## 3740 DS 2008 Puzzle Empire Interactive 0.42
## 3741 DS 2006 Shooter Nintendo 0.39
## 3742 PS2 2004 Sports Konami Digital Entertainment 0.00
## 3743 PS2 2003 Sports Sega 0.26
## 3744 3DS 2011 Role-Playing Nintendo 0.00
## 3745 PS2 2006 Platform Activision 0.45
## 3746 PS 2001 Sports Activision 0.30
## 3747 PS4 2016 Action Warner Bros. Interactive Entertainment 0.14
## 3748 X360 2012 Action Disney Interactive Studios 0.32
## 3749 2600 1982 Platform Parker Bros. 0.50
## 3750 DS 2008 Role-Playing Konami Digital Entertainment 0.04
## 3751 PS2 2003 Platform Vivendi Games 0.26
## 3752 PS2 2003 Fighting Sony Computer Entertainment 0.26
## 3753 Wii 2008 Role-Playing Namco Bandai Games 0.22
## 3755 PS2 2005 Action Vivendi Games 0.26
## 3756 PC 2015 Shooter Electronic Arts 0.13
## 3757 SAT 1998 Adventure Sega 0.00
## 3758 DS 2009 Puzzle Rondomedia 0.21
## 3759 PS2 2001 Shooter Namco Bandai Games 0.26
## 3760 PS 1996 Adventure ASCII Entertainment 0.07
## 3761 PS2 2005 Sports Electronic Arts 0.45
## 3762 Wii 2008 Action THQ 0.49
## 3763 PS2 2004 Misc Sony Computer Entertainment 0.26
## 3764 PS3 2013 Role-Playing Nippon Ichi Software 0.25
## 3765 PSP 2010 Role-Playing Square Enix 0.15
## 3766 PS2 2003 Action Eidos Interactive 0.26
## 3767 GBA 2004 Misc N/A 0.38
## 3768 PS2 2004 Sports Electronic Arts 0.44
## 3769 PS 2000 Racing Electronic Arts 0.30
## 3770 PS2 2004 Shooter SCi 0.26
## 3771 XB 2004 Misc Sega 0.40
## 3772 DS 2006 Role-Playing Sega 0.18
## 3773 DS 2009 Simulation Electronic Arts 0.26
## 3774 PS2 2003 Sports Midway Games 0.26
## 3775 PS 1999 Platform Eidos Interactive 0.30
## 3776 PS2 2008 Racing Electronic Arts 0.26
## 3777 XB 2004 Sports Midway Games 0.40
## 3778 PS 1996 Misc Sony Computer Entertainment 0.30
## 3779 WiiU 2015 Action Warner Bros. Interactive Entertainment 0.28
## 3780 X360 2011 Misc Warner Bros. Interactive Entertainment 0.39
## 3781 SNES 1993 Sports Hudson Soft 0.00
## 3782 SNES 1994 Strategy Tecmo Koei 0.00
## 3783 SNES 1993 Sports Tecmo Koei 0.00
## 3784 XB 2005 Action Ubisoft 0.34
## 3785 PS3 2010 Misc Sony Computer Entertainment 0.09
## 3786 WiiU 2015 Platform Nintendo 0.23
## 3787 XB 2005 Racing Electronic Arts 0.32
## 3788 PSP 2011 Sports Electronic Arts 0.12
## 3789 XB 2005 Shooter Electronic Arts 0.32
## 3790 PC 2011 Action Warner Bros. Interactive Entertainment 0.16
## 3791 PS2 2004 Platform Electronic Arts 0.26
## 3792 XB 2002 Action Universal Interactive 0.31
## 3793 PS2 2005 Sports Sony Computer Entertainment 0.26
## 3794 WiiU 2012 Racing Sega 0.20
## 3795 N64 2000 Action Activision 0.43
## 3796 Wii 2008 Simulation 505 Games 0.48
## 3797 PSP 2007 Shooter Ubisoft 0.35
## 3798 GC 2004 Role-Playing Activision 0.41
## 3799 Wii 2010 Adventure Disney Interactive Studios 0.27
## 3800 DS 2010 Simulation Electronic Arts 0.50
## 3801 PS 1997 Strategy SquareSoft 0.00
## 3802 PS3 2011 Shooter Electronic Arts 0.23
## 3803 X360 2009 Shooter Warner Bros. Interactive Entertainment 0.32
## 3804 X360 2010 Sports Electronic Arts 0.28
## 3805 PS3 2007 Racing THQ 0.17
## 3806 DS 2007 Misc Mindscape 0.48
## 3807 PSP 2009 Racing Codemasters 0.08
## 3808 PS2 2001 Action Take-Two Interactive 0.26
## 3809 GC 2002 Action Electronic Arts 0.41
## 3810 PS2 2005 Racing THQ 0.26
## 3811 PS2 2005 Action Take-Two Interactive 0.44
## 3812 PSV 2013 Action Warner Bros. Interactive Entertainment 0.20
## 3813 SNES 1994 Sports Namco Bandai Games 0.00
## 3814 Wii 2008 Action Take-Two Interactive 0.48
## 3815 PS3 2013 Shooter Activision 0.28
## 3816 DS 2009 Puzzle Nintendo 0.30
## 3817 XOne 2014 Misc Ubisoft 0.35
## 3818 PSP 2007 Action Konami Digital Entertainment 0.22
## 3819 N64 1999 Racing Electronic Arts 0.49
## 3820 N64 1996 Sports Nintendo 0.49
## 3821 PS 2000 Misc Aruze Corp 0.00
## 3822 PS2 2003 Shooter Activision 0.26
## 3823 GBA 2005 Sports Nintendo 0.24
## 3824 DC 1999 Simulation Sega 0.00
## 3825 DS 2008 Action Warner Bros. Interactive Entertainment 0.47
## 3826 PS 1999 Adventure Konami Digital Entertainment 0.29
## 3827 Wii 2006 Racing Ubisoft 0.46
## 3828 PS2 2006 Role-Playing Namco Bandai Games 0.00
## 3829 DS 2008 Role-Playing Disney Interactive Studios 0.37
## 3830 DS 2009 Misc Ubisoft 0.09
## 3831 Wii 2009 Fighting Nintendo 0.45
## 3832 PSP 2006 Fighting Electronic Arts 0.46
## 3833 PS2 2007 Action Sega 0.13
## 3834 PS 2001 Role-Playing Square 0.29
## 3835 X360 2007 Sports Electronic Arts 0.47
## 3836 PS 2001 Shooter Sony Computer Entertainment 0.29
## 3837 DS 2009 Shooter LucasArts 0.44
## 3838 PS2 2002 Action Konami Digital Entertainment 0.18
## 3839 PS2 2005 Puzzle Electronic Arts 0.26
## 3840 XB 2002 Sports Electronic Arts 0.39
## 3841 PS3 2008 Action Gamebridge 0.18
## 3842 PS3 2008 Sports Electronic Arts 0.46
## 3843 PS3 2011 Role-Playing Sony Online Entertainment 0.35
## 3844 PS 2000 Fighting Midway Games 0.29
## 3845 NES 1993 Platform Capcom 0.28
## 3846 PS 1999 Action Infogrames 0.29
## 3847 3DS 2014 Role-Playing Square Enix 0.15
## 3848 PS 1998 Fighting Capcom 0.12
## 3849 Wii 2008 Action Take-Two Interactive 0.17
## 3850 X360 2009 Simulation 505 Games 0.23
## 3851 PSV 2012 Action Sony Computer Entertainment 0.26
## 3852 PS3 2007 Action THQ 0.09
## 3853 Wii 2010 Misc Disney Interactive Studios 0.46
## 3854 PS3 2008 Action Activision 0.21
## 3855 PS2 2000 Sports Electronic Arts 0.17
## 3856 PS2 2003 Sports Sega 0.00
## 3857 PS2 2006 Action Eidos Interactive 0.25
## 3858 Wii 2007 Action THQ 0.44
## 3859 PS2 2003 Shooter Electronic Arts 0.25
## 3860 XB 2005 Shooter Activision 0.38
## 3861 GBA 2005 Adventure Disney Interactive Studios 0.37
## 3862 PS3 2007 Action Sony Computer Entertainment 0.36
## 3863 PS3 2006 Sports Electronic Arts 0.47
## 3864 PS2 2005 Action THQ 0.25
## 3865 PS 1999 Strategy SquareSoft 0.10
## 3866 DS 2006 Misc Nintendo 0.00
## 3867 PS2 2005 Sports Electronic Arts 0.25
## 3868 GBA 2002 Sports Activision 0.37
## 3869 GBA 2004 Action Electronic Arts 0.37
## 3870 DS 2007 Misc Ubisoft 0.48
## 3871 PS 1999 Shooter Sony Computer Entertainment 0.17
## 3872 PC 2006 Simulation Electronic Arts 0.46
## 3873 DS 2008 Action Sega 0.35
## 3874 XB 2002 Sports Sega 0.38
## 3875 PS 2001 Sports Electronic Arts 0.29
## 3876 PS2 2002 Misc Sony Computer Entertainment 0.25
## 3877 Wii 2007 Misc Ubisoft 0.46
## 3878 PS2 2002 Action Eidos Interactive 0.13
## 3879 PC 2009 Role-Playing Electronic Arts 0.00
## 3880 X360 2013 Fighting Namco Bandai Games 0.29
## 3882 PS2 2001 Misc Sony Computer Entertainment 0.25
## 3883 XOne 2014 Action Warner Bros. Interactive Entertainment 0.34
## 3884 PSP 2010 Role-Playing Square Enix 0.13
## 3885 PS3 2010 Action Ubisoft 0.17
## 3886 PS 1996 Sports Konami Digital Entertainment 0.08
## 3887 DS 2009 Puzzle Ubisoft 0.35
## 3888 PS2 2002 Racing Midas Interactive Entertainment 0.25
## 3889 PC 2015 Strategy Activision 0.18
## 3890 X360 2012 Sports Electronic Arts 0.29
## 3891 PSP 2009 Fighting Namco Bandai Games 0.12
## 3892 X360 2009 Action Electronic Arts 0.26
## 3893 PS4 2014 Role-Playing Square Enix 0.17
## 3894 Wii 2009 Sports Konami Digital Entertainment 0.12
## 3895 X360 2011 Shooter Activision 0.25
## 3896 DS 2008 Misc Nintendo 0.00
## 3897 GC 2003 Sports Electronic Arts 0.40
## 3898 PS2 2003 Sports Konami Digital Entertainment 0.00
## 3899 PS2 2000 Role-Playing THQ 0.25
## 3900 PS 1997 Sports Interplay 0.28
## 3901 PSP 2006 Sports Electronic Arts 0.47
## 3902 Wii 2008 Sports Sega 0.46
## 3903 Wii 2007 Strategy Nintendo 0.28
## 3904 PSP 2004 Action Tecmo Koei 0.18
## 3905 GBA 2005 Misc THQ 0.37
## 3906 X360 2009 Fighting Namco Bandai Games 0.36
## 3907 N64 1999 Misc THQ 0.41
## 3908 NES 1985 Platform Nintendo 0.00
## 3909 N64 1999 Sports Konami Digital Entertainment 0.01
## 3910 X360 2010 Sports Take-Two Interactive 0.47
## 3911 DS 2009 Action Activision 0.33
## 3912 PS3 2010 Shooter Activision 0.24
## 3913 Wii 2006 Platform THQ 0.45
## 3914 PS3 2008 Action Ubisoft 0.19
## 3915 XB 2003 Sports Electronic Arts 0.44
## 3916 PS 1996 Strategy Banpresto 0.00
## 3917 GBA 2002 Platform THQ 0.37
## 3918 X360 2006 Fighting THQ 0.44
## 3919 PS2 2006 Simulation Namco Bandai Games 0.15
## 3920 PS3 2010 Strategy Ubisoft 0.18
## 3921 PS3 2008 Role-Playing Square Enix 0.32
## 3922 PSP 2007 Racing Atari 0.08
## 3923 WiiU 2015 Action Warner Bros. Interactive Entertainment 0.30
## 3924 DS 2007 Puzzle Nintendo 0.17
## 3925 PSP 2007 Role-Playing Square Enix 0.36
## 3926 PS2 2006 Sports Electronic Arts 0.42
## 3927 PSP 2009 Action Electronic Arts 0.18
## 3928 XOne 2016 Action Microsoft Game Studios 0.27
## 3929 Wii 2010 Action Take-Two Interactive 0.47
## 3930 XB 2004 Misc Crave Entertainment 0.37
## 3931 PS2 2007 Sports Take-Two Interactive 0.25
## 3932 WS 2000 Role-Playing SquareSoft 0.00
## 3933 X360 2006 Racing Electronic Arts 0.42
## 3934 PS4 2015 Action Electronic Arts 0.18
## 3935 PC 2008 Simulation Rondomedia 0.00
## 3936 GBA 2004 Fighting Atari 0.36
## 3937 PC 2012 Action Bethesda Softworks 0.26
## 3938 DS 2007 Simulation THQ 0.46
## 3939 XB 2004 Sports Midway Games 0.37
## 3940 PS2 2004 Action Konami Digital Entertainment 0.25
## 3941 2600 1988 Shooter Activision 0.47
## 3942 PS2 2005 Misc Capcom 0.22
## 3943 XOne 2015 Misc Activision 0.29
## 3944 PS3 2014 Shooter Bethesda Softworks 0.14
## 3945 PS2 2002 Misc Infogrames 0.25
## 3946 DS 2009 Adventure GSP 0.12
## 3947 PS 1997 Sports Sony Computer Entertainment 0.28
## 3948 GBA 2004 Action THQ 0.36
## 3949 X360 2012 Racing Codemasters 0.10
## 3950 X360 2008 Sports Electronic Arts 0.45
## 3951 PS2 2006 Racing Sega 0.42
## 3952 PS2 2003 Platform Warner Bros. Interactive Entertainment 0.25
## 3954 2600 1983 Action Atari 0.47
## 3955 X360 2011 Adventure Electronic Arts 0.27
## 3956 X360 2011 Action Konami Digital Entertainment 0.10
## 3957 PS3 2006 Sports Electronic Arts 0.31
## 3958 XB 2003 Racing Take-Two Interactive 0.42
## 3959 PS3 2009 Role-Playing Nippon Ichi Software 0.22
## 3960 PS3 2011 Role-Playing Capcom 0.00
## 3961 DS 2005 Fighting Atari 0.14
## 3962 GC 2006 Adventure THQ 0.39
## 3963 PS 2001 Misc THQ 0.28
## 3964 PS2 2001 Action Universal Interactive 0.25
## 3965 PS2 2006 Action Eidos Interactive 0.25
## 3966 PS2 2008 Misc Disney Interactive Studios 0.25
## 3967 2600 1982 Shooter Activision 0.47
## 3968 PS2 2002 Misc Activision 0.25
## 3969 PS2 2008 Platform Vivendi Games 0.25
## 3970 X360 2015 Sports Take-Two Interactive 0.27
## 3971 X360 2014 Action Warner Bros. Interactive Entertainment 0.20
## 3972 Wii 2010 Simulation 505 Games 0.34
## 3973 Wii 2007 Misc Electronic Arts 0.43
## 3974 3DS 2012 Misc Square Enix 0.22
## 3975 PS3 2011 Fighting Nippon Ichi Software 0.27
## 3976 Wii 2006 Sports Electronic Arts 0.46
## 3977 N64 2000 Action THQ 0.40
## 3978 X360 2007 Simulation Konami Digital Entertainment 0.46
## 3979 PS2 2002 Simulation Activision 0.24
## 3980 GBA 2001 Role-Playing Nintendo 0.13
## 3981 Wii 2011 Misc Nintendo 0.27
## 3982 PS2 2004 Strategy Banpresto 0.00
## 3983 DS 2010 Adventure Disney Interactive Studios 0.27
## 3984 X360 2007 Sports Electronic Arts 0.45
## 3985 DS 2004 Action Activision 0.41
## 3986 PS 1995 Sports Jaleco 0.28
## 3987 XB 2004 Fighting Tecmo Koei 0.30
## 3988 PS 1997 Role-Playing ASCII Entertainment 0.11
## 3989 PSV 2013 Sports Electronic Arts 0.11
## 3990 PS2 2002 Shooter LucasArts 0.24
## 3991 PS3 2009 Action Electronic Arts 0.20
## 3992 PS2 2004 Action THQ 0.24
## 3993 X360 2013 Action Konami Digital Entertainment 0.29
## 3994 PS2 2010 Sports Electronic Arts 0.41
## 3995 X360 2012 Sports Take-Two Interactive 0.47
## 3996 XOne 2014 Shooter Sega 0.22
## 3997 DS 2008 Misc Ubisoft 0.46
## 3998 PS2 2004 Role-Playing Capcom 0.11
## 3999 X360 2011 Racing Disney Interactive Studios 0.28
## 4000 Wii 2009 Racing Activision 0.29
## 4001 GC 2004 Sports Activision 0.38
## 4002 PS2 2003 Racing THQ 0.24
## 4003 SNES 1996 Sports Namco Bandai Games 0.00
## 4004 PS3 2008 Action Namco Bandai Games 0.09
## 4005 PS2 2005 Action Activision 0.24
## 4006 GBA 2001 Platform Ubisoft 0.36
## 4007 PS2 2008 Strategy Namco Bandai Games 0.00
## 4008 PS 1996 Role-Playing Sony Computer Entertainment 0.00
## 4009 PS2 2007 Action Eidos Interactive 0.41
## 4010 PS2 2005 Action Activision 0.41
## 4011 PS3 2012 Action Disney Interactive Studios 0.21
## 4012 PS2 2002 Shooter Infogrames 0.24
## 4013 X360 2014 Action Bethesda Softworks 0.25
## 4014 2600 1982 Sports Atari 0.46
## 4015 PS2 2007 Platform THQ 0.24
## 4016 2600 1981 Action Atari 0.46
## 4017 2600 1982 Action Answer Software 0.46
## 4018 3DS 2011 Racing Namco Bandai Games 0.19
## 4019 Wii 2007 Racing THQ 0.46
## 4020 X360 2011 Action Namco Bandai Games 0.30
## 4021 3DS 2011 Action Capcom 0.16
## 4022 3DS 2011 Action Sega 0.26
## 4023 X360 2006 Sports Activision 0.44
## 4024 GBA 2004 Sports Activision 0.35
## 4025 PS3 2011 Racing Sony Computer Entertainment 0.21
## 4026 2600 1980 Sports Activision 0.46
## 4027 PS3 2015 Action Square Enix 0.00
## 4028 PSV 2014 Action Warner Bros. Interactive Entertainment 0.09
## 4029 PS2 2005 Action Atari 0.41
## 4030 X360 2010 Shooter Square Enix 0.20
## 4031 X360 2012 Action Warner Bros. Interactive Entertainment 0.31
## 4032 GC 2002 Fighting THQ 0.38
## 4033 3DS 2013 Platform Sega 0.24
## 4034 GBA 2003 Action THQ 0.35
## 4035 XB 2004 Shooter Electronic Arts 0.34
## 4036 Wii 2008 Adventure Scholastic Inc. 0.45
## 4037 DS 2006 Platform THQ 0.45
## 4038 GC 2003 Simulation Electronic Arts 0.35
## 4039 PS2 2005 Role-Playing Square Enix 0.12
## 4040 DS 2008 Sports Electronic Arts 0.12
## 4041 PS2 2006 Shooter Namco Bandai Games 0.00
## 4042 SNES 1993 Puzzle Nintendo 0.00
## 4043 XB 2006 Action Vivendi Games 0.37
## 4044 Wii 2009 Shooter Activision 0.24
## 4045 3DS 2014 Misc Nintendo 0.18
## 4046 N64 1997 Sports Electronic Arts 0.16
## 4047 X360 2008 Fighting Atari 0.24
## 4048 DS 2010 Action Activision 0.42
## 4049 PC 2010 Shooter Electronic Arts 0.20
## 4050 X360 2012 Shooter Bethesda Softworks 0.28
## 4051 SAT 1997 Sports Sega 0.00
## 4052 PS3 2013 Action 505 Games 0.07
## 4053 PS2 2004 Sports Atari 0.24
## 4054 PS2 2009 Racing Sony Computer Entertainment 0.00
## 4055 PS2 2003 Sports Universal Interactive 0.24
## 4056 3DS 2012 Action Disney Interactive Studios 0.36
## 4057 DS 2013 Action Warner Bros. Interactive Entertainment 0.28
## 4058 PS2 2003 Misc Namco Bandai Games 0.00
## 4059 X360 2008 Adventure Atari 0.14
## 4060 PS 2001 Fighting Atari 0.00
## 4061 PS2 2009 Shooter Activision 0.25
## 4062 PSP 2008 Sports Sega 0.00
## 4063 PC 2008 Shooter City Interactive 0.00
## 4064 GC 2001 Racing Acclaim Entertainment 0.36
## 4065 PS2 2003 Racing Midway Games 0.24
## 4066 PS3 2014 Racing Codemasters 0.07
## 4067 XB 2002 Action Namco Bandai Games 0.36
## 4068 Wii 2009 Sports XS Games 0.45
## 4069 PS 1999 Action Fox Interactive 0.27
## 4070 DS 2008 Adventure Ubisoft 0.08
## 4071 3DS 2011 Racing Ubisoft 0.27
## 4072 PS2 2001 Misc Hudson Soft 0.00
## 4073 3DS 2011 Action Nintendo 0.31
## 4074 PS2 2005 Role-Playing Namco Bandai Games 0.07
## 4075 SNES 1995 Simulation THQ 0.00
## 4076 DS 2007 Action Vivendi Games 0.42
## 4077 PC 2008 Action Ubisoft 0.01
## 4078 PS3 2015 Shooter Electronic Arts 0.12
## 4079 Wii 2007 Action Electronic Arts 0.38
## 4080 DS 2008 Misc Ubisoft 0.44
## 4081 PS3 2009 Shooter Warner Bros. Interactive Entertainment 0.19
## 4082 PSV 2012 Racing Sega 0.12
## 4083 X360 2007 Misc Microsoft Game Studios 0.43
## 4084 Wii 2009 Shooter Electronic Arts 0.33
## 4085 DS 2007 Puzzle Ubisoft 0.00
## 4086 PS2 2007 Action Activision 0.40
## 4087 PSV 2012 Action Konami Digital Entertainment 0.16
## 4088 DS 2006 Role-Playing Nintendo 0.16
## 4089 GBA 2005 Action Activision 0.35
## 4090 Wii 2009 Sports Namco Bandai Games 0.15
## 4091 Wii 2007 Simulation Electronic Arts 0.42
## 4092 3DS 2014 Sports Nintendo 0.15
## 4093 GBA 2004 Racing Zoo Digital Publishing 0.35
## 4094 PS 1999 Role-Playing Konami Digital Entertainment 0.00
## 4095 XB 2004 Sports Electronic Arts 0.36
## 4096 Wii 2009 Action Konami Digital Entertainment 0.23
## 4097 2600 1983 Shooter Atari 0.45
## 4098 SNES 1991 Adventure Konami Digital Entertainment 0.00
## 4099 X360 2008 Misc Microsoft Game Studios 0.27
## 4100 X360 2008 Shooter D3Publisher 0.22
## 4101 X360 2010 Shooter Activision 0.20
## 4102 PS2 2003 Misc Atari 0.24
## 4103 PS2 2006 Action THQ 0.40
## 4104 PS 1999 Fighting Acclaim Entertainment 0.27
## 4105 Wii 2008 Misc System 3 Arcade Software 0.42
## 4106 X360 2006 Sports Electronic Arts 0.44
## 4107 PS 1998 Fighting Activision 0.27
## 4108 PC 2014 Action Activision Blizzard 0.08
## 4109 PSP 2009 Misc MTV Games 0.24
## 4110 DS 2010 Adventure Capcom 0.25
## 4111 X360 2008 Platform Vivendi Games 0.22
## 4112 PSP 2010 Sports Electronic Arts 0.09
## 4113 PS2 2003 Simulation LucasArts 0.24
## 4114 DS 2008 Action Take-Two Interactive 0.44
## 4115 N64 1998 Sports Acclaim Entertainment 0.44
## 4116 N64 1999 Simulation Pack In Soft 0.25
## 4117 PS2 2008 Sports Electronic Arts 0.40
## 4118 PS2 2007 Simulation THQ 0.24
## 4119 WiiU 2012 Action Electronic Arts 0.18
## 4120 DS 2005 Simulation Rising Star Games 0.41
## 4121 PS 1999 Racing Activision 0.27
## 4122 PS3 2011 Role-Playing Unknown 0.26
## 4123 PC 2014 Simulation Sega 0.00
## 4124 PS2 2000 Strategy Electronic Arts 0.23
## 4125 Wii 2010 Racing Electronic Arts 0.18
## 4126 WiiU 2015 Action Activision 0.25
## 4127 X360 2008 Simulation Microsoft Game Studios 0.16
## 4128 DS 2011 Action Take-Two Interactive 0.45
## 4129 Wii 2010 Action Nintendo 0.38
## 4130 PS 1999 Sports 989 Studios 0.27
## 4131 Wii 2007 Platform Activision 0.42
## 4132 GBA 2001 Racing Rebellion 0.34
## 4133 PS3 2007 Action Tecmo Koei 0.14
## 4134 Wii 2008 Action Eidos Interactive 0.14
## 4135 DS 2009 Role-Playing Square Enix 0.12
## 4136 X360 2014 Role-Playing Microsoft Game Studios 0.25
## 4137 XB 2005 Sports Electronic Arts 0.35
## 4138 X360 2006 Sports Electronic Arts 0.19
## 4139 PS2 2009 Action THQ 0.19
## 4140 2600 1981 Racing Activision 0.45
## 4141 Wii 2008 Racing Xplosiv 0.06
## 4142 Wii 2008 Simulation Electronic Arts 0.37
## 4143 PS2 2002 Racing Ignition Entertainment 0.23
## 4144 DS 2009 Racing THQ 0.35
## 4145 Wii 2008 Racing Ubisoft 0.15
## 4147 PS2 2000 Puzzle Sony Computer Entertainment 0.14
## 4148 2600 1989 Action Activision 0.45
## 4149 PS 1996 Shooter Acclaim Entertainment 0.24
## 4150 N64 1998 Sports Electronic Arts 0.45
## 4151 3DS 2015 Role-Playing Nintendo 0.16
## 4153 PS3 2008 Shooter D3Publisher 0.23
## 4154 X360 2008 Shooter Midway Games 0.25
## 4155 PS2 2002 Fighting Activision 0.23
## 4156 X360 2012 Fighting Capcom 0.31
## 4157 PS2 2006 Action Electronic Arts 0.39
## 4158 Wii 2009 Racing Electronic Arts 0.19
## 4159 DS 2006 Action Ubisoft 0.43
## 4160 X360 2010 Role-Playing Electronic Arts 0.33
## 4161 SNES 1995 Puzzle Compile 0.00
## 4162 PS 2000 Action Midway Games 0.26
## 4163 DS 2005 Platform Konami Digital Entertainment 0.37
## 4164 PS3 2014 Fighting Namco Bandai Games 0.15
## 4165 PS3 2013 Action Activision 0.23
## 4166 PS 1995 Action Psygnosis 0.26
## 4167 PS2 2001 Action Sony Computer Entertainment 0.23
## 4168 PS3 2012 Action Konami Digital Entertainment 0.21
## 4169 X360 2014 Sports Electronic Arts 0.14
## 4170 Wii 2010 Fighting THQ 0.30
## 4171 Wii 2011 Role-Playing Square Enix 0.00
## 4172 PS2 2000 Fighting Empire Interactive 0.05
## 4173 Wii 2008 Simulation Ubisoft 0.42
## 4174 WiiU 2014 Action Warner Bros. Interactive Entertainment 0.23
## 4175 GBA 2002 Platform Nintendo 0.00
## 4176 PS2 2006 Role-Playing Square Enix 0.04
## 4177 PS2 2002 Racing THQ 0.23
## 4178 X360 2007 Role-Playing Microsoft Game Studios 0.41
## 4179 PSV 2012 Action Electronic Arts 0.00
## 4180 PSV 2011 Sports Sega 0.05
## 4181 PC 2009 Strategy THQ 0.00
## 4182 PSP 2007 Racing Sega 0.10
## 4183 DS 2010 Action Level 5 0.00
## 4184 DS 2007 Platform Activision 0.41
## 4185 PS3 2015 Action Disney Interactive Studios 0.14
## 4186 PS2 2005 Racing Midway Games 0.23
## 4187 N64 1998 Platform Nintendo 0.27
## 4188 N64 1997 Racing Titus 0.28
## 4189 N64 1998 Role-Playing Konami Digital Entertainment 0.38
## 4190 PS 1999 Misc Hudson Entertainment 0.00
## 4191 N64 1997 Shooter Midway Games 0.38
## 4192 Wii 2009 Puzzle Electronic Arts 0.34
## 4193 PC 2010 Simulation Electronic Arts 0.00
## 4194 X360 2005 Fighting Tecmo Koei 0.30
## 4195 2600 1987 Action Activision 0.44
## 4196 X360 2011 Action Sega 0.28
## 4197 Wii 2009 Platform Disney Interactive Studios 0.29
## 4198 PS2 2006 Sports Midway Games 0.23
## 4199 XB 2006 Racing Electronic Arts 0.35
## 4201 XOne 2015 Sports Electronic Arts 0.37
## 4202 PC 2011 Sports Electronic Arts 0.04
## 4203 PS 1999 Misc Codemasters 0.26
## 4204 DS 2007 Action Activision 0.43
## 4205 X360 2013 Sports Take-Two Interactive 0.44
## 4206 SNES 1995 Misc Hudson Soft 0.00
## 4207 PS2 2005 Sports Konami Digital Entertainment 0.00
## 4208 PC 2011 Simulation Electronic Arts 0.00
## 4209 PS2 2009 Racing THQ 0.27
## 4210 PS2 2003 Racing Codemasters 0.23
## 4211 X360 2014 Sports Electronic Arts 0.35
## 4212 GBA 2006 Adventure Disney Interactive Studios 0.33
## 4213 PS2 2005 Misc Activision 0.39
## 4214 3DS 2012 Role-Playing Level 5 0.00
## 4215 PS 1996 Sports Electronic Arts 0.26
## 4216 Wii 2010 Misc Nordic Games 0.00
## 4217 GBA 2005 Action Ubisoft 0.33
## 4218 PS3 2011 Racing THQ 0.24
## 4219 DS 2008 Action Capcom 0.22
## 4220 DS 2007 Puzzle Ignition Entertainment 0.43
## 4221 PS2 2004 Fighting Atari 0.23
## 4222 GC 2005 Misc Nintendo 0.36
## 4223 GC 2004 Action Konami Digital Entertainment 0.30
## 4224 DS 2007 Sports Ubisoft 0.46
## 4225 PS2 2002 Sports Activision 0.23
## 4226 PS2 2007 Adventure Konami Digital Entertainment 0.23
## 4227 DS 2008 Platform Vivendi Games 0.26
## 4228 GBA 2001 Shooter THQ 0.33
## 4229 PS3 2007 Racing THQ 0.35
## 4230 GBA 2004 Puzzle Nintendo 0.25
## 4231 XB 2005 Shooter THQ 0.34
## 4232 GBA 2002 Misc Infogrames 0.33
## 4234 Wii 2011 Misc GameMill Entertainment 0.44
## 4235 PS 1999 Sports Ubisoft 0.26
## 4236 Wii 2007 Action Vivendi Games 0.40
## 4237 PS3 2011 Shooter Warner Bros. Interactive Entertainment 0.21
## 4238 GBA 2005 Platform Disney Interactive Studios 0.33
## 4239 PS2 2002 Action Wanadoo 0.20
## 4240 PSP 2007 Shooter Sony Computer Entertainment 0.25
## 4241 SNES 1992 Sports Namco Bandai Games 0.00
## 4242 PS2 2001 Strategy THQ 0.13
## 4243 SNES 1993 Platform Namco Bandai Games 0.00
## 4244 GBA 2002 Platform Activision 0.33
## 4245 PC 2014 Shooter Bethesda Softworks 0.12
## 4246 PS3 2011 Shooter THQ 0.13
## 4247 GBA 2004 Platform THQ 0.33
## 4248 3DS 2012 Action Nintendo 0.20
## 4249 DS 2008 Strategy Take-Two Interactive 0.38
## 4250 PSP 2006 Racing Sony Computer Entertainment 0.37
## 4251 DS 2008 Platform Take-Two Interactive 0.27
## 4252 PS2 2007 Misc Sony Computer Entertainment 0.23
## 4253 PS2 2005 Shooter Ubisoft 0.38
## 4254 Wii 2010 Sports Konami Digital Entertainment 0.36
## 4255 DS 2011 Action Activision 0.34
## 4256 PS2 2005 Fighting Atari 0.38
## 4257 GBA 2001 Platform THQ 0.33
## 4258 PS3 2008 Platform Vivendi Games 0.19
## 4259 PS 1999 Racing Midway Games 0.26
## 4260 PSP 2006 Shooter Ubisoft 0.23
## 4261 DS 2008 Adventure THQ 0.42
## 4262 3DS 2016 Action Nintendo 0.04
## 4263 PS 1996 Sports Sony Computer Entertainment 0.26
## 4264 X360 2013 Action Activision 0.26
## 4265 PS2 2005 Shooter Ubisoft 0.38
## 4266 PS3 2011 Sports Sega 0.09
## 4267 XOne 2014 Sports Electronic Arts 0.30
## 4268 2600 1983 Action Atari 0.43
## 4269 PS2 2002 Action Sony Computer Entertainment 0.22
## 4270 PS2 2003 Misc Sony Computer Entertainment 0.22
## 4271 GBA 2001 Action THQ 0.33
## 4272 GBA 2003 Racing Vivendi Games 0.33
## 4273 PS3 2009 Action LucasArts 0.19
## 4274 PS3 2015 Simulation Koch Media 0.11
## 4275 DS 2006 Fighting Sega 0.30
## 4276 Wii 2011 Sports Electronic Arts 0.43
## 4277 DS 2009 Misc Warner Bros. Interactive Entertainment 0.33
## 4278 XOne 2015 Action Warner Bros. Interactive Entertainment 0.26
## 4279 DS 2011 Misc THQ 0.37
## 4280 PS2 2009 Platform Sony Computer Entertainment 0.22
## 4281 PS2 2002 Misc Hudson Soft 0.00
## 4282 X360 2008 Strategy Electronic Arts 0.18
## 4283 PSP 2006 Action Eidos Interactive 0.09
## 4284 X360 2015 Action Activision 0.24
## 4285 X360 2007 Action Sega 0.30
## 4286 PS 2000 Racing Activision 0.25
## 4287 Wii 2010 Action Warner Bros. Interactive Entertainment 0.29
## 4288 PSV 2015 Role-Playing Namco Bandai Games 0.08
## 4289 PS 1999 Fighting Virgin Interactive 0.25
## 4290 PS2 2005 Shooter NovaLogic 0.22
## 4291 PSP 2007 Racing Electronic Arts 0.02
## 4292 X360 2006 Sports Electronic Arts 0.42
## 4293 X360 2009 Racing Ubisoft 0.24
## 4294 SNES 1994 Shooter Taito 0.00
## 4295 PS2 2002 Role-Playing Atari 0.14
## 4296 X360 2013 Platform Ubisoft 0.19
## 4297 GBA 2003 Role-Playing Nintendo 0.00
## 4298 PS3 2010 Role-Playing Tecmo Koei 0.22
## 4299 Wii 2009 Adventure Activision 0.42
## 4300 3DS 2015 Puzzle Nintendo 0.05
## 4301 X360 2010 Action Electronic Arts 0.21
## 4302 XB 2003 Sports Microsoft Game Studios 0.36
## 4303 Wii 2010 Misc Disney Interactive Studios 0.43
## 4304 PS 1995 Simulation Sony Computer Entertainment 0.25
## 4305 Wii 2007 Action Disney Interactive Studios 0.39
## 4306 PS3 2011 Shooter THQ 0.20
## 4307 PS3 2011 Misc Sony Computer Entertainment 0.00
## 4308 PSV 2015 Misc Nippon Ichi Software 0.13
## 4309 PS3 2009 Role-Playing Namco Bandai Games 0.00
## 4310 XOne 2014 Action Square Enix 0.26
## 4311 PSP 2009 Action Ubisoft Annecy 0.03
## 4312 GBA 2005 Platform THQ 0.33
## 4313 PSV 2013 Role-Playing Namco Bandai Games 0.15
## 4314 PS 1999 Shooter Atari 0.25
## 4315 3DS 2014 Action Warner Bros. Interactive Entertainment 0.21
## 4316 Wii 2007 Adventure Activision 0.42
## 4317 SNES 1996 Sports Konami Digital Entertainment 0.00
## 4318 PS4 2014 Adventure Telltale Games 0.12
## 4319 PS2 2005 Sports Konami Digital Entertainment 0.00
## 4320 GC 2003 Action Atari 0.34
## 4321 Wii 2008 Platform Vivendi Games 0.36
## 4322 XB 2004 Racing Electronic Arts 0.34
## 4323 SNES 1995 Sports Epoch 0.00
## 4324 DS 2007 Puzzle Majesco Entertainment 0.42
## 4325 GC 2002 Role-Playing Infogrames 0.23
## 4326 DS 2012 Misc Activision 0.03
## 4327 PS2 2002 Action BAM! Entertainment 0.22
## 4328 PSV 2012 Shooter Sony Computer Entertainment 0.21
## 4329 Wii 2012 Sports Take-Two Interactive 0.39
## 4330 3DS 2011 Fighting Ubisoft Annecy 0.13
## 4332 DS 2008 Misc Ubisoft 0.41
## 4333 PS2 2006 Sports Electronic Arts 0.38
## 4334 PC 2014 Action Ubisoft 0.14
## 4335 Wii 2008 Misc Konami Digital Entertainment 0.42
## 4336 X360 2011 Sports Take-Two Interactive 0.40
## 4337 X360 2008 Shooter Activision 0.30
## 4338 2600 1985 Puzzle Activision 0.42
## 4339 PS 1998 Sports 989 Studios 0.25
## 4340 PS2 2005 Shooter Midway Games 0.22
## 4341 PS 1998 Sports Namco Bandai Games 0.00
## 4342 X360 2007 Racing Sega 0.12
## 4343 PS2 2004 Sports Electronic Arts 0.22
## 4344 X360 2008 Fighting Midway Games 0.26
## 4345 XB 2003 Shooter Activision 0.34
## 4346 Wii 2007 Strategy LucasArts 0.39
## 4347 2600 1981 Simulation Atari 0.42
## 4348 PS3 2010 Action Activision 0.26
## 4349 X360 2011 Shooter Warner Bros. Interactive Entertainment 0.30
## 4350 DS 2007 Misc Ubisoft 0.41
## 4351 PS4 2016 Shooter Electronic Arts 0.17
## 4352 Wii 2009 Misc MTV Games 0.42
## 4353 PS3 2015 Sports Konami Digital Entertainment 0.08
## 4354 PS 1998 Action Activision 0.25
## 4355 DS 2009 Action Activision 0.27
## 4356 Wii 2009 Sports Konami Digital Entertainment 0.09
## 4357 GBA 2004 Misc Konami Digital Entertainment 0.32
## 4358 PS3 2009 Misc Sony Computer Entertainment 0.11
## 4359 PSV 2013 Role-Playing Namco Bandai Games 0.00
## 4360 Wii 2009 Action Nintendo 0.10
## 4361 PS2 2001 Sports Konami Digital Entertainment 0.00
## 4362 PS4 2015 Action Namco Bandai Games 0.08
## 4363 PS2 2003 Action THQ 0.22
## 4364 SNES 1993 Fighting Takara 0.00
## 4365 N64 1998 Action GT Interactive 0.36
## 4366 N64 2000 Puzzle Nintendo 0.36
## 4367 PS3 2008 Role-Playing Atari 0.19
## 4368 Wii 2009 Simulation Konami Digital Entertainment 0.26
## 4369 3DS 2014 Sports Electronic Arts 0.09
## 4370 Wii 2007 Simulation Ubisoft 0.41
## 4371 DS 2007 Action Activision 0.41
## 4372 GBA 2001 Fighting Infogrames 0.32
## 4373 PS2 2006 Role-Playing Tecmo Koei 0.22
## 4374 PS 1995 Role-Playing Atlus 0.00
## 4375 DS 2009 Misc Activision 0.21
## 4376 X360 2012 Fighting Namco Bandai Games 0.26
## 4377 GBA 2004 Racing THQ 0.32
## 4378 X360 2008 Action Sega 0.16
## 4380 PS 1995 Action Namco Bandai Games 0.00
## 4382 PS2 2009 Misc Sony Computer Entertainment 0.00
## 4383 PSP 2010 Shooter Sony Computer Entertainment 0.17
## 4384 PS 1999 Role-Playing Square 0.00
## 4385 PS2 2008 Misc Disney Interactive Studios 0.09
## 4386 X360 2009 Sports Electronic Arts 0.40
## 4387 PS2 2004 Action Tecmo Koei 0.04
## 4388 PS3 2007 Sports Activision 0.36
## 4389 PS 1994 Sports Sony Computer Entertainment 0.25
## 4390 XB 2005 Fighting THQ 0.34
## 4391 X360 2010 Sports 505 Games 0.38
## 4392 PSP 2007 Strategy THQ 0.04
## 4393 GC 2004 Sports Electronic Arts 0.35
## 4394 2600 1987 Shooter Atari 0.42
## 4395 GC 2004 Fighting THQ 0.35
## 4396 DS 2005 Action Square Enix 0.13
## 4397 XB 2003 Racing Acclaim Entertainment 0.36
## 4398 PS 2000 Racing Eidos Interactive 0.25
## 4399 PS2 2002 Racing Electronic Arts 0.22
## 4400 PS 1996 Role-Playing Konami Digital Entertainment 0.14
## 4401 WiiU 2015 Sports Nintendo 0.13
## 4402 Wii 2008 Sports Electronic Arts 0.18
## 4403 2600 1981 Action Tigervision 0.42
## 4404 PS2 2004 Action THQ 0.22
## 4405 GBA 2004 Sports Nintendo 0.32
## 4406 PSP 2008 Platform Vivendi Games 0.11
## 4407 Wii 2009 Misc Konami Digital Entertainment 0.24
## 4408 DS 2009 Simulation 505 Games 0.42
## 4409 XOne 2013 Misc Ubisoft 0.30
## 4410 PS2 2004 Misc Konami Digital Entertainment 0.22
## 4411 PS3 2013 Shooter 505 Games 0.21
## 4412 PS2 2006 Sports Spike 0.37
## 4413 PS2 2005 Misc Sony Computer Entertainment 0.37
## 4414 XB 2005 Sports Konami Digital Entertainment 0.06
## 4415 N64 1999 Sports Electronic Arts 0.42
## 4416 PS2 2004 Action Konami Digital Entertainment 0.22
## 4417 PS2 2005 Misc THQ 0.37
## 4418 X360 2015 Action Disney Interactive Studios 0.19
## 4419 DS 2009 Puzzle Warner Bros. Interactive Entertainment 0.30
## 4420 PS2 2002 Adventure Vivendi Games 0.22
## 4421 WiiU 2015 Action Disney Interactive Studios 0.20
## 4422 PS2 2004 Action Activision 0.22
## 4423 XB 2005 Role-Playing Activision 0.30
## 4424 Wii 2009 Misc Namco Bandai Games 0.41
## 4425 X360 2012 Action Activision 0.28
## 4426 PS3 2013 Action Deep Silver 0.14
## 4427 DS 2004 Simulation Electronic Arts 0.40
## 4428 PS2 2003 Action Electronic Arts 0.22
## 4429 XB 2006 Action Electronic Arts 0.33
## 4430 X360 2013 Action Capcom 0.26
## 4431 XOne 2016 Shooter Electronic Arts 0.26
## 4432 PS 1996 Sports Namco Bandai Games 0.00
## 4433 XB 2002 Sports Electronic Arts 0.35
## 4434 PS2 2005 Shooter Electronic Arts 0.37
## 4435 Wii 2009 Action Disney Interactive Studios 0.19
## 4436 Wii 2009 Action D3Publisher 0.25
## 4437 XB 2005 Action Vivendi Games 0.33
## 4438 GBA 2003 Platform Nintendo 0.00
## 4439 PS 1997 Shooter Fox Interactive 0.25
## 4440 X360 2011 Racing Electronic Arts 0.18
## 4441 PS 1999 Racing SquareSoft 0.07
## 4442 PS3 2012 Action Tecmo Koei 0.19
## 4443 X360 2011 Shooter Ubisoft 0.28
## 4444 XB 2006 Action LucasArts 0.33
## 4445 Wii 2008 Misc Ubisoft 0.10
## 4446 DS 2007 Misc Ubisoft 0.40
## 4447 X360 2007 Shooter Take-Two Interactive 0.36
## 4448 PS2 2005 Shooter Namco Bandai Games 0.00
## 4449 PS 2000 Puzzle Namco Bandai Games 0.25
## 4450 PS 1996 Role-Playing Crystal Dynamics 0.25
## 4451 SNES 1996 Puzzle Hudson Soft 0.00
## 4452 NES 1991 Puzzle Hudson Soft 0.16
## 4453 N64 1997 Shooter GT Interactive 0.35
## 4454 Wii 2009 Shooter Nintendo 0.20
## 4455 Wii 2009 Misc Knowledge Adventure 0.41
## 4456 PS3 2010 Action 505 Games 0.18
## 4457 GC 2005 Misc THQ 0.34
## 4458 PS2 2007 Strategy Banpresto 0.00
## 4459 PS 2001 Action 3DO 0.24
## 4460 DS 2007 Simulation Ubisoft 0.41
## 4461 DS 2007 Simulation Activision 0.40
## 4462 PSP 2009 Strategy Konami Digital Entertainment 0.19
## 4463 XB 2004 Racing THQ 0.34
## 4464 PS2 2002 Sports Konami Digital Entertainment 0.00
## 4465 PS 2000 Sports Sony Computer Entertainment 0.24
## 4466 GC 2004 Fighting Tomy Corporation 0.00
## 4467 DS 2010 Action THQ 0.26
## 4468 GC 2003 Platform Nintendo 0.34
## 4469 GBA 2003 Action THQ 0.31
## 4471 PS2 2003 Misc Namco Bandai Games 0.00
## 4472 DS 2010 Sports Mastiff 0.41
## 4474 PS3 2012 Misc Ubisoft 0.26
## 4475 GC 2002 Shooter Eidos Interactive 0.34
## 4476 GBA 2003 Action Majesco Entertainment 0.31
## 4477 X360 2012 Action Capcom 0.28
## 4478 GC 2002 Adventure Nintendo 0.34
## 4479 GBA 2004 Action THQ 0.31
## 4480 PS2 2005 Fighting Atari 0.36
## 4481 PS2 2009 Misc Sony Computer Entertainment 0.00
## 4482 SAT 1996 Adventure Sega 0.00
## 4483 Wii 2007 Platform THQ 0.40
## 4484 PS2 2005 Action Namco Bandai Games 0.00
## 4485 DS 2010 Simulation Konami Digital Entertainment 0.00
## 4486 PS2 2002 Sports Midway Games 0.21
## 4487 Wii 2011 Misc Ubisoft 0.41
## 4488 PS2 2007 Action THQ 0.36
## 4489 PSP 2007 Fighting Atari 0.19
## 4490 DS 2006 Puzzle Nintendo 0.16
## 4491 XB 2002 Simulation Activision 0.35
## 4492 Wii 2009 Sports Mastiff 0.41
## 4493 GBA 2004 Adventure Nintendo 0.26
## 4494 PS3 2010 Role-Playing Sega 0.19
## 4495 3DS 2011 Puzzle Tetris Online 0.20
## 4496 DS 2009 Misc Take-Two Interactive 0.39
## 4497 PS2 2003 Action Sony Computer Entertainment 0.21
## 4498 N64 2001 Sports Electronic Arts 0.41
## 4499 GBA 2004 Racing Electronic Arts 0.31
## 4500 PS2 2008 Action Activision 0.17
## 4501 PS 2001 Shooter Take-Two Interactive 0.24
## 4502 XB 2001 Sports Electronic Arts 0.32
## 4503 GBA 2005 Simulation THQ 0.31
## 4504 PC 2013 Sports Electronic Arts 0.01
## 4505 PS2 2005 Action Disney Interactive Studios 0.36
## 4506 PS4 2014 Racing Ubisoft 0.13
## 4507 DS 2010 Misc THQ 0.41
## 4508 SAT 1996 Platform Sega 0.00
## 4509 XB 2003 Sports Electronic Arts 0.40
## 4510 PC 2016 Shooter Activision 0.22
## 4511 XOne 2015 Misc Harmonix Music Systems 0.35
## 4512 Wii 2010 Sports Electronic Arts 0.38
## 4513 PS2 2003 Action Electronic Arts 0.21
## 4514 WiiU 2016 Misc Microsoft Game Studios 0.18
## 4515 PS 2001 Sports Sony Computer Entertainment 0.24
## 4516 PS4 2014 Action Square Enix 0.16
## 4517 PS2 2000 Shooter Eidos Interactive 0.21
## 4518 2600 1981 Action Activision 0.40
## 4519 PS2 2004 Role-Playing Namco Bandai Games 0.21
## 4520 DS 2009 Role-Playing Rising Star Games 0.28
## 4521 GBA 2002 Platform BAM! Entertainment 0.31
## 4522 GBA 2003 Platform Capcom 0.18
## 4523 SNES 1994 Simulation Enix Corporation 0.00
## 4524 Wii 2010 Sports Electronic Arts 0.23
## 4525 PS3 2010 Role-Playing Nippon Ichi Software 0.12
## 4526 X360 2012 Shooter Take-Two Interactive 0.21
## 4527 GBA 2004 Misc N/A 0.31
## 4528 PS2 2009 Action Atari 0.15
## 4529 PS2 2003 Action Interplay 0.21
## 4530 Wii 2010 Action Activision 0.24
## 4531 X360 2007 Strategy Electronic Arts 0.35
## 4532 N64 1998 Racing Midway Games 0.28
## 4533 N64 1997 Platform Nintendo 0.25
## 4534 PC 2012 Shooter Take-Two Interactive 0.15
## 4535 DS 2008 Simulation Ubisoft 0.39
## 4536 DS 2006 Platform Konami Digital Entertainment 0.33
## 4538 PS2 2004 Sports Sony Computer Entertainment 0.36
## 4539 Wii 2013 Sports Electronic Arts 0.00
## 4540 PS2 2003 Role-Playing Sony Online Entertainment 0.21
## 4541 PS 1996 Sports Sony Computer Entertainment 0.10
## 4542 DS 2009 Adventure ChunSoft 0.37
## 4543 PS2 2001 Simulation Namco Bandai Games 0.09
## 4544 PS3 2012 Simulation Konami Digital Entertainment 0.21
## 4545 PS3 2007 Action Electronic Arts 0.16
## 4546 PSP 2006 Role-Playing Ubisoft 0.17
## 4547 PS2 2008 Misc Electronic Arts 0.21
## 4548 PS2 2006 Role-Playing Square Enix 0.07
## 4549 PC 2006 Simulation Microsoft Game Studios 0.02
## 4550 XOne 2014 Action Warner Bros. Interactive Entertainment 0.23
## 4551 GC 2002 Sports Electronic Arts 0.33
## 4552 Wii 2009 Racing Electronic Arts 0.39
## 4553 X360 2008 Misc Disney Interactive Studios 0.39
## 4554 GBA 2002 Sports Atari 0.31
## 4555 WiiU 2012 Shooter Activision 0.21
## 4556 PS3 2010 Action Disney Interactive Studios 0.27
## 4557 XB 2003 Misc Midway Games 0.33
## 4558 DS 2009 Shooter Activision 0.37
## 4559 Wii 2007 Simulation Ubisoft 0.39
## 4560 DS 2011 Action Ubisoft 0.24
## 4561 PS2 2009 Action Activision 0.21
## 4562 PS 1997 Sports 989 Studios 0.24
## 4563 PS4 2014 Action Activision 0.18
## 4564 PS2 2005 Misc Sega 0.21
## 4565 PSP 2007 Action Disney Interactive Studios 0.15
## 4566 PSP 2006 Racing THQ 0.11
## 4567 DS 2006 Action D3Publisher 0.39
## 4568 SAT 1997 Role-Playing Sega 0.00
## 4569 PSP 2011 Strategy Banpresto 0.00
## 4570 GC 2002 Sports Electronic Arts 0.33
## 4571 DS 2009 Action D3Publisher 0.22
## 4572 PSP 2009 Action D3Publisher 0.13
## 4573 DS 2008 Role-Playing Square Enix 0.23
## 4574 PS2 2007 Platform Vivendi Games 0.21
## 4575 GBA 2001 Role-Playing Capcom 0.14
## 4576 PS3 2009 Misc Warner Bros. Interactive Entertainment 0.24
## 4577 PS2 2006 Shooter Eidos Interactive 0.35
## 4578 PS2 2005 Sports Take-Two Interactive 0.21
## 4579 GC 2003 Shooter Electronic Arts 0.33
## 4580 XB 2003 Simulation Electronic Arts 0.31
## 4581 X360 2009 Misc Activision 0.23
## 4582 PS2 2003 Adventure Sony Computer Entertainment 0.21
## 4583 PS 1999 Adventure Sony Computer Entertainment 0.24
## 4584 SNES 1991 Action Namco Bandai Games 0.00
## 4585 PS 1998 Action Psygnosis 0.24
## 4586 3DS 2013 Role-Playing Rising Star Games 0.22
## 4587 GC 2005 Sports Activision 0.33
## 4588 X360 2011 Sports Take-Two Interactive 0.15
## 4589 GBA 2004 Platform Nintendo 0.00
## 4590 DS 2008 Platform Vivendi Games 0.39
## 4591 Wii 2007 Shooter Electronic Arts 0.34
## 4592 PSP 2007 Strategy Konami Digital Entertainment 0.03
## 4593 PS 1997 Simulation Psygnosis 0.24
## 4594 PS2 2003 Sports Acclaim Entertainment 0.21
## 4595 PS 2003 Sports Gotham Games 0.23
## 4596 PSV 2012 Role-Playing GungHo 0.22
## 4597 DS 2010 Action Electronic Arts 0.20
## 4598 DS 2006 Simulation Ubisoft 0.38
## 4599 DS 2009 Action THQ 0.42
## 4600 PS 2001 Racing Electronic Arts 0.23
## 4601 SAT 1997 Role-Playing ESP 0.00
## 4602 XB 2004 Sports Global Star 0.32
## 4603 GBA 2005 Misc Konami Digital Entertainment 0.30
## 4604 PS2 2003 Racing THQ 0.21
## 4605 PS2 2007 Action THQ 0.21
## 4606 PS2 2002 Action Atari 0.21
## 4607 Wii 2007 Platform Sega 0.33
## 4608 PS2 2004 Racing Zoo Digital Publishing 0.35
## 4609 X360 2010 Shooter Sega 0.19
## 4610 GBA 2004 Action Ubisoft 0.30
## 4611 DS 2009 Fighting THQ 0.37
## 4612 GBA 2004 Platform Activision 0.30
## 4613 PS 1998 Racing TYO 0.23
## 4614 PSP 2005 Sports Electronic Arts 0.39
## 4615 PS 1999 Role-Playing Sony Computer Entertainment 0.00
## 4616 DS 2007 Misc Telegames 0.39
## 4617 PSP 2008 Fighting Namco Bandai Games 0.00
## 4618 XB 2002 Racing Atari 0.35
## 4619 PS2 2004 Sports Konami Digital Entertainment 0.00
## 4620 DS 2010 Adventure Capcom 0.20
## 4621 PS2 2003 Action THQ 0.21
## 4622 N64 1998 Racing Midway Games 0.35
## 4623 N64 2000 Sports Midway Games 0.34
## 4624 N64 2001 Puzzle Nintendo 0.34
## 4625 N64 1999 Sports Konami Digital Entertainment 0.00
## 4626 N64 2000 Shooter 3DO 0.34
## 4627 GC 2004 Shooter Electronic Arts 0.32
## 4628 PS3 2010 Misc MTV Games 0.19
## 4629 PS4 2015 Action Bethesda Softworks 0.09
## 4630 PS2 2008 Sports Sony Computer Entertainment 0.35
## 4631 XOne 2014 Action Disney Interactive Studios 0.24
## 4632 XB 2004 Simulation Konami Digital Entertainment 0.32
## 4633 GC 2004 Platform Capcom 0.32
## 4634 X360 2006 Simulation Ubisoft 0.36
## 4635 SNES 1995 Sports Namco Bandai Games 0.00
## 4636 GBA 2004 Misc N/A 0.30
## 4637 PS2 2008 Sports Activision 0.21
## 4638 DS 2010 Misc Namco Bandai Games 0.00
## 4639 GC 2005 Action Electronic Arts 0.32
## 4640 Wii 2009 Adventure Knowledge Adventure 0.39
## 4641 PS2 2007 Strategy LucasArts 0.20
## 4642 DS 2009 Simulation Ubisoft 0.35
## 4643 X360 2005 Action Sega 0.36
## 4644 PS 2001 Action Capcom 0.14
## 4645 Wii 2008 Racing Activision 0.39
## 4646 PS2 2002 Shooter Universal Interactive 0.20
## 4647 GC 2005 Puzzle Sega 0.32
## 4648 PS2 2005 Action Konami Digital Entertainment 0.18
## 4649 PS3 2010 Action Ubisoft 0.21
## 4650 DS 2008 Simulation Rising Star Games 0.22
## 4651 PS 1998 Sports Konami Digital Entertainment 0.02
## 4652 GBA 2001 Platform THQ 0.30
## 4653 XB 2006 Shooter Electronic Arts 0.31
## 4654 Wii 2007 Adventure Nintendo 0.18
## 4655 XB 2006 Action THQ 0.31
## 4656 PSP 2009 Action LucasArts 0.21
## 4657 PSP 2010 Action Take-Two Interactive 0.39
## 4658 WiiU 2015 Misc Nintendo 0.19
## 4659 3DS 2016 Action Nintendo 0.16
## 4660 PS3 2010 Action Electronic Arts 0.13
## 4661 Wii 2011 Sports Namco Bandai Games 0.16
## 4662 PS3 2011 Fighting THQ 0.16
## 4663 XB 2004 Role-Playing Electronic Arts 0.31
## 4664 PSP 2010 Sports Sega 0.00
## 4665 PS2 2007 Action Disney Interactive Studios 0.20
## 4666 PS 2000 Adventure Capcom 0.17
## 4667 PS 1997 Fighting Capcom 0.16
## 4668 PS2 2004 Misc Mud Duck Productions 0.20
## 4669 PSP 2007 Platform Konami Digital Entertainment 0.22
## 4670 PS2 2004 Action Midway Games 0.20
## 4671 SAT 1995 Fighting Sega 0.00
## 4672 PS3 2009 Puzzle Namco Bandai Games 0.26
## 4673 XB 2001 Simulation LucasArts 0.30
## 4674 X360 2007 Shooter Vivendi Games 0.36
## 4675 PS2 2003 Sports Acclaim Entertainment 0.20
## 4676 PS2 2003 Simulation Konami Digital Entertainment 0.15
## 4677 DS 2009 Action Atari 0.26
## 4678 3DS 2013 Action Screenlife 0.00
## 4679 PS2 2003 Misc Sony Computer Entertainment 0.20
## 4680 GBA 2001 Adventure BAM! Entertainment 0.30
## 4681 PS2 2003 Sports Sony Computer Entertainment 0.20
## 4682 GBA 2001 Adventure Ubisoft 0.30
## 4683 PSV 2013 Misc Nippon Ichi Software 0.14
## 4685 PC 1998 Action Eidos Interactive 0.41
## 4686 PS2 2010 Sports Konami Digital Entertainment 0.04
## 4687 DC 1999 Racing Sega 0.00
## 4688 PS 1998 Shooter Activision 0.23
## 4689 PS2 2007 Action Vivendi Games 0.34
## 4690 PC 2007 Shooter Take-Two Interactive 0.01
## 4691 PS3 2007 Racing THQ 0.37
## 4692 PS2 2010 Sports Sony Computer Entertainment 0.20
## 4693 PS 2000 Misc Hasbro Interactive 0.23
## 4694 XB 2005 Shooter Ubisoft 0.26
## 4695 PSP 2009 Fighting Namco Bandai Games 0.00
## 4696 PS 2000 Sports Sony Computer Entertainment 0.23
## 4697 PS 1999 Action Take-Two Interactive 0.23
## 4698 PS 2000 Sports Konami Digital Entertainment 0.00
## 4699 PS3 2015 Shooter Activision 0.16
## 4700 SAT 1995 Action Namco Bandai Games 0.00
## 4701 X360 2012 Action Electronic Arts 0.28
## 4702 PSP 2009 Shooter Activision 0.17
## 4703 X360 2014 Shooter Bethesda Softworks 0.18
## 4704 DS 2009 Adventure THQ 0.15
## 4705 X360 2015 Simulation Koch Media 0.21
## 4706 PS2 2002 Platform THQ 0.20
## 4707 DS 2007 Misc Square Enix 0.00
## 4708 DS 2008 Platform Konami Digital Entertainment 0.31
## 4709 PS3 2010 Fighting PQube 0.21
## 4710 PS2 2006 Action Activision 0.20
## 4711 PSP 2007 Action Warner Bros. Interactive Entertainment 0.27
## 4712 SAT 1996 Adventure Sega 0.00
## 4713 PS2 2005 Adventure THQ 0.34
## 4714 Wii 2009 Misc Ubisoft 0.28
## 4715 Wii 2009 Simulation Electronic Arts 0.36
## 4716 PS3 2012 Action Electronic Arts 0.37
## 4717 PS 1996 Racing Pioneer LDC 0.23
## 4718 PSV 2015 Action Warner Bros. Interactive Entertainment 0.09
## 4719 Wii 2009 Misc Hudson Soft 0.00
## 4720 PSP 2009 Action THQ 0.24
## 4721 X360 2008 Action Activision 0.36
## 4722 PS2 2002 Adventure Sony Computer Entertainment 0.00
## 4723 Wii 2011 Misc THQ 0.36
## 4724 PSP 2009 Racing THQ 0.29
## 4725 X360 2011 Simulation THQ 0.30
## 4726 PS 1997 Strategy Virgin Interactive 0.23
## 4727 DS 2009 Action LucasArts 0.23
## 4728 NES 1985 Puzzle Namco Bandai Games 0.00
## 4729 N64 1999 Role-Playing Nintendo 0.10
## 4730 N64 1999 Action Titus 0.33
## 4731 PS3 2008 Sports Electronic Arts 0.08
## 4732 PS2 2002 Action Atari 0.20
## 4733 PSV 2014 Action Warner Bros. Interactive Entertainment 0.05
## 4734 PS2 2007 Role-Playing Sony Computer Entertainment 0.20
## 4735 PS 1997 Simulation Sony Computer Entertainment 0.13
## 4736 Wii 2009 Racing Zoo Games 0.39
## 4737 Wii 2008 Sports RTL 0.18
## 4738 X360 2010 Misc MTV Games 0.24
## 4739 PS 1999 Simulation Taito 0.00
## 4740 PS3 2012 Action Activision 0.19
## 4741 PC 2014 Shooter Activision 0.14
## 4742 Wii 2011 Misc THQ 0.26
## 4743 PS3 2010 Misc Electronic Arts 0.16
## 4744 PS2 2009 Misc Activision 0.15
## 4745 WiiU 2013 Action Nintendo 0.20
## 4746 Wii 2010 Action Rising Star Games 0.21
## 4747 X360 2006 Shooter Electronic Arts 0.35
## 4748 PS2 2001 Simulation Metro 3D 0.11
## 4749 PS2 2006 Misc Sony Computer Entertainment 0.20
## 4750 GC 2002 Fighting Midway Games 0.31
## 4751 Wii 2006 Role-Playing Activision 0.37
## 4752 PS2 2010 Action Take-Two Interactive 0.34
## 4753 PSP 2010 Misc Namco Bandai Games 0.00
## 4754 PS 1996 Misc Empire Interactive 0.23
## 4755 PS 1998 Sports Magical Company 0.15
## 4756 PS2 2008 Sports Take-Two Interactive 0.34
## 4757 GBA 2001 Misc Konami Digital Entertainment 0.00
## 4758 Wii 2008 Racing Warner Bros. Interactive Entertainment 0.36
## 4759 X360 2010 Action 505 Games 0.21
## 4760 Wii 2008 Simulation Electronic Arts 0.34
## 4761 PS3 2008 Fighting Midway Games 0.22
## 4762 X360 2011 Misc Ubisoft 0.29
## 4763 PC 2011 Shooter Take-Two Interactive 0.18
## 4764 PSP 2010 Misc Sega 0.00
## 4765 PS2 2009 Role-Playing Activision 0.23
## 4766 SNES 1995 Puzzle Nintendo 0.00
## 4767 PS2 2005 Platform Midway Games 0.34
## 4768 SNES 1994 Sports Konami Digital Entertainment 0.00
## 4769 PS2 2001 Platform Ubisoft 0.20
## 4770 XOne 2015 Shooter Take-Two Interactive 0.24
## 4771 X360 2011 Shooter Microsoft Game Studios 0.26
## 4772 PS 2000 Fighting Electronic Arts 0.23
## 4773 PS2 2005 Action Electronic Arts 0.34
## 4774 PC 2012 Action Electronic Arts 0.02
## 4775 PS3 2012 Action Capcom 0.18
## 4776 DS 2009 Action Ubisoft 0.19
## 4777 DS 2009 Misc Mentor Interactive 0.38
## 4778 PS2 2002 Action Activision 0.20
## 4779 PS 2003 Misc Sony Computer Entertainment 0.23
## 4780 PS 2001 Sports Sony Computer Entertainment 0.23
## 4781 2600 1983 Adventure Atari 0.38
## 4782 PS3 2008 Misc Disney Interactive Studios 0.08
## 4783 3DS 2014 Simulation Nintendo 0.00
## 4784 X360 2007 Action Ubisoft 0.36
## 4785 2600 1981 Action Coleco 0.38
## 4786 Wii 2010 Action Sega 0.17
## 4787 PSV 2014 Misc Sega 0.13
## 4788 X360 2007 Strategy Codemasters 0.34
## 4789 GC 2003 Platform THQ 0.31
## 4790 PS3 2007 Action Activision 0.32
## 4791 PS3 2008 Sports Sega 0.13
## 4793 WiiU 2013 Role-Playing Square Enix 0.00
## 4794 PS3 2008 Platform THQ 0.12
## 4795 GB 1997 Role-Playing Imagineer 0.00
## 4796 PS2 2009 Sports Take-Two Interactive 0.33
## 4797 PS2 2002 Misc Midway Games 0.20
## 4799 Wii 2012 Action Activision 0.38
## 4800 Wii 2009 Misc Namco Bandai Games 0.00
## 4801 PS3 2014 Action Square Enix 0.10
## 4802 2600 1982 Action Sega 0.37
## 4803 PS2 2005 Role-Playing Midway Games 0.20
## 4804 GC 2003 Sports Electronic Arts 0.31
## 4805 DS 2005 Strategy Nintendo 0.30
## 4806 DS 2009 Action Konami Digital Entertainment 0.27
## 4807 PS2 2008 Action Tecmo Koei 0.00
## 4808 PSP 2005 Fighting THQ 0.36
## 4809 PS2 2008 Action Disney Interactive Studios 0.20
## 4810 GBA 2005 Action THQ 0.29
## 4811 PS 1997 Strategy Sony Computer Entertainment 0.00
## 4812 GC 2005 Strategy Nintendo 0.25
## 4813 PS 1999 Sports 989 Studios 0.22
## 4814 GC 2004 Action THQ 0.31
## 4815 XOne 2014 Misc Ubisoft 0.29
## 4816 SNES 1994 Fighting Takara 0.00
## 4817 XOne 2014 Sports Electronic Arts 0.31
## 4818 Wii 2007 Action Ubisoft 0.34
## 4819 Wii 2009 Action Square Enix 0.22
## 4820 PS3 2009 Sports Activision Value 0.37
## 4821 XOne 2016 Sports Electronic Arts 0.23
## 4822 SAT 1995 Fighting Sega 0.00
## 4823 PS 1999 Sports 989 Studios 0.22
## 4824 PS3 2010 Action Sega 0.14
## 4825 PS2 2008 Platform Vivendi Games 0.12
## 4826 PSP 2011 Misc Namco Bandai Games 0.00
## 4827 N64 1999 Racing Nintendo 0.32
## 4828 N64 1997 Racing Kemco 0.32
## 4829 N64 1999 Sports Acclaim Entertainment 0.37
## 4830 N64 1997 Fighting Midway Games 0.32
## 4831 PS2 2001 Racing Acclaim Entertainment 0.20
## 4832 PS2 2004 Misc Atari 0.33
## 4833 PS 1999 Platform Infogrames 0.22
## 4834 X360 2010 Sports Electronic Arts 0.27
## 4835 DS 2009 Adventure Focus Home Interactive 0.06
## 4836 PS2 2007 Racing Activision 0.20
## 4837 PS2 2005 Sports Sony Computer Entertainment 0.33
## 4838 X360 2009 Action LucasArts 0.18
## 4839 PS2 2007 Sports 505 Games 0.20
## 4840 PC 2010 Action Take-Two Interactive 0.17
## 4841 GBA 2001 Action THQ 0.29
## 4842 Wii 2009 Action THQ 0.38
## 4843 XB 2005 Racing THQ 0.32
## 4844 GC 2006 Action Midway Games 0.31
## 4845 DS 2009 Action Sega 0.22
## 4846 GC 2004 Simulation Electronic Arts 0.24
## 4847 PS 1999 Racing Electronic Arts 0.22
## 4848 GBA 2006 Role-Playing Nintendo 0.00
## 4849 GBA 2004 Action THQ 0.29
## 4850 DS 2007 Puzzle Eidos Interactive 0.34
## 4851 X360 2010 Sports Activision 0.32
## 4852 X360 2009 Fighting THQ 0.20
## 4853 WiiU 2014 Sports Nintendo 0.19
## 4854 X360 2007 Action Eidos Interactive 0.12
## 4855 PS 1999 Misc Vivendi Games 0.22
## 4856 SNES 1995 Role-Playing ChunSoft 0.00
## 4857 WiiU 2013 Platform Sega 0.24
## 4858 PS3 2008 Action Sega 0.17
## 4860 GC 2002 Shooter Activision 0.31
## 4861 XB 2001 Sports Electronic Arts 0.35
## 4862 PS 2000 Adventure Sony Computer Entertainment 0.00
## 4863 PS3 2012 Simulation Namco Bandai Games 0.09
## 4864 PS2 2003 Platform Sony Computer Entertainment 0.19
## 4865 PS 1996 Strategy Virgin Interactive 0.22
## 4867 PS3 2010 Sports Electronic Arts 0.22
## 4868 PC 2010 Role-Playing Electronic Arts 0.01
## 4869 PS2 2004 Strategy Namco Bandai Games 0.00
## 4870 GC 2004 Shooter Activision 0.31
## 4871 DS 2010 Action Warner Bros. Interactive Entertainment 0.26
## 4872 DS 2007 Role-Playing D3Publisher 0.37
## 4873 X360 2015 Adventure Square Enix 0.17
## 4874 X360 2006 Action Eidos Interactive 0.29
## 4875 SNES 1995 Role-Playing Namco Bandai Games 0.00
## 4876 X360 2010 Role-Playing Sega 0.23
## 4877 PS2 2005 Racing Jester Interactive 0.33
## 4878 PS2 2004 Fighting Konami Digital Entertainment 0.19
## 4879 PS3 2013 Misc Ubisoft 0.17
## 4880 PS2 2007 Action Take-Two Interactive 0.19
## 4881 XB 2005 Action Activision 0.26
## 4882 PS3 2013 Racing Codemasters 0.07
## 4883 3DS 2012 Action Warner Bros. Interactive Entertainment 0.19
## 4884 PS2 2007 Racing THQ 0.19
## 4885 PS3 2015 Action Activision 0.15
## 4886 N64 1998 Sports Electronic Arts 0.38
## 4887 Wii 2009 Sports Take-Two Interactive 0.36
## 4888 PS3 2011 Role-Playing Square Enix 0.17
## 4889 PS3 2008 Action Sega 0.14
## 4890 Wii 2007 Sports 505 Games 0.36
## 4891 DS 2008 Racing Activision 0.37
## 4892 PSP 2011 Role-Playing Level 5 0.00
## 4893 PS 2000 Racing Hasbro Interactive 0.22
## 4894 PS 1997 Fighting Virgin Interactive 0.22
## 4895 2600 1982 Racing Mattel Interactive 0.37
## 4896 PS2 2002 Shooter Namco Bandai Games 0.00
## 4897 GBA 2003 Action THQ 0.28
## 4898 Wii 2008 Fighting Tomy Corporation 0.34
## 4899 PS2 2008 Sports Electronic Arts 0.32
## 4900 PSP 2011 Action LucasArts 0.14
## 4901 XB 2002 Shooter Sega 0.29
## 4902 Wii 2008 Role-Playing Rising Star Games 0.18
## 4903 GBA 2002 Role-Playing Nintendo 0.00
## 4904 PSP 2009 Action THQ 0.39
## 4905 3DS 2011 Sports Electronic Arts 0.08
## 4906 DS 2008 Sports Ubisoft 0.36
## 4907 X360 2012 Shooter Take-Two Interactive 0.24
## 4908 PSP 2008 Sports Electronic Arts 0.23
## 4909 2600 1981 Action Activision 0.37
## 4910 DS 2008 Misc Activision 0.36
## 4911 PSP 2006 Platform Sony Computer Entertainment 0.14
## 4912 PS 1998 Sports Take-Two Interactive 0.22
## 4913 DS 2008 Misc THQ 0.36
## 4914 GC 2004 Misc Nintendo 0.30
## 4915 PS4 2013 Misc Ubisoft 0.18
## 4916 PS3 2013 Adventure Konami Digital Entertainment 0.31
## 4917 PS 2001 Role-Playing Enterbrain 0.00
## 4918 3DS 2012 Role-Playing Namco Bandai Games 0.18
## 4919 X360 2011 Shooter THQ 0.18
## 4920 PSV 2012 Racing Sony Computer Entertainment 0.14
## 4921 DS 2009 Racing Electronic Arts 0.22
## 4922 Wii 2011 Adventure Nintendo 0.19
## 4923 DS 2005 Platform Nintendo 0.34
## 4924 X360 2010 Sports Electronic Arts 0.18
## 4925 3DS 2011 Strategy Ubisoft 0.25
## 4926 Wii 2011 Misc Namco Bandai Games 0.00
## 4927 PC 2005 Strategy Microsoft Game Studios 0.00
## 4928 XB 2003 Sports Electronic Arts 0.29
## 4929 PS3 2015 Sports Sony Computer Entertainment 0.30
## 4930 GBA 2004 Sports Electronic Arts 0.28
## 4931 N64 1999 Sports Acclaim Entertainment 0.36
## 4932 N64 2000 Fighting Nintendo 0.00
## 4933 N64 1998 Racing Acclaim Entertainment 0.31
## 4934 N64 1999 Action 3DO 0.31
## 4936 GC 2005 Adventure Nintendo 0.23
## 4937 PC 2009 Simulation Ubisoft 0.00
## 4938 PS2 2003 Misc Sony Computer Entertainment 0.19
## 4939 Wii 2008 Misc Activision 0.36
## 4940 PS2 2000 Fighting Ubisoft 0.16
## 4941 PS2 2002 Action Eidos Interactive 0.19
## 4942 Wii 2010 Misc Warner Bros. Interactive Entertainment 0.37
## 4943 WiiU 2012 Action Activision 0.23
## 4944 WiiU 2012 Misc Ubisoft 0.22
## 4945 SNES 1991 Fighting Human Entertainment 0.00
## 4946 PS2 2005 Sports Activision 0.19
## 4947 PS3 2006 Role-Playing Activision 0.33
## 4948 DS 2009 Adventure THQ 0.24
## 4949 PS3 2008 Racing Capcom 0.07
## 4950 Wii 2008 Simulation Ubisoft 0.34
## 4951 PS2 2003 Misc Ubisoft 0.19
## 4952 PS3 2013 Sports Electronic Arts 0.16
## 4953 SNES 1992 Fighting Takara 0.00
## 4954 X360 2013 Simulation Focus Home Interactive 0.22
## 4955 GB 2001 Role-Playing Banpresto 0.00
## 4956 Wii 2007 Adventure Ubisoft 0.35
## 4957 3DS 2011 Sports Electronic Arts 0.36
## 4958 GBA 2005 Simulation Electronic Arts 0.28
## 4959 PS2 2006 Platform Vivendi Games 0.19
## 4960 PS3 2014 Sports Sony Computer Entertainment America 0.35
## 4961 SNES 1994 Sports Namco Bandai Games 0.00
## 4962 PS2 2002 Racing Capcom 0.19
## 4963 XB 2005 Shooter Ubisoft 0.29
## 4964 DS 2009 Misc Avanquest 0.26
## 4965 Wii 2009 Sports 505 Games 0.36
## 4966 PS2 2007 Sports Electronic Arts 0.19
## 4967 PS2 2008 Misc Konami Digital Entertainment 0.19
## 4968 2600 1981 Action Data Age 0.36
## 4969 PS 1999 Simulation Konami Digital Entertainment 0.00
## 4970 3DS 2011 Action Tecmo Koei 0.12
## 4971 X360 2006 Action Eidos Interactive 0.27
## 4972 DS 2009 Action Activision 0.20
## 4973 Wii 2009 Misc Nordic Games 0.00
## 4974 GBA 2003 Sports Electronic Arts 0.28
## 4975 DS 2007 Misc Ubisoft 0.38
## 4976 PS4 2015 Action Deep Silver 0.13
## 4977 PS2 2003 Action THQ 0.19
## 4978 3DS 2013 Action Namco Bandai Games 0.05
## 4979 DS 2008 Role-Playing Sega 0.16
## 4980 PS 1996 Sports Electronic Arts Victor 0.21
## 4981 PS3 2009 Sports Sega 0.09
## 4982 SNES 1991 Sports Nintendo 0.00
## 4983 PS2 2003 Role-Playing Ghostlight 0.07
## 4984 GB 1998 Platform Nintendo 0.00
## 4985 PS 1997 Racing GT Interactive 0.21
## 4986 PSV 2013 Role-Playing Nippon Ichi Software 0.16
## 4987 PS 1998 Racing Human Entertainment 0.00
## 4988 DS 2009 Simulation Ubisoft 0.24
## 4989 XB 2004 Sports Sega 0.29
## 4990 PS2 2007 Action Warner Bros. Interactive Entertainment 0.19
## 4991 Wii 2008 Sports Activision Value 0.36
## 4992 Wii 2009 Role-Playing Rising Star Games 0.17
## 4993 PS2 2007 Strategy Namco Bandai Games 0.00
## 4994 WiiU 2012 Action Warner Bros. Interactive Entertainment 0.17
## 4995 PS3 2008 Misc Disney Interactive Studios 0.27
## 4996 Wii 2009 Misc Pinnacle 0.00
## 4997 PSV 2015 Role-Playing Namco Bandai Games 0.00
## 4998 PS3 2010 Sports Black Bean Games 0.15
## 4999 GBA 2005 Platform Jack of All Games 0.27
## 5000 PSP 2009 Fighting Namco Bandai Games 0.13
## 5001 PS2 2001 Sports Sony Computer Entertainment 0.19
## 5002 GC 2002 Shooter Acclaim Entertainment 0.30
## 5003 X360 2015 Shooter Activision 0.22
## 5004 DS 2007 Simulation Atari 0.07
## 5005 PS2 2002 Strategy Namco Bandai Games 0.00
## 5006 GBA 2002 Action Ubisoft 0.27
## 5007 PS2 2008 Sports Sega 0.10
## 5008 PS2 2002 Action Sega 0.19
## 5009 PS3 2007 Sports Electronic Arts 0.29
## 5010 SAT 1995 Role-Playing Atlus 0.00
## 5011 3DS 2011 Platform Ubisoft 0.11
## 5012 PS3 2007 Sports Electronic Arts 0.35
## 5013 GC 2005 Fighting Electronic Arts 0.30
## 5014 PS3 2014 Sports Electronic Arts 0.21
## 5015 PS 1994 Sports Sony Computer Entertainment 0.11
## 5016 XOne 2016 Racing Microsoft Game Studios 0.15
## 5017 Wii 2009 Action Codemasters 0.12
## 5018 PS 1998 Action Eidos Interactive 0.21
## 5019 PS 2000 Strategy Namco Bandai Games 0.00
## 5020 PS2 2005 Misc THQ 0.19
## 5021 PS2 2004 Racing Empire Interactive 0.19
## 5022 3DS 2013 Adventure Capcom 0.00
## 5023 GC 2003 Sports Electronic Arts 0.29
## 5024 PS2 2010 Sports Electronic Arts 0.19
## 5025 PS4 2015 Role-Playing Namco Bandai Games 0.16
## 5026 GBA 2004 Action Disney Interactive Studios 0.27
## 5027 3DS 2012 Action Konami Digital Entertainment 0.15
## 5028 PS2 2003 Strategy Atari 0.19
## 5029 DS 2006 Misc Nintendo 0.31
## 5030 PS3 2006 Sports Take-Two Interactive 0.30
## 5031 PS 1996 Action Namco Bandai Games 0.00
## 5032 PS2 2002 Role-Playing Enix Corporation 0.07
## 5033 PS2 2000 Shooter Konami Digital Entertainment 0.19
## 5034 GB 1991 Role-Playing SquareSoft 0.00
## 5035 Wii 2009 Sports Sega 0.13
## 5036 PS2 2008 Platform Take-Two Interactive 0.19
## 5037 PS2 2008 Action Sega 0.32
## 5038 PS2 2008 Shooter Electronic Arts 0.21
## 5039 Wii 2011 Sports Activision 0.34
## 5040 PS3 2010 Fighting Electronic Arts 0.16
## 5041 PSP 2010 Action Sega 0.18
## 5042 Wii 2009 Racing Codemasters 0.11
## 5043 SAT 1996 Simulation Konami Digital Entertainment 0.00
## 5044 PS 1999 Action Sony Computer Entertainment 0.21
## 5045 DS 2009 Misc Activision 0.13
## 5046 XB 2002 Action Interplay 0.28
## 5047 PS2 2007 Racing THQ 0.32
## 5048 PS 1998 Racing GT Interactive 0.21
## 5049 SNES 1995 Strategy Banpresto 0.00
## 5050 PSP 2007 Sports Electronic Arts 0.14
## 5051 GC 2003 Adventure Nintendo 0.24
## 5052 PSP 2011 Misc Namco Bandai Games 0.00
## 5053 3DS 2012 Role-Playing Atlus 0.12
## 5054 PS 2000 Racing Sony Computer Entertainment 0.21
## 5055 PS 1999 Sports 989 Sports 0.21
## 5056 WiiU 2012 Action Warner Bros. Interactive Entertainment 0.26
## 5057 PS3 2016 Sports Electronic Arts 0.02
## 5058 PC 2011 Action THQ 0.16
## 5059 PS4 2014 Misc Ubisoft 0.19
## 5060 PS2 2008 Action Activision 0.12
## 5061 Wii 2010 Simulation Activision 0.32
## 5063 DS 2008 Simulation Ubisoft 0.35
## 5064 Wii 2010 Misc MTV Games 0.22
## 5065 2600 1982 Action Atari 0.35
## 5066 DS 2010 Racing Activision 0.35
## 5067 PSV 2013 Action Tecmo Koei 0.05
## 5068 PS2 2004 Misc Sony Computer Entertainment 0.18
## 5069 XB 2005 Simulation Konami Digital Entertainment 0.28
## 5070 PS3 2014 Fighting Namco Bandai Games 0.00
## 5071 PS2 2010 Fighting THQ 0.24
## 5072 PC 2010 Racing Electronic Arts 0.12
## 5073 DS 2006 Platform Vivendi Games 0.34
## 5074 3DS 2011 Sports Konami Digital Entertainment 0.11
## 5075 3DS 2011 Role-Playing Ghostlight 0.28
## 5076 DS 2009 Role-Playing Namco Bandai Games 0.13
## 5077 Wii 2009 Fighting THQ 0.31
## 5078 PS3 2011 Shooter Sega 0.15
## 5080 GC 2004 Action Electronic Arts 0.29
## 5081 X360 2005 Shooter Activision 0.32
## 5082 DS 2008 Adventure Ubisoft 0.35
## 5083 2600 1986 Shooter Atari 0.35
## 5084 DS 2008 Simulation Ubisoft 0.35
## 5085 PS2 2006 Fighting Atari 0.09
## 5086 DS 2009 Simulation THQ 0.35
## 5087 WiiU 2012 Sports Ubisoft 0.21
## 5088 PS3 2014 Shooter Sega 0.12
## 5089 DS 2008 Fighting Takara Tomy 0.19
## 5090 PS3 2009 Action Konami Digital Entertainment 0.13
## 5091 DS 2007 Platform Vivendi Games 0.32
## 5092 PS 1997 Fighting SquareSoft 0.00
## 5093 DS 2010 Action Scholastic Inc. 0.35
## 5094 X360 2009 Misc Electronic Arts 0.12
## 5095 PS2 2008 Sports Electronic Arts 0.16
## 5096 GC 2005 Action Activision 0.29
## 5097 PS4 2016 Adventure Square Enix 0.14
## 5098 X360 2007 Role-Playing Microsoft Game Studios 0.18
## 5099 XB 2002 Sports Microsoft Game Studios 0.28
## 5100 Wii 2007 Sports Take-Two Interactive 0.34
## 5101 X360 2006 Sports Spike 0.34
## 5102 PS 1994 Shooter Sony Computer Entertainment 0.08
## 5103 PS2 2006 Simulation Ubisoft 0.18
## 5104 Wii 2009 Action Eidos Interactive 0.17
## 5105 PC 2016 Shooter Ubisoft 0.20
## 5106 PSP 2011 Role-Playing Sega 0.00
## 5107 DS 2008 Simulation Ubisoft 0.34
## 5108 XOne 2015 Action Warner Bros. Interactive Entertainment 0.21
## 5109 GC 2002 Platform THQ 0.29
## 5110 PS2 2003 Sports Natsume 0.18
## 5111 PS2 2004 Sports Activision 0.18
## 5112 PSP 2010 Action Ubisoft 0.09
## 5113 PS2 2006 Action Midway Games 0.18
## 5114 PS2 2002 Sports 3DO 0.18
## 5115 PSP 2010 Sports Electronic Arts 0.35
## 5116 SNES 1994 Sports Human Entertainment 0.00
## 5117 SAT 1995 Shooter Sega 0.00
## 5118 Wii 2011 Sports Electronic Arts 0.21
## 5119 PC 2011 Shooter Bethesda Softworks 0.14
## 5120 PS2 2007 Action Activision 0.31
## 5121 PS 1998 Adventure Sony Computer Entertainment 0.00
## 5122 X360 2011 Role-Playing Square Enix 0.21
## 5123 PSP 2007 Racing THQ 0.06
## 5124 Wii 2009 Sports Destineer 0.35
## 5125 N64 2000 Role-Playing ChunSoft 0.00
## 5126 N64 1999 Shooter Acclaim Entertainment 0.30
## 5127 N64 2000 Action THQ 0.30
## 5128 2600 1981 Action Imagic 0.35
## 5129 GC 2004 Role-Playing Nintendo 0.29
## 5130 PSP 2012 Action Electronic Arts 0.05
## 5131 PS3 2009 Strategy Electronic Arts 0.14
## 5132 PSP 2007 Action Electronic Arts 0.10
## 5133 PC 2008 Strategy Sega 0.00
## 5134 GC 2002 Action Nintendo 0.28
## 5135 DS 2007 Puzzle Namco Bandai Games 0.00
## 5136 GBA 2003 Sports Knowledge Adventure 0.26
## 5137 PS3 2009 Platform Capcom 0.12
## 5138 X360 2009 Shooter Warner Bros. Interactive Entertainment 0.17
## 5139 GBA 2003 Adventure Square Enix 0.00
## 5140 PS4 2015 Action Bethesda Softworks 0.11
## 5141 PSP 2006 Role-Playing Activision 0.33
## 5142 PSP 2005 Sports Electronic Arts 0.34
## 5143 SNES 1994 Strategy Banpresto 0.00
## 5144 PS2 2006 Sports Electronic Arts 0.17
## 5145 N64 1999 Sports Konami Digital Entertainment 0.37
## 5146 3DS 2014 Misc Square Enix 0.13
## 5147 DS 2005 Simulation Nintendo 0.30
## 5148 SNES 1994 Role-Playing Atlus 0.00
## 5149 PS2 2006 Role-Playing Namco Bandai Games 0.09
## 5150 Wii 2008 Simulation Game Factory 0.34
## 5151 PC 2014 Strategy Take-Two Interactive 0.11
## 5152 PC 2011 Action Electronic Arts 0.09
## 5153 DC 1998 Fighting Sega 0.00
## 5154 PS3 2011 Action Activision 0.11
## 5155 GB 1997 Strategy ASCII Entertainment 0.00
## 5156 PS4 2013 Platform Activision 0.20
## 5157 PSV 2012 Action Warner Bros. Interactive Entertainment 0.17
## 5158 PS4 2015 Misc Harmonix Music Systems 0.25
## 5159 PC 2009 Shooter Valve Software 0.00
## 5160 PS2 2007 Simulation Electronic Arts 0.30
## 5161 PSP 2006 Sports Electronic Arts 0.34
## 5162 Wii 2008 Action Disney Interactive Studios 0.31
## 5164 DS 2009 Racing Activision 0.25
## 5165 DS 2007 Sports Atari 0.33
## 5166 GC 2004 Shooter Electronic Arts 0.28
## 5167 SNES 1994 Sports Media Rings 0.00
## 5168 PS2 2008 Fighting Namco Bandai Games 0.08
## 5169 SAT 1996 Adventure Elf 0.00
## 5170 X360 2010 Action Ubisoft 0.24
## 5171 PS2 2001 Sports Konami Digital Entertainment 0.18
## 5173 PS4 2016 Action Capcom 0.09
## 5174 SNES 1994 Fighting Human Entertainment 0.00
## 5175 SNES 1993 Fighting Namco Bandai Games 0.00
## 5176 PS2 2002 Adventure ChunSoft 0.00
## 5177 PS2 2003 Sports 3DO 0.18
## 5178 PS2 2005 Action Vivendi Games 0.18
## 5179 PS2 2005 Shooter Midway Games 0.18
## 5180 DS 2010 Fighting Namco Bandai Games 0.00
## 5181 PSP 2006 Role-Playing Square Enix 0.17
## 5182 PSP 2008 Sports Electronic Arts 0.07
## 5183 X360 2013 Action Deep Silver 0.17
## 5184 X360 2013 Sports Electronic Arts 0.21
## 5185 PSP 2008 Platform Sony Computer Entertainment 0.21
## 5186 PS2 2001 Simulation Tecmo Koei 0.11
## 5187 PS2 2005 Action THQ 0.18
## 5188 X360 2010 Action Activision 0.24
## 5189 X360 2009 Fighting PQube 0.21
## 5190 PS 1997 Simulation Activision 0.20
## 5191 PS3 2013 Shooter D3Publisher 0.04
## 5192 GBA 2002 Action Nintendo 0.26
## 5193 PS2 2001 Role-Playing Sony Computer Entertainment 0.14
## 5194 Wii 2009 Misc Ubisoft 0.33
## 5195 PS 1997 Action Namco Bandai Games 0.00
## 5198 DS 2008 Racing Warner Bros. Interactive Entertainment 0.29
## 5199 Wii 2009 Sports Take-Two Interactive 0.33
## 5200 WiiU 2012 Action Ubisoft 0.19
## 5201 SNES 1997 Platform Nintendo 0.00
## 5202 PS 1997 Sports Starfish 0.20
## 5203 PS2 2000 Sports Sony Computer Entertainment 0.18
## 5204 XB 2005 Action Take-Two Interactive 0.27
## 5205 NES 1993 Action Ocean 0.25
## 5206 N64 1997 Action Konami Digital Entertainment 0.07
## 5207 N64 1997 Puzzle Nintendo 0.29
## 5208 N64 2000 Action THQ 0.29
## 5209 PSV 2013 Fighting Marvelous Entertainment 0.13
## 5210 Wii 2008 Sports Zushi Games 0.33
## 5211 PS 2001 Racing Activision 0.20
## 5212 PS3 2009 Misc Activision 0.20
## 5213 GBA 2001 Sports Activision 0.26
## 5214 Wii 2008 Sports Bethesda Softworks 0.33
## 5215 XB 2004 Simulation Microsoft Game Studios 0.27
## 5216 PC 2014 Action Warner Bros. Interactive Entertainment 0.12
## 5217 GBA 2002 Simulation Jorudan 0.00
## 5218 SNES 1994 Role-Playing Laguna 0.00
## 5219 WiiU 2013 Shooter Activision 0.23
## 5220 PS 1999 Racing LEGO Media 0.20
## 5221 Wii 2011 Sports Take-Two Interactive 0.30
## 5222 Wii 2009 Fighting Ubisoft 0.33
## 5223 X360 2011 Misc Microsoft Game Studios 0.27
## 5224 XB 2003 Sports Sega 0.27
## 5225 DS 2007 Racing Destination Software, Inc 0.33
## 5226 PS2 2005 Fighting Atari 0.00
## 5227 X360 2015 Misc Ubisoft 0.23
## 5228 DS 2007 Strategy THQ 0.07
## 5229 PS2 2004 Sports Zoo Digital Publishing 0.18
## 5230 PS2 2004 Sports Sega 0.00
## 5231 PS3 2010 Action Capcom 0.18
## 5232 PS3 2012 Shooter Activision 0.11
## 5233 PSP 2012 Strategy Namco Bandai Games 0.00
## 5234 Wii 2011 Fighting THQ 0.24
## 5235 PS2 2003 Platform Take-Two Interactive 0.18
## 5236 PS2 2003 Role-Playing Sony Computer Entertainment 0.18
## 5237 PS 2000 Simulation Konami Digital Entertainment 0.00
## 5238 PS3 2008 Adventure Sega 0.00
## 5239 Wii 2009 Misc Mindscape 0.00
## 5240 GBA 2001 Strategy Banpresto 0.00
## 5242 Wii 2007 Action Zoo Digital Publishing 0.33
## 5243 PC 2013 Strategy THQ 0.06
## 5244 PS3 2013 Shooter Trion Worlds 0.19
## 5245 Wii 2011 Misc Nordic Games 0.00
## 5246 PS 1995 Fighting New 0.00
## 5247 2600 1981 Action Mattel Interactive 0.33
## 5248 Wii 2010 Simulation Konami Digital Entertainment 0.29
## 5249 XB 2002 Action Electronic Arts 0.27
## 5250 X360 2010 Fighting Electronic Arts 0.23
## 5251 PSP 2011 Role-Playing Namco Bandai Games 0.00
## 5252 PS 1998 Racing Acclaim Entertainment 0.20
## 5253 SNES 1994 Platform Konami Digital Entertainment 0.00
## 5254 PS3 2008 Misc Electronic Arts 0.25
## 5255 DS 2010 Platform Capcom 0.21
## 5256 PS2 2001 Racing Midway Games 0.17
## 5257 PSP 2009 Action Electronic Arts 0.24
## 5258 PS2 2009 Sports Take-Two Interactive 0.17
## 5259 PSP 2009 Sports Sega 0.00
## 5260 DC 1999 Sports Sega 0.00
## 5261 DS 2008 Adventure Take-Two Interactive 0.33
## 5262 PS 1997 Racing Psygnosis 0.06
## 5263 XB 2001 Platform TDK Mediactive 0.25
## 5264 DS 2009 Adventure Ubisoft 0.16
## 5265 PSP 2007 Shooter Sony Computer Entertainment 0.32
## 5266 PS 1998 Action Sony Computer Entertainment 0.20
## 5267 Wii 2006 Simulation Nintendo 0.28
## 5268 GBA 2005 Sports Atari 0.25
## 5269 XOne 2016 Role-Playing Namco Bandai Games 0.23
## 5270 PS2 2005 Sports Zoo Digital Publishing 0.17
## 5271 GC 2005 Adventure THQ 0.27
## 5272 PS2 2006 Role-Playing Konami Digital Entertainment 0.08
## 5273 GB 1996 Puzzle Nintendo 0.00
## 5274 PS3 2013 Action Capcom 0.10
## 5275 Wii 2007 Strategy Nintendo 0.22
## 5276 PS2 2004 Sports Global Star 0.17
## 5277 Wii 2010 Misc THQ 0.25
## 5278 3DS 2013 Action Namco Bandai Games 0.00
## 5279 PS3 2010 Sports Sega 0.09
## 5280 PS2 2003 Misc Hudson Soft 0.00
## 5281 PS3 2009 Action Eidos Interactive 0.14
## 5282 X360 2012 Fighting Namco Bandai Games 0.19
## 5283 PS2 2003 Action Ubisoft 0.17
## 5284 GBA 2002 Action Activision 0.25
## 5285 XB 2003 Sports Zoo Digital Publishing 0.26
## 5286 X360 2009 Shooter Warner Bros. Interactive Entertainment 0.13
## 5287 PS2 2006 Sports Konami Digital Entertainment 0.00
## 5288 3DS 2014 Role-Playing Nintendo 0.08
## 5289 WiiU 2016 Shooter Nintendo 0.16
## 5290 SNES 1995 Action Laguna 0.04
## 5291 DS 2009 Action Eidos Interactive 0.17
## 5292 SNES 1993 Racing Nintendo 0.00
## 5293 PS2 2001 Fighting Virgin Interactive 0.15
## 5294 PS2 2003 Racing THQ 0.17
## 5295 PS 2000 Role-Playing Atlus 0.03
## 5296 GBA 2003 Action THQ 0.25
## 5297 DS 2011 Fighting Namco Bandai Games 0.00
## 5298 PS3 2011 Fighting Namco Bandai Games 0.20
## 5299 Wii 2010 Misc Konami Digital Entertainment 0.31
## 5300 DS 2008 Simulation Electronic Arts 0.30
## 5301 Wii 2009 Adventure Disney Interactive Studios 0.13
## 5302 Wii 2013 Strategy Activision 0.21
## 5304 DS 2007 Platform Capcom 0.23
## 5305 N64 2000 Sports Konami Digital Entertainment 0.00
## 5306 PS3 2013 Shooter City Interactive 0.05
## 5307 PS3 2010 Sports Ubisoft 0.11
## 5308 Wii 2011 Action Electronic Arts 0.18
## 5309 X360 2010 Strategy Square Enix 0.23
## 5310 PS2 2003 Action Capcom 0.17
## 5311 GC 2006 Racing Electronic Arts 0.27
## 5312 GBA 2003 Action THQ 0.25
## 5313 DS 2005 Action THQ 0.32
## 5314 PS2 2004 Platform THQ 0.17
## 5315 PS 2000 Action THQ 0.19
## 5316 XB 2003 Misc Microsoft Game Studios 0.26
## 5317 X360 2011 Fighting THQ 0.18
## 5318 PS3 2010 Shooter Sony Computer Entertainment 0.13
## 5319 PS2 2007 Sports Take-Two Interactive 0.17
## 5320 PS2 2009 Misc Activision 0.17
## 5321 PS2 2002 Fighting Sammy Corporation 0.09
## 5322 X360 2008 Racing Capcom 0.11
## 5323 PSP 2010 Strategy Konami Digital Entertainment 0.13
## 5324 PS3 2008 Shooter Activision 0.23
## 5325 PS2 2005 Shooter Ubisoft 0.17
## 5326 PS 2001 Role-Playing Namco Bandai Games 0.00
## 5327 PS2 2008 Platform Brash Entertainment 0.17
## 5328 PS2 2002 Sports Acclaim Entertainment 0.17
## 5329 PS2 2003 Misc Konami Digital Entertainment 0.17
## 5330 GC 2004 Sports Electronic Arts 0.27
## 5331 DS 2008 Misc Nobilis 0.32
## 5332 PS2 2003 Shooter Vivendi Games 0.17
## 5333 PS4 2015 Simulation Koch Media 0.10
## 5334 PS2 2000 Sports Konami Digital Entertainment 0.00
## 5335 PS 1998 Racing 989 Studios 0.19
## 5336 PS2 2000 Role-Playing Ubisoft 0.10
## 5337 X360 2007 Action Electronic Arts 0.30
## 5338 PS 1999 Role-Playing Kadokawa Shoten 0.19
## 5339 SAT 1996 Fighting Capcom 0.00
## 5340 PS2 2002 Platform THQ 0.17
## 5341 DS 2010 Adventure Disney Interactive Studios 0.18
## 5342 PSP 2006 Sports Sony Computer Entertainment 0.32
## 5343 PS3 2012 Racing Codemasters 0.06
## 5344 GC 2006 Platform Activision 0.27
## 5345 PSP 2011 Fighting Namco Bandai Games 0.09
## 5346 PS4 2015 Misc Ubisoft 0.16
## 5347 PS2 2005 Adventure Global Star 0.17
## 5348 DS 2007 Action Disney Interactive Studios 0.30
## 5349 X360 2008 Sports Electronic Arts 0.08
## 5350 PS 1998 Puzzle Sony Computer Entertainment 0.00
## 5351 DS 2009 Simulation Ubisoft 0.32
## 5352 GBA 2005 Misc Zoo Digital Publishing 0.25
## 5353 PSP 2011 Strategy Namco Bandai Games 0.00
## 5354 PSP 2011 Action Disney Interactive Studios 0.11
## 5355 GBA 2002 Platform THQ 0.25
## 5356 PS2 2008 Misc Disney Interactive Studios 0.17
## 5357 PS2 2006 Action Tecmo Koei 0.11
## 5358 DC 1999 Fighting Namco Bandai Games 0.00
## 5359 PS 1999 Racing Psygnosis 0.19
## 5360 DS 2007 Role-Playing Nintendo 0.20
## 5361 PS3 2007 Action THQ 0.13
## 5362 GBA 2004 Platform Nintendo 0.10
## 5363 XOne 2014 Action Activision 0.25
## 5364 DS 2007 Action THQ 0.31
## 5365 X360 2006 Shooter Vivendi Games 0.28
## 5366 X360 2006 Action Microsoft Game Studios 0.27
## 5367 2600 1980 Action Activision 0.32
## 5368 GBA 2002 Action Atari 0.25
## 5369 PS2 2003 Simulation Tecmo Koei 0.08
## 5370 DS 2010 Action Sega 0.15
## 5371 Wii 2010 Action City Interactive 0.15
## 5372 PS2 2004 Adventure Disney Interactive Studios 0.17
## 5373 SAT 1995 Shooter Sega 0.00
## 5374 X360 2011 Action Electronic Arts 0.19
## 5375 PS2 2009 Racing Sony Computer Entertainment 0.07
## 5376 GBA 2004 Platform THQ 0.25
## 5377 DS 2010 Role-Playing Atlus 0.24
## 5378 PS 1997 Fighting Virgin Interactive 0.19
## 5379 PS2 2000 Puzzle Acclaim Entertainment 0.17
## 5380 XB 2004 Shooter Eidos Interactive 0.26
## 5381 PS2 2001 Simulation Eidos Interactive 0.17
## 5382 2600 1982 Action ITT Family Games 0.32
## 5383 2600 1983 Action Activision 0.32
## 5384 X360 2016 Action Warner Bros. Interactive Entertainment 0.17
## 5385 X360 2005 Action Microsoft Game Studios 0.28
## 5386 Wii 2011 Action Namco Bandai Games 0.29
## 5387 GC 2005 Fighting THQ 0.26
## 5388 PS3 2009 Action Tecmo Koei 0.14
## 5389 XB 2004 Simulation Electronic Arts 0.22
## 5390 2600 1981 Action 20th Century Fox Video Games 0.32
## 5391 Wii 2011 Action Ubisoft 0.13
## 5392 Wii 2007 Action Activision 0.31
## 5393 PS3 2012 Action Konami Digital Entertainment 0.15
## 5394 SAT 1995 Fighting Virgin Interactive 0.00
## 5395 N64 1998 Racing GT Interactive 0.27
## 5396 2600 1982 Action 20th Century Fox Video Games 0.32
## 5397 PS3 2009 Action Electronic Arts 0.15
## 5398 3DS 2011 Strategy Ubisoft 0.22
## 5399 PS 1998 Misc ASCII Entertainment 0.19
## 5400 Wii 2008 Racing THQ 0.29
## 5401 2600 1981 Shooter Coleco 0.32
## 5402 PSP 2007 Sports Sega 0.00
## 5403 PS2 2004 Adventure Vivendi Games 0.17
## 5404 PS3 2011 Action Electronic Arts 0.14
## 5405 XB 2006 Sports Electronic Arts 0.25
## 5406 DS 2007 Misc Hudson Soft 0.00
## 5407 PS 1997 Shooter Sony Computer Entertainment 0.05
## 5408 DS 2009 Puzzle PopCap Games 0.31
## 5409 DS 2008 Misc 505 Games 0.31
## 5410 XOne 2014 Platform Ubisoft 0.13
## 5411 DS 2007 Puzzle D3Publisher 0.28
## 5412 PSP 2008 Role-Playing Square Enix 0.14
## 5413 DS 2008 Simulation Nobilis 0.30
## 5414 PS 1998 Action Sony Computer Entertainment 0.19
## 5415 X360 2011 Sports Home Entertainment Suppliers 0.09
## 5416 XB 2002 Racing Midway Games 0.25
## 5417 3DS 2013 Strategy Activision 0.15
## 5418 DS 2008 Simulation Ubisoft 0.31
## 5419 PS3 2008 Sports Electronic Arts 0.29
## 5420 XOne 2013 Simulation Microsoft Game Studios 0.18
## 5421 GBA 2005 Racing Disney Interactive Studios 0.24
## 5422 PC 2011 Simulation Electronic Arts 0.11
## 5423 GC 2003 Action Konami Digital Entertainment 0.26
## 5424 DS 2009 Simulation Eidos Interactive 0.21
## 5425 PS2 2009 Misc Disney Interactive Studios 0.10
## 5426 PS3 2010 Misc Sony Computer Entertainment 0.00
## 5427 PS4 2016 Role-Playing Atlus 0.00
## 5428 PS3 2007 Misc Sony Computer Entertainment 0.28
## 5429 X360 2007 Action Disney Interactive Studios 0.29
## 5430 PSV 2012 Racing Sony Computer Entertainment 0.17
## 5431 PS2 2008 Action Namco Bandai Games 0.04
## 5432 DS 2011 Action Namco Bandai Games 0.27
## 5433 PS 1996 Action Electronic Arts 0.19
## 5434 PS2 2001 Racing Atari 0.16
## 5435 DS 2006 Adventure THQ 0.30
## 5436 X360 2015 Shooter Electronic Arts 0.17
## 5437 XB 2005 Shooter NovaLogic 0.25
## 5438 DS 2009 Action Majesco Entertainment 0.12
## 5439 PS2 2005 Misc Oxygen Interactive 0.16
## 5440 PS3 2011 Action Ackkstudios 0.00
## 5441 PS3 2011 Shooter Codemasters 0.06
## 5442 X360 2009 Action Microsoft Game Studios 0.14
## 5443 XB 2006 Shooter Ubisoft 0.21
## 5444 DS 2009 Action Activision 0.17
## 5445 X360 2008 Shooter LucasArts 0.15
## 5446 PS 1996 Racing Jaleco 0.06
## 5447 Wii 2011 Role-Playing Nintendo 0.13
## 5448 PS3 2012 Action Sega 0.09
## 5449 X360 2011 Fighting Rising Star Games 0.23
## 5450 PS2 2003 Adventure Ubisoft 0.16
## 5451 GBA 2003 Platform THQ 0.24
## 5452 PS 1998 Puzzle Sony Computer Entertainment 0.06
## 5453 Wii 2010 Misc Deep Silver 0.00
## 5454 DS 2007 Role-Playing Namco Bandai Games 0.14
## 5455 PSP 2006 Fighting Capcom 0.27
## 5456 PSP 2006 Role-Playing Ubisoft 0.14
## 5457 X360 2009 Sports Sega 0.12
## 5458 PS 1998 Action Eidos Interactive 0.19
## 5459 PSP 2009 Role-Playing Namco Bandai Games 0.00
## 5460 Wii 2011 Misc Activision 0.31
## 5461 Wii 2010 Action Sega 0.15
## 5462 PSP 2004 Misc Sony Computer Entertainment 0.13
## 5463 PS3 2012 Shooter Take-Two Interactive 0.14
## 5464 PS3 2009 Misc Sony Computer Entertainment 0.00
## 5465 Wii 2009 Role-Playing Activision 0.26
## 5466 PSV 2011 Fighting Capcom 0.20
## 5467 GC 2003 Fighting THQ 0.26
## 5468 DS 2007 Puzzle Nintendo 0.14
## 5469 GC 2005 Simulation Electronic Arts 0.26
## 5470 XB 2003 Action Universal Interactive 0.25
## 5471 X360 2007 Action Ubisoft 0.29
## 5472 Wii 2009 Shooter Zushi Games 0.31
## 5473 Wii 2010 Misc D3Publisher 0.31
## 5474 PS2 2001 Platform Sony Computer Entertainment 0.12
## 5475 XB 2003 Shooter Eidos Interactive 0.25
## 5476 X360 2010 Role-Playing Sega 0.12
## 5477 Wii 2008 Simulation Ubisoft 0.30
## 5478 PS2 2002 Action Sony Computer Entertainment 0.16
## 5479 XB 2001 Racing Electronic Arts 0.25
## 5480 PSP 2006 Role-Playing Sony Computer Entertainment 0.21
## 5481 PS3 2009 Sports Electronic Arts 0.31
## 5482 PS 1999 Simulation Konami Digital Entertainment 0.00
## 5483 PS4 2015 Fighting Tecmo Koei 0.09
## 5484 GC 2004 Platform THQ 0.26
## 5485 PS3 2011 Sports 505 Games 0.00
## 5486 PC 2012 Action Electronic Arts 0.14
## 5487 PS2 2002 Sports Activision 0.16
## 5488 GBA 2005 Action Activision 0.24
## 5489 WiiU 2014 Action Sega 0.21
## 5490 PS2 2002 Fighting Acclaim Entertainment 0.16
## 5491 PS 1999 Sports Namco Bandai Games 0.00
## 5492 PSV 2011 Platform Sony Computer Entertainment 0.15
## 5493 X360 2012 Action Konami Digital Entertainment 0.22
## 5494 GB 1990 Sports Namco Bandai Games 0.00
## 5495 SNES 1994 Sports Hudson Soft 0.00
## 5496 Wii 2009 Action Majesco Entertainment 0.17
## 5497 PSP 2006 Misc Capcom 0.26
## 5498 DS 2008 Sports Electronic Arts 0.30
## 5499 PS2 2009 Sports Sony Computer Entertainment 0.16
## 5500 PS4 2016 Role-Playing Square Enix 0.10
## 5501 PS2 2001 Sports Sony Computer Entertainment 0.16
## 5502 GBA 2004 Platform Nintendo 0.17
## 5503 PS3 2014 Fighting Namco Bandai Games 0.10
## 5504 PS2 2009 Action Warner Bros. Interactive Entertainment 0.14
## 5505 XB 2006 Fighting Electronic Arts 0.26
## 5506 GBA 2001 Racing THQ 0.24
## 5507 PS2 2003 Action Capcom 0.05
## 5508 PS3 2008 Sports Electronic Arts 0.08
## 5510 N64 1998 Action 3DO 0.26
## 5511 PSP 2011 Misc Sega 0.00
## 5512 X360 2009 Strategy Eidos Interactive 0.17
## 5513 PS 1998 Platform Activision 0.18
## 5514 PS2 2006 Role-Playing Tecmo Koei 0.09
## 5515 PS3 2010 Sports Activision 0.26
## 5516 X360 2010 Sports Hudson Soft 0.27
## 5517 PS2 2002 Adventure Capcom 0.10
## 5518 SNES 1991 Sports Banpresto 0.00
## 5519 DS 2008 Adventure Scholastic Inc. 0.31
## 5520 PS3 2011 Action Disney Interactive Studios 0.15
## 5521 GC 2005 Shooter Activision 0.25
## 5522 Wii 2006 Action Konami Digital Entertainment 0.22
## 5523 PSP 2007 Strategy THQ 0.11
## 5524 X360 2013 Racing Codemasters 0.01
## 5525 PS2 2003 Role-Playing Tecmo Koei 0.16
## 5526 PS2 2005 Fighting Ignition Entertainment 0.16
## 5527 Wii 2007 Sports Electronic Arts 0.29
## 5528 PSP 2009 Racing Sony Computer Entertainment 0.09
## 5529 PS3 2009 Racing Ubisoft 0.12
## 5530 GC 2006 Platform THQ 0.25
## 5531 DS 2009 Simulation SouthPeak Games 0.28
## 5532 PSP 2008 Sports Sony Computer Entertainment 0.30
## 5533 X360 2011 Misc Ubisoft 0.20
## 5534 PS 1994 Shooter Konami Digital Entertainment 0.00
## 5535 GBA 2003 Platform Disney Interactive Studios 0.24
## 5536 DC 2001 Adventure Sega 0.00
## 5537 DS 2011 Action Avanquest 0.12
## 5538 PS 2000 Sports Sony Computer Entertainment 0.18
## 5539 GBA 2003 Misc THQ 0.24
## 5540 PS3 2013 Strategy Activision 0.10
## 5541 GC 2005 Fighting Tomy Corporation 0.00
## 5542 SNES 1991 Strategy Namco Bandai Games 0.00
## 5543 Wii 2010 Platform D3Publisher 0.19
## 5544 X360 2008 Action Sega 0.19
## 5545 DS 2010 Action Electronic Arts 0.22
## 5546 GC 2005 Sports Electronic Arts 0.25
## 5547 DS 2007 Misc Rocket Company 0.00
## 5548 X360 2011 Misc Take-Two Interactive 0.14
## 5549 X360 2007 Role-Playing Atari 0.19
## 5550 PS 1997 Misc Takara 0.00
## 5551 DS 2007 Sports Electronic Arts 0.29
## 5552 PS 1996 Sports Electronic Arts 0.16
## 5553 PS3 2010 Action Namco Bandai Games 0.09
## 5554 PS3 2007 Role-Playing Sony Computer Entertainment 0.20
## 5555 3DS 2015 Fighting Namco Bandai Games 0.12
## 5556 PS2 2007 Action Tecmo Koei 0.00
## 5557 XOne 2014 Shooter 505 Games 0.19
## 5558 GC 2006 Action THQ 0.25
## 5559 PS3 2011 Action Capcom 0.11
## 5560 2600 1983 Action Parker Bros. 0.31
## 5561 DS 2010 Role-Playing Atlus 0.13
## 5562 PSV 2012 Action Warner Bros. Interactive Entertainment 0.10
## 5563 GC 2005 Sports Electronic Arts 0.25
## 5564 Wii 2008 Misc Konami Digital Entertainment 0.30
## 5565 2600 1981 Action Starpath Corp. 0.30
## 5566 WiiU 2013 Action Warner Bros. Interactive Entertainment 0.20
## 5567 DS 2009 Simulation 505 Games 0.30
## 5568 GBA 2005 Puzzle Nintendo 0.12
## 5569 Wii 2006 Fighting Sega 0.22
## 5570 PS 1995 Fighting Tomy Corporation 0.00
## 5571 XB 2006 Sports Take-Two Interactive 0.24
## 5572 PS2 2004 Misc Play It 0.16
## 5573 PSV 2014 Action Sony Computer Entertainment 0.14
## 5574 PC 2011 Shooter Electronic Arts 0.13
## 5575 PS3 2010 Misc Konami Digital Entertainment 0.25
## 5576 X360 2009 Action Codemasters 0.15
## 5577 PSP 2009 Sports Take-Two Interactive 0.30
## 5578 PS3 2014 Fighting Namco Bandai Games 0.04
## 5579 PC 2008 Role-Playing Atari 0.32
## 5580 GBA 2004 Action Konami Digital Entertainment 0.23
## 5581 PS2 2004 Action THQ 0.16
## 5582 PSP 2012 Fighting Namco Bandai Games 0.00
## 5583 PC 2013 Action Warner Bros. Interactive Entertainment 0.13
## 5584 PS2 2003 Shooter Vivendi Games 0.16
## 5585 PS 1999 Sports Electronic Arts 0.18
## 5586 PS3 2015 Action Capcom 0.06
## 5587 X360 2006 Racing Atari 0.23
## 5588 PS3 2008 Action Sega 0.13
## 5589 PSV 2012 Sports Electronic Arts 0.30
## 5590 DS 2008 Action THQ 0.18
## 5591 X360 2009 Sports Electronic Arts 0.30
## 5592 X360 2012 Fighting Ubisoft Annecy 0.19
## 5593 DS 2011 Role-Playing Ghostlight 0.17
## 5594 N64 1998 Sports Acclaim Entertainment 0.30
## 5595 DS 2008 Misc Hudson Soft 0.00
## 5596 XOne 2016 Action Warner Bros. Interactive Entertainment 0.18
## 5597 PSP 2009 Fighting Namco Bandai Games 0.15
## 5598 PS2 2001 Racing Sony Computer Entertainment 0.16
## 5599 X360 2007 Puzzle Namco Bandai Games 0.14
## 5600 PS 1997 Puzzle Acclaim Entertainment 0.18
## 5601 XB 2005 Sports Electronic Arts 0.28
## 5602 PS3 2009 Action Codemasters 0.11
## 5603 PS 2002 Role-Playing Enix Corporation 0.00
## 5604 PSP 2010 Shooter Electronic Arts 0.12
## 5605 DS 2010 Platform D3Publisher 0.22
## 5606 Wii 2008 Racing Zoo Digital Publishing 0.30
## 5607 PC 2009 Action Eidos Interactive 0.00
## 5608 X360 2007 Action Vivendi Games 0.27
## 5609 X360 2008 Platform Vivendi Games 0.16
## 5610 X360 2006 Shooter Take-Two Interactive 0.27
## 5611 Wii 2009 Misc Take-Two Interactive 0.30
## 5612 PS 1996 Action Electronic Arts 0.05
## 5613 PS 1997 Sports Sony Computer Entertainment 0.18
## 5614 PS4 2014 Action Square Enix 0.09
## 5615 X360 2005 Sports Activision 0.28
## 5616 PS 1999 Simulation Ubisoft 0.11
## 5617 X360 2014 Shooter 505 Games 0.16
## 5618 PS2 2003 Fighting Atari 0.00
## 5620 PC 2010 Strategy Ubisoft 0.00
## 5621 PS2 2008 Action Take-Two Interactive 0.16
## 5622 PS4 2016 Action Ubisoft 0.03
## 5623 DS 2009 Sports THQ 0.18
## 5624 X360 2011 Misc Zoo Games 0.30
## 5625 PS2 2005 Shooter Ubisoft 0.16
## 5627 X360 2007 Simulation Konami Digital Entertainment 0.30
## 5628 Wii 2009 Simulation Electronic Arts 0.15
## 5629 GC 2003 Action Ubisoft 0.25
## 5630 PS2 2000 Simulation Sony Computer Entertainment 0.16
## 5631 N64 1997 Sports Konami Digital Entertainment 0.15
## 5632 PS 2000 Platform Ubisoft 0.18
## 5633 GB 1995 Puzzle Nintendo 0.00
## 5634 PS4 2016 Racing Codemasters 0.03
## 5635 GBA 2001 Action Majesco Entertainment 0.23
## 5636 PS 2000 Sports Electronic Arts 0.18
## 5637 DS 2011 Misc P2 Games 0.00
## 5638 PS 1997 Racing Sony Computer Entertainment 0.18
## 5639 Wii 2007 Sports Atari 0.27
## 5640 PS2 2003 Platform Konami Digital Entertainment 0.16
## 5641 PS 1995 Misc Electronic Arts 0.18
## 5642 PSP 2008 Sports Ubisoft 0.26
## 5643 PS2 2004 Misc Konami Digital Entertainment 0.16
## 5644 Wii 2008 Sports Ubisoft 0.00
## 5645 PS2 2001 Simulation ASCII Entertainment 0.00
## 5646 SAT 1995 Fighting Virgin Interactive 0.00
## 5647 PS 1999 Sports Konami Digital Entertainment 0.00
## 5648 GBA 2005 Misc N/A 0.23
## 5649 PS2 2002 Fighting Ubisoft 0.16
## 5650 PSP 2005 Fighting Electronic Arts 0.29
## 5651 GBA 2005 Platform THQ 0.23
## 5652 NES 1991 Puzzle BPS 0.00
## 5653 X360 2009 Action Electronic Arts 0.17
## 5654 PS2 2003 Sports Activision 0.16
## 5655 PS2 2009 Misc MTV Games 0.16
## 5656 DS 2009 Puzzle Rondomedia 0.14
## 5657 GBA 2002 Adventure BAM! Entertainment 0.23
## 5659 2600 1982 Action Data Age 0.30
## 5660 PS 1997 Adventure Acclaim Entertainment 0.18
## 5661 DS 2008 Sports Enterbrain 0.00
## 5662 PS4 2016 Platform Electronic Arts 0.10
## 5663 PSP 2007 Action Take-Two Interactive 0.04
## 5664 XB 2002 Sports Sega 0.24
## 5665 Wii 2008 Role-Playing Eidos Interactive 0.28
## 5666 Wii 2010 Strategy Square Enix 0.00
## 5667 SNES 1993 Role-Playing Hudson Soft 0.00
## 5668 PS2 2003 Fighting Namco Bandai Games 0.00
## 5669 GBA 2002 Misc Atari 0.23
## 5671 PS 1997 Simulation Human Entertainment 0.00
## 5672 PS 1997 Strategy Banpresto 0.00
## 5673 SNES 1994 Role-Playing SquareSoft 0.00
## 5674 XB 2003 Sports Microsoft Game Studios 0.24
## 5675 GBA 2001 Sports Electronic Arts 0.23
## 5676 PS2 2008 Sports Electronic Arts 0.03
## 5677 X360 2007 Shooter Codemasters 0.28
## 5678 DS 2009 Simulation Electronic Arts 0.29
## 5679 XB 2004 Strategy Deep Silver 0.24
## 5680 PS2 2001 Racing Gathering of Developers 0.16
## 5681 X360 2010 Sports Activision 0.28
## 5682 SNES 1996 Misc Hudson Soft 0.00
## 5683 PS 2001 Action THQ 0.18
## 5684 PS2 2000 Strategy Tecmo Koei 0.08
## 5685 PSP 2007 Action Activision 0.08
## 5686 X360 2011 Adventure Deep Silver 0.20
## 5687 X360 2010 Fighting PQube 0.23
## 5688 PS2 2002 Adventure Sony Computer Entertainment 0.15
## 5689 PS2 2009 Misc Activision 0.10
## 5690 PSP 2007 Racing Sony Computer Entertainment 0.13
## 5691 DS 2008 Misc Konami Digital Entertainment 0.00
## 5692 XOne 2015 Misc Ubisoft 0.24
## 5693 Wii 2008 Action Capcom 0.17
## 5694 PS2 2004 Action Tecmo Koei 0.00
## 5695 XB 2002 Adventure Microsoft Game Studios 0.22
## 5696 PS 1998 Platform Ocean 0.18
## 5697 PS3 2016 Action Warner Bros. Interactive Entertainment 0.10
## 5698 DC 1999 Sports Sega 0.00
## 5699 PC 2011 Role-Playing Microsoft Game Studios 0.09
## 5700 XOne 2015 Fighting Namco Bandai Games 0.18
## 5701 PC 2011 Role-Playing Ubisoft 0.12
## 5702 X360 2009 Racing Codemasters 0.09
## 5703 Wii 2010 Sports Namco Bandai Games 0.10
## 5704 PS 1997 Strategy Electronic Arts 0.18
## 5705 PSP 2011 Role-Playing Capcom 0.00
## 5706 XB 2003 Racing Vivendi Games 0.24
## 5707 Wii 2010 Misc Warner Bros. Interactive Entertainment 0.29
## 5708 PS 1995 Sports Sony Computer Entertainment 0.17
## 5709 Wii 2007 Misc Konami Digital Entertainment 0.29
## 5710 DS 2010 Action Disney Interactive Studios 0.25
## 5711 PS2 2007 Sports Konami Digital Entertainment 0.00
## 5712 DS 2007 Shooter Konami Digital Entertainment 0.28
## 5713 GBA 2003 Sports Electronic Arts 0.22
## 5714 PS3 2014 Shooter 505 Games 0.10
## 5715 SNES 1995 Platform Konami Digital Entertainment 0.00
## 5716 3DS 2011 Puzzle Square Enix 0.08
## 5717 GB 1999 Action Nintendo 0.00
## 5718 PSP 2008 Sports Konami Digital Entertainment 0.00
## 5719 PS 1998 Misc NewKidCo 0.17
## 5720 Wii 2008 Action Sega 0.28
## 5721 X360 2008 Misc Atari 0.27
## 5722 XB 2002 Sports Microsoft Game Studios 0.23
## 5723 PS2 2005 Sports Electronic Arts 0.15
## 5724 DS 2007 Adventure Activision 0.28
## 5725 DS 2005 Action Ubisoft 0.25
## 5726 3DS 2015 Misc Sega 0.15
## 5727 3DS 2014 Strategy Namco Bandai Games 0.00
## 5728 DS 2010 Platform Activision 0.19
## 5729 PS3 2007 Sports Sony Computer Entertainment 0.29
## 5730 PS4 2016 Shooter Deep Silver 0.05
## 5731 PS2 2003 Misc Sony Computer Entertainment 0.15
## 5732 PS 1996 Adventure Infogrames 0.17
## 5733 XB 2004 Strategy Konami Digital Entertainment 0.23
## 5734 XB 2005 Action Atari 0.23
## 5735 XB 2005 Action Midway Games 0.23
## 5736 DS 2006 Action Midway Games 0.27
## 5737 PS 1997 Shooter SquareSoft 0.10
## 5738 PS 1998 Misc Sony Computer Entertainment 0.17
## 5739 DS 2009 Puzzle Storm City Games 0.29
## 5740 XOne 2014 Action Deep Silver 0.15
## 5741 X360 2010 Action Capcom 0.19
## 5742 X360 2012 Sports Konami Digital Entertainment 0.08
## 5743 PS2 2003 Simulation Agetec 0.07
## 5744 PS2 2009 Strategy Namco Bandai Games 0.00
## 5745 DS 2007 Action CokeM Interactive 0.29
## 5746 SAT 1995 Shooter Sega 0.00
## 5747 PS 2001 Action Take-Two Interactive 0.17
## 5748 XB 2005 Shooter Ubisoft 0.23
## 5749 GBA 2005 Action THQ 0.22
## 5750 PS 1999 Strategy Banpresto 0.00
## 5751 PSP 2005 Platform Capcom 0.27
## 5752 Wii 2009 Sports Activision Value 0.29
## 5753 PSP 2010 Role-Playing Square Enix 0.07
## 5754 N64 1997 Sports Konami Digital Entertainment 0.00
## 5755 N64 1998 Platform Konami Digital Entertainment 0.06
## 5756 N64 1999 Racing Electronic Arts 0.25
## 5757 N64 1998 Racing Activision 0.25
## 5758 N64 1999 Sports Take-Two Interactive 0.25
## 5759 N64 2001 Simulation Nintendo 0.00
## 5760 PC 2015 Simulation Sega 0.00
## 5761 DS 2006 Fighting Namco Bandai Games 0.31
## 5762 X360 2010 Action Disney Interactive Studios 0.24
## 5763 XOne 2015 Action Disney Interactive Studios 0.18
## 5764 3DS 2014 Action Namco Bandai Games 0.00
## 5765 Wii 2008 Misc Zoo Games 0.29
## 5766 Wii 2010 Action Electronic Arts 0.18
## 5767 PS2 2007 Sports Konami Digital Entertainment 0.00
## 5768 Wii 2008 Misc Activision 0.28
## 5769 Wii 2008 Simulation Rising Star Games 0.25
## 5771 DS 2010 Strategy Konami Digital Entertainment 0.18
## 5772 GBA 2002 Action Ubisoft 0.22
## 5773 Wii 2009 Strategy Rising Star Games 0.15
## 5774 2600 1982 Action CBS Electronics 0.29
## 5775 PS2 2005 Misc Sony Computer Entertainment 0.15
## 5776 DS 2005 Platform Activision 0.25
## 5777 X360 2005 Sports Electronic Arts 0.28
## 5778 PS2 2008 Sports Ubisoft 0.15
## 5779 SAT 1997 Role-Playing Atlus 0.00
## 5780 PS3 2008 Sports Bethesda Softworks 0.28
## 5781 Wii 2010 Sports Activision 0.23
## 5782 X360 2006 Strategy Electronic Arts 0.28
## 5783 PS 1998 Racing Infogrames 0.17
## 5784 XB 2004 Misc Midway Games 0.24
## 5785 PS 1997 Simulation SquareSoft 0.00
## 5786 DS 2006 Puzzle Ubisoft 0.28
## 5787 PC 2012 Role-Playing Electronic Arts 0.14
## 5788 GC 2002 Racing Electronic Arts 0.24
## 5789 PSP 2012 Strategy Namco Bandai Games 0.00
## 5790 PS3 2012 Action Sony Computer Entertainment 0.14
## 5791 DS 2010 Puzzle Warner Bros. Interactive Entertainment 0.11
## 5792 PS 1998 Sports Sony Computer Entertainment 0.17
## 5793 PS2 2002 Racing LucasArts 0.15
## 5794 PSP 2007 Sports Electronic Arts 0.28
## 5795 PS3 2011 Fighting Rising Star Games 0.17
## 5796 PS2 2001 Sports Sony Computer Entertainment 0.15
## 5797 PS 1998 Misc Acclaim Entertainment 0.17
## 5798 PS2 2001 Misc Magix 0.15
## 5800 SNES 1993 Platform Konami Digital Entertainment 0.00
## 5801 2600 1981 Action Mattel Interactive 0.29
## 5802 PS2 2002 Action Activision 0.15
## 5803 PS 1999 Platform GT Interactive 0.17
## 5804 PSV 2013 Role-Playing Nippon Ichi Software 0.08
## 5805 PSP 2010 Role-Playing Marvelous Interactive 0.18
## 5806 Wii 2009 Sports Ubisoft 0.25
## 5807 DS 2009 Misc Mentor Interactive 0.29
## 5808 XOne 2013 Platform Activision 0.22
## 5809 PS 1999 Misc Activision 0.17
## 5810 PS3 2009 Action Activision 0.21
## 5811 PSP 2010 Action Konami Digital Entertainment 0.09
## 5812 XB 2002 Fighting Universal Interactive 0.23
## 5813 PS 2000 Puzzle Empire Interactive 0.17
## 5814 GBA 2001 Puzzle Nintendo 0.00
## 5815 PS 2000 Platform Sony Computer Entertainment 0.17
## 5816 PS2 2002 Action Sony Computer Entertainment 0.15
## 5817 SNES 1996 Role-Playing ASCII Entertainment 0.00
## 5818 SNES 1994 Fighting Namco Bandai Games 0.00
## 5819 PS2 2000 Role-Playing Activision 0.15
## 5820 3DS 2013 Adventure Warner Bros. Interactive Entertainment 0.18
## 5821 DS 2009 Simulation Ubisoft 0.28
## 5822 X360 2009 Role-Playing Banpresto 0.13
## 5823 GBA 2005 Action Activision 0.22
## 5824 DS 2006 Action THQ 0.28
## 5825 XB 2003 Racing Microsoft Game Studios 0.23
## 5826 GBA 2002 Racing TDK Mediactive 0.22
## 5827 PS3 2014 Action Namco Bandai Games 0.09
## 5828 X360 2014 Shooter Sega 0.15
## 5829 GB 1995 Misc Nintendo 0.00
## 5830 SAT 1996 Shooter Sega 0.00
## 5831 PS 1998 Fighting SquareSoft 0.17
## 5832 PSP 2005 Misc Sega 0.00
## 5833 Wii 2011 Misc Konami Digital Entertainment 0.24
## 5834 GBA 2003 Platform Universal Interactive 0.22
## 5835 PS 2000 Action 3DO 0.17
## 5836 PS3 2012 Strategy Namco Bandai Games 0.00
## 5837 PS3 2007 Shooter Midway Games 0.24
## 5838 Wii 2007 Simulation Nintendo 0.22
## 5840 PSP 2006 Puzzle Disney Interactive Studios 0.12
## 5841 WiiU 2014 Action Nintendo 0.20
## 5842 PC 2006 Simulation Deep Silver 0.00
## 5843 PS 1995 Platform Sony Computer Entertainment 0.05
## 5844 PS2 2005 Misc Konami Digital Entertainment 0.15
## 5845 DS 2010 Action Warner Bros. Interactive Entertainment 0.24
## 5846 GC 2002 Racing Acclaim Entertainment 0.23
## 5847 GBA 2005 Platform Disney Interactive Studios 0.22
## 5848 PS2 2003 Action Capcom 0.15
## 5849 X360 2011 Fighting Ubisoft 0.18
## 5850 X360 2011 Racing Activision 0.29
## 5851 DS 2009 Puzzle Sega 0.00
## 5852 Wii 2010 Platform Activision 0.19
## 5853 GBA 2005 Adventure Global Star 0.22
## 5854 PS2 2005 Adventure Sony Computer Entertainment 0.15
## 5855 SAT 1995 Role-Playing Sega 0.00
## 5856 GBA 2006 Misc Nintendo 0.00
## 5857 DS 2007 Strategy Banpresto 0.00
## 5858 PS 1997 Racing Sony Computer Entertainment 0.17
## 5859 PSP 2010 Strategy Sony Computer Entertainment 0.05
## 5860 PS2 2006 Adventure Sony Computer Entertainment 0.15
## 5861 PSP 2007 Platform Activision 0.01
## 5863 NES 1990 Sports Namco Bandai Games 0.00
## 5864 DS 2011 Misc Activision 0.27
## 5865 DS 2008 Strategy THQ 0.24
## 5866 DS 2007 Action Warner Bros. Interactive Entertainment 0.28
## 5867 PS2 2007 Strategy Banpresto 0.00
## 5868 PS3 2013 Role-Playing Square Enix 0.10
## 5869 SAT 1994 Sports Sega 0.00
## 5870 PC 2004 Simulation Electronic Arts 0.02
## 5872 3DS 2011 Action Ubisoft 0.14
## 5873 PS4 2015 Action Capcom 0.12
## 5874 DS 2009 Adventure Disney Interactive Studios 0.28
## 5875 X360 2007 Action Tecmo Koei 0.15
## 5876 Wii 2008 Racing Eidos Interactive 0.27
## 5877 PS4 2014 Action Tecmo Koei 0.09
## 5878 PSV 2014 Action Tecmo Koei 0.05
## 5879 Wii 2010 Action Capcom 0.08
## 5880 PS2 2002 Strategy Tecmo Koei 0.05
## 5881 DS 2008 Role-Playing Nintendo 0.00
## 5882 SNES 1994 Role-Playing Hudson Soft 0.00
## 5883 PS4 2015 Simulation Kalypso Media 0.05
## 5884 PS2 2001 Sports Midas Interactive Entertainment 0.15
## 5885 DS 2008 Role-Playing Nintendo 0.20
## 5886 N64 1999 Racing Take-Two Interactive 0.24
## 5887 N64 1999 Shooter Activision 0.24
## 5888 DS 2006 Misc Spike 0.00
## 5889 GBA 2003 Racing THQ 0.21
## 5890 DS 2009 Simulation Electronic Arts 0.15
## 5891 X360 2007 Action Electronic Arts 0.24
## 5892 PS4 2015 Action Activision 0.17
## 5893 PS 1997 Simulation Namco Bandai Games 0.00
## 5894 3DS 2011 Action Namco Bandai Games 0.00
## 5895 PS2 2000 Platform Ubisoft 0.15
## 5896 GBA 2003 Action Atari 0.21
## 5897 SNES 1997 Puzzle Hudson Soft 0.00
## 5898 X360 2006 Action Microsoft Game Studios 0.20
## 5899 PSP 2011 Role-Playing Atlus 0.13
## 5900 PS 2000 Action 3DO 0.17
## 5901 PC 2005 Racing Electronic Arts 0.02
## 5903 PS2 2003 Fighting THQ 0.15
## 5904 PS2 2000 Role-Playing Ubisoft 0.10
## 5905 SAT 1996 Strategy Sega 0.00
## 5906 DS 2007 Simulation Ubisoft 0.23
## 5907 X360 2011 Misc Ubisoft 0.15
## 5908 3DS 2012 Role-Playing Atlus 0.13
## 5909 SNES 1995 Sports Tecmo Koei 0.00
## 5910 PS 1996 Fighting Virgin Interactive 0.07
## 5911 X360 2007 Action Activision 0.26
## 5912 PC 2014 Sports Electronic Arts 0.00
## 5913 X360 2008 Simulation Konami Digital Entertainment 0.28
## 5915 Wii 2012 Misc Nordic Games 0.08
## 5916 PS2 2004 Fighting Acclaim Entertainment 0.15
## 5917 PSP 2006 Misc Capcom 0.27
## 5918 Wii 2009 Sports Zushi Games 0.26
## 5919 DS 2011 Shooter Activision 0.21
## 5920 PC 2003 Simulation Electronic Arts 0.01
## 5921 SNES 1995 Role-Playing Hudson Soft 0.00
## 5922 PSV 2014 Role-Playing Namco Bandai Games 0.00
## 5923 PS4 2016 Role-Playing Square Enix 0.06
## 5924 PS3 2011 Shooter Ubisoft 0.12
## 5925 PS2 2005 Strategy THQ 0.15
## 5926 DS 2009 Misc Majesco Entertainment 0.28
## 5927 Wii 2010 Misc Namco Bandai Games 0.00
## 5928 X360 2012 Shooter Activision 0.13
## 5929 PS2 2006 Simulation Electronic Arts 0.02
## 5930 PSV 2016 Role-Playing Square Enix 0.00
## 5931 DS 2007 Action Disney Interactive Studios 0.17
## 5932 GBA 2003 Sports Konami Digital Entertainment 0.00
## 5933 DS 2006 Platform Capcom 0.18
## 5934 DS 2005 Simulation Marvelous Interactive 0.30
## 5935 DS 2007 Sports Konami Digital Entertainment 0.00
## 5936 PS3 2009 Shooter Warner Bros. Interactive Entertainment 0.14
## 5937 GBA 2004 Action THQ 0.21
## 5938 GBA 2002 Platform THQ 0.21
## 5939 PS3 2009 Racing Activision 0.19
## 5940 PS 1997 Simulation Electronic Arts 0.16
## 5941 X360 2009 Misc Activision 0.16
## 5942 X360 2007 Role-Playing Square Enix 0.25
## 5943 GB 1999 Simulation Jorudan 0.00
## 5944 GC 2004 Action Activision 0.23
## 5945 PS3 2012 Fighting Tecmo Koei 0.00
## 5946 PS2 2004 Sports Midway Games 0.14
## 5947 XB 2003 Action Konami Digital Entertainment 0.22
## 5948 DS 2005 Adventure Nintendo 0.15
## 5949 X360 2008 Sports Electronic Arts 0.12
## 5950 DS 2007 Puzzle Avanquest 0.02
## 5951 Wii 2010 Action Warner Bros. Interactive Entertainment 0.22
## 5952 Wii 2006 Fighting Atari 0.24
## 5953 XB 2003 Sports Mud Duck Productions 0.22
## 5954 X360 2014 Action Square Enix 0.14
## 5955 GC 2002 Platform THQ 0.23
## 5956 Wii 2011 Misc Ubisoft 0.28
## 5957 2600 1986 Sports Atari 0.28
## 5958 DS 2020 Simulation Ubisoft 0.27
## 5959 PS2 2002 Role-Playing Ubisoft 0.14
## 5960 PSP 2006 Shooter Sony Computer Entertainment 0.26
## 5961 PS3 2010 Shooter Square Enix 0.09
## 5962 DS 2006 Platform Warner Bros. Interactive Entertainment 0.21
## 5963 X360 2009 Action Eidos Interactive 0.12
## 5964 X360 2010 Role-Playing Square Enix 0.13
## 5965 Wii 2009 Sports Take-Two Interactive 0.26
## 5966 PSP 2005 Role-Playing Activision 0.25
## 5967 DS 2010 Misc GSP 0.04
## 5968 X360 2009 Shooter Atari 0.16
## 5969 GBA 2003 Racing Electronic Arts 0.21
## 5970 GBA 2002 Sports Konami Digital Entertainment 0.00
## 5971 PS3 2007 Action Electronic Arts 0.25
## 5972 PSV 2014 Action Sony Computer Entertainment 0.01
## 5973 SAT 1995 Role-Playing Sega 0.00
## 5974 WiiU 2013 Action Ubisoft 0.18
## 5975 Wii 2007 Sports Konami Digital Entertainment 0.23
## 5976 XB 2002 Sports TDK Mediactive 0.22
## 5977 PS3 2014 Action Activision 0.06
## 5978 PS3 2009 Action Tecmo Koei 0.11
## 5979 PS 1999 Sports Konami Digital Entertainment 0.16
## 5980 PS2 2002 Adventure 505 Games 0.02
## 5981 X360 2009 Action THQ 0.20
## 5982 PSP 2010 Adventure Sega 0.00
## 5983 Wii 2007 Action Ubisoft 0.24
## 5984 Wii 2009 Action Namco Bandai Games 0.00
## 5985 PS2 2009 Action D3Publisher 0.11
## 5986 PS3 2010 Adventure Namco Bandai Games 0.09
## 5987 GC 2005 Sports Electronic Arts 0.23
## 5988 PS2 2000 Shooter Midas Interactive Entertainment 0.14
## 5989 Wii 2007 Sports Nintendo 0.02
## 5990 PSP 2008 Racing Empire Interactive 0.13
## 5991 PS 1998 Strategy Virgin Interactive 0.03
## 5992 PS 2000 Sports Konami Digital Entertainment 0.00
## 5993 PS3 2013 Shooter Take-Two Interactive 0.08
## 5994 X360 2005 Sports Electronic Arts 0.27
## 5995 Wii 2009 Misc Activision 0.14
## 5996 SAT 1996 Sports Sega 0.00
## 5997 DS 2009 Role-Playing Atlus 0.14
## 5998 PS 2000 Misc Hasbro Interactive 0.16
## 5999 PS 1997 Strategy Namco Bandai Games 0.00
## 6000 PS2 2008 Platform Sony Computer Entertainment 0.13
## 6001 Wii 2010 Platform D3Publisher 0.17
## 6002 PS2 2006 Role-Playing Tecmo Koei 0.14
## 6003 SNES 1994 Misc Enix Corporation 0.00
## 6004 X360 2010 Misc Konami Digital Entertainment 0.25
## 6005 Wii 2011 Action Electronic Arts 0.13
## 6006 GC 2002 Fighting Namco Bandai Games 0.00
## 6007 PS3 2012 Action Sony Computer Entertainment 0.18
## 6008 2600 1983 Action Activision 0.27
## 6009 DS 2009 Simulation Ubisoft 0.27
## 6010 XB 2005 Shooter Midway Games 0.22
## 6011 Wii 2011 Misc Ubisoft 0.22
## 6012 Wii 2010 Misc Disney Interactive Studios 0.18
## 6013 PSP 2010 Simulation Namco Bandai Games 0.06
## 6014 GBA 2003 Simulation Jorudan 0.00
## 6015 PS3 2011 Action Sony Computer Entertainment 0.13
## 6016 X360 2013 Strategy Activision 0.16
## 6017 PS2 2004 Platform Capcom 0.14
## 6018 Wii 2009 Adventure Ubisoft 0.13
## 6019 PS2 2005 Racing Take-Two Interactive 0.14
## 6020 PSV 2012 Action Nihon Falcom Corporation 0.15
## 6021 3DS 2012 Action Electronic Arts 0.06
## 6022 2600 1981 Action Unknown 0.27
## 6023 PS2 2001 Sports Konami Digital Entertainment 0.00
## 6024 N64 1998 Racing Acclaim Entertainment 0.23
## 6025 N64 1998 Racing Kemco 0.23
## 6026 N64 1999 Fighting Titus 0.23
## 6027 N64 1999 Racing Acclaim Entertainment 0.23
## 6028 N64 1999 Puzzle Nintendo 0.22
## 6029 N64 1999 Sports Nintendo 0.23
## 6030 N64 1999 Racing Electronic Arts 0.23
## 6031 N64 1997 Fighting Midway Games 0.23
## 6032 PS3 2007 Action Tecmo Koei 0.10
## 6033 PC 2011 Shooter Wargaming.net 0.00
## 6034 DS 2010 Puzzle Avanquest 0.00
## 6035 GBA 2003 Misc Atari 0.21
## 6036 PS2 2009 Fighting THQ 0.14
## 6037 X360 2008 Shooter Codemasters 0.23
## 6038 PS2 2005 Simulation Codemasters 0.14
## 6039 Wii 2009 Action Capcom 0.15
## 6040 GC 2004 Role-Playing Electronic Arts 0.22
## 6041 3DS 2013 Action Disney Interactive Studios 0.16
## 6042 X360 2012 Role-Playing Microsoft Game Studios 0.18
## 6044 3DS 2014 Action Sega 0.17
## 6045 Wii 2012 Misc Nintendo 0.00
## 6046 XB 2007 Sports Electronic Arts 0.22
## 6047 PS 1996 Misc Takara 0.00
## 6048 XB 2003 Role-Playing Ubisoft 0.22
## 6049 X360 2011 Shooter Codemasters 0.10
## 6050 PS3 2015 Action Namco Bandai Games 0.00
## 6051 XB 2005 Action THQ 0.22
## 6052 PS 1996 Sports Sony Computer Entertainment 0.16
## 6053 X360 2011 Action Activision 0.13
## 6054 SNES 1991 Role-Playing Angel Studios 0.00
## 6055 X360 2013 Racing Codemasters 0.08
## 6056 Wii 2008 Simulation Destineer 0.27
## 6057 Wii 2007 Puzzle D3Publisher 0.26
## 6058 PS2 2002 Misc TDK Mediactive 0.14
## 6059 DC 2002 Adventure Sega 0.00
## 6060 PS2 2005 Role-Playing Sega 0.07
## 6061 PS2 2002 Strategy Tecmo Koei 0.06
## 6062 DS 2004 Simulation Electronic Arts 0.27
## 6063 X360 2013 Role-Playing Square Enix 0.15
## 6064 DS 2004 Puzzle Sega 0.17
## 6065 PS3 2009 Misc Electronic Arts 0.12
## 6066 DS 2008 Puzzle Capcom 0.26
## 6067 3DS 2012 Racing Sega 0.12
## 6068 Wii 2007 Action Activision 0.26
## 6069 PS 2000 Sports Midas Interactive Entertainment 0.16
## 6070 Wii 2008 Simulation Deep Silver 0.27
## 6071 3DS 2013 Misc Namco Bandai Games 0.00
## 6072 PC 2014 Shooter Take-Two Interactive 0.11
## 6073 PS2 2007 Sports Ubisoft 0.14
## 6074 PS3 2013 Fighting Arc System Works 0.13
## 6075 PS 2000 Racing Infogrames 0.16
## 6076 PS2 2004 Role-Playing Square Enix 0.00
## 6077 PS 1996 Misc Sony Computer Entertainment 0.03
## 6078 PS2 2003 Platform Ubisoft 0.14
## 6079 DS 2008 Adventure Konami Digital Entertainment 0.00
## 6080 PS2 2004 Shooter Midway Games 0.14
## 6081 Wii 2010 Puzzle Storm City Games 0.27
## 6082 PS 1999 Platform Sony Computer Entertainment 0.16
## 6083 X360 2009 Action Konami Digital Entertainment 0.13
## 6084 DS 2011 Simulation Activision 0.27
## 6085 PS2 2006 Role-Playing Square Enix 0.00
## 6086 PS 1999 Simulation Konami Digital Entertainment 0.00
## 6087 X360 2007 Racing Electronic Arts 0.26
## 6088 PC 2016 Role-Playing Activision 0.14
## 6089 SNES 1992 Strategy Tecmo Koei 0.00
## 6090 DS 2008 Sports Konami Digital Entertainment 0.00
## 6091 PS3 2011 Action Ignition Entertainment 0.11
## 6092 PS3 2012 Action Activision 0.12
## 6093 GC 2004 Platform Vivendi Games 0.22
## 6094 PSP 2008 Action Tecmo Koei 0.06
## 6095 DS 2007 Puzzle THQ 0.26
## 6096 XB 2003 Sports Microsoft Game Studios 0.21
## 6097 PS 1996 Sports Electronic Arts 0.16
## 6098 DS 2008 Action THQ 0.26
## 6099 DS 2011 Misc Nintendo 0.00
## 6100 DS 2010 Action Activision 0.26
## 6101 GBA 2001 Platform Interplay 0.20
## 6102 GBA 2003 Role-Playing Nintendo 0.08
## 6103 PS3 2007 Action Sega 0.14
## 6104 X360 2012 Racing Codemasters 0.07
## 6105 DS 2008 Sports THQ 0.26
## 6106 X360 2011 Sports 505 Games 0.03
## 6107 Wii 2009 Action Activision 0.11
## 6108 PS2 2003 Racing Ubisoft 0.14
## 6109 PS2 2008 Misc Sony Computer Entertainment 0.14
## 6110 X360 2009 Shooter Rising Star Games 0.15
## 6111 PS 1997 Racing Playmates 0.16
## 6112 PS3 2012 Sports Sony Computer Entertainment 0.00
## 6113 GBA 2003 Sports Activision 0.20
## 6114 GBA 2005 Action Atari 0.20
## 6115 DS 2007 Adventure Game Factory 0.26
## 6116 SNES 1995 Fighting Human Entertainment 0.00
## 6117 DS 2007 Simulation THQ 0.26
## 6118 SNES 1994 Sports Konami Digital Entertainment 0.00
## 6119 XOne 2014 Action Konami Digital Entertainment 0.15
## 6120 PS 2000 Platform Ubisoft 0.16
## 6121 XB 2005 Action Take-Two Interactive 0.21
## 6122 X360 2010 Misc Electronic Arts 0.16
## 6123 PS2 2001 Role-Playing Midway Games 0.09
## 6124 Wii 2010 Sports Take-Two Interactive 0.24
## 6125 PS4 2016 Fighting Namco Bandai Games 0.10
## 6127 XB 2002 Sports Activision 0.21
## 6128 GBA 2006 Role-Playing Konami Digital Entertainment 0.20
## 6129 GBA 2001 Action Activision 0.20
## 6130 PS2 2003 Racing Namco Bandai Games 0.14
## 6131 PS3 2010 Sports Activision 0.18
## 6132 PS2 2003 Sports Namco Bandai Games 0.00
## 6133 GC 2003 Racing Acclaim Entertainment 0.22
## 6134 WS 1999 Role-Playing Namco Bandai Games 0.00
## 6135 GBA 2005 Action Activision 0.20
## 6136 PS3 2008 Action Sony Computer Entertainment 0.00
## 6137 PS4 2016 Sports Konami Digital Entertainment 0.01
## 6138 X360 2006 Simulation Sega 0.24
## 6139 XB 2005 Fighting Electronic Arts 0.21
## 6140 SAT 1995 Fighting SNK Playmore 0.00
## 6141 PSP 2006 Adventure Disney Interactive Studios 0.25
## 6142 DS 2009 Action Ubisoft 0.15
## 6143 GBA 2004 Simulation Majesco Entertainment 0.20
## 6144 Wii 2006 Adventure THQ 0.24
## 6145 GBA 2006 Role-Playing Nintendo 0.00
## 6146 2600 1982 Action Tigervision 0.26
## 6147 PS2 2004 Action Capcom 0.14
## 6148 N64 1999 Sports Electronic Arts 0.27
## 6149 DS 2010 Action Konami Digital Entertainment 0.16
## 6150 WiiU 2013 Racing Electronic Arts 0.14
## 6151 PS 2002 Action Hamster Corporation 0.16
## 6152 PS3 2010 Shooter Namco Bandai Games 0.10
## 6153 PS2 2003 Action Electronic Arts 0.14
## 6155 XB 2003 Fighting Microsoft Game Studios 0.21
## 6156 GB 1991 Platform Nintendo 0.00
## 6157 DS 2007 Strategy Konami Digital Entertainment 0.13
## 6158 XOne 2016 Fighting Namco Bandai Games 0.19
## 6159 GBA 2002 Fighting Atari 0.20
## 6160 PSV 2013 Platform Sony Computer Entertainment Europe 0.16
## 6161 PSP 2011 Role-Playing Namco Bandai Games 0.00
## 6162 NES 1991 Sports Namco Bandai Games 0.00
## 6163 PS2 2002 Misc Sammy Corporation 0.00
## 6164 PS2 2007 Action Empire Interactive 0.14
## 6165 GB 1991 Platform Nintendo 0.00
## 6166 SNES 1991 Action Tecmo Koei 0.00
## 6167 PS2 2008 Action Disney Interactive Studios 0.12
## 6168 GBA 2002 Platform THQ 0.20
## 6169 DS 2007 Sports Ubisoft 0.26
## 6170 PS2 2006 Puzzle Xplosiv 0.00
## 6171 PS2 2002 Racing THQ 0.14
## 6172 Wii 2010 Sports Mastiff 0.27
## 6173 PS3 2013 Shooter Electronic Arts 0.11
## 6174 PS2 2007 Shooter Sony Computer Entertainment 0.14
## 6175 XB 2003 Shooter SCi 0.21
## 6176 PS3 2015 Misc Activision 0.09
## 6177 PS2 2003 Platform Atari 0.14
## 6178 DS 2010 Misc Warner Bros. Interactive Entertainment 0.27
## 6179 PSP 2007 Sports Sony Computer Entertainment 0.26
## 6180 GBA 2001 Platform Interplay 0.20
## 6181 PS2 2006 Racing Atari 0.12
## 6182 WiiU 2012 Misc Nintendo 0.13
## 6183 DS 2007 Simulation Activision 0.26
## 6184 DS 2010 Misc Electronic Arts 0.16
## 6185 DS 2010 Racing THQ 0.18
## 6186 PS2 2004 Fighting Eidos Interactive 0.14
## 6187 X360 2007 Fighting Sega 0.20
## 6188 GBA 2002 Action Ubisoft 0.20
## 6189 PS 1998 Fighting Sony Computer Entertainment 0.09
## 6190 PS2 2006 Role-Playing 505 Games 0.14
## 6191 X360 2009 Platform Capcom 0.12
## 6192 PS2 2002 Sports Midway Games 0.14
## 6193 SNES 1995 Platform Laguna 0.03
## 6194 XB 2004 Sports Electronic Arts 0.21
## 6195 PS3 2011 Action Electronic Arts 0.11
## 6197 PS 1995 Sports Konami Digital Entertainment 0.16
## 6198 GBA 2003 Racing TDK Mediactive 0.20
## 6199 SNES 1992 Sports Ocean 0.00
## 6200 PS3 2014 Misc Ubisoft 0.12
## 6201 GC 2004 Action THQ 0.22
## 6202 XB 2001 Action Konami Digital Entertainment 0.21
## 6203 X360 2011 Sports Activision 0.24
## 6204 PS4 2016 Action Square Enix 0.00
## 6205 3DS 2012 Misc Activision 0.13
## 6206 PS4 2016 Sports Konami Digital Entertainment 0.00
## 6207 PS2 2007 Role-Playing Tecmo Koei 0.14
## 6208 PC 2004 Strategy Atari 0.01
## 6209 PS2 2001 Sports THQ 0.14
## 6210 PS2 2002 Sports Midway Games 0.14
## 6211 PSV 2014 Action Nippon Ichi Software 0.10
## 6213 DS 2006 Platform Activision 0.25
## 6214 PS2 2000 Sports Midas Interactive Entertainment 0.14
## 6215 DS 2010 Adventure Activision 0.26
## 6216 PSP 2007 Action Take-Two Interactive 0.23
## 6217 PS2 2001 Shooter Eidos Interactive 0.05
## 6218 SAT 1997 Strategy Elf 0.00
## 6219 PSP 2011 Misc Sony Computer Entertainment 0.05
## 6220 DS 2010 Misc Warner Bros. Interactive Entertainment 0.26
## 6221 PS 1998 Strategy Activision 0.15
## 6222 PS3 2009 Misc Activision 0.14
## 6223 PS2 2008 Action Namco Bandai Games 0.00
## 6224 XB 2005 Platform Activision 0.21
## 6225 Wii 2010 Action Activision 0.15
## 6226 PS2 2009 Action Activision 0.11
## 6227 SNES 1992 Racing Video System 0.00
## 6228 WiiU 2012 Role-Playing Electronic Arts 0.14
## 6229 DS 2011 Misc GameMill Entertainment 0.26
## 6230 SAT 1994 Simulation Sega 0.00
## 6231 PS2 2003 Sports Atari 0.14
## 6232 GC 2003 Misc Nintendo 0.00
## 6233 DS 2006 Puzzle Sega 0.00
## 6234 PS 1998 Role-Playing Konami Digital Entertainment 0.00
## 6235 X360 2006 Sports Electronic Arts 0.24
## 6236 PC 2012 Action Electronic Arts 0.09
## 6237 GC 2001 Sports Acclaim Entertainment 0.21
## 6238 Wii 2008 Misc MTV Games 0.25
## 6239 DS 2008 Misc Ubisoft 0.25
## 6240 PS3 2013 Platform Sony Computer Entertainment Europe 0.11
## 6241 PS 1998 Fighting Electronic Arts 0.15
## 6242 PS2 2008 Action THQ 0.14
## 6243 XB 2005 Action Activision 0.21
## 6244 PS2 2003 Sports Acclaim Entertainment 0.14
## 6245 PS2 2008 Sports Electronic Arts 0.14
## 6246 Wii 2008 Adventure Namco Bandai Games 0.00
## 6247 Wii 2010 Action THQ 0.22
## 6248 X360 2011 Action Capcom 0.17
## 6249 GBA 2001 Sports Konami Digital Entertainment 0.00
## 6250 PS2 2002 Adventure Ubisoft 0.14
## 6251 GBA 2003 Platform Konami Digital Entertainment 0.20
## 6252 PSP 2011 Sports Take-Two Interactive 0.22
## 6253 PC 2010 Strategy Ubisoft 0.04
## 6254 SAT 1996 Shooter Namco Bandai Games 0.00
## 6255 PS 1997 Simulation From Software 0.06
## 6256 GB 2000 Platform Nintendo 0.00
## 6257 3DS 2012 Misc Nippon Columbia 0.00
## 6258 Wii 2009 Racing Nintendo 0.26
## 6259 PSP 2012 Sports Konami Digital Entertainment 0.00
## 6260 PS4 2015 Action Activision 0.13
## 6261 SNES 1995 Misc Nichibutsu 0.00
## 6262 PSP 2008 Action Spike 0.06
## 6263 PS2 2007 Sports Activision Value 0.13
## 6264 DS 2007 Misc Nintendo 0.00
## 6265 PS2 2000 Sports Take-Two Interactive 0.13
## 6266 2600 1982 Action Coleco 0.26
## 6267 Wii 2014 Adventure Little Orbit 0.05
## 6268 DS 2007 Misc Electronic Arts 0.25
## 6269 XB 2003 Fighting Microsoft Game Studios 0.21
## 6270 PS3 2010 Sports Activision 0.18
## 6271 PS 1996 Fighting Tomy Corporation 0.00
## 6272 GC 2004 Fighting Atari 0.21
## 6274 GBA 2002 Racing Konami Digital Entertainment 0.20
## 6275 PS 1998 Action Capcom 0.00
## 6276 PS 1997 Action Tecmo Koei 0.09
## 6277 GBA 2001 Puzzle Unknown 0.20
## 6278 Wii 2013 Misc Majesco Entertainment 0.14
## 6279 DS 2005 Racing Electronic Arts 0.24
## 6280 PS2 2004 Role-Playing Square Enix 0.00
## 6281 PS 2001 Action Conspiracy Entertainment 0.15
## 6282 XB 2001 Sports Midway Games 0.20
## 6283 X360 2010 Action Sega 0.15
## 6285 DS 2009 Simulation Electronic Arts 0.25
## 6286 PS2 2009 Misc Electronic Arts 0.09
## 6287 DS 2008 Role-Playing Konami Digital Entertainment 0.09
## 6288 PS 2000 Adventure THQ 0.15
## 6289 PS 1997 Fighting Namco Bandai Games 0.02
## 6290 PS 2000 Sports Natsume 0.15
## 6291 PS 2001 Sports Acclaim Entertainment 0.15
## 6292 PS4 2015 Role-Playing Focus Home Interactive 0.09
## 6293 X360 2010 Strategy Ubisoft 0.12
## 6294 PS3 2013 Misc Sega 0.08
## 6295 DS 2006 Action Capcom 0.12
## 6296 DS 2005 Puzzle Namco Bandai Games 0.16
## 6297 2600 1984 Racing Activision 0.26
## 6298 PSP 2010 Simulation Sony Computer Entertainment 0.02
## 6299 PC 2014 Action Bethesda Softworks 0.09
## 6300 PS2 2004 Sports Sony Computer Entertainment 0.13
## 6301 PS 1996 Simulation Microprose 0.15
## 6302 PSP 2009 Sports Konami Digital Entertainment 0.00
## 6303 PSP 2006 Strategy Namco Bandai Games 0.00
## 6304 PS 2000 Sports Eidos Interactive 0.15
## 6305 PS2 2002 Racing Codemasters 0.13
## 6306 GC 2003 Role-Playing Nintendo 0.21
## 6307 SNES 1993 Fighting Namco Bandai Games 0.00
## 6308 X360 2008 Shooter Sega 0.15
## 6309 SNES 1994 Sports Namco Bandai Games 0.00
## 6310 3DS 2012 Misc Sega 0.07
## 6311 PS2 2004 Action Ubisoft 0.13
## 6312 GBA 2002 Racing Infogrames 0.19
## 6313 X360 2011 Sports Ubisoft 0.14
## 6314 PSP 2006 Sports Electronic Arts 0.20
## 6316 X360 2006 Sports Electronic Arts 0.25
## 6318 2600 1980 Misc Activision 0.25
## 6319 PS2 2009 Action Disney Interactive Studios 0.12
## 6321 PS3 2011 Action Ubisoft 0.06
## 6322 XB 2004 Racing Microsoft Game Studios 0.18
## 6323 GB 1996 Role-Playing ChunSoft 0.00
## 6324 PS2 2001 Racing Eidos Interactive 0.13
## 6325 GBA 2006 Platform Activision 0.19
## 6326 PS4 2015 Role-Playing Nippon Ichi Software 0.10
## 6327 GC 2005 Platform Disney Interactive Studios 0.21
## 6328 DS 2010 Strategy Ubisoft 0.09
## 6329 GC 2002 Platform Electronic Arts 0.21
## 6330 PS3 2014 Action Capcom 0.00
## 6331 GBA 2002 Role-Playing Konami Digital Entertainment 0.00
## 6332 GBA 2002 Fighting THQ 0.19
## 6333 GB 2000 Role-Playing Imagineer 0.00
## 6334 PS2 2004 Role-Playing Square Enix 0.13
## 6335 PS4 2014 Adventure Focus Home Interactive 0.08
## 6336 XB 2005 Racing Electronic Arts 0.20
## 6337 Wii 2007 Simulation THQ 0.24
## 6338 PS2 2004 Shooter THQ 0.13
## 6339 PS3 2008 Action Activision 0.20
## 6340 XB 2001 Sports Electronic Arts 0.20
## 6341 DS 2008 Misc Nordic Games 0.25
## 6342 PC 2011 Strategy Kalypso Media 0.10
## 6343 N64 1997 Sports Konami Digital Entertainment 0.25
## 6344 N64 1998 Sports Konami Digital Entertainment 0.00
## 6345 N64 1998 Sports Acclaim Entertainment 0.25
## 6346 N64 1999 Action Acclaim Entertainment 0.18
## 6347 N64 1999 Strategy Nintendo 0.22
## 6348 X360 2011 Shooter Ubisoft 0.14
## 6349 PS2 2005 Action Capcom 0.13
## 6350 3DS 2012 Action Nintendo 0.00
## 6351 PSP 2005 Role-Playing Ubisoft 0.00
## 6352 PS2 2007 Action Electronic Arts 0.13
## 6353 DS 2011 Misc D3Publisher 0.13
## 6354 PC 2013 Racing Electronic Arts 0.04
## 6355 PS2 2007 Racing THQ 0.13
## 6356 XB 2005 Action Activision 0.20
## 6357 GBA 2001 Sports Activision 0.19
## 6358 PS2 2000 Racing Namco Bandai Games 0.06
## 6359 DS 2010 Action THQ 0.13
## 6360 Wii 2008 Sports DTP Entertainment 0.23
## 6361 X360 2008 Misc Konami Digital Entertainment 0.25
## 6362 DS 2008 Role-Playing Atlus 0.10
## 6363 XOne 2014 Action Warner Bros. Interactive Entertainment 0.13
## 6364 SNES 1995 Sports Konami Digital Entertainment 0.00
## 6365 PS3 2008 Action Sega 0.22
## 6366 X360 2013 Action Capcom 0.12
## 6367 Wii 2010 Sports Take-Two Interactive 0.25
## 6368 PS3 2011 Racing Activision 0.25
## 6369 SNES 1994 Simulation Hect 0.00
## 6370 DS 2009 Role-Playing Atlus 0.14
## 6371 GBA 2001 Role-Playing Nintendo 0.00
## 6372 PS2 2001 Racing Acclaim Entertainment 0.13
## 6373 GC 2003 Sports Electronic Arts 0.21
## 6374 X360 2015 Fighting Namco Bandai Games 0.16
## 6375 XB 2002 Racing Electronic Arts 0.20
## 6376 X360 2009 Shooter SouthPeak Games 0.15
## 6377 PS 1999 Racing Electronic Arts 0.15
## 6378 DS 2010 Simulation Nintendo 0.25
## 6379 X360 2009 Role-Playing Square Enix 0.25
## 6380 DS 2010 Strategy Nintendo 0.00
## 6381 PS4 2016 Racing Codemasters 0.01
## 6382 GBA 2005 Misc Zoo Digital Publishing 0.19
## 6383 X360 2011 Misc Activision 0.25
## 6384 X360 2007 Action THQ 0.23
## 6385 X360 2008 Action Sega 0.22
## 6386 Wii 2009 Misc Take-Two Interactive 0.24
## 6387 PS 1999 Role-Playing Activision 0.15
## 6388 PS2 2002 Shooter BAM! Entertainment 0.13
## 6389 PS2 2010 Action Warner Bros. Interactive Entertainment 0.08
## 6390 PS 1998 Sports Konami Digital Entertainment 0.00
## 6391 3DS 2016 Adventure Capcom 0.00
## 6392 GC 2006 Simulation Electronic Arts 0.21
## 6393 DS 2008 Puzzle Majesco Entertainment 0.24
## 6394 3DS 2013 Action Warner Bros. Interactive Entertainment 0.16
## 6395 X360 2007 Sports Take-Two Interactive 0.18
## 6396 PS2 2003 Racing Sega 0.00
## 6397 DS 2007 Sports Electronic Arts 0.24
## 6398 PS2 2003 Simulation Konami Digital Entertainment 0.13
## 6399 DS 2009 Misc Ubisoft 0.25
## 6400 PS 1995 Shooter GT Interactive 0.15
## 6401 X360 2010 Action Rising Star Games 0.18
## 6403 Wii 2009 Puzzle THQ 0.25
## 6404 PS 2000 Sports Sony Computer Entertainment 0.15
## 6405 XB 2002 Sports Electronic Arts 0.20
## 6406 DS 2011 Misc Activision 0.25
## 6407 PS4 2015 Shooter 505 Games 0.09
## 6408 3DS 2014 Action Unknown 0.15
## 6409 DS 2010 Adventure THQ 0.19
## 6410 PSP 2006 Sports Electronic Arts 0.24
## 6411 PS 1996 Fighting Sony Computer Entertainment 0.06
## 6412 PS3 2014 Adventure Activision 0.11
## 6413 PS 1998 Role-Playing Crave Entertainment 0.15
## 6414 SNES 1995 Puzzle Banpresto 0.00
## 6415 X360 2009 Sports Activision Value 0.25
## 6416 PS2 2005 Fighting Namco Bandai Games 0.13
## 6417 PS2 2004 Strategy Atari 0.13
## 6418 PSV 2012 Action Tecmo Koei 0.13
## 6419 DS 2007 Puzzle Mumbo Jumbo 0.25
## 6420 X360 2006 Action Electronic Arts 0.23
## 6421 PS2 2007 Adventure Ubisoft 0.13
## 6422 DS 2009 Misc Mentor Interactive 0.25
## 6423 PSV 2011 Action Tecmo Koei 0.06
## 6424 Wii 2009 Sports Take-Two Interactive 0.25
## 6425 PS3 2010 Sports Konami Digital Entertainment 0.00
## 6426 GBA 2003 Action Majesco Entertainment 0.19
## 6427 XOne 2015 Action Electronic Arts 0.15
## 6428 PS3 2011 Action Tecmo Koei 0.04
## 6429 Wii 2008 Sports Ubisoft 0.24
## 6430 Wii 2009 Simulation Ubisoft 0.25
## 6431 DS 2007 Simulation Majesco Entertainment 0.24
## 6432 Wii 2009 Misc Konami Digital Entertainment 0.16
## 6433 PS2 2006 Action Ubisoft 0.13
## 6434 Wii 2009 Sports Take-Two Interactive 0.14
## 6435 PS3 2012 Role-Playing Tecmo Koei 0.06
## 6436 X360 2012 Action Activision 0.18
## 6437 PSP 2010 Fighting Namco Bandai Games 0.11
## 6438 GBA 2004 Misc N/A 0.19
## 6439 XB 2003 Sports Sega 0.20
## 6440 PS 1997 Sports Tecmo Koei 0.00
## 6441 PS3 2006 Sports Sony Computer Entertainment 0.24
## 6442 PS2 2002 Misc Pacific Century Cyber Works 0.11
## 6443 Wii 2010 Shooter Mastiff 0.25
## 6444 X360 2007 Sports Take-Two Interactive 0.24
## 6445 GBA 2002 Role-Playing Atari 0.19
## 6446 X360 2014 Racing Ubisoft 0.06
## 6447 Wii 2011 Misc THQ 0.23
## 6448 X360 2007 Strategy Eidos Interactive 0.21
## 6449 DS 2005 Platform Ubisoft 0.21
## 6450 PS3 2013 Action Namco Bandai Games 0.00
## 6451 DC 1998 Shooter Sega 0.00
## 6452 Wii 2010 Action Electronic Arts 0.22
## 6453 PS3 2010 Simulation Namco Bandai Games 0.00
## 6454 Wii 2009 Simulation Electronic Arts 0.22
## 6455 PS2 2001 Action Take-Two Interactive 0.13
## 6456 XB 2002 Shooter Sega 0.16
## 6457 PS 1999 Sports Konami Digital Entertainment 0.00
## 6458 PS3 2010 Role-Playing Spike 0.24
## 6459 PS 1996 Role-Playing From Software 0.08
## 6460 PSV 2014 Misc Nippon Ichi Software 0.13
## 6461 3DS 2013 Action Namco Bandai Games 0.00
## 6462 DS 2009 Role-Playing Hudson Soft 0.08
## 6463 PS 1996 Sports Sony Computer Entertainment 0.15
## 6464 PS2 2007 Simulation Ubisoft 0.13
## 6465 PS2 2008 Shooter Activision Value 0.13
## 6466 Wii 2015 Action Activision 0.05
## 6467 PC 2008 Strategy Microsoft Game Studios 0.04
## 6468 PS 1997 Platform Sony Computer Entertainment 0.15
## 6469 DS 2009 Simulation Konami Digital Entertainment 0.00
## 6470 DS 2007 Role-Playing Namco Bandai Games 0.00
## 6471 PS2 2006 Sports Midway Games 0.13
## 6472 PSV 2014 Fighting Namco Bandai Games 0.00
## 6473 GBA 2002 Action THQ 0.19
## 6474 GEN 1994 Racing Sega 0.00
## 6475 PSP 2005 Racing Vivendi Games 0.16
## 6476 PS3 2010 Action Deep Silver 0.05
## 6477 PS2 2008 Adventure Disney Interactive Studios 0.09
## 6478 DS 2007 Misc Nintendo 0.00
## 6479 Wii 2009 Simulation Namco Bandai Games 0.24
## 6480 DS 2008 Adventure Codemasters 0.24
## 6481 3DS 2013 Sports Level 5 0.00
## 6482 PS2 2004 Racing Take-Two Interactive 0.13
## 6483 DS 2010 Misc Ubisoft 0.22
## 6484 PS2 2007 Role-Playing Sega 0.10
## 6485 Wii 2010 Simulation Atari 0.24
## 6486 PS3 2013 Sports Konami Digital Entertainment 0.00
## 6487 GBA 2002 Action THQ 0.19
## 6488 PS2 2006 Action Capcom 0.00
## 6489 PSP 2006 Fighting Namco Bandai Games 0.26
## 6490 Wii 2011 Role-Playing Nintendo 0.00
## 6491 GBA 2002 Platform THQ 0.19
## 6492 GBA 2006 Role-Playing Nintendo 0.00
## 6493 GBA 2005 Racing Electronic Arts 0.19
## 6494 PSV 2012 Misc Ubisoft 0.11
## 6495 PS 2000 Simulation Activision 0.15
## 6496 Wii 2009 Role-Playing Square Enix 0.13
## 6498 DS 2008 Simulation Majesco Entertainment 0.24
## 6499 GC 2002 Shooter LucasArts 0.20
## 6500 PS2 2002 Fighting Ubisoft 0.13
## 6501 DS 2011 Adventure Capcom 0.00
## 6502 Wii 2010 Misc Zoo Games 0.25
## 6503 DS 2007 Misc 505 Games 0.24
## 6504 Wii 2010 Sports Ubisoft 0.14
## 6505 DS 2009 Puzzle Warner Bros. Interactive Entertainment 0.00
## 6506 PC 2006 Role-Playing Take-Two Interactive 0.01
## 6507 PS3 2011 Sports Konami Digital Entertainment 0.00
## 6508 DS 2004 Sports Electronic Arts 0.24
## 6509 3DS 2014 Action Activision 0.14
## 6510 GBA 2006 Misc Konami Digital Entertainment 0.14
## 6511 GBA 2003 Sports Konami Digital Entertainment 0.00
## 6512 GBA 2004 Adventure Banpresto 0.00
## 6513 X360 2010 Strategy PopCap Games 0.24
## 6514 PS2 2002 Racing BAM! Entertainment 0.13
## 6515 PS3 2009 Misc Disney Interactive Studios 0.17
## 6516 DS 2009 Action Activision 0.17
## 6517 3DS 2013 Role-Playing Atlus 0.10
## 6518 PS 1999 Misc Enix Corporation 0.04
## 6519 PSP 2009 Misc Sega 0.00
## 6520 PS3 2007 Racing THQ 0.18
## 6521 PSP 2008 Fighting Namco Bandai Games 0.00
## 6522 PSP 2009 Action Capcom 0.00
## 6523 N64 1996 Action Activision 0.21
## 6524 N64 2000 Simulation LucasArts 0.21
## 6525 N64 1999 Shooter GT Interactive 0.21
## 6526 N64 1999 Shooter Acclaim Entertainment 0.21
## 6527 PS2 2007 Sports Electronic Arts 0.13
## 6528 PS2 2004 Simulation Indie Games 0.06
## 6529 PS2 2002 Sports Konami Digital Entertainment 0.13
## 6530 GBA 2002 Adventure NewKidCo 0.19
## 6531 PSV 2013 Role-Playing Marvelous Entertainment 0.13
## 6532 PS3 2014 Action Sega 0.00
## 6533 PSP 2009 Action Activision 0.11
## 6534 X360 2010 Sports Activision 0.17
## 6535 XB 2003 Sports TDK Mediactive 0.19
## 6536 GC 2001 Adventure Ubisoft 0.20
## 6537 X360 2014 Action Activision 0.10
## 6538 2600 1981 Sports Atari 0.24
## 6539 PS2 2009 Sports Electronic Arts 0.12
## 6540 DS 2007 Strategy Namco Bandai Games 0.00
## 6541 PS3 2007 Action Ubisoft 0.20
## 6542 Wii 2009 Action Activision 0.14
## 6543 XB 2003 Role-Playing Atari 0.19
## 6544 PS3 2012 Adventure Focus Home Interactive 0.05
## 6545 X360 2012 Role-Playing Focus Home Interactive 0.15
## 6546 DS 2011 Misc Rising Star Games 0.15
## 6547 PS 2000 Racing Acclaim Entertainment 0.14
## 6548 PS2 2001 Role-Playing Eidos Interactive 0.13
## 6549 GC 2003 Racing Vivendi Games 0.20
## 6550 Wii 2008 Misc Hudson Soft 0.01
## 6551 PSP 2009 Sports Sony Computer Entertainment 0.24
## 6552 DS 2004 Puzzle Nintendo 0.13
## 6553 PS3 2014 Action Tecmo Koei 0.00
## 6554 X360 2014 Racing Codemasters 0.08
## 6555 GBA 2004 Action Nintendo 0.10
## 6556 Wii 2007 Action THQ 0.24
## 6557 X360 2005 Action Ubisoft 0.20
## 6558 DS 2008 Adventure Game Factory 0.24
## 6559 PS2 2005 Simulation Banpresto 0.00
## 6560 GBA 2003 Action Konami Digital Entertainment 0.18
## 6561 SAT 1997 Fighting Capcom 0.00
## 6562 X360 2013 Shooter Electronic Arts 0.16
## 6563 GBA 2004 Misc N/A 0.18
## 6564 XB 2005 Adventure Electronic Arts 0.19
## 6565 PSP 2007 Racing Sega 0.03
## 6566 PS2 2004 Fighting Ignition Entertainment 0.13
## 6567 PS 1998 Fighting Virgin Interactive 0.14
## 6568 X360 2008 Shooter Atari 0.08
## 6569 SAT 1996 Sports Sega 0.00
## 6570 Wii 2009 Sports 505 Games 0.17
## 6571 PS3 2013 Action Namco Bandai Games 0.10
## 6572 PS2 2002 Adventure Sony Computer Entertainment 0.13
## 6573 X360 2006 Sports Tecmo Koei 0.15
## 6574 Wii 2008 Simulation Ubisoft 0.23
## 6575 XB 2005 Misc THQ 0.19
## 6576 PS 1998 Racing Takara 0.00
## 6577 PS3 2012 Action Sony Computer Entertainment 0.00
## 6578 PS3 2011 Action Bethesda Softworks 0.12
## 6579 GC 2004 Platform Activision 0.20
## 6580 DS 2006 Adventure Disney Interactive Studios 0.23
## 6581 GBA 2002 Platform Electronic Arts 0.18
## 6582 PS 1999 Simulation From Software 0.07
## 6583 SNES 1999 Strategy Nintendo 0.00
## 6584 2600 1987 Shooter Atari 0.24
## 6585 PS3 2008 Racing Electronic Arts 0.22
## 6586 SAT 1997 Role-Playing Hudson Soft 0.00
## 6587 PS2 2007 Simulation Banpresto 0.00
## 6588 GBA 2002 Racing Liquid Games 0.18
## 6589 WiiU 2016 Action Nintendo 0.03
## 6590 DS 2009 Adventure Take-Two Interactive 0.24
## 6591 GC 2002 Sports Infogrames 0.20
## 6592 XB 2002 Sports Acclaim Entertainment 0.19
## 6593 PC 2010 Simulation Ubisoft 0.00
## 6594 PS2 2004 Racing Activision 0.13
## 6595 PS2 2009 Adventure Eidos Interactive 0.00
## 6596 PS 1999 Sports Electronic Arts 0.14
## 6597 PC 2011 Action LucasArts 0.10
## 6598 PS2 2003 Sports Sony Computer Entertainment 0.13
## 6599 PSP 2005 Racing Codemasters 0.00
## 6600 GBA 2002 Strategy Banpresto 0.00
## 6601 GBA 2002 Platform Konami Digital Entertainment 0.16
## 6602 DS 2005 Misc Nintendo 0.21
## 6603 PS2 2001 Racing Sony Computer Entertainment 0.13
## 6604 Wii 2011 Misc Take-Two Interactive 0.23
## 6605 SAT 1996 Role-Playing NEC 0.00
## 6606 XB 2004 Role-Playing Acclaim Entertainment 0.19
## 6607 GC 2004 Sports Electronic Arts 0.20
## 6608 GBA 2001 Fighting Ubisoft 0.18
## 6609 XB 2003 Simulation LucasArts 0.19
## 6610 PS 1998 Sports Axela 0.00
## 6611 PS3 2007 Action Electronic Arts 0.16
## 6612 SAT 1998 Strategy Namco Bandai Games 0.00
## 6613 DS 2008 Simulation Ubisoft 0.23
## 6614 PS2 2006 Action THQ 0.12
## 6615 DS 2010 Role-Playing Activision 0.22
## 6616 PSP 2007 Misc Crave Entertainment 0.24
## 6617 PS 1999 Role-Playing 3DO 0.14
## 6618 PS3 2012 Adventure Sony Computer Entertainment Europe 0.04
## 6619 PS4 2015 Platform Sony Computer Entertainment 0.09
## 6620 PS2 2009 Action LucasArts 0.17
## 6621 GC 2002 Adventure Vivendi Games 0.15
## 6622 X360 2008 Racing Electronic Arts 0.23
## 6623 PS2 2000 Sports Take-Two Interactive 0.12
## 6624 SNES 1991 Strategy Tecmo Koei 0.00
## 6625 PS3 2009 Shooter Vivendi Games 0.12
## 6626 Wii 2008 Action Capcom 0.14
## 6627 3DS 2011 Simulation Ubisoft 0.11
## 6628 GBA 2006 Platform Vivendi Games 0.18
## 6629 DS 2006 Action Disney Interactive Studios 0.23
## 6630 XB 2005 Misc Activision 0.19
## 6631 PS3 2014 Misc Sega 0.09
## 6632 SAT 1994 Shooter Acclaim Entertainment 0.00
## 6633 GB 2000 Sports Konami Digital Entertainment 0.00
## 6634 PS3 2012 Role-Playing Focus Home Interactive 0.10
## 6635 GC 2006 Action Midway Games 0.20
## 6636 PS2 2003 Misc Disney Interactive Studios 0.12
## 6637 XB 2002 Sports Electronic Arts 0.19
## 6638 DS 2009 Misc Ubisoft 0.21
## 6639 PS 1998 Fighting Titus 0.14
## 6640 GBA 2002 Platform Disney Interactive Studios 0.18
## 6641 PSP 2010 Misc Sega 0.00
## 6642 PS 1994 Strategy ArtDink 0.00
## 6643 XB 2001 Misc Microsoft Game Studios 0.19
## 6644 PS 1999 Misc Ubisoft 0.14
## 6645 Wii 2007 Sports Activision 0.22
## 6646 XB 2003 Sports Microsoft Game Studios 0.20
## 6647 PS 2000 Shooter Sunsoft 0.14
## 6649 GBA 2004 Misc N/A 0.18
## 6650 X360 2006 Racing THQ 0.22
## 6651 X360 2012 Action Activision 0.14
## 6652 X360 2011 Action THQ 0.16
## 6653 PS3 2009 Action THQ 0.15
## 6654 PS3 2012 Simulation Konami Digital Entertainment 0.10
## 6655 X360 2008 Action Activision 0.12
## 6656 PS 1996 Racing Psygnosis 0.14
## 6657 DS 2007 Simulation Empire Interactive 0.09
## 6658 PS 2001 Action BAM! Entertainment 0.14
## 6659 X360 2007 Action Electronic Arts 0.22
## 6660 PS2 2008 Action Tecmo Koei 0.00
## 6661 PS3 2011 Misc Ubisoft 0.10
## 6662 3DS 2013 Sports Electronic Arts 0.00
## 6663 XB 2004 Shooter Vivendi Games 0.19
## 6664 GBA 2001 Puzzle Activision 0.10
## 6665 GC 2005 Shooter Electronic Arts 0.19
## 6666 Wii 2008 Action Activision 0.22
## 6667 GC 2003 Platform Sega 0.19
## 6668 GBA 2001 Misc Midway Games 0.18
## 6669 X360 2009 Action THQ 0.25
## 6670 WS 2001 Role-Playing SquareSoft 0.00
## 6671 PS2 2002 Racing Sony Computer Entertainment 0.12
## 6672 X360 2011 Action Activision 0.18
## 6673 PSP 2008 Sports Electronic Arts 0.06
## 6674 PS 1997 Role-Playing Gust 0.00
## 6675 X360 2006 Action THQ 0.21
## 6676 GBA 2004 Misc Majesco Entertainment 0.18
## 6677 XB 2005 Sports Electronic Arts 0.19
## 6678 XB 2004 Misc Atari 0.19
## 6679 PS 2000 Fighting Ubisoft 0.14
## 6680 XB 2003 Shooter Ubisoft 0.16
## 6681 X360 2007 Racing THQ 0.23
## 6682 NG 1994 Fighting SNK 0.00
## 6683 Wii 2007 Fighting Midway Games 0.21
## 6684 X360 2008 Sports Take-Two Interactive 0.14
## 6685 N64 1999 Role-Playing Konami Digital Entertainment 0.16
## 6686 N64 1999 Sports Midway Games 0.23
## 6687 N64 1998 Sports Fox Interactive 0.20
## 6688 N64 1997 Misc Take-Two Interactive 0.20
## 6689 N64 1997 Racing Ocean 0.20
## 6690 N64 1997 Racing Ubisoft 0.11
## 6691 N64 1998 Action GT Interactive 0.20
## 6692 N64 1997 Sports Midway Games 0.23
## 6693 N64 1999 Sports Nintendo 0.20
## 6694 PS4 2015 Fighting Namco Bandai Games 0.07
## 6695 Wii 2010 Misc Mindscape 0.00
## 6696 PS2 2008 Action Vivendi Games 0.12
## 6697 GC 2003 Fighting Electronic Arts 0.19
## 6698 PS2 2005 Platform THQ 0.12
## 6699 PS 1996 Racing Sony Computer Entertainment 0.00
## 6700 XB 2005 Simulation Electronic Arts 0.19
## 6701 PS 1998 Misc Interplay 0.14
## 6702 XOne 2015 Role-Playing Square Enix 0.15
## 6703 PS2 2003 Sports Sega 0.12
## 6704 DS 2006 Role-Playing Nintendo 0.00
## 6705 SAT 1998 Sports Sega 0.00
## 6706 PC 2011 Adventure Take-Two Interactive 0.08
## 6707 SAT 1998 Adventure NEC Interchannel 0.00
## 6708 PC 2012 Action Square Enix 0.03
## 6709 X360 2008 Adventure Disney Interactive Studios 0.18
## 6710 PSP 2009 Role-Playing Activision 0.17
## 6711 3DS 2015 Role-Playing FuRyu 0.11
## 6712 PSP 2009 Role-Playing Nippon Ichi Software 0.10
## 6713 PS2 2005 Action Capcom 0.03
## 6714 Wii 2008 Misc Disney Interactive Studios 0.20
## 6715 PS 1995 Sports Acclaim Entertainment 0.14
## 6716 X360 2006 Shooter Ubisoft 0.20
## 6717 GBA 2002 Role-Playing Natsume 0.18
## 6718 GBA 2002 Sports Konami Digital Entertainment 0.00
## 6719 PS3 2011 Action Activision 0.14
## 6720 PS 1998 Action Acclaim Entertainment 0.14
## 6721 Wii 2009 Action Activision 0.19
## 6722 PS2 2002 Sports Namco Bandai Games 0.00
## 6723 X360 2012 Action Tecmo Koei 0.16
## 6724 PS3 2010 Platform D3Publisher 0.12
## 6725 PS3 2015 Action Sega 0.00
## 6726 Wii 2010 Action Ubisoft 0.11
## 6727 PS2 2008 Action Tecmo Koei 0.12
## 6728 DS 2009 Simulation Ubisoft 0.16
## 6729 2600 1982 Action 20th Century Fox Video Games 0.23
## 6730 XB 2005 Shooter Ubisoft 0.19
## 6731 PS 1999 Role-Playing Ubisoft 0.14
## 6732 PS3 2010 Misc Sony Computer Entertainment 0.07
## 6733 X360 2007 Simulation 505 Games 0.19
## 6734 PS 2000 Racing Electronic Arts 0.14
## 6735 DS 2009 Simulation Electronic Arts 0.23
## 6736 Wii 2010 Platform THQ 0.22
## 6737 PS2 2006 Adventure Ubisoft 0.12
## 6738 Wii 2007 Sports Capcom 0.20
## 6739 PS2 2001 Racing Sony Computer Entertainment 0.12
## 6740 GC 2005 Platform Midway Games 0.19
## 6741 PS2 2007 Racing THQ 0.12
## 6742 X360 2009 Racing Activision 0.14
## 6743 PS3 2007 Action Electronic Arts 0.18
## 6744 PC 2015 Strategy Ubisoft 0.02
## 6745 PS 1999 Strategy Electronic Arts 0.14
## 6746 DS 2008 Puzzle Rising Star Games 0.06
## 6747 Wii 2009 Role-Playing Capcom 0.00
## 6748 PS3 2009 Racing Codemasters 0.08
## 6749 PS3 2010 Misc Electronic Arts 0.18
## 6750 X360 2013 Action Konami Digital Entertainment 0.06
## 6751 PS 1996 Shooter Konami Digital Entertainment 0.14
## 6752 PS 1996 Platform Sony Computer Entertainment 0.05
## 6753 GC 2002 Misc Atari 0.19
## 6754 PS3 2008 Racing Black Bean Games 0.12
## 6755 PS2 2004 Role-Playing Square Enix 0.12
## 6756 PS 1997 Racing Takara 0.00
## 6757 DS 2009 Adventure Disney Interactive Studios 0.22
## 6758 GBA 2002 Action Vivendi Games 0.18
## 6759 PS3 2007 Sports Spike 0.23
## 6760 GC 2005 Role-Playing Activision 0.19
## 6761 GBA 2005 Misc Zoo Digital Publishing 0.18
## 6762 PSP 2007 Racing Ubisoft 0.03
## 6763 PS3 2008 Shooter Codemasters 0.21
## 6764 GC 2002 Sports Nintendo 0.19
## 6765 3DS 2014 Adventure Little Orbit 0.04
## 6766 X360 2011 Action Ubisoft 0.07
## 6767 GBA 2004 Racing Nintendo 0.11
## 6768 GBA 2004 Shooter Nintendo 0.08
## 6769 PS2 2008 Adventure THQ 0.12
## 6770 DS 2013 Simulation Disney Interactive Studios 0.13
## 6771 PS2 2005 Adventure Global Star 0.12
## 6772 DS 2008 Role-Playing Namco Bandai Games 0.00
## 6773 PS2 2006 Role-Playing Namco Bandai Games 0.12
## 6774 X360 2011 Action Tecmo Koei 0.16
## 6775 GBA 2005 Simulation Ubisoft 0.18
## 6776 PS 2001 Sports Konami Digital Entertainment 0.00
## 6777 DS 2010 Shooter Activision 0.22
## 6779 XOne 2014 Racing Ubisoft 0.12
## 6780 PSV 2015 Action Warner Bros. Interactive Entertainment 0.03
## 6781 DS 2008 Role-Playing Rising Star Games 0.11
## 6782 DS 2006 Adventure Disney Interactive Studios 0.23
## 6783 PS3 2010 Racing Activision 0.21
## 6784 DS 2011 Action Konami Digital Entertainment 0.00
## 6785 PS 1995 Strategy Mindscape 0.14
## 6786 Wii 2009 Adventure Ubisoft 0.12
## 6787 PS 1996 Sports Tecmo Koei 0.04
## 6788 PS 1997 Action Sony Computer Entertainment 0.14
## 6789 PSP 2005 Sports Sony Computer Entertainment 0.23
## 6790 PS 2000 Shooter 3DO 0.14
## 6791 X360 2008 Strategy Electronic Arts 0.16
## 6792 X360 2011 Misc Sega 0.16
## 6793 WiiU 2012 Sports Electronic Arts 0.22
## 6794 PSV 2014 Adventure Marvelous Interactive 0.11
## 6795 PC 2011 Shooter THQ 0.11
## 6796 DS 2009 Misc Disney Interactive Studios 0.08
## 6797 X360 2009 Action Activision 0.20
## 6798 PS2 2002 Misc THQ 0.12
## 6799 PS 1999 Simulation Konami Digital Entertainment 0.00
## 6800 PS2 2003 Sports Konami Digital Entertainment 0.12
## 6801 3DS 2011 Simulation Namco Bandai Games 0.10
## 6802 X360 2009 Sports Activision Value 0.23
## 6803 XB 2004 Racing Namco Bandai Games 0.18
## 6804 PS 1995 Sports Sony Computer Entertainment 0.00
## 6805 PS2 2003 Platform Acclaim Entertainment 0.12
## 6806 DS 2008 Action Sega 0.22
## 6808 PS2 2006 Fighting Capcom 0.11
## 6809 PSP 2011 Sports Konami Digital Entertainment 0.00
## 6810 DS 2009 Adventure Ubisoft 0.10
## 6811 PS2 2005 Shooter Electronic Arts 0.12
## 6812 DS 2006 Adventure Ubisoft 0.11
## 6813 GC 2005 Simulation Ubisoft 0.19
## 6814 XB 2002 Action Capcom 0.14
## 6815 GBA 2005 Platform Nintendo 0.17
## 6816 PS 1997 Fighting Xing Entertainment 0.04
## 6817 PS 1997 Action Psygnosis 0.13
## 6818 PS3 2010 Sports Ubisoft 0.06
## 6819 Wii 2010 Action Activision 0.13
## 6820 XB 2003 Racing TDK Mediactive 0.18
## 6821 PS3 2011 Role-Playing Nippon Ichi Software 0.05
## 6822 PS3 2008 Misc MTV Games 0.21
## 6823 Wii 2010 Sports Hudson Soft 0.15
## 6824 DS 2005 Action Electronic Arts 0.21
## 6825 PSP 2005 Misc Midway Games 0.21
## 6826 XOne 2015 Racing Codemasters 0.08
## 6827 3DS 2013 Platform Activision 0.10
## 6828 Wii 2010 Sports XS Games 0.23
## 6829 PSP 2008 Role-Playing Nippon Ichi Software 0.05
## 6830 Wii 2008 Misc Electronic Arts 0.20
## 6831 XB 2003 Racing Acclaim Entertainment 0.18
## 6832 Wii 2008 Misc MTV Games 0.17
## 6834 PS2 2005 Misc Sega 0.12
## 6835 PSV 2012 Fighting Capcom 0.14
## 6836 XB 2003 Shooter Namco Bandai Games 0.18
## 6837 PSP 2010 Platform D3Publisher 0.10
## 6838 PC 2010 Shooter THQ 0.00
## 6839 GC 2005 Action Ubisoft 0.19
## 6840 3DS 2015 Role-Playing Atlus 0.16
## 6841 Wii 2007 Misc Activision 0.22
## 6842 PS2 2003 Role-Playing Banpresto 0.00
## 6843 PSP 2010 Sports Konami Digital Entertainment 0.00
## 6844 GC 2001 Racing Electronic Arts 0.19
## 6845 Wii 2010 Adventure THQ 0.16
## 6846 Wii 2008 Sports Oxygen Interactive 0.02
## 6847 PS2 2006 Misc Sega 0.00
## 6848 XB 2001 Action Microsoft Game Studios 0.18
## 6849 DS 2007 Role-Playing Rising Star Games 0.16
## 6850 GBA 2004 Misc N/A 0.17
## 6851 Wii 2010 Action Warner Bros. Interactive Entertainment 0.17
## 6852 XB 2005 Fighting Atari 0.18
## 6853 DS 2008 Simulation THQ 0.22
## 6854 PS3 2012 Sports Electronic Arts 0.09
## 6855 PS2 2003 Role-Playing Sega 0.00
## 6856 GBA 2005 Puzzle Namco Bandai Games 0.17
## 6857 PS2 2005 Racing ValuSoft 0.12
## 6858 Wii 2009 Misc Ubisoft 0.22
## 6859 PS2 2007 Racing Activision 0.12
## 6860 PSP 2006 Role-Playing Rising Star Games 0.15
## 6861 GC 2004 Role-Playing Marvelous Interactive 0.19
## 6862 PSP 2009 Sports Electronic Arts 0.21
## 6863 X360 2006 Action Electronic Arts 0.20
## 6864 PS2 2008 Sports Konami Digital Entertainment 0.00
## 6865 PSP 2009 Racing THQ 0.18
## 6866 PS3 2009 Action Activision 0.19
## 6867 2600 1981 Action Taito 0.22
## 6868 N64 1999 Action Midway Games 0.19
## 6869 N64 1999 Misc Acclaim Entertainment 0.19
## 6870 N64 2000 Misc Midway Games 0.19
## 6871 N64 1999 Racing THQ 0.19
## 6872 N64 2000 Fighting Midway Games 0.19
## 6873 N64 2000 Action 3DO 0.19
## 6874 Wii 2008 Misc MTV Games 0.21
## 6875 PS2 2002 Sports Sega 0.12
## 6876 PS3 2009 Action Namco Bandai Games 0.00
## 6877 DS 2011 Action Electronic Arts 0.12
## 6878 XB 2003 Sports Electronic Arts 0.18
## 6879 PS 1998 Platform Ocean 0.13
## 6880 GC 2005 Action Activision 0.19
## 6881 Wii 2009 Sports Codemasters 0.00
## 6882 PSP 2007 Action Take-Two Interactive 0.22
## 6883 GBA 2005 Sports Activision 0.17
## 6884 DS 2007 Racing THQ 0.22
## 6885 DS 2009 Puzzle THQ 0.22
## 6886 DS 2008 Adventure PopCap Games 0.13
## 6887 GBA 2004 Platform Nintendo 0.00
## 6888 PS 1998 Shooter Acclaim Entertainment 0.13
## 6889 PS2 2003 Action Sony Computer Entertainment 0.00
## 6890 PS3 2011 Misc THQ 0.15
## 6891 3DS 2014 Action Warner Bros. Interactive Entertainment 0.09
## 6892 PS4 2014 Action Tecmo Koei 0.08
## 6893 XB 2003 Platform Vivendi Games 0.18
## 6894 PS2 2008 Simulation Konami Digital Entertainment 0.12
## 6895 X360 2012 Racing Codemasters 0.08
## 6896 X360 2009 Role-Playing DTP Entertainment 0.18
## 6897 2600 1980 Misc Atari 0.22
## 6898 SNES 1996 Role-Playing SquareSoft 0.00
## 6899 X360 2011 Action Activision 0.18
## 6900 Wii 2010 Adventure Namco Bandai Games 0.16
## 6901 3DS 2015 Platform Nintendo 0.09
## 6902 XB 2001 Racing Gathering of Developers 0.18
## 6903 PS 2002 Racing XS Games 0.13
## 6904 PSP 2009 Role-Playing GungHo 0.19
## 6905 DS 2010 Adventure Focus Home Interactive 0.07
## 6906 GBA 2004 Action Take-Two Interactive 0.17
## 6907 GBA 2004 Adventure Game Factory 0.17
## 6908 X360 2007 Misc Microsoft Game Studios 0.19
## 6909 DS 2009 Puzzle Ubisoft 0.00
## 6910 X360 2012 Action Capcom 0.15
## 6911 XOne 2016 Action Warner Bros. Interactive Entertainment 0.12
## 6912 X360 2009 Action Tecmo Koei 0.16
## 6913 PS2 2003 Misc Sony Computer Entertainment 0.12
## 6914 PS 1998 Action Interplay 0.13
## 6915 PS2 2004 Role-Playing Midway Games 0.12
## 6916 PSP 2009 Sports Electronic Arts 0.12
## 6917 DS 2008 Misc Activision 0.22
## 6918 PC 2011 Puzzle Focus Home Interactive 0.00
## 6919 PS3 2012 Role-Playing Deep Silver 0.04
## 6921 X360 2015 Misc Activision 0.12
## 6922 WiiU 2013 Misc Nintendo 0.06
## 6923 PS 1995 Sports Electronic Arts 0.13
## 6924 PS4 2014 Action Nippon Ichi Software 0.13
## 6925 X360 2009 Role-Playing Bethesda Softworks 0.16
## 6926 PS 2000 Action Sony Computer Entertainment 0.13
## 6928 X360 2011 Misc THQ 0.16
## 6929 PSV 2012 Action Warner Bros. Interactive Entertainment 0.09
## 6930 Wii 2010 Racing Focus Home Interactive 0.10
## 6931 DS 2009 Puzzle Nintendo 0.00
## 6932 PS 2000 Shooter Hasbro Interactive 0.13
## 6933 X360 2009 Action Electronic Arts 0.17
## 6934 PS3 2010 Role-Playing Tecmo Koei 0.08
## 6935 XB 2006 Sports Electronic Arts 0.18
## 6936 GBA 2003 Action Knowledge Adventure 0.17
## 6937 PSP 2013 Role-Playing Namco Bandai Games 0.00
## 6939 PS 1998 Misc NewKidCo 0.13
## 6940 2600 1988 Action Activision 0.22
## 6941 2600 1981 Shooter Mattel Interactive 0.22
## 6942 DS 2010 Puzzle Storm City Games 0.11
## 6943 X360 2009 Action Atari 0.16
## 6944 X360 2013 Shooter Take-Two Interactive 0.10
## 6945 DS 2008 Role-Playing Sega 0.09
## 6946 Wii 2011 Racing Activision 0.22
## 6947 PSV 2012 Action Konami Digital Entertainment 0.13
## 6948 DS 2006 Role-Playing Konami Digital Entertainment 0.17
## 6949 PS4 2014 Adventure Telltale Games 0.10
## 6950 WiiU 2012 Action Disney Interactive Studios 0.14
## 6951 PC 2011 Role-Playing Sony Online Entertainment 0.16
## 6952 PS2 2007 Racing Electronic Arts 0.12
## 6953 PS3 2008 Action Activision 0.12
## 6954 DS 2010 Misc Take-Two Interactive 0.16
## 6955 DS 2008 Racing Electronic Arts 0.18
## 6956 WiiU 2016 Action Warner Bros. Interactive Entertainment 0.12
## 6957 DS 2006 Role-Playing Takara Tomy 0.22
## 6958 PS2 2003 Platform BAM! Entertainment 0.11
## 6959 PS2 2004 Misc Konami Digital Entertainment 0.11
## 6960 DS 2010 Misc Disney Interactive Studios 0.16
## 6961 DS 2010 Simulation Konami Digital Entertainment 0.00
## 6962 3DS 2015 Role-Playing Nippon Ichi Software 0.09
## 6963 PS2 2006 Action Namco Bandai Games 0.00
## 6964 PS 1998 Fighting Virgin Interactive 0.13
## 6965 DS 2013 Platform Ubisoft 0.00
## 6966 Wii 2009 Misc THQ 0.00
## 6968 DS 2007 Racing Activision 0.22
## 6970 GBA 2003 Strategy Banpresto 0.00
## 6971 XB 2003 Racing Electronic Arts 0.18
## 6972 XB 2002 Action Electronic Arts 0.18
## 6973 PSV 2016 Action Warner Bros. Interactive Entertainment 0.07
## 6974 DS 2010 Action LucasArts 0.18
## 6975 XB 2005 Action Electronic Arts 0.18
## 6976 XOne 2013 Misc Majesco Entertainment 0.17
## 6977 PS3 2011 Action Namco Bandai Games 0.00
## 6978 3DS 2015 Action Nintendo 0.00
## 6979 DS 2005 Puzzle Nintendo 0.15
## 6980 X360 2011 Sports Sega 0.11
## 6981 DS 2011 Action THQ 0.16
## 6982 PS3 2008 Role-Playing Nippon Ichi Software 0.14
## 6983 DS 2008 Simulation 505 Games 0.22
## 6984 PS3 2011 Sports Activision 0.17
## 6985 DC 1999 Sports Sega 0.00
## 6986 PSP 2005 Puzzle Namco Bandai Games 0.13
## 6987 PSV 2011 Action Ubisoft 0.14
## 6988 PC 2015 Strategy Sega 0.09
## 6989 PSP 2005 Sports Electronic Arts 0.19
## 6990 X360 2010 Sports Sega 0.08
## 6991 XB 2002 Sports Sega 0.17
## 6992 PS3 2009 Misc Sony Computer Entertainment 0.00
## 6993 PS2 2004 Racing Atari 0.11
## 6994 XB 2003 Racing Empire Interactive 0.17
## 6995 PS3 2013 Action Tecmo Koei 0.00
## 6996 PSV 2012 Misc Sega 0.00
## 6997 PS3 2008 Shooter Sega 0.14
## 6998 PS3 2011 Misc Sony Computer Entertainment 0.13
## 6999 PS2 2001 Racing Acclaim Entertainment 0.11
## 7000 Wii 2007 Racing Zoo Digital Publishing 0.22
## 7001 Wii 2009 Misc MTV Games 0.22
## 7002 PS2 2002 Action Universal Interactive 0.11
## 7003 PS2 2006 Sports Sega 0.00
## 7004 Wii 2007 Action Warner Bros. Interactive Entertainment 0.21
## 7005 PS2 2005 Role-Playing Capcom 0.00
## 7006 N64 2000 Sports Acclaim Entertainment 0.22
## 7007 PSP 2005 Misc Play It 0.20
## 7008 PS4 2015 Role-Playing Namco Bandai Games 0.09
## 7009 GC 2002 Shooter Activision 0.18
## 7010 GC 2003 Action Ubisoft 0.18
## 7011 Wii 2008 Adventure Activision 0.20
## 7012 X360 2009 Misc MTV Games 0.22
## 7013 Wii 2010 Strategy THQ 0.11
## 7014 PS2 2003 Sports Sega 0.11
## 7015 GB 1997 Simulation Victor Interactive 0.00
## 7016 DS 2009 Simulation Ubisoft 0.16
## 7017 XB 2005 Action Vivendi Games 0.17
## 7018 PS3 2009 Adventure Disney Interactive Studios 0.14
## 7019 PS2 2002 Sports Sony Computer Entertainment 0.11
## 7020 XOne 2015 Action Activision 0.16
## 7021 PS 1998 Fighting Namco Bandai Games 0.13
## 7022 SAT 1995 Fighting Sega 0.00
## 7023 SAT 1996 Role-Playing Kadokawa Shoten 0.00
## 7024 GC 2002 Platform THQ 0.18
## 7025 DS 2008 Sports Ubisoft 0.21
## 7026 WiiU 2014 Action Warner Bros. Interactive Entertainment 0.10
## 7027 DS 2008 Misc Disney Interactive Studios 0.19
## 7028 X360 2005 Action Take-Two Interactive 0.21
## 7029 DS 2006 Strategy THQ 0.19
## 7030 DS 2008 Simulation Atari 0.20
## 7031 PS 2001 Shooter Ubisoft 0.13
## 7032 PS 2000 Sports Sony Computer Entertainment 0.13
## 7033 Wii 2007 Sports Detn8 Games 0.21
## 7034 GBA 2005 Misc Konami Digital Entertainment 0.17
## 7035 PSP 2013 Sports Electronic Arts 0.00
## 7037 PS 1998 Simulation Psygnosis 0.13
## 7038 DS 2010 Adventure Nintendo 0.00
## 7039 PSP 2008 Strategy Konami Digital Entertainment 0.00
## 7040 X360 2009 Action Tecmo Koei 0.13
## 7041 X360 2014 Fighting Namco Bandai Games 0.13
## 7042 DS 2008 Simulation GSP 0.21
## 7043 GBA 2005 Sports Electronic Arts 0.17
## 7044 Wii 2011 Misc Konami Digital Entertainment 0.15
## 7045 PS3 2007 Racing Electronic Arts 0.15
## 7046 NG 1994 Fighting SNK 0.00
## 7047 PS 1996 Action American Softworks 0.13
## 7048 DS 2008 Role-Playing Rising Star Games 0.21
## 7049 XOne 2015 Racing Slightly Mad Studios 0.08
## 7050 PS2 2010 Sports Take-Two Interactive 0.11
## 7051 PC 2015 Shooter Activision 0.00
## 7052 XB 2004 Action Take-Two Interactive 0.17
## 7053 PS3 2011 Action Activision 0.13
## 7054 Wii 2009 Action THQ 0.08
## 7055 PS2 2001 Sports Sony Computer Entertainment 0.11
## 7056 PS3 2009 Sports Activision Value 0.21
## 7057 GBA 2002 Platform Capcom 0.16
## 7058 PS4 2014 Sports Electronic Arts 0.15
## 7059 Wii 2008 Puzzle Capcom 0.19
## 7060 PC 2012 Role-Playing Deep Silver 0.00
## 7061 PSV 2016 Action Square Enix 0.00
## 7062 X360 2011 Action THQ 0.20
## 7063 Wii 2008 Action Ubisoft 0.20
## 7064 PSP 2012 Adventure Namco Bandai Games 0.00
## 7065 DS 2007 Sports Activision 0.21
## 7066 GB 1992 Puzzle Nintendo 0.00
## 7067 PS2 2003 Sports Sega 0.00
## 7068 PS3 2009 Action Tecmo Koei 0.00
## 7069 PS2 2007 Misc Activision 0.11
## 7070 3DS 2011 Fighting THQ 0.15
## 7071 DS 2007 Action Nintendo 0.09
## 7072 PS2 2005 Action Sony Computer Entertainment 0.11
## 7073 PS4 2016 Sports 505 Games 0.02
## 7074 3DS 2011 Misc Activision 0.22
## 7075 PSP 2009 Adventure Namco Bandai Games 0.00
## 7076 PS 1997 Action GT Interactive 0.13
## 7077 GBA 2007 Adventure Activision 0.16
## 7078 Wii 2008 Simulation Ubisoft 0.21
## 7079 PSP 2009 Fighting Namco Bandai Games 0.00
## 7080 DS 2008 Sports Sega 0.00
## 7081 Wii 2006 Sports Nintendo 0.14
## 7082 PS2 2003 Racing Eidos Interactive 0.11
## 7083 GBA 2004 Role-Playing Capcom 0.16
## 7084 Wii 2009 Adventure Activision 0.21
## 7085 SNES 1996 Role-Playing Enix Corporation 0.00
## 7086 XB 2003 Shooter Electronic Arts 0.17
## 7087 DS 2005 Fighting Tomy Corporation 0.00
## 7088 XB 2003 Shooter Activision 0.17
## 7089 Wii 2010 Sports Konami Digital Entertainment 0.08
## 7090 PS2 2007 Adventure Disney Interactive Studios 0.11
## 7091 PS2 2006 Role-Playing Square Enix 0.06
## 7092 PS 1997 Role-Playing Psygnosis 0.13
## 7093 PS3 2010 Sports Konami Digital Entertainment 0.00
## 7094 PS2 2008 Action THQ 0.11
## 7095 SNES 1991 Shooter Nintendo 0.00
## 7096 PS 1998 Action GT Interactive 0.13
## 7097 PS 1999 Strategy Banpresto 0.00
## 7098 GC 2002 Sports Electronic Arts 0.18
## 7099 PS2 2003 Shooter Zoo Digital Publishing 0.11
## 7100 PS2 2003 Sports Midway Games 0.11
## 7101 Wii 2009 Simulation Electronic Arts 0.18
## 7102 Wii 2010 Racing Disney Interactive Studios 0.18
## 7103 PS 1995 Shooter Ocean 0.06
## 7104 Wii 2007 Sports 505 Games 0.21
## 7105 PS 1997 Fighting Virgin Interactive 0.06
## 7106 XB 2004 Misc Zoo Digital Publishing 0.17
## 7107 PSP 2008 Role-Playing Rising Star Games 0.09
## 7108 PS2 2006 Role-Playing Namco Bandai Games 0.11
## 7109 PSP 2006 Role-Playing Tecmo Koei 0.15
## 7110 PS3 2012 Adventure Sony Computer Entertainment 0.19
## 7111 PSP 2008 Sports Electronic Arts 0.21
## 7112 Wii 2010 Sports D3Publisher 0.21
## 7113 PS2 2003 Sports Sony Computer Entertainment 0.11
## 7114 Wii 2009 Misc Nordcurrent 0.19
## 7115 PS2 2004 Adventure THQ 0.11
## 7116 DS 2007 Strategy Sega 0.20
## 7117 PS2 2007 Misc Sony Computer Entertainment 0.11
## 7118 PS3 2011 Shooter Ubisoft 0.09
## 7119 Wii 2010 Action THQ 0.14
## 7120 X360 2008 Misc MTV Games 0.21
## 7121 GB 1996 Puzzle Nintendo 0.00
## 7122 PS2 2002 Sports Sony Computer Entertainment 0.11
## 7123 DS 2011 Adventure Scholastic Inc. 0.21
## 7124 PS 1998 Fighting Tomy Corporation 0.00
## 7125 PSV 2015 Action Marvelous Interactive 0.06
## 7126 DS 2006 Role-Playing Namco Bandai Games 0.00
## 7127 PS2 2002 Sports Sony Computer Entertainment 0.11
## 7128 PS 1997 Platform Ocean 0.13
## 7129 PS2 2003 Action Kemco 0.11
## 7130 PSP 2005 Sports Electronic Arts 0.20
## 7131 PS3 2014 Role-Playing Namco Bandai Games 0.00
## 7132 3DS 2011 Racing Disney Interactive Studios 0.21
## 7133 DS 2008 Simulation Ubisoft 0.20
## 7134 PC 2012 Shooter Take-Two Interactive 0.11
## 7135 PS2 2002 Action Midway Games 0.11
## 7136 Wii 2008 Fighting Electronic Arts 0.20
## 7137 PSP 2006 Role-Playing Eidos Interactive 0.20
## 7138 PS3 2011 Action Namco Bandai Games 0.00
## 7139 PS2 2008 Fighting Midway Games 0.10
## 7140 DS 2006 Misc Konami Digital Entertainment 0.18
## 7141 GC 2004 Fighting Electronic Arts 0.17
## 7142 PSP 2013 Role-Playing Namco Bandai Games 0.00
## 7143 PS2 2005 Action Sega 0.11
## 7144 PS3 2013 Action Deep Silver 0.12
## 7145 GBA 2001 Misc Takara 0.16
## 7146 X360 2013 Action Namco Bandai Games 0.12
## 7147 N64 1997 Misc Namco Bandai Games 0.00
## 7148 GC 2003 Misc Acclaim Entertainment 0.17
## 7149 2600 1981 Shooter 20th Century Fox Video Games 0.21
## 7150 2600 1982 Action Bomb 0.21
## 7151 2600 1981 Action Parker Bros. 0.21
## 7152 PSP 2009 Role-Playing Falcom Corporation 0.14
## 7153 DS 2010 Action THQ 0.17
## 7154 PSP 2007 Action Namco Bandai Games 0.00
## 7155 PS3 2009 Action Disney Interactive Studios 0.13
## 7156 PSP 2011 Action Level 5 0.00
## 7157 Wii 2010 Misc D3Publisher 0.21
## 7158 XB 2004 Shooter SCi 0.17
## 7159 PS2 2002 Sports Crave Entertainment 0.11
## 7160 PS2 2004 Shooter Namco Bandai Games 0.11
## 7161 PS2 2005 Misc Hudson Soft 0.00
## 7162 XOne 2015 Role-Playing Namco Bandai Games 0.13
## 7163 DS 2008 Simulation 505 Games 0.21
## 7164 PS2 2010 Platform D3Publisher 0.13
## 7165 3DS 2013 Action Sega 0.00
## 7166 GC 2002 Role-Playing Atari 0.17
## 7167 DS 2009 Platform Ubisoft 0.20
## 7168 PS2 2008 Racing Capcom 0.01
## 7169 PSP 2011 Sports Electronic Arts 0.21
## 7170 PS3 2011 Action Capcom 0.00
## 7171 GBA 2001 Role-Playing Ubisoft 0.11
## 7172 DS 2008 Role-Playing GungHo 0.10
## 7173 PS2 2005 Racing Global Star 0.11
## 7174 GC 2004 Sports Electronic Arts 0.17
## 7175 GBA 2004 Sports Nintendo 0.16
## 7176 GBA 2005 Action THQ 0.16
## 7177 DS 2008 Adventure Ubisoft 0.21
## 7178 PS3 2010 Racing Capcom 0.05
## 7179 PS3 2011 Role-Playing Marvelous Interactive 0.14
## 7180 Wii 2009 Platform Majesco Entertainment 0.19
## 7181 PS4 2016 Shooter Take-Two Interactive 0.09
## 7183 PS3 2013 Role-Playing Tecmo Koei 0.06
## 7184 DS 2010 Puzzle Avanquest 0.13
## 7185 2600 1981 Action Atari 0.21
## 7186 SNES 1992 Platform Hudson Soft 0.00
## 7187 PS 1998 Puzzle Acclaim Entertainment 0.12
## 7188 Wii 2007 Platform Vivendi Games 0.18
## 7189 PS 1996 Sports Acclaim Entertainment 0.12
## 7190 Wii 2006 Action Midway Games 0.19
## 7191 PS2 2004 Fighting Namco Bandai Games 0.03
## 7192 Wii 2008 Misc Ubisoft 0.20
## 7193 PS2 2002 Shooter Capcom 0.07
## 7194 Wii 2008 Sports Activision 0.20
## 7195 PS2 2003 Action Namco Bandai Games 0.00
## 7196 3DS 2011 Platform Sega 0.14
## 7197 Wii 2011 Action THQ 0.19
## 7198 DS 2006 Sports Activision 0.20
## 7199 GBA 2004 Platform Capcom 0.16
## 7200 PC 2012 Action Warner Bros. Interactive Entertainment 0.07
## 7201 PS3 2013 Action Square Enix 0.07
## 7202 PSP 2007 Action Vivendi Games 0.03
## 7203 PS3 2014 Action Konami Digital Entertainment 0.03
## 7204 Wii 2010 Action THQ 0.19
## 7205 DS 2008 Misc AQ Interactive 0.20
## 7206 Wii 2008 Action Ubisoft 0.16
## 7207 PS 1999 Sports Mattel Interactive 0.12
## 7208 Wii 2010 Adventure Ubisoft 0.12
## 7209 GBA 2004 Misc N/A 0.16
## 7210 PSP 2007 Action Empire Interactive 0.09
## 7211 PS3 2013 Role-Playing Nippon Ichi Software 0.05
## 7212 PC 2015 Shooter Ubisoft 0.12
## 7213 PSV 2012 Action Ubisoft 0.09
## 7215 GBA 2004 Misc Atari 0.16
## 7216 DS 2009 Simulation Ubisoft 0.20
## 7217 PS3 2014 Adventure Telltale Games 0.09
## 7218 GBA 2004 Role-Playing Electronic Arts 0.16
## 7219 Wii 2009 Adventure Deep Silver 0.09
## 7220 XB 2004 Action Midway Games 0.16
## 7221 PS4 2016 Role-Playing Square Enix 0.00
## 7222 GC 2002 Puzzle THQ 0.17
## 7223 X360 2014 Adventure Activision 0.11
## 7224 N64 2000 Fighting Acclaim Entertainment 0.18
## 7225 N64 2000 Action Capcom 0.14
## 7226 N64 1996 Sports Imagineer 0.00
## 7227 N64 1999 Action GT Interactive 0.18
## 7228 N64 2000 Puzzle Namco Bandai Games 0.18
## 7229 Wii 2009 Role-Playing Namco Bandai Games 0.00
## 7230 DS 2008 Strategy THQ 0.17
## 7231 GC 2004 Action Capcom 0.17
## 7232 DS 2009 Adventure Ubisoft 0.20
## 7233 Wii 2009 Racing Zoo Digital Publishing 0.21
## 7234 PS2 2002 Misc Acclaim Entertainment 0.11
## 7235 DS 2007 Puzzle Avanquest 0.03
## 7236 PS 1996 Sports Acclaim Entertainment 0.12
## 7237 DS 2008 Adventure Atari 0.04
## 7238 DS 2007 Shooter Eidos Interactive 0.20
## 7239 X360 2009 Strategy Kalypso Media 0.15
## 7240 XB 2002 Misc Infogrames 0.16
## 7241 X360 2009 Action D3Publisher 0.11
## 7242 PS 1998 Sports Fox Interactive 0.12
## 7243 Wii 2009 Action Electronic Arts 0.17
## 7244 XB 2004 Shooter Eidos Interactive 0.16
## 7245 X360 2011 Action Bethesda Softworks 0.13
## 7246 PS 1998 Strategy Konami Digital Entertainment 0.05
## 7247 PS4 2016 Role-Playing Namco Bandai Games 0.00
## 7248 GC 2001 Sports Acclaim Entertainment 0.17
## 7249 PS2 2004 Role-Playing 505 Games 0.11
## 7250 PS2 2001 Simulation Sammy Corporation 0.11
## 7251 DC 2000 Fighting Virgin Interactive 0.00
## 7252 Wii 2008 Sports Electronic Arts 0.19
## 7253 DS 2009 Role-Playing Sega 0.07
## 7254 X360 2011 Misc Unknown 0.11
## 7255 PS4 2015 Action Activision 0.10
## 7256 DS 2008 Misc Namco Bandai Games 0.00
## 7257 GC 2005 Action Electronic Arts 0.17
## 7258 Wii 2011 Misc THQ 0.20
## 7259 PS3 2015 Misc Ubisoft 0.10
## 7260 PS3 2009 Misc Crave Entertainment 0.20
## 7261 PS2 2009 Misc Activision 0.11
## 7262 PS2 2001 Sports Acclaim Entertainment 0.11
## 7263 GB 1997 Puzzle Nintendo 0.00
## 7264 X360 2008 Sports Electronic Arts 0.20
## 7265 X360 2006 Shooter Sega 0.19
## 7266 PC 2011 Action Deep Silver 0.12
## 7267 PS2 2006 Role-Playing Rising Star Games 0.11
## 7268 DS 2009 Puzzle Electronic Arts 0.01
## 7269 WiiU 2015 Role-Playing Nintendo 0.10
## 7270 PS2 2003 Sports Electronic Arts 0.11
## 7271 GBA 2002 Action Nintendo 0.16
## 7272 3DS 2012 Adventure Nintendo 0.12
## 7273 PSP 2005 Sports Sony Computer Entertainment 0.20
## 7274 GBA 2003 Action Tomy Corporation 0.16
## 7275 PSP 2009 Role-Playing Atlus 0.08
## 7276 DS 2007 Adventure Tecmo Koei 0.00
## 7277 PS2 2002 Racing Activision 0.11
## 7278 DS 2006 Sports Electronic Arts 0.20
## 7279 PS2 2006 Sports Konami Digital Entertainment 0.00
## 7280 GC 2002 Sports Sega 0.17
## 7281 PS4 2015 Action Nordic Games 0.09
## 7282 PS 2001 Sports Take-Two Interactive 0.12
## 7283 DS 2005 Platform Nintendo 0.00
## 7284 GBA 2003 Platform Zoo Digital Publishing 0.16
## 7285 DS 2008 Misc THQ 0.20
## 7286 PS2 2008 Sports Konami Digital Entertainment 0.00
## 7287 PS 1999 Action Sony Computer Entertainment 0.12
## 7288 PS 1999 Racing Electronic Arts 0.12
## 7289 PS3 2013 Shooter Capcom 0.07
## 7290 Wii 2008 Misc Zoo Digital Publishing 0.19
## 7291 3DS 2015 Strategy Nintendo 0.14
## 7292 PS3 2010 Racing Black Bean Games 0.05
## 7293 PS4 2013 Sports Electronic Arts 0.14
## 7294 GC 2004 Action THQ 0.17
## 7295 SAT 1995 Sports Sega 0.00
## 7296 GBA 2003 Misc Codemasters 0.15
## 7297 Wii 2008 Sports DTP Entertainment 0.00
## 7298 GBA 2002 Misc THQ 0.15
## 7299 GC 2005 Action Activision 0.17
## 7300 X360 2013 Shooter City Interactive 0.06
## 7301 X360 2006 Simulation Ubisoft 0.19
## 7302 SNES 1993 Action Namco Bandai Games 0.00
## 7303 PS3 2010 Simulation Activision 0.11
## 7304 PSV 2015 Action Namco Bandai Games 0.00
## 7305 PS2 2002 Adventure Eidos Interactive 0.11
## 7306 X360 2012 Simulation Namco Bandai Games 0.13
## 7307 PC 2003 Role-Playing CCP 0.00
## 7308 PSP 2012 Action Namco Bandai Games 0.00
## 7309 DS 2008 Action Tecmo Koei 0.17
## 7310 PS4 2015 Racing Milestone S.r.l. 0.03
## 7311 DS 2008 Role-Playing Ignition Entertainment 0.12
## 7312 XOne 2014 Role-Playing Square Enix 0.10
## 7313 PS 2000 Sports Konami Digital Entertainment 0.12
## 7314 PS2 2001 Sports THQ 0.11
## 7315 PS3 2008 Adventure Unknown 0.12
## 7316 PS 2001 Sports Activision Value 0.12
## 7317 PSP 2006 Role-Playing Ghostlight 0.10
## 7318 Wii 2010 Misc Nintendo 0.20
## 7320 PS2 2004 Racing Ubisoft 0.11
## 7321 PS 1996 Platform BMG Interactive Entertainment 0.12
## 7322 PS3 2011 Misc Sony Computer Entertainment 0.00
## 7323 GC 2005 Misc Namco Bandai Games 0.17
## 7324 PS2 2004 Racing Eidos Interactive 0.11
## 7325 PSP 2005 Sports Sony Computer Entertainment 0.20
## 7326 PS2 2009 Fighting Ubisoft 0.11
## 7327 SAT 1997 Sports Sega 0.00
## 7328 3DS 2011 Action Activision 0.16
## 7329 Wii 2007 Role-Playing Square Enix 0.09
## 7330 SAT 1997 Role-Playing Kadokawa Shoten 0.00
## 7331 DS 2007 Sports Namco Bandai Games 0.00
## 7332 PS2 2002 Action Agetec 0.03
## 7333 SAT 1997 Adventure Imagineer 0.00
## 7334 Wii 2010 Misc Nordic Games 0.00
## 7335 Wii 2008 Sports Atari 0.20
## 7336 Wii 2011 Action Konami Digital Entertainment 0.08
## 7337 PSV 2013 Action Nippon Ichi Software 0.09
## 7338 PS2 2008 Racing Warner Bros. Interactive Entertainment 0.10
## 7339 X360 2006 Sports Take-Two Interactive 0.20
## 7340 XOne 2014 Action Activision 0.12
## 7341 X360 2011 Sports Activision 0.18
## 7342 GC 2006 Adventure THQ 0.17
## 7343 PS 1999 Action Electronic Arts 0.12
## 7344 PSP 2010 Fighting THQ 0.11
## 7345 PS3 2008 Racing THQ 0.10
## 7346 PS2 2000 Racing Interplay 0.10
## 7347 3DS 2012 Simulation Konami Digital Entertainment 0.00
## 7348 PS2 2004 Role-Playing Ubisoft 0.10
## 7349 X360 2007 Sports Electronic Arts 0.20
## 7350 PS2 2006 Misc Hudson Soft 0.00
## 7351 GBA 2002 Shooter TDK Mediactive 0.15
## 7353 XB 2003 Fighting Gotham Games 0.16
## 7354 PS3 2010 Action Namco Bandai Games 0.00
## 7355 PS2 2002 Strategy Ubisoft 0.10
## 7356 DS 2005 Sports Activision 0.19
## 7357 PS3 2011 Platform THQ 0.11
## 7358 X360 2009 Sports Take-Two Interactive 0.19
## 7359 XB 2002 Shooter Universal Interactive 0.16
## 7360 X360 2009 Adventure Disney Interactive Studios 0.14
## 7361 X360 2009 Shooter THQ 0.12
## 7362 Wii 2008 Action THQ 0.19
## 7363 XB 2005 Sports Take-Two Interactive 0.16
## 7364 XB 2004 Action Activision 0.16
## 7365 PS2 2005 Misc Take-Two Interactive 0.10
## 7366 X360 2010 Action Deep Silver 0.07
## 7367 PS2 2004 Shooter Konami Digital Entertainment 0.10
## 7368 PSP 2005 Sports Electronic Arts 0.20
## 7369 PS3 2014 Racing Codemasters 0.05
## 7372 2600 1981 Sports Atari 0.20
## 7373 Wii 2011 Misc Unknown 0.00
## 7374 DS 2011 Strategy Konami Digital Entertainment 0.10
## 7375 X360 2015 Action Konami Digital Entertainment 0.12
## 7376 X360 2010 Misc Electronic Arts 0.17
## 7377 PS3 2009 Action Electronic Arts 0.11
## 7378 X360 2007 Misc Ubisoft 0.18
## 7379 PS2 2004 Action Capcom 0.10
## 7380 PS2 2001 Shooter Electronic Arts 0.10
## 7381 PS2 2005 Platform Namco Bandai Games 0.10
## 7382 GC 2003 Fighting Tomy Corporation 0.00
## 7384 PS 1996 Adventure Pioneer LDC 0.00
## 7385 PS4 2014 Action Activision 0.07
## 7386 SNES 1995 Fighting Namco Bandai Games 0.00
## 7387 Wii 2009 Adventure GSP 0.12
## 7388 3DS 2014 Action Marvelous Entertainment 0.09
## 7389 PSP 2009 Fighting THQ 0.17
## 7390 DS 2008 Action Disney Interactive Studios 0.19
## 7391 PS3 2011 Sports Tecmo Koei 0.06
## 7392 PS 2000 Fighting Acclaim Entertainment 0.12
## 7393 Wii 2009 Sports JoWood Productions 0.15
## 7394 XB 2005 Shooter Ubisoft 0.16
## 7395 Wii 2011 Sports Activision 0.15
## 7396 PSP 2005 Adventure Ubisoft 0.18
## 7397 X360 2009 Sports XS Games 0.20
## 7398 PS2 2005 Strategy Square Enix 0.00
## 7399 PS2 2003 Platform Capcom 0.10
## 7400 GC 2003 Platform THQ 0.16
## 7401 Wii 2010 Misc Namco Bandai Games 0.20
## 7402 DS 2009 Action Zoo Games 0.20
## 7403 PSP 2010 Sports Sony Computer Entertainment 0.06
## 7404 PS2 2002 Role-Playing THQ 0.10
## 7405 PS 2002 Platform TDK Mediactive 0.12
## 7406 PS2 2001 Adventure Konami Digital Entertainment 0.09
## 7408 XB 2003 Sports Activision Value 0.16
## 7409 WiiU 2013 Simulation Disney Interactive Studios 0.15
## 7410 PSP 2007 Sports 505 Games 0.19
## 7411 PSP 2005 Misc Activision 0.19
## 7412 N64 1997 Fighting Interplay 0.17
## 7413 N64 1999 Misc Hasbro Interactive 0.17
## 7414 N64 1998 Fighting THQ 0.17
## 7415 N64 2000 Racing Midway Games 0.17
## 7416 N64 1999 Platform Crave Entertainment 0.17
## 7417 N64 1999 Shooter Virgin Interactive 0.17
## 7418 3DS 2012 Role-Playing Nintendo 0.13
## 7419 X360 2012 Action Activision 0.20
## 7420 PS 1996 Role-Playing Seta Corporation 0.00
## 7421 X360 2008 Racing Black Bean Games 0.06
## 7422 SAT 1996 Fighting SNK 0.00
## 7423 GC 2003 Action Electronic Arts 0.16
## 7425 PS 1997 Role-Playing On Demand 0.12
## 7426 PS 1999 Role-Playing SquareSoft 0.12
## 7427 PS 2000 Role-Playing Sony Computer Entertainment 0.00
## 7428 GBA 2004 Platform Konami Digital Entertainment 0.00
## 7429 X360 2007 Action Microsoft Game Studios 0.18
## 7430 X360 2009 Action Gamebridge 0.12
## 7431 PS2 2002 Action Eidos Interactive 0.10
## 7432 XB 2004 Shooter Atari 0.17
## 7433 PS2 2001 Racing Electronic Arts 0.10
## 7434 PS2 2008 Action Activision 0.10
## 7435 PS3 2013 Role-Playing Nippon Ichi Software 0.09
## 7436 XB 2005 Action Electronic Arts 0.16
## 7437 Wii 2012 Misc Ubisoft 0.15
## 7438 PS2 2006 Sports Konami Digital Entertainment 0.00
## 7439 GBA 2003 Platform TDK Mediactive 0.15
## 7440 DS 2010 Role-Playing Nintendo 0.08
## 7441 PSP 2010 Role-Playing Namco Bandai Games 0.00
## 7442 XB 2002 Action Sega 0.13
## 7443 GC 2001 Sports Midway Games 0.16
## 7444 Wii 2010 Action THQ 0.12
## 7445 GC 2002 Sports Electronic Arts 0.16
## 7446 X360 2009 Sports Zushi Games 0.18
## 7447 PS 1999 Racing Psygnosis 0.12
## 7448 PS2 2000 Sports Konami Digital Entertainment 0.10
## 7449 PS2 2005 Action Eidos Interactive 0.10
## 7450 DS 2008 Sports Activision 0.19
## 7451 DS 2009 Strategy Namco Bandai Games 0.00
## 7452 PS 2000 Fighting Midway Games 0.12
## 7453 PSV 2014 Action Warner Bros. Interactive Entertainment 0.03
## 7454 PSV 2014 Platform Ubisoft 0.03
## 7455 DS 2007 Role-Playing Namco Bandai Games 0.19
## 7456 DS 2008 Racing Eidos Interactive 0.19
## 7457 DS 2011 Puzzle Scholastic Inc. 0.19
## 7458 PS2 2006 Role-Playing Tecmo Koei 0.00
## 7459 X360 2010 Shooter Majesco Entertainment 0.19
## 7460 PS2 2005 Action THQ 0.10
## 7461 X360 2010 Shooter Namco Bandai Games 0.11
## 7462 X360 2007 Sports Electronic Arts 0.19
## 7463 XB 2002 Sports Electronic Arts 0.15
## 7464 PS3 2011 Action THQ 0.11
## 7465 SAT 1995 Fighting Acclaim Entertainment 0.00
## 7466 DS 2008 Misc Activision 0.19
## 7467 PSP 2005 Sports Electronic Arts 0.19
## 7468 PS 1998 Adventure Sony Computer Entertainment 0.00
## 7469 PS2 2002 Sports Sega 0.10
## 7470 DS 2006 Misc Namco Bandai Games 0.00
## 7471 GBA 2004 Misc N/A 0.15
## 7472 PS3 2010 Sports Konami Digital Entertainment 0.00
## 7473 Wii 2008 Misc THQ 0.19
## 7474 GBA 2001 Fighting Ubisoft 0.09
## 7475 Wii 2011 Role-Playing Marvelous Interactive 0.14
## 7476 DS 2012 Action Activision 0.15
## 7477 PSP 2009 Sports Electronic Arts 0.19
## 7478 PS2 2002 Sports Zoo Digital Publishing 0.04
## 7479 Wii 2009 Simulation Ubisoft 0.13
## 7480 GC 2002 Action Atari 0.16
## 7481 XB 2004 Sports Global Star 0.15
## 7482 3DS 2012 Action Nintendo 0.00
## 7483 PS3 2012 Action Sega 0.10
## 7484 X360 2009 Adventure Ubisoft 0.10
## 7485 PC 2013 Shooter Trion Worlds 0.14
## 7486 PSP 2011 Sports Sega 0.00
## 7487 3DS 2015 Action Warner Bros. Interactive Entertainment 0.05
## 7488 PS 2000 Adventure Infogrames 0.11
## 7489 DS 2006 Racing Electronic Arts 0.17
## 7490 GC 2005 Fighting Atari 0.16
## 7491 PS3 2010 Action Sony Computer Entertainment 0.06
## 7492 PS3 2012 Action Konami Digital Entertainment 0.00
## 7493 XB 2003 Platform Activision 0.15
## 7494 GBA 2002 Action THQ 0.15
## 7495 PS4 2014 Adventure Telltale Games 0.10
## 7496 PSP 2006 Strategy Atari 0.18
## 7497 Wii 2010 Strategy Ubisoft 0.15
## 7498 PS4 2016 Action Tecmo Koei 0.02
## 7499 NG 1995 Fighting SNK 0.00
## 7500 DS 2009 Simulation 505 Games 0.19
## 7501 GBA 2002 Misc Acclaim Entertainment 0.15
## 7502 Wii 2010 Sports Activision 0.19
## 7503 PS3 2007 Role-Playing Ubisoft 0.17
## 7504 GBA 2004 Action Atari 0.15
## 7505 Wii 2011 Fighting THQ 0.11
## 7506 GB 2000 Strategy Nintendo 0.00
## 7507 PSP 2008 Misc Crave Entertainment 0.19
## 7508 X360 2011 Misc THQ 0.19
## 7509 DS 2009 Adventure City Interactive 0.07
## 7510 XOne 2014 Sports Electronic Arts 0.17
## 7511 PS2 2004 Fighting Capcom 0.10
## 7512 3DS 2011 Action Konami Digital Entertainment 0.16
## 7513 SNES 1995 Strategy Namco Bandai Games 0.00
## 7514 PS2 2005 Sports Atari 0.10
## 7515 XB 2001 Racing Infogrames 0.15
## 7516 Wii 2009 Action Sega 0.17
## 7517 DS 2009 Puzzle Level 5 0.00
## 7518 X360 2010 Simulation Kalypso Media 0.11
## 7519 Wii 2009 Sports Black Bean Games 0.14
## 7520 PS2 2007 Action Capcom 0.00
## 7521 PS2 2008 Misc Sony Computer Entertainment 0.00
## 7522 PC 2011 Role-Playing Unknown 0.09
## 7523 PS2 2005 Strategy Konami Digital Entertainment 0.06
## 7524 XB 2005 Sports Electronic Arts 0.15
## 7525 PS3 2011 Sports Take-Two Interactive 0.15
## 7526 PS3 2006 Simulation Namco Bandai Games 0.06
## 7527 DC 2000 Role-Playing Sega 0.00
## 7528 XB 2002 Racing Sega 0.14
## 7529 X360 2008 Role-Playing Ubisoft 0.16
## 7530 Wii 2011 Misc Ubisoft 0.00
## 7531 XB 2006 Racing Take-Two Interactive 0.15
## 7532 PS2 2000 Sports Konami Digital Entertainment 0.00
## 7533 PC 2011 Shooter THQ 0.09
## 7534 GBA 2005 Misc Zoo Digital Publishing 0.15
## 7535 PS2 2005 Misc Crave Entertainment 0.10
## 7536 SNES 1994 Racing BPS 0.00
## 7537 PSP 2012 Role-Playing Sega 0.00
## 7538 PS3 2013 Role-Playing Nippon Ichi Software 0.05
## 7539 PS3 2014 Role-Playing Tecmo Koei 0.06
## 7540 Wii 2009 Misc Mindscape 0.00
## 7541 PS2 2008 Sports Crave Entertainment 0.10
## 7542 PS2 2006 Fighting Ignition Entertainment 0.10
## 7543 PS2 2003 Sports Konami Digital Entertainment 0.00
## 7544 PS3 2011 Fighting PQube 0.04
## 7545 3DS 2012 Fighting Nintendo 0.06
## 7546 DS 2008 Misc Mindscape 0.00
## 7547 X360 2011 Misc 505 Games 0.17
## 7548 PSP 2010 Sports Sony Computer Entertainment 0.19
## 7549 XOne 2015 Strategy Microsoft Game Studios 0.14
## 7550 X360 2009 Sports Codemasters 0.00
## 7551 PS2 2004 Racing Play It 0.10
## 7552 GC 2005 Misc THQ 0.16
## 7553 SAT 1996 Strategy NCS 0.00
## 7554 NG 1994 Fighting SNK 0.00
## 7555 XB 2002 Sports Midway Games 0.15
## 7556 Wii 2009 Action Namco Bandai Games 0.13
## 7557 Wii 2009 Role-Playing Disney Interactive Studios 0.16
## 7558 PS3 2011 Shooter D3Publisher 0.06
## 7559 PS2 2004 Platform Activision 0.10
## 7560 DS 2009 Role-Playing Activision 0.16
## 7561 GC 2003 Fighting Namco Bandai Games 0.00
## 7562 PC 2015 Action Ubisoft 0.10
## 7563 GBA 2003 Sports THQ 0.14
## 7564 PS2 2001 Racing Infogrames 0.09
## 7565 PC 2016 Strategy Take-Two Interactive 0.09
## 7566 PS3 2010 Sports Codemasters 0.00
## 7567 PS2 2004 Sports Sega 0.10
## 7568 Wii 2009 Misc THQ 0.17
## 7569 PS2 2000 Fighting SquareSoft 0.00
## 7570 PS3 2011 Action Nippon Ichi Software 0.00
## 7571 PS3 2007 Shooter Codemasters 0.17
## 7572 GBA 2003 Simulation Ubisoft 0.14
## 7573 PS3 2011 Action Sega 0.10
## 7574 PSV 2012 Sports Sony Computer Entertainment 0.18
## 7575 GC 2004 Platform THQ 0.16
## 7576 PS4 2016 Sports Electronic Arts 0.13
## 7577 SAT 1996 Shooter Namco Bandai Games 0.00
## 7578 DS 2011 Simulation 505 Games 0.13
## 7579 PSP 2012 Action Sega 0.00
## 7580 XB 2002 Sports Sega 0.15
## 7581 GBA 2003 Platform Activision 0.14
## 7582 PSP 2011 Role-Playing Sega 0.00
## 7583 XB 2006 Racing THQ 0.15
## 7584 PS2 2003 Misc Namco Bandai Games 0.00
## 7585 DS 2009 Simulation Ubisoft 0.19
## 7586 GC 2002 Racing Midway Games 0.16
## 7587 PSP 2008 Action Tecmo Koei 0.02
## 7588 PS2 2005 Shooter Electronic Arts 0.10
## 7589 GBA 2001 Sports Ubisoft 0.14
## 7590 PS 1996 Role-Playing ArtDink 0.06
## 7591 X360 2005 Racing Namco Bandai Games 0.10
## 7592 PS4 2013 Strategy Activision 0.10
## 7593 DS 2009 Misc Take-Two Interactive 0.19
## 7594 DS 2009 Misc Ubisoft 0.19
## 7595 DS 2009 Simulation Aspyr 0.19
## 7596 X360 2010 Shooter Square Enix 0.10
## 7597 X360 2010 Misc Namco Bandai Games 0.10
## 7598 PS 1997 Shooter Interplay 0.11
## 7599 X360 2007 Racing Activision 0.18
## 7600 PS3 2009 Action Atari 0.12
## 7601 PS2 2009 Misc MTV Games 0.10
## 7602 X360 2012 Simulation Konami Digital Entertainment 0.14
## 7603 GC 2004 Platform Electronic Arts 0.15
## 7604 PS 1998 Racing Sony Computer Entertainment 0.11
## 7605 PSP 2011 Role-Playing Falcom Corporation 0.00
## 7606 PS3 2010 Action Konami Digital Entertainment 0.10
## 7607 DS 2010 Puzzle Avanquest 0.07
## 7608 XOne 2015 Action Deep Silver 0.10
## 7609 WiiU 2013 Fighting Warner Bros. Interactive Entertainment 0.10
## 7610 XB 2003 Sports Electronic Arts 0.15
## 7611 DS 2010 Adventure Ubisoft 0.13
## 7612 PC 2004 Shooter LucasArts 0.06
## 7613 PS2 2003 Sports Sony Computer Entertainment 0.10
## 7614 XB 2005 Action Disney Interactive Studios 0.15
## 7615 N64 2000 Platform Ubisoft 0.16
## 7617 N64 1999 Racing Titus 0.06
## 7618 N64 1997 Puzzle Activision 0.13
## 7619 N64 1998 Sports Kemco 0.16
## 7620 N64 2000 Platform Activision 0.16
## 7621 N64 2000 Racing Acclaim Entertainment 0.16
## 7622 N64 1998 Shooter Gremlin Interactive Ltd 0.16
## 7623 N64 2000 Racing Midway Games 0.16
## 7624 N64 1999 Strategy Banpresto 0.00
## 7625 N64 1996 Sports Atlus 0.16
## 7626 PSP 2006 Sports Sony Computer Entertainment 0.18
## 7627 XB 2003 Racing Bethesda Softworks 0.15
## 7628 PSP 2010 Role-Playing Sega 0.00
## 7629 DS 2011 Simulation Activision 0.14
## 7630 3DS 2012 Action Agatsuma Entertainment 0.16
## 7631 DS 2008 Action Eidos Interactive 0.16
## 7632 PSP 2005 Fighting Sony Computer Entertainment 0.18
## 7633 PS4 2015 Sports Activision 0.09
## 7634 PS2 2002 Misc Sammy Corporation 0.00
## 7635 GBA 2005 Misc Namco Bandai Games 0.14
## 7636 PS2 2008 Racing Xplosiv 0.10
## 7637 PS3 2013 Role-Playing Nippon Ichi Software 0.06
## 7638 PS 1999 Strategy Tecmo Koei 0.00
## 7639 Wii 2010 Racing THQ 0.15
## 7640 Wii 2010 Misc Namco Bandai Games 0.00
## 7641 PS3 2011 Sports THQ 0.08
## 7642 PC 2012 Strategy Sega 0.07
## 7643 PS2 2009 Sports Take-Two Interactive 0.10
## 7644 XB 2002 Sports Activision 0.15
## 7645 SNES 1996 Role-Playing SquareSoft 0.00
## 7646 PS3 2006 Role-Playing Electronic Arts 0.14
## 7647 XB 2005 Action Electronic Arts 0.15
## 7648 SAT 1994 Shooter Sega 0.00
## 7650 PS3 2013 Sports Konami Digital Entertainment 0.00
## 7651 Wii 2009 Action Destineer 0.14
## 7652 PS4 2016 Shooter Take-Two Interactive 0.05
## 7653 PS3 2010 Simulation Konami Digital Entertainment 0.12
## 7654 PS2 2007 Sports Activision Value 0.10
## 7655 DC 2000 Role-Playing Ubisoft 0.00
## 7656 PS 1996 Misc Sony Computer Entertainment 0.02
## 7657 DS 2008 Misc Disney Interactive Studios 0.18
## 7658 Wii 2011 Sports THQ 0.12
## 7659 X360 2014 Adventure Little Orbit 0.05
## 7660 XB 2004 Action Activision 0.15
## 7661 GC 2004 Sports Electronic Arts 0.15
## 7662 PSP 2013 Sports Konami Digital Entertainment 0.00
## 7663 PS2 2005 Action Konami Digital Entertainment 0.10
## 7664 DS 2008 Misc Ubisoft 0.00
## 7665 X360 2007 Shooter Activision 0.18
## 7666 PSV 2011 Racing Namco Bandai Games 0.04
## 7667 DS 2008 Role-Playing Sega 0.10
## 7668 PS2 2003 Strategy Activision 0.10
## 7669 Wii 2011 Misc Ubisoft 0.19
## 7670 XB 2001 Sports Acclaim Entertainment 0.15
## 7671 DS 2009 Simulation Electronic Arts 0.18
## 7672 PSP 2012 Sports Konami Digital Entertainment 0.00
## 7673 3DS 2016 Action GungHo 0.00
## 7674 GC 2002 Platform THQ 0.15
## 7675 X360 2008 Role-Playing Compile Heart 0.18
## 7676 X360 2008 Racing THQ 0.12
## 7677 PSP 2007 Strategy Take-Two Interactive 0.16
## 7678 PS2 2004 Misc Namco Bandai Games 0.00
## 7679 PS2 2004 Misc Namco Bandai Games 0.10
## 7680 X360 2008 Misc Disney Interactive Studios 0.18
## 7681 PSP 2005 Action Electronic Arts 0.17
## 7682 PS 1995 Puzzle Acclaim Entertainment 0.11
## 7683 PC 2014 Role-Playing Ubisoft 0.07
## 7684 PSP 2006 Shooter Ubisoft 0.17
## 7685 XB 2003 Puzzle THQ 0.15
## 7686 PS3 2006 Simulation 505 Games 0.09
## 7687 XOne 2014 Action Square Enix 0.10
## 7688 PS2 2004 Action Atari 0.10
## 7689 SNES 1991 Sports Culture Brain 0.00
## 7690 Wii 2008 Sports Activision 0.18
## 7691 WiiU 2013 Action Capcom 0.07
## 7692 Wii 2009 Simulation Majesco Entertainment 0.18
## 7693 PS2 2002 Racing Infogrames 0.10
## 7694 PSP 2006 Puzzle Crave Entertainment 0.18
## 7695 Wii 2011 Racing Activision 0.18
## 7696 GBA 2003 Sports Atari 0.14
## 7697 PS2 2005 Simulation Ubisoft 0.10
## 7698 PSP 2010 Sports Konami Digital Entertainment 0.00
## 7699 Wii 2008 Role-Playing Sega 0.08
## 7700 PSP 2011 Role-Playing Sony Computer Entertainment 0.00
## 7701 PS 2002 Action Namco Bandai Games 0.00
## 7702 PSP 2005 Sports Electronic Arts 0.18
## 7703 X360 2007 Action THQ 0.16
## 7704 GBA 2007 Action THQ 0.14
## 7705 GBA 2002 Platform THQ 0.14
## 7706 X360 2007 Action Tecmo Koei 0.17
## 7707 GC 2004 Misc Mad Catz 0.15
## 7708 XB 2002 Adventure Vivendi Games 0.15
## 7709 PS 2000 Action Ubisoft 0.11
## 7710 GBA 2001 Action THQ 0.14
## 7711 DS 2008 Puzzle Nordcurrent 0.05
## 7712 DS 2009 Action Activision 0.15
## 7713 PSP 2011 Sports Konami Digital Entertainment 0.00
## 7714 DS 2006 Misc Shogakukan 0.00
## 7715 XB 2002 Role-Playing Virgin Interactive 0.15
## 7716 PSP 2006 Action Take-Two Interactive 0.18
## 7717 GC 2004 Action Ubisoft 0.15
## 7718 XB 2002 Fighting Crave Entertainment 0.14
## 7719 3DS 2012 Role-Playing Namco Bandai Games 0.00
## 7720 Wii 2011 Action THQ 0.15
## 7722 3DS 2016 Platform Capcom 0.13
## 7723 PS2 2005 Action Vivendi Games 0.10
## 7724 Wii 2009 Action Konami Digital Entertainment 0.15
## 7725 3DS 2012 Action Activision 0.18
## 7726 PS2 2005 Racing Xplosiv 0.10
## 7727 PC 2009 Adventure Merscom LLC 0.00
## 7728 DS 2008 Misc THQ 0.18
## 7729 PSV 2013 Role-Playing Nippon Ichi Software 0.06
## 7730 PS4 2015 Shooter Rebellion Developments 0.04
## 7731 PS2 2001 Sports Sony Computer Entertainment 0.10
## 7732 PS2 2008 Role-Playing Gust 0.07
## 7733 PS2 2003 Action SCi 0.10
## 7734 GBA 2002 Misc BAM! Entertainment 0.14
## 7735 DS 2008 Role-Playing Tecmo Koei 0.16
## 7736 PS3 2012 Racing Codemasters 0.02
## 7737 DS 2008 Simulation Destineer 0.18
## 7738 Wii 2008 Shooter Zoo Games 0.18
## 7739 PS3 2008 Role-Playing Codemasters 0.05
## 7740 XB 2002 Racing Empire Interactive 0.15
## 7741 PS2 2005 Misc Sony Computer Entertainment 0.10
## 7742 GBA 2003 Platform Vivendi Games 0.14
## 7743 PS2 2006 Fighting Ignition Entertainment 0.07
## 7744 WiiU 2012 Action Nintendo 0.15
## 7745 PC 2013 Action Deep Silver 0.06
## 7746 PS 1996 Fighting Namco Bandai Games 0.00
## 7747 X360 2012 Action Konami Digital Entertainment 0.11
## 7748 PS4 2014 Role-Playing Focus Home Interactive 0.07
## 7749 X360 2008 Shooter Eidos Interactive 0.08
## 7750 PS3 2010 Action Konami Digital Entertainment 0.10
## 7751 PS3 2009 Action Activision 0.13
## 7752 PS2 2005 Shooter Ubisoft 0.10
## 7753 Wii 2009 Role-Playing Marvelous Interactive 0.13
## 7754 Wii 2009 Misc Take-Two Interactive 0.18
## 7755 DS 2005 Action Sega 0.00
## 7756 X360 2008 Action Namco Bandai Games 0.07
## 7757 DS 2009 Simulation Ubisoft 0.18
## 7758 SNES 1996 Misc Nippon Telenet 0.00
## 7759 GBA 2001 Role-Playing Ubisoft 0.14
## 7760 Wii 2008 Action Vivendi Games 0.17
## 7761 PSP 2012 Misc Spike 0.00
## 7762 PC 2010 Shooter Sega 0.00
## 7763 GC 2006 Platform Vivendi Games 0.15
## 7765 X360 2006 Role-Playing Ubisoft 0.16
## 7766 GBA 2002 Action TDK Core 0.14
## 7767 DS 2009 Sports Konami Digital Entertainment 0.00
## 7768 PS 1997 Sports Konami Digital Entertainment 0.00
## 7769 PC 2015 Simulation Electronic Arts 0.05
## 7770 SNES 1993 Misc Sammy Corporation 0.00
## 7771 3DS 2011 Misc Namco Bandai Games 0.10
## 7772 PS3 2010 Shooter Tecmo Koei 0.05
## 7773 XB 2004 Action Take-Two Interactive 0.14
## 7774 PS2 2002 Sports Sony Computer Entertainment 0.09
## 7775 PS3 2011 Simulation bitComposer Games 0.10
## 7776 Wii 2011 Misc THQ 0.14
## 7777 DS 2009 Misc Zoo Digital Publishing 0.18
## 7778 DS 2010 Misc Konami Digital Entertainment 0.11
## 7779 DS 2008 Role-Playing Square Enix 0.11
## 7780 PSP 2005 Action Ubisoft 0.16
## 7781 DS 2009 Shooter Square Enix 0.17
## 7782 PSP 2009 Action Activision 0.13
## 7783 3DS 2015 Action Capcom 0.00
## 7784 DS 2010 Puzzle Foreign Media Games 0.01
## 7785 SNES 1996 Sports Epoch 0.00
## 7786 X360 2009 Role-Playing Deep Silver 0.07
## 7787 DS 2010 Adventure Astragon 0.06
## 7788 3DS 2012 Simulation Konami Digital Entertainment 0.00
## 7789 X360 2006 Role-Playing Square Enix 0.17
## 7790 PS2 2002 Role-Playing Capcom 0.09
## 7791 N64 1996 Sports Konami Digital Entertainment 0.00
## 7792 PSP 2010 Action Electronic Arts 0.12
## 7793 PS3 2010 Platform Activision 0.16
## 7794 PS3 2009 Misc MTV Games 0.18
## 7795 PS2 2003 Strategy Banpresto 0.00
## 7796 PS 1998 Racing Acclaim Entertainment 0.11
## 7797 PSV 2013 Role-Playing Screenlife 0.13
## 7798 PS 1996 Shooter Interplay 0.11
## 7799 PC 2010 Strategy Square Enix 0.00
## 7800 X360 2010 Misc Konami Digital Entertainment 0.15
## 7801 PS3 2009 Shooter THQ 0.10
## 7802 GC 2002 Adventure Nintendo 0.15
## 7803 3DS 2011 Action Electronic Arts 0.09
## 7804 Wii 2008 Racing Zoo Digital Publishing 0.18
## 7805 PS3 2008 Shooter Eidos Interactive 0.05
## 7806 X360 2008 Fighting Electronic Arts 0.15
## 7807 PS3 2012 Sports Take-Two Interactive 0.18
## 7808 DS 2009 Role-Playing Ubisoft 0.16
## 7809 Wii 2008 Adventure THQ 0.17
## 7810 PS2 2004 Racing Bethesda Softworks 0.09
## 7811 PS2 2003 Shooter Electronic Arts 0.09
## 7812 XB 2003 Action Eidos Interactive 0.14
## 7813 3DS 2016 Simulation Marvelous Interactive 0.00
## 7814 Wii 2009 Action Activision 0.18
## 7815 X360 2010 Adventure Namco Bandai Games 0.14
## 7816 PS2 2004 Misc Atari 0.09
## 7817 GBA 2002 Role-Playing Namco Bandai Games 0.00
## 7818 DS 2010 Action Activision 0.17
## 7819 PS2 2003 Strategy Electronic Arts 0.09
## 7820 PS3 2011 Strategy PopCap Games 0.18
## 7821 XOne 2013 Sports Electronic Arts 0.16
## 7822 PS2 2001 Shooter Konami Digital Entertainment 0.09
## 7823 GBA 2001 Sports Acclaim Entertainment 0.14
## 7824 SNES 1996 Sports Konami Digital Entertainment 0.00
## 7825 DS 2010 Adventure Konami Digital Entertainment 0.00
## 7826 PS2 2003 Sports Midway Games 0.09
## 7827 PC 2013 Action Ubisoft 0.04
## 7828 PS 1996 Strategy SSI 0.11
## 7829 PS 1999 Fighting Human Entertainment 0.00
## 7830 PS3 2013 Action Namco Bandai Games 0.00
## 7831 X360 2012 Action Sega 0.09
## 7832 PSP 2009 Simulation 505 Games 0.08
## 7833 XOne 2015 Simulation Koch Media 0.10
## 7834 PS3 2008 Simulation Ubisoft 0.06
## 7835 DS 2008 Puzzle Rondomedia 0.15
## 7836 Wii 2011 Misc THQ 0.08
## 7837 DS 2006 Fighting Namco Bandai Games 0.02
## 7838 SAT 1995 Simulation Sega 0.00
## 7839 PS2 2008 Misc Sony Computer Entertainment 0.09
## 7840 PS2 2008 Misc Ignition Entertainment 0.09
## 7841 PS 1998 Fighting Capcom 0.11
## 7842 X360 2011 Action THQ 0.15
## 7843 PS2 2001 Misc Sony Computer Entertainment 0.09
## 7844 PSP 2005 Platform Konami Digital Entertainment 0.17
## 7845 PS3 2009 Racing THQ 0.14
## 7846 Wii 2011 Role-Playing Level 5 0.00
## 7847 GBA 2004 Adventure THQ 0.14
## 7848 XB 2002 Sports Electronic Arts 0.14
## 7849 PSV 2016 Action Kadokawa Games 0.00
## 7850 3DS 2011 Misc THQ 0.13
## 7851 PS2 2003 Misc Sony Computer Entertainment 0.09
## 7852 PC 2011 Racing Electronic Arts 0.05
## 7853 Wii 2009 Racing Ubisoft 0.18
## 7854 GBA 2002 Adventure Konami Digital Entertainment 0.14
## 7855 XB 2004 Role-Playing Microsoft Game Studios 0.14
## 7856 PS3 2011 Action Electronic Arts 0.07
## 7857 3DS 2012 Action Activision 0.15
## 7858 PSP 2009 Adventure Sony Computer Entertainment 0.00
## 7859 PSV 2014 Role-Playing Idea Factory 0.08
## 7860 N64 1996 Shooter GT Interactive 0.15
## 7861 N64 1997 Fighting GT Interactive 0.15
## 7862 N64 1997 Action Video System 0.15
## 7863 N64 1997 Puzzle Compile 0.00
## 7864 N64 1996 Sports Imagineer 0.00
## 7865 N64 1998 Shooter GT Interactive 0.15
## 7866 N64 1999 Misc NewKidCo 0.15
## 7867 3DS 2015 Action Nintendo 0.00
## 7868 Wii 2009 Puzzle Performance Designed Products 0.18
## 7869 DS 2008 Adventure Namco Bandai Games 0.00
## 7870 Wii 2009 Adventure Ubisoft 0.18
## 7871 Wii 2011 Misc Electronic Arts 0.13
## 7872 GC 2004 Action Konami Digital Entertainment 0.15
## 7873 PC 2013 Action Deep Silver 0.11
## 7874 XOne 2013 Fighting Ubisoft 0.11
## 7875 PS2 2008 Sports Activision 0.09
## 7876 GBA 2002 Sports Electronic Arts 0.14
## 7877 PSP 2010 Action Spike 0.00
## 7878 PS 1996 Strategy Mindscape 0.11
## 7879 X360 2011 Action Electronic Arts 0.10
## 7880 PC 2010 Action Take-Two Interactive 0.18
## 7881 DS 2008 Sports Sega 0.00
## 7882 PS3 2011 Action Tecmo Koei 0.06
## 7883 DS 2010 Misc THQ 0.18
## 7884 PS2 2000 Sports Konami Digital Entertainment 0.09
## 7885 GBA 2002 Role-Playing Media Rings 0.14
## 7886 PS2 2005 Shooter Eidos Interactive 0.09
## 7887 PSV 2013 Role-Playing Xseed Games 0.04
## 7888 Wii 2006 Misc Namco Bandai Games 0.12
## 7889 PS2 2006 Misc D3Publisher 0.00
## 7890 PS3 2010 Sports 505 Games 0.10
## 7891 PS3 2010 Sports Ubisoft 0.11
## 7892 GC 2003 Action Universal Interactive 0.15
## 7893 PS4 2016 Action Sony Computer Entertainment 0.00
## 7894 PS3 2011 Sports Activision 0.11
## 7895 Wii 2010 Sports Ubisoft 0.14
## 7896 PS2 2007 Misc Electronic Arts 0.09
## 7897 PS2 2002 Shooter Activision 0.09
## 7898 PS2 2006 Role-Playing Sega 0.00
## 7899 PS2 2002 Sports Atari 0.09
## 7900 PSV 2015 Action Namco Bandai Games 0.00
## 7901 PS2 2004 Action Sega 0.09
## 7902 DS 2009 Sports Nintendo 0.00
## 7903 DS 2010 Adventure Astragon 0.05
## 7904 GC 2006 Platform Vivendi Games 0.15
## 7905 2600 1981 Sports Mattel Interactive 0.18
## 7906 Wii 2011 Misc Crave Entertainment 0.18
## 7907 DS 2010 Puzzle Storm City Games 0.18
## 7908 PS 1997 Strategy Sony Computer Entertainment 0.00
## 7910 PS 1999 Sports Accolade 0.10
## 7911 GEN 1993 Strategy Sega 0.00
## 7912 PS 1999 Sports Tecmo Koei 0.00
## 7913 XB 2004 Action Electronic Arts 0.14
## 7914 3DS 2011 Racing Activision 0.18
## 7915 PSV 2014 Role-Playing Namco Bandai Games 0.00
## 7916 DS 2006 Puzzle Nintendo 0.00
## 7917 X360 2007 Action Namco Bandai Games 0.15
## 7918 WiiU 2013 Misc Namco Bandai Games 0.00
## 7919 PS2 2009 Action Activision 0.11
## 7920 PS3 2010 Adventure Ubisoft 0.11
## 7921 PS 1995 Sports Acclaim Entertainment 0.10
## 7922 PC 2010 Role-Playing JoWood Productions 0.09
## 7923 Wii 2008 Action SouthPeak Games 0.17
## 7924 X360 2012 Sports 505 Games 0.00
## 7925 PS2 2007 Sports Konami Digital Entertainment 0.00
## 7926 DS 2010 Puzzle THQ 0.10
## 7927 Wii 2007 Action Namco Bandai Games 0.16
## 7928 DS 2004 Misc Nintendo 0.00
## 7929 PS2 2005 Action Sony Computer Entertainment 0.09
## 7930 SNES 1993 Simulation Hect 0.00
## 7931 PC 2011 Racing Codemasters 0.00
## 7932 DS 2010 Misc Hudson Soft 0.00
## 7933 PS3 2013 Strategy Tecmo Koei 0.00
## 7934 Wii 2010 Adventure Asylum Entertainment 0.00
## 7935 Wii 2009 Action Namco Bandai Games 0.17
## 7936 Wii 2011 Misc Nordic Games 0.00
## 7937 DS 2007 Adventure Unknown 0.00
## 7938 PS3 2008 Adventure Disney Interactive Studios 0.12
## 7939 PS4 2014 Misc Sony Computer Entertainment Europe 0.00
## 7940 Wii 2010 Sports Zoo Games 0.18
## 7941 PSV 2015 Action Namco Bandai Games 0.00
## 7942 Wii 2007 Adventure Namco Bandai Games 0.07
## 7943 Wii 2010 Sports Mastiff 0.18
## 7944 GBA 2005 Platform Vivendi Games 0.13
## 7945 X360 2011 Shooter D3Publisher 0.10
## 7946 DS 2007 Misc Nintendo 0.00
## 7948 PS 1994 Simulation Core Design Ltd. 0.10
## 7949 Wii 2007 Action Disney Interactive Studios 0.17
## 7950 PC 2008 Shooter Activision 0.02
## 7951 PS3 2012 Sports Konami Digital Entertainment 0.00
## 7952 3DS 2013 Misc Namco Bandai Games 0.00
## 7953 SAT 1995 Misc Seta Corporation 0.00
## 7954 GBA 2004 Adventure N/A 0.13
## 7955 X360 2012 Sports Electronic Arts 0.10
## 7956 DS 2009 Action Konami Digital Entertainment 0.00
## 7957 GBA 2002 Action Vivendi Games 0.13
## 7958 PS 1996 Platform Accolade 0.10
## 7959 3DS 2011 Sports Marvelous Interactive 0.12
## 7960 PS2 2000 Sports Sony Computer Entertainment 0.09
## 7961 DS 2010 Simulation 505 Games 0.18
## 7962 PS2 2003 Strategy Capcom 0.09
## 7963 SNES 1994 Strategy Namco Bandai Games 0.00
## 7964 PS2 2003 Shooter Metro 3D 0.09
## 7965 GBA 2001 Action Activision 0.13
## 7966 Wii 2009 Racing Capcom 0.05
## 7967 XB 2002 Racing Sega 0.12
## 7968 PS2 2005 Action Activision 0.09
## 7969 DS 2008 Fighting THQ 0.15
## 7970 3DS 2013 Action Konami Digital Entertainment 0.00
## 7971 PS2 2006 Action Tecmo Koei 0.00
## 7972 XB 2002 Action Eidos Interactive 0.14
## 7973 PS3 2009 Shooter Activision 0.17
## 7974 PS2 2007 Sports Sega 0.00
## 7975 XB 2003 Sports Electronic Arts 0.14
## 7976 XOne 2014 Misc Microsoft Game Studios 0.15
## 7977 PSP 2012 Role-Playing Level 5 0.00
## 7978 DS 2006 Role-Playing Nintendo 0.16
## 7979 WiiU 2012 Fighting Namco Bandai Games 0.09
## 7980 Wii 2009 Racing Activision 0.17
## 7981 Wii 2007 Action D3Publisher 0.17
## 7982 PS2 2002 Role-Playing Tecmo Koei 0.09
## 7983 PSV 2014 Role-Playing Sega 0.00
## 7984 X360 2010 Racing Black Bean Games 0.10
## 7985 PSP 2005 Action Tecmo Koei 0.07
## 7986 XB 2006 Sports Electronic Arts 0.13
## 7987 X360 2007 Shooter Ubisoft 0.14
## 7988 XB 2002 Misc Microsoft Game Studios 0.14
## 7989 DS 2007 Adventure Midway Games 0.17
## 7990 PS2 2003 Role-Playing Sony Online Entertainment 0.09
## 7991 X360 2011 Sports Activision 0.14
## 7992 X360 2008 Sports Midway Games 0.17
## 7993 PSP 2011 Fighting THQ 0.12
## 7994 PS 1997 Action Namco Bandai Games 0.10
## 7995 DC 2001 Role-Playing Sega 0.00
## 7996 PS3 2011 Simulation Sony Computer Entertainment 0.06
## 7997 PC 2011 Action Warner Bros. Interactive Entertainment 0.04
## 7998 PS3 2010 Sports Take-Two Interactive 0.17
## 7999 PS2 2004 Fighting Vivendi Games 0.09
## 8000 DS 2010 Adventure Namco Bandai Games 0.06
## 8001 X360 2012 Shooter Electronic Arts 0.10
## 8002 Wii 2009 Simulation Konami Digital Entertainment 0.17
## 8003 X360 2010 Sports Ubisoft 0.08
## 8004 PS2 2004 Simulation 505 Games 0.09
## 8005 GBA 2003 Sports BAM! Entertainment 0.13
## 8006 DS 2010 Action THQ 0.13
## 8007 DS 2006 Simulation Ubisoft 0.17
## 8008 PS2 2003 Role-Playing Atari 0.09
## 8009 XB 2005 Shooter Take-Two Interactive 0.14
## 8010 PS4 2014 Racing Milestone S.r.l. 0.04
## 8011 XB 2003 Action LucasArts 0.14
## 8012 Wii 2007 Sports Electronic Arts 0.17
## 8013 PS2 2003 Action Vivendi Games 0.09
## 8014 PSP 2009 Role-Playing Rising Star Games 0.08
## 8015 X360 2008 Misc MTV Games 0.16
## 8016 PS 2000 Sports Victor Interactive 0.10
## 8017 Wii 2009 Action Take-Two Interactive 0.17
## 8018 PSV 2013 Adventure Square Enix 0.14
## 8019 XB 2002 Platform Electronic Arts 0.14
## 8020 SAT 1997 Fighting Tecmo Koei 0.00
## 8021 PS2 2000 Racing Electronic Arts 0.04
## 8022 PS2 2003 Adventure Sony Computer Entertainment 0.09
## 8023 DS 2005 Action Disney Interactive Studios 0.15
## 8024 XB 2005 Shooter Midway Games 0.14
## 8025 Wii 2009 Action 505 Games 0.11
## 8026 PS4 2014 Action Tecmo Koei 0.06
## 8027 GBA 2005 Strategy Banpresto 0.00
## 8028 PC 2015 Shooter Take-Two Interactive 0.07
## 8029 DS 2007 Sports Jaleco 0.00
## 8030 PS2 2007 Role-Playing Nippon Ichi Software 0.04
## 8031 Wii 2011 Platform THQ 0.11
## 8032 X360 2010 Misc Microsoft Game Studios 0.05
## 8033 PS 2000 Action TDK Core 0.10
## 8034 PC 2009 Shooter Take-Two Interactive 0.01
## 8035 GBA 2001 Adventure Konami Digital Entertainment 0.13
## 8036 DS 2009 Action Activision 0.17
## 8037 PSP 2009 Action Atari 0.16
## 8038 GB 1991 Strategy Nintendo 0.00
## 8039 PS2 2003 Misc Sony Computer Entertainment 0.09
## 8040 Wii 2008 Adventure Atari 0.09
## 8041 PC 2009 Strategy THQ 0.00
## 8042 XOne 2014 Misc Ubisoft 0.08
## 8043 XB 2005 Role-Playing Midway Games 0.14
## 8044 XB 2001 Shooter Konami Digital Entertainment 0.14
## 8046 XB 2002 Misc Infogrames 0.14
## 8047 PS 2001 Action Eidos Interactive 0.10
## 8048 PS3 2010 Action Activision 0.12
## 8049 X360 2013 Action Capcom 0.10
## 8050 N64 1999 Sports Konami Digital Entertainment 0.00
## 8051 WS 1999 Role-Playing Namco Bandai Games 0.00
## 8052 PS 1997 Platform Sony Computer Entertainment 0.00
## 8053 PS2 2004 Shooter Gathering of Developers 0.09
## 8054 X360 2013 Action Square Enix 0.07
## 8055 GBA 2002 Misc Atari 0.13
## 8056 PS2 2008 Sports DTP Entertainment 0.00
## 8057 PC 2011 Racing Ubisoft 0.05
## 8058 PSP 2005 Strategy Konami Digital Entertainment 0.11
## 8059 3DS 2012 Misc Sega 0.00
## 8060 Wii 2008 Misc Sega 0.09
## 8061 PS2 2009 Action Activision 0.13
## 8062 PSP 2005 Misc Sony Computer Entertainment 0.00
## 8063 Wii 2011 Misc Activision 0.15
## 8064 3DS 2016 Action Warner Bros. Interactive Entertainment 0.07
## 8065 GC 2002 Fighting Activision 0.14
## 8066 DS 2005 Action Activision 0.17
## 8067 Wii 2011 Misc Nordic Games 0.00
## 8068 SNES 1993 Sports Capcom 0.04
## 8069 X360 2008 Action Disney Interactive Studios 0.16
## 8070 DS 2011 Simulation Activision 0.13
## 8071 Wii 2010 Misc Ubisoft 0.00
## 8072 PS3 2009 Role-Playing Nippon Ichi Software 0.07
## 8073 DS 2010 Puzzle PlayV 0.05
## 8074 GC 2006 Sports Electronic Arts 0.14
## 8075 PSV 2014 Role-Playing Atlus 0.07
## 8076 PC 2015 Action Warner Bros. Interactive Entertainment 0.11
## 8077 SAT 1998 Fighting Capcom 0.00
## 8078 GBA 2004 Misc Nintendo 0.13
## 8079 3DS 2013 Role-Playing Namco Bandai Games 0.00
## 8080 DS 2008 Misc Brash Entertainment 0.17
## 8081 XB 2001 Racing Infogrames 0.15
## 8082 PS3 2014 Fighting Arc System Works 0.09
## 8083 PS3 2011 Sports Konami Digital Entertainment 0.00
## 8084 X360 2010 Platform D3Publisher 0.10
## 8085 PSV 2014 Fighting Sega 0.08
## 8086 SNES 1991 Strategy Banpresto 0.00
## 8088 PS4 2016 Role-Playing Nippon Ichi Software 0.06
## 8089 XB 2004 Shooter Empire Interactive 0.14
## 8090 PS 1996 Misc Sony Computer Entertainment 0.10
## 8091 PSP 2007 Action Activision 0.16
## 8092 PS2 2004 Role-Playing Capcom 0.09
## 8093 PS2 2003 Racing Genki 0.09
## 8094 PS 1997 Adventure ASCII Entertainment 0.00
## 8095 PC 2010 Sports Electronic Arts 0.00
## 8096 PC 2013 Action Warner Bros. Interactive Entertainment 0.04
## 8097 XB 2004 Sports Activision 0.13
## 8098 DS 2007 Simulation Disney Interactive Studios 0.13
## 8099 N64 1999 Misc NewKidCo 0.14
## 8100 N64 1999 Racing Acclaim Entertainment 0.14
## 8101 SNES 1994 Shooter Konami Digital Entertainment 0.00
## 8102 PSV 2013 Role-Playing Compile Heart 0.09
## 8103 GC 2002 Action Midway Games 0.14
## 8104 PS2 2006 Simulation Banpresto 0.00
## 8105 WiiU 2015 Misc Activision 0.12
## 8106 XB 2005 Platform Sega 0.13
## 8107 PS3 2012 Racing Namco Bandai Games 0.05
## 8108 DS 2005 Racing Electronic Arts 0.15
## 8109 DS 2010 Adventure SouthPeak Games 0.01
## 8110 GBA 2001 Adventure Ubisoft 0.13
## 8111 PS3 2006 Racing Sega 0.14
## 8112 DC 2000 Sports Sega 0.00
## 8113 PS2 2000 Puzzle Empire Interactive 0.09
## 8114 XB 2007 Action Activision 0.13
## 8115 PC 2013 Shooter Sega 0.10
## 8116 X360 2010 Action Namco Bandai Games 0.14
## 8117 PS3 2011 Shooter Square Enix 0.07
## 8118 PC 2014 Role-Playing Namco Bandai Games 0.08
## 8119 3DS 2013 Misc Nintendo 0.00
## 8120 GC 2005 Shooter Activision 0.14
## 8121 X360 2010 Racing THQ 0.17
## 8122 X360 2011 Action THQ 0.13
## 8123 PS3 2009 Misc Sony Computer Entertainment 0.00
## 8124 Wii 2008 Sports Activision 0.17
## 8125 SAT 1994 Racing Sega 0.00
## 8126 Wii 2011 Action Activision 0.10
## 8127 PS 1999 Action Crave Entertainment 0.10
## 8128 PC 2012 Shooter Ubisoft 0.05
## 8129 GBA 2003 Sports Electronic Arts 0.13
## 8130 DS 2011 Action Sega 0.10
## 8131 PC 2011 Shooter Bethesda Softworks 0.06
## 8132 GBA 2005 Misc Zoo Digital Publishing 0.13
## 8133 PS2 2005 Racing Zoo Digital Publishing 0.09
## 8134 X360 2010 Action Tecmo Koei 0.11
## 8135 PC 2015 Sports Electronic Arts 0.04
## 8136 XB 2004 Action Konami Digital Entertainment 0.14
## 8137 PS3 2011 Shooter Unknown 0.17
## 8138 PS2 2002 Strategy Eidos Interactive 0.09
## 8139 PC 2016 Shooter Bethesda Softworks 0.06
## 8140 DS 2010 Misc UFO Interactive 0.17
## 8141 3DS 2012 Sports Konami Digital Entertainment 0.05
## 8142 Wii 2008 Adventure Activision 0.08
## 8143 GC 2001 Sports Electronic Arts 0.14
## 8144 PS4 2014 Action Namco Bandai Games 0.10
## 8145 X360 2009 Racing Atari 0.06
## 8146 PS 2000 Misc Infogrames 0.10
## 8147 PSP 2013 Action Tecmo Koei 0.00
## 8148 PS2 2002 Action Midway Games 0.09
## 8149 Wii 2007 Action Ignition Entertainment 0.16
## 8150 GC 2001 Platform Ubisoft 0.14
## 8151 Wii 2008 Puzzle Destineer 0.17
## 8152 PS 1998 Sports THQ 0.10
## 8153 PS2 2008 Sports Activision Value 0.09
## 8154 X360 2009 Shooter DTP Entertainment 0.14
## 8155 PS 2000 Action Take-Two Interactive 0.10
## 8156 PS2 2005 Action Namco Bandai Games 0.00
## 8157 PS2 2003 Misc Sony Computer Entertainment 0.09
## 8159 PSV 2014 Role-Playing Nippon Ichi Software 0.04
## 8160 GC 2005 Adventure Global Star 0.14
## 8161 PS2 2005 Simulation 505 Games 0.05
## 8162 PS2 2009 Action Eidos Interactive 0.09
## 8163 GBA 2004 Misc THQ 0.13
## 8164 PS3 2007 Sports Take-Two Interactive 0.16
## 8165 PS2 2002 Sports Konami Digital Entertainment 0.04
## 8166 DS 2008 Sports Electronic Arts 0.14
## 8167 PSP 2009 Strategy Namco Bandai Games 0.00
## 8169 PSP 2008 Strategy Namco Bandai Games 0.00
## 8170 XB 2005 Racing THQ 0.13
## 8171 GBA 2003 Platform Electronic Arts 0.13
## 8172 GBA 2002 Sports Atari 0.13
## 8173 DS 2006 Role-Playing Namco Bandai Games 0.00
## 8174 DS 2008 Simulation Electronic Arts 0.00
## 8175 PS3 2011 Action Capcom 0.00
## 8176 PS2 2008 Racing Sega 0.09
## 8177 Wii 2011 Racing Ubisoft 0.06
## 8178 PS2 2004 Fighting Global Star 0.09
## 8179 Wii 2010 Sports Zoo Games 0.17
## 8180 PS2 2001 Sports Midway Games 0.09
## 8181 X360 2011 Action Sega 0.11
## 8182 DS 2010 Action Disney Interactive Studios 0.12
## 8183 DS 2005 Platform Namco Bandai Games 0.16
## 8184 GBA 2001 Sports Konami Digital Entertainment 0.13
## 8185 DS 2008 Adventure THQ 0.16
## 8186 Wii 2010 Sports GameMill Entertainment 0.17
## 8187 PC 2005 Shooter LucasArts 0.02
## 8188 PS 2000 Sports Empire Interactive 0.10
## 8189 PS 2001 Adventure LEGO Media 0.10
## 8190 X360 2007 Sports Take-Two Interactive 0.16
## 8191 X360 2016 Sports Electronic Arts 0.03
## 8192 DS 2010 Adventure THQ 0.17
## 8193 GBA 2004 Sports Atari 0.13
## 8194 XB 2008 Sports Electronic Arts 0.13
## 8195 GBA 2005 Platform THQ 0.13
## 8196 PS2 2006 Role-Playing Banpresto 0.00
## 8197 PS2 2008 Sports Konami Digital Entertainment 0.00
## 8198 XB 2003 Sports Electronic Arts 0.13
## 8199 XB 2005 Misc Namco Bandai Games 0.13
## 8200 PS3 2011 Misc THQ 0.16
## 8201 PS3 2010 Action THQ 0.12
## 8202 XB 2002 Sports Sega 0.13
## 8203 DS 2007 Misc Ubisoft 0.15
## 8204 DS 2010 Misc Disney Interactive Studios 0.14
## 8206 Wii 2008 Fighting Konami Digital Entertainment 0.13
## 8207 PSP 2010 Misc Ubisoft Annecy 0.07
## 8208 PS2 2005 Action Midway Games 0.09
## 8209 PS3 2010 Misc Disney Interactive Studios 0.11
## 8210 PS3 2009 Sports Codemasters 0.00
## 8211 PS2 2005 Sports Sony Computer Entertainment 0.09
## 8212 DS 2009 Adventure Ubisoft 0.16
## 8213 PS2 2001 Shooter Midas Interactive Entertainment 0.09
## 8214 PS3 2009 Strategy Sega 0.13
## 8215 3DS 2013 Misc Konami Digital Entertainment 0.00
## 8216 DS 2006 Sports Konami Digital Entertainment 0.00
## 8217 PS3 2011 Action Warner Bros. Interactive Entertainment 0.09
## 8218 PC 2011 Adventure LucasArts 0.00
## 8219 DS 2009 Adventure Ubisoft 0.07
## 8220 PS 2000 Adventure Mattel Interactive 0.10
## 8221 PS3 2011 Racing Capcom 0.04
## 8222 PSV 2016 Sports Konami Digital Entertainment 0.00
## 8223 PS2 2002 Sports Sega 0.09
## 8225 PSV 2014 Action Idea Factory International 0.07
## 8226 GBA 2001 Sports BAM! Entertainment 0.12
## 8227 PS3 2009 Action Playlogic Game Factory 0.11
## 8228 PS2 2002 Sports Natsume 0.09
## 8229 GC 2002 Platform THQ 0.13
## 8230 PS2 2001 Adventure 3DO 0.09
## 8231 GC 2006 Platform Ubisoft 0.13
## 8232 PS3 2008 Action Disney Interactive Studios 0.14
## 8233 PS4 2015 Adventure Telltale Games 0.10
## 8234 XOne 2014 Misc Microsoft Game Studios 0.11
## 8235 DS 2010 Sports Atari 0.16
## 8236 PS 1995 Fighting Acclaim Entertainment 0.10
## 8237 DS 2007 Adventure Konami Digital Entertainment 0.09
## 8238 GBA 2004 Misc Crave Entertainment 0.12
## 8239 PS2 2005 Shooter Essential Games 0.00
## 8240 PS3 2008 Sports Activision 0.16
## 8241 GC 2006 Sports Take-Two Interactive 0.13
## 8242 PS3 2009 Sports Spike 0.16
## 8243 DS 2009 Role-Playing Square Enix 0.00
## 8244 PS2 2002 Sports Sony Computer Entertainment 0.08
## 8245 PS3 2011 Action DTP Entertainment 0.07
## 8246 DS 2010 Strategy Namco Bandai Games 0.00
## 8247 GC 2006 Action Midway Games 0.13
## 8248 XB 2003 Sports Microsoft Game Studios 0.13
## 8249 PS 1998 Fighting SNK 0.00
## 8250 PC 2011 Role-Playing Square Enix 0.08
## 8251 X360 2011 Sports Activision 0.16
## 8252 PS 1996 Action Adeline Software 0.10
## 8253 DS 2007 Sports 505 Games 0.16
## 8254 Wii 2008 Simulation Destineer 0.16
## 8255 DS 2007 Action Namco Bandai Games 0.00
## 8256 PS2 2004 Sports Sony Computer Entertainment 0.08
## 8257 PS3 2008 Fighting Electronic Arts 0.13
## 8258 DS 2009 Puzzle Performance Designed Products 0.16
## 8259 Wii 2008 Sports Electronic Arts 0.16
## 8260 PS4 2015 Action Sega 0.00
## 8261 GC 2003 Platform Vivendi Games 0.13
## 8262 PC 2012 Role-Playing Funcom 0.07
## 8263 X360 2008 Sports Take-Two Interactive 0.15
## 8264 X360 2006 Action Activision 0.16
## 8265 GC 2005 Action Activision 0.13
## 8266 XB 2003 Shooter Vivendi Games 0.13
## 8267 PS3 2011 Platform Sony Computer Entertainment 0.08
## 8268 PSP 2012 Action Namco Bandai Games 0.00
## 8269 PS2 2009 Action Activision 0.08
## 8270 GBA 2001 Sports Konami Digital Entertainment 0.12
## 8271 PS2 2001 Shooter Virgin Interactive 0.08
## 8272 XB 2003 Misc Microsoft Game Studios 0.13
## 8273 PS3 2009 Action Warner Bros. Interactive Entertainment 0.08
## 8274 GC 2005 Fighting Electronic Arts 0.13
## 8275 DS 2006 Puzzle Nintendo 0.13
## 8276 PS 2001 Platform Sony Computer Entertainment 0.10
## 8277 GB 1999 Sports Konami Digital Entertainment 0.00
## 8278 SAT 1998 Fighting SNK 0.00
## 8279 DS 2010 Action Namco Bandai Games 0.00
## 8280 Wii 2008 Adventure Scholastic Inc. 0.16
## 8281 PSV 2014 Action Namco Bandai Games 0.06
## 8282 PS 1999 Strategy Namco Bandai Games 0.00
## 8283 PS 1999 Adventure ChunSoft 0.00
## 8284 DS 2007 Shooter SouthPeak Games 0.15
## 8285 XB 2004 Shooter Midway Games 0.13
## 8286 XB 2003 Shooter Vivendi Games 0.13
## 8287 PSP 2010 Platform D3Publisher 0.05
## 8288 PS2 2005 Racing Play It 0.08
## 8289 PS2 2003 Strategy Jaleco 0.08
## 8290 GBA 2005 Misc THQ 0.12
## 8291 DS 2009 Action Take-Two Interactive 0.16
## 8292 PS2 2008 Sports Atari 0.08
## 8293 PS2 2000 Action 3DO 0.08
## 8294 3DS 2016 Role-Playing Deep Silver 0.03
## 8295 PC 2009 Strategy Microsoft Game Studios 0.01
## 8296 DS 2006 Action THQ 0.12
## 8297 PS2 2009 Sports Atari 0.08
## 8298 PS 1997 Action Capcom 0.00
## 8299 PS3 2010 Action Warner Bros. Interactive Entertainment 0.10
## 8300 X360 2006 Sports Take-Two Interactive 0.15
## 8301 X360 2010 Action Microsoft Game Studios 0.06
## 8302 PS 1996 Fighting Sony Computer Entertainment 0.00
## 8303 PS2 2003 Action Midway Games 0.08
## 8304 PS2 2003 Role-Playing Square Enix 0.00
## 8305 PS2 2007 Role-Playing Namco Bandai Games 0.00
## 8306 Wii 2010 Misc UFO Interactive 0.16
## 8307 WS 2000 Strategy Namco Bandai Games 0.00
## 8308 GC 2003 Platform Warner Bros. Interactive Entertainment 0.13
## 8309 GBA 2005 Platform THQ 0.12
## 8310 PSP 2009 Action Namco Bandai Games 0.00
## 8311 PSP 2008 Sports Activision 0.16
## 8312 Wii 2010 Sports D3Publisher 0.16
## 8313 PSP 2007 Action Sony Computer Entertainment 0.07
## 8315 XB 2003 Action Interplay 0.13
## 8316 X360 2008 Role-Playing Codemasters 0.03
## 8317 PSP 2006 Sports Electronic Arts 0.13
## 8318 PSP 2013 Action Konami Digital Entertainment 0.00
## 8319 DC 1999 Racing Genki 0.00
## 8320 PS 1998 Fighting Agetec 0.05
## 8321 X360 2007 Action Activision 0.16
## 8322 Wii 2009 Sports Atari 0.16
## 8323 Wii 2008 Puzzle Deep Silver 0.04
## 8324 XB 2004 Action Eidos Interactive 0.13
## 8325 PS3 2009 Misc Sony Computer Entertainment 0.00
## 8326 PSP 2008 Sports Sony Computer Entertainment 0.16
## 8327 3DS 2012 Action Activision 0.13
## 8328 GBA 2005 Action Electronic Arts 0.12
## 8329 X360 2014 Action Activision 0.09
## 8330 PS 1999 Platform Atari 0.09
## 8331 GBA 2004 Misc N/A 0.12
## 8332 Wii 2008 Puzzle Mumbo Jumbo 0.16
## 8333 Wii 2008 Misc Game Factory 0.16
## 8334 X360 2009 Action Playlogic Game Factory 0.14
## 8336 X360 2010 Racing Capcom 0.07
## 8337 PSP 2004 Misc Konami Digital Entertainment 0.00
## 8338 N64 1999 Racing Midway Games 0.14
## 8339 N64 1999 Adventure Hudson Soft 0.05
## 8340 N64 2000 Shooter Acclaim Entertainment 0.12
## 8341 XB 2003 Action Electronic Arts 0.13
## 8342 GBA 2004 Misc N/A 0.12
## 8343 Wii 2008 Simulation Majesco Entertainment 0.14
## 8344 GBA 2004 Misc Nintendo 0.12
## 8345 PS3 2012 Role-Playing Nippon Ichi Software 0.06
## 8346 PS2 2009 Sports Spike 0.08
## 8347 PSP 2010 Action Namco Bandai Games 0.00
## 8348 PS2 2008 Misc Disney Interactive Studios 0.08
## 8349 PS2 2007 Adventure Kadokawa Shoten 0.00
## 8350 GBA 2004 Action Disney Interactive Studios 0.12
## 8351 PC 2005 Strategy Take-Two Interactive 0.02
## 8352 PSP 2013 Sports Konami Digital Entertainment 0.00
## 8353 PS 1995 Role-Playing Panther Software 0.02
## 8354 Wii 2010 Misc Ubisoft 0.16
## 8355 PS4 2015 Sports Electronic Arts 0.10
## 8356 X360 2010 Adventure Ubisoft 0.11
## 8357 DS 2010 Misc Telegames 0.16
## 8358 PS2 2006 Role-Playing Namco Bandai Games 0.00
## 8359 GBA 2004 Adventure Capcom 0.00
## 8360 DS 2008 Action THQ 0.16
## 8361 PS2 2001 Sports Tecmo Koei 0.05
## 8362 PS 2000 Action Konami Digital Entertainment 0.09
## 8363 Wii 2009 Puzzle Konami Digital Entertainment 0.10
## 8364 X360 2007 Misc Microsoft Game Studios 0.14
## 8365 PS2 2004 Action Electronic Arts 0.08
## 8366 X360 2009 Action Activision 0.12
## 8367 X360 2012 Action GameMill Entertainment 0.16
## 8368 PS2 2007 Action Blast! Entertainment Ltd 0.08
## 8369 GBA 2004 Misc N/A 0.12
## 8370 Wii 2013 Simulation Disney Interactive Studios 0.08
## 8371 Wii 2007 Misc Rising Star Games 0.11
## 8372 SNES 1996 Shooter Hudson Soft 0.00
## 8373 PS2 2004 Shooter Atari 0.08
## 8374 PS 2000 Action 3DO 0.09
## 8375 PS2 2005 Action Capcom 0.04
## 8376 PS 1996 Action Gremlin Interactive Ltd 0.09
## 8378 PS4 2015 Racing Milestone S.r.l. 0.00
## 8379 GC 2005 Sports Electronic Arts 0.13
## 8380 X360 2007 Racing Activision 0.15
## 8381 X360 2009 Action Disney Interactive Studios 0.11
## 8382 GBA 2003 Shooter Electronic Arts 0.12
## 8383 PS2 2007 Fighting Namco Bandai Games 0.00
## 8384 GC 2002 Platform TDK Mediactive 0.13
## 8385 PS 1998 Role-Playing SquareSoft 0.00
## 8386 PS2 2004 Sports Sony Computer Entertainment 0.08
## 8387 XB 2002 Shooter Infogrames 0.13
## 8388 PS 2001 Racing Hasbro Interactive 0.09
## 8389 PS 1996 Sports Gremlin Interactive Ltd 0.09
## 8390 3DS 2011 Misc Ubisoft 0.13
## 8391 XB 2003 Action Take-Two Interactive 0.13
## 8392 PSV 2015 Role-Playing Namco Bandai Games 0.00
## 8393 PS 1995 Racing Crystal Dynamics 0.09
## 8394 Wii 2010 Action Activision 0.15
## 8395 PS2 2002 Sports Electronic Arts 0.07
## 8396 PS2 2008 Misc THQ 0.08
## 8397 DS 2006 Fighting Nintendo 0.02
## 8398 PS 1998 Adventure Human Entertainment 0.02
## 8399 PS 2000 Action Ubisoft 0.09
## 8400 Wii 2007 Sports Ubisoft 0.15
## 8401 PS4 2016 Sports Konami Digital Entertainment 0.00
## 8402 GC 2003 Platform Capcom 0.13
## 8403 Wii 2009 Misc Mindscape 0.00
## 8404 PSP 2005 Racing Sony Computer Entertainment 0.14
## 8405 DS 2006 Platform Nintendo 0.00
## 8406 PS2 2008 Role-Playing Atlus 0.00
## 8407 X360 2010 Simulation 505 Games 0.08
## 8408 PS 1996 Misc Konami Digital Entertainment 0.00
## 8409 PS2 2000 Racing Acclaim Entertainment 0.08
## 8410 PS4 2016 Role-Playing Sega 0.06
## 8411 PS3 2008 Action Konami Digital Entertainment 0.13
## 8412 XB 2003 Fighting Eidos Interactive 0.13
## 8413 DS 2004 Puzzle Ignition Entertainment 0.10
## 8414 XB 2002 Action Midway Games 0.13
## 8415 PS4 2015 Action Tecmo Koei 0.05
## 8416 PS2 2003 Role-Playing Hudson Soft 0.00
## 8417 GC 2002 Role-Playing Activision 0.10
## 8418 PS3 2011 Racing Ubisoft 0.00
## 8419 X360 2009 Sports Focus Home Interactive 0.13
## 8420 GBA 2002 Racing THQ 0.12
## 8421 GBA 2002 Shooter BAM! Entertainment 0.12
## 8422 SNES 1996 Strategy Tecmo Koei 0.00
## 8423 DS 2010 Misc 505 Games 0.16
## 8424 DS 2007 Adventure Take-Two Interactive 0.15
## 8425 SNES 1993 Sports Hudson Soft 0.00
## 8426 DS 2009 Misc Game Life 0.04
## 8427 SNES 1996 Fighting Nintendo 0.00
## 8428 3DS 2014 Role-Playing Square Enix 0.00
## 8429 XOne 2015 Shooter 505 Games 0.08
## 8430 XB 2006 Shooter Eidos Interactive 0.12
## 8431 3DS 2014 Action Nippon Columbia 0.00
## 8432 X360 2015 Sports Deep Silver 0.15
## 8433 DS 2008 Action Activision 0.15
## 8434 PS3 2008 Shooter LucasArts 0.11
## 8435 PS2 2004 Misc Sega 0.08
## 8436 GC 2003 Misc Midway Games 0.13
## 8437 XB 2004 Adventure Vivendi Games 0.12
## 8438 GBA 2005 Misc DSI Games 0.12
## 8439 Wii 2008 Platform Namco Bandai Games 0.11
## 8441 PS2 2008 Sports Sony Computer Entertainment 0.08
## 8442 DS 2005 Action Vivendi Games 0.14
## 8443 SAT 1997 Action Capcom 0.00
## 8444 PC 2014 Role-Playing NCSoft 0.08
## 8445 3DS 2016 Role-Playing Namco Bandai Games 0.00
## 8446 X360 2010 Simulation Activision 0.12
## 8447 DS 2007 Misc IE Institute 0.00
## 8448 PS3 2014 Sports Konami Digital Entertainment 0.00
## 8449 PS4 2015 Action Marvelous Interactive 0.07
## 8450 SNES 1997 Sports Nintendo 0.00
## 8451 GC 2002 Adventure Nintendo 0.01
## 8452 PC 2012 Simulation Electronic Arts 0.00
## 8453 X360 2012 Action Sega 0.11
## 8454 XB 2004 Racing Empire Interactive 0.12
## 8455 3DS 2015 Role-Playing Namco Bandai Games 0.04
## 8456 PS3 2008 Sports Electronic Arts 0.15
## 8457 PS3 2010 Action Activision 0.14
## 8458 2600 1983 Action Parker Bros. 0.15
## 8459 2600 1982 Action Avalon Interactive 0.15
## 8460 2600 1981 Action Mattel Interactive 0.15
## 8461 SAT 1995 Shooter Konami Digital Entertainment 0.00
## 8462 X360 2007 Strategy LucasArts 0.13
## 8463 PS3 2012 Role-Playing Compile Heart 0.05
## 8464 PS2 2002 Platform Atari 0.08
## 8465 PSV 2015 Action Namco Bandai Games 0.00
## 8466 Wii 2010 Strategy Take-Two Interactive 0.13
## 8467 PS3 2016 Action Sony Computer Entertainment 0.13
## 8468 PSV 2013 Role-Playing Sega 0.00
## 8469 PS2 2001 Racing Atari 0.08
## 8470 PS2 2002 Role-Playing Sony Computer Entertainment 0.00
## 8471 PS2 2001 Racing LucasArts 0.08
## 8472 Wii 2008 Puzzle Popcorn Arcade 0.16
## 8473 GBA 2002 Racing THQ 0.12
## 8474 PS3 2014 Role-Playing Tecmo Koei 0.05
## 8475 PS3 2009 Action Activision 0.15
## 8476 X360 2009 Adventure Codemasters 0.14
## 8477 PS 2000 Shooter Fox Interactive 0.09
## 8478 PS2 2004 Sports Sony Computer Entertainment 0.08
## 8479 PSP 2006 Role-Playing Take-Two Interactive 0.13
## 8480 PSP 2008 Action Activision 0.12
## 8481 3DS 2011 Racing Codemasters 0.07
## 8482 DS 2011 Misc THQ 0.12
## 8483 Wii 2010 Shooter Neko Entertainment 0.08
## 8484 PS3 2010 Action Electronic Arts 0.11
## 8485 DS 2010 Role-Playing Square Enix 0.12
## 8486 X360 2011 Action Ignition Entertainment 0.07
## 8487 PS2 2003 Sports Sega 0.08
## 8488 Wii 2011 Action Sega 0.11
## 8489 PS2 2000 Racing Electronic Arts 0.06
## 8490 PSP 2006 Fighting Majesco Entertainment 0.13
## 8491 DS 2009 Fighting Konami Digital Entertainment 0.00
## 8492 X360 2010 Action Namco Bandai Games 0.08
## 8493 DS 2010 Action PlayV 0.00
## 8494 GC 2002 Shooter TDK Mediactive 0.13
## 8495 DS 2005 Sports Nintendo 0.11
## 8496 PS2 2002 Platform Infogrames 0.08
## 8497 PS 2000 Misc Hudson Soft 0.00
## 8498 GBA 2006 Simulation THQ 0.12
## 8499 PS2 2003 Adventure Atari 0.08
## 8500 PS3 2013 Action Tecmo Koei 0.02
## 8501 GBA 2006 Action Namco Bandai Games 0.12
## 8502 Wii 2007 Racing Activision 0.15
## 8503 Wii 2009 Action Vir2L Studios 0.14
## 8504 PC 2011 Strategy N/A 0.06
## 8505 Wii 2012 Action Activision 0.11
## 8506 Wii 2010 Action Unknown 0.11
## 8507 PS2 2003 Simulation Sammy Corporation 0.08
## 8508 3DS 2011 Adventure Konami Digital Entertainment 0.07
## 8509 DS 2006 Action Disney Interactive Studios 0.15
## 8510 Wii 2007 Fighting Atari 0.15
## 8511 PS2 2006 Adventure Sega 0.00
## 8512 GBA 2003 Action Ubisoft 0.12
## 8513 PSP 2010 Role-Playing Falcom Corporation 0.00
## 8514 X360 2011 Action Ubisoft Annecy 0.09
## 8515 PS 1995 Role-Playing Sony Computer Entertainment 0.09
## 8516 PSP 2009 Misc Disney Interactive Studios 0.13
## 8517 GBA 2005 Sports DTP Entertainment 0.12
## 8518 PS 2000 Sports Namco Bandai Games 0.00
## 8519 GC 2004 Misc Midway Games 0.13
## 8520 GC 2003 Racing THQ 0.13
## 8521 DS 2007 Strategy Sega 0.00
## 8522 PS 1998 Sports Victor Interactive 0.00
## 8523 PS 1998 Racing Gremlin Interactive Ltd 0.09
## 8524 XB 2003 Strategy Atari 0.12
## 8525 PS3 2009 Simulation Ubisoft 0.12
## 8526 PS2 2007 Misc Activision 0.08
## 8527 Wii 2012 Sports Take-Two Interactive 0.15
## 8528 X360 2014 Sports Konami Digital Entertainment 0.05
## 8529 PS4 2015 Action Tecmo Koei 0.07
## 8530 SNES 1992 Adventure ChunSoft 0.00
## 8531 3DS 2011 Role-Playing Namco Bandai Games 0.00
## 8532 GC 2005 Racing Vivendi Games 0.12
## 8533 X360 2011 Misc 505 Games 0.11
## 8534 Wii 2009 Sports Atari 0.15
## 8535 DS 2010 Simulation Majesco Entertainment 0.13
## 8536 X360 2014 Racing Deep Silver 0.15
## 8537 XB 2005 Shooter Electronic Arts 0.12
## 8538 PS2 2005 Misc Midway Games 0.08
## 8539 PS2 2002 Platform Midway Games 0.08
## 8540 PS3 2007 Action Ubisoft 0.14
## 8541 DS 2009 Puzzle D3Publisher 0.15
## 8542 DS 2005 Misc Nintendo 0.00
## 8543 PS2 2005 Adventure Activision 0.08
## 8544 PS2 2003 Action Ubisoft 0.08
## 8545 PS3 2012 Action Activision 0.12
## 8546 Wii 2007 Platform Konami Digital Entertainment 0.14
## 8547 PS2 2002 Adventure Acclaim Entertainment 0.08
## 8548 PSP 2011 Strategy Konami Digital Entertainment 0.00
## 8549 PS3 2008 Shooter Activision Value 0.15
## 8550 XB 2003 Action Tecmo Koei 0.12
## 8551 PS2 2003 Sports Activision 0.08
## 8552 GC 2005 Action THQ 0.12
## 8553 SNES 1997 Sports Konami Digital Entertainment 0.00
## 8555 PS3 2007 Sports Take-Two Interactive 0.15
## 8556 GC 2006 Platform D3Publisher 0.12
## 8557 DS 2006 Action Vivendi Games 0.13
## 8558 PSP 2006 Strategy Vivendi Games 0.15
## 8559 PS2 2005 Role-Playing Banpresto 0.00
## 8560 PS2 2006 Sports Konami Digital Entertainment 0.00
## 8561 PS2 2002 Shooter Konami Digital Entertainment 0.08
## 8562 X360 2006 Misc Activision 0.15
## 8563 GBA 2002 Racing Infogrames 0.12
## 8564 PS2 2008 Fighting Namco Bandai Games 0.08
## 8565 SNES 1995 Sports Konami Digital Entertainment 0.00
## 8566 Wii 2008 Fighting Midway Games 0.14
## 8567 PS2 2003 Misc Play It 0.08
## 8568 PSP 2006 Strategy Sony Online Entertainment 0.14
## 8569 GC 2005 Action Vivendi Games 0.12
## 8570 Wii 2009 Sports Activision 0.15
## 8571 PS3 2009 Fighting Ignition Entertainment 0.11
## 8572 DS 2010 Adventure Asylum Entertainment 0.00
## 8573 XOne 2014 Action Square Enix 0.08
## 8574 DS 2008 Sports Ubisoft 0.15
## 8575 DS 2009 Strategy Majesco Entertainment 0.15
## 8576 SNES 1991 Simulation Imagineer 0.00
## 8577 Wii 2011 Sports Take-Two Interactive 0.15
## 8578 PSP 2011 Action Capcom 0.00
## 8579 PC 2011 Sports Take-Two Interactive 0.09
## 8580 GBA 2001 Action THQ 0.11
## 8581 PS 1997 Sports Aques 0.00
## 8582 N64 1998 Fighting Ocean 0.13
## 8583 N64 1999 Shooter Crave Entertainment 0.13
## 8584 N64 2001 Action BAM! Entertainment 0.13
## 8585 N64 2001 Sports Konami Digital Entertainment 0.00
## 8586 N64 2000 Fighting Ubisoft 0.13
## 8587 N64 2000 Racing Midway Games 0.13
## 8588 N64 1999 Shooter Activision 0.13
## 8589 N64 2000 Strategy Nintendo 0.13
## 8590 N64 1999 Racing THQ 0.13
## 8591 N64 1998 Action Ubisoft 0.13
## 8592 N64 1999 Misc Midway Games 0.13
## 8593 N64 1996 Simulation Enix Corporation 0.00
## 8594 X360 2006 Role-Playing Namco Bandai Games 0.12
## 8595 DS 2009 Puzzle Ubisoft 0.00
## 8596 DS 2010 Action Namco Bandai Games 0.05
## 8597 DS 2006 Misc TDK Core 0.00
## 8598 PSP 2006 Simulation Rising Star Games 0.08
## 8599 PC 2014 Racing Ubisoft 0.00
## 8600 PSP 2008 Simulation Namco Bandai Games 0.00
## 8601 PS2 2003 Fighting Vivendi Games 0.08
## 8602 X360 2009 Adventure Focus Home Interactive 0.11
## 8603 PS2 2006 Role-Playing Namco Bandai Games 0.00
## 8604 XB 2004 Sports Zoo Digital Publishing 0.12
## 8605 PS3 2007 Shooter Vivendi Games 0.14
## 8606 X360 2006 Sports Midway Games 0.15
## 8607 DS 2010 Simulation THQ 0.15
## 8608 PS3 2011 Sports Ubisoft 0.08
## 8609 DS 2008 Sports Ubisoft 0.14
## 8610 DS 2008 Adventure Konami Digital Entertainment 0.03
## 8611 PS3 2013 Simulation Focus Home Interactive 0.00
## 8612 Wii 2010 Action Crave Entertainment 0.15
## 8613 PSV 2011 Action Sony Computer Entertainment 0.06
## 8614 DS 2009 Action THQ 0.08
## 8615 PS2 2004 Adventure Namco Bandai Games 0.08
## 8616 DS 2007 Role-Playing Success 0.16
## 8617 PC 2011 Shooter Electronic Arts 0.07
## 8618 SNES 1992 Sports Banpresto 0.00
## 8619 X360 2010 Sports Ubisoft 0.10
## 8620 PSP 2011 Sports Sony Computer Entertainment 0.15
## 8622 X360 2005 Sports Take-Two Interactive 0.13
## 8623 Wii 2009 Misc D3Publisher 0.14
## 8624 PS2 2006 Racing Empire Interactive 0.08
## 8625 PSP 2006 Fighting Atari 0.14
## 8626 PS 1995 Sports Electronic Arts 0.09
## 8627 DS 2008 Action Destineer 0.15
## 8628 X360 2013 Action Tecmo Koei 0.09
## 8629 PS 2000 Sports Sony Computer Entertainment 0.09
## 8630 Wii 2008 Action THQ 0.15
## 8631 X360 2012 Misc Ubisoft 0.13
## 8632 DS 2012 Action Warner Bros. Interactive Entertainment 0.00
## 8633 PS3 2014 Fighting Sega 0.05
## 8634 PS 2000 Sports Konami Digital Entertainment 0.00
## 8635 SAT 1998 Adventure Imagineer 0.00
## 8636 DS 2007 Misc Ubisoft 0.12
## 8637 Wii 2010 Strategy Konami Digital Entertainment 0.11
## 8638 PSV 2013 Adventure Warner Bros. Interactive Entertainment 0.02
## 8639 GBA 2001 Racing Konami Digital Entertainment 0.09
## 8640 SNES 1994 Fighting Capcom 0.00
## 8641 PS3 2008 Sports Midway Games 0.11
## 8642 GBA 2003 Racing Nintendo 0.11
## 8643 PS 1999 Racing Square 0.00
## 8644 DS 2011 Misc D3Publisher 0.14
## 8645 GBA 2001 Puzzle Namco Bandai Games 0.00
## 8646 DS 2009 Misc DTP Entertainment 0.14
## 8647 WiiU 2012 Action THQ 0.07
## 8648 Wii 2010 Adventure Destineer 0.15
## 8649 Wii 2011 Misc Electronic Arts 0.10
## 8650 DS 2007 Sports Spike 0.15
## 8651 PSP 2009 Sports Sega 0.00
## 8652 Wii 2011 Sports Take-Two Interactive 0.15
## 8653 PC 2010 Shooter City Interactive 0.00
## 8654 DS 2007 Misc 505 Games 0.15
## 8655 PS3 2011 Misc THQ 0.04
## 8656 GBA 2005 Action THQ 0.11
## 8657 PS3 2012 Role-Playing Nippon Ichi Software 0.04
## 8658 PS4 2016 Adventure Sega 0.00
## 8659 PS 1998 Misc Syscom 0.00
## 8660 X360 2009 Sports Aspyr 0.15
## 8661 PS 1996 Sports Electronic Arts 0.09
## 8662 X360 2010 Action Konami Digital Entertainment 0.10
## 8663 PS 1996 Fighting Acclaim Entertainment 0.01
## 8664 PS2 2004 Shooter Play It 0.08
## 8665 DS 2007 Puzzle Rising Star Games 0.13
## 8666 PSP 2010 Misc Ubisoft 0.11
## 8667 Wii 2007 Adventure Electronic Arts 0.14
## 8668 PS 1995 Shooter Sony Computer Entertainment 0.00
## 8669 PSP 2008 Strategy Namco Bandai Games 0.00
## 8670 GC 2003 Sports Electronic Arts 0.12
## 8671 DS 2006 Adventure THQ 0.14
## 8672 XOne 2013 Strategy Activision 0.11
## 8673 Wii 2010 Sports Atari 0.15
## 8674 PS4 2014 Fighting Arc System Works 0.10
## 8675 Wii 2009 Misc Activision 0.14
## 8676 DS 2010 Misc THQ 0.14
## 8677 3DS 2015 Role-Playing Sega 0.03
## 8678 PC 2011 Racing Codemasters 0.00
## 8679 3DS 2012 Misc Nintendo 0.00
## 8680 X360 2012 Simulation Konami Digital Entertainment 0.11
## 8681 DS 2010 Action Crave Entertainment 0.15
## 8682 Wii 2012 Action THQ 0.12
## 8683 GBA 2001 Racing THQ 0.11
## 8684 XB 2005 Shooter Microsoft Game Studios 0.12
## 8685 PS 1996 Racing Ubisoft 0.09
## 8686 DS 2005 Puzzle Ubisoft 0.10
## 8687 GC 2002 Sports Sega 0.12
## 8688 PS2 2007 Fighting AQ Interactive 0.06
## 8689 XB 2004 Sports Electronic Arts 0.12
## 8690 PSP 2010 Sports Konami Digital Entertainment 0.00
## 8691 PSP 2005 Shooter THQ 0.14
## 8692 PS2 2003 Shooter Vivendi Games 0.08
## 8693 XOne 2014 Adventure Telltale Games 0.08
## 8694 PSP 2011 Role-Playing Square Enix 0.00
## 8695 Wii 2007 Puzzle 505 Games 0.13
## 8696 Wii 2008 Misc Activision 0.14
## 8697 3DS 2012 Role-Playing Namco Bandai Games 0.00
## 8698 PS 1996 Action Eidos Interactive 0.09
## 8699 PC 2012 Action Nordic Games 0.03
## 8700 PS3 2010 Action THQ 0.07
## 8701 PS3 2011 Misc Namco Bandai Games 0.00
## 8702 DS 2009 Action Activision 0.14
## 8703 DS 2009 Simulation Ubisoft 0.15
## 8704 PS2 2008 Misc MTV Games 0.08
## 8705 3DS 2011 Action Marvelous Interactive 0.00
## 8706 DS 2005 Action Activision 0.14
## 8707 X360 2010 Action Ubisoft Annecy 0.07
## 8709 GBA 2002 Action TDK Mediactive 0.11
## 8710 DS 2007 Puzzle White Park Bay Software 0.13
## 8711 PS4 2013 Platform System 3 0.06
## 8712 PS 2000 Racing Vatical Entertainment 0.09
## 8713 PS 1996 Action Electronic Arts 0.09
## 8714 Wii 2011 Sports Take-Two Interactive 0.05
## 8715 DS 2010 Action Ubisoft 0.14
## 8716 GBA 2002 Sports Activision 0.11
## 8717 PS 1999 Racing Sony Computer Entertainment 0.09
## 8718 PS 1996 Misc Sony Computer Entertainment 0.02
## 8719 PS 1997 Racing BMG Interactive Entertainment 0.09
## 8720 DS 2007 Fighting Sega 0.12
## 8721 Wii 2011 Simulation Crave Entertainment 0.15
## 8722 GBA 2003 Fighting Namco Bandai Games 0.11
## 8723 PS 1998 Racing Tecmo Koei 0.00
## 8724 X360 2005 Sports Electronic Arts 0.11
## 8725 PS2 2001 Racing BAM! Entertainment 0.08
## 8726 PC 2011 Shooter Warner Bros. Interactive Entertainment 0.04
## 8727 X360 2011 Platform THQ 0.10
## 8728 PS2 2003 Shooter THQ 0.08
## 8729 DS 2009 Racing Activision 0.13
## 8730 3DS 2011 Adventure Ubisoft 0.07
## 8731 PS3 2010 Action Rising Star Games 0.08
## 8732 PSP 2006 Puzzle Konami Digital Entertainment 0.14
## 8733 PS2 2001 Misc Codemasters 0.08
## 8734 DS 2008 Puzzle Avanquest 0.14
## 8735 X360 2009 Action Activision 0.14
## 8736 DS 2008 Shooter Square Enix 0.12
## 8737 GC 2003 Racing Acclaim Entertainment 0.12
## 8738 PS2 2001 Racing Acclaim Entertainment 0.08
## 8739 PS3 2007 Sports Take-Two Interactive 0.14
## 8740 DS 2007 Role-Playing Namco Bandai Games 0.00
## 8741 PS2 2004 Role-Playing Tecmo Koei 0.08
## 8742 XB 2004 Platform Microsoft Game Studios 0.12
## 8743 X360 2009 Strategy Sega 0.11
## 8744 PS3 2009 Sports Take-Two Interactive 0.13
## 8745 PSP 2006 Sports Electronic Arts 0.07
## 8746 GC 2005 Platform THQ 0.12
## 8747 PC 2012 Adventure Daedalic 0.00
## 8748 3DS 2014 Simulation Natsume 0.12
## 8749 GC 2002 Sports Electronic Arts 0.12
## 8750 GC 2003 Sports Electronic Arts 0.12
## 8751 GC 2001 Racing Acclaim Entertainment 0.12
## 8752 XOne 2016 Sports Electronic Arts 0.13
## 8753 DS 2009 Puzzle GSP 0.00
## 8754 X360 2014 Action Konami Digital Entertainment 0.07
## 8755 PS2 2005 Role-Playing Atari 0.08
## 8756 X360 2009 Racing THQ 0.14
## 8757 PS 1999 Misc Sony Computer Entertainment 0.09
## 8758 2600 1989 Puzzle Atari 0.14
## 8759 2600 1982 Action Activision 0.14
## 8760 SAT 1996 Puzzle Sega 0.00
## 8762 PSP 2006 Sports Konami Digital Entertainment 0.00
## 8763 3DS 2011 Action Ubisoft 0.05
## 8764 XB 2004 Racing Zoo Digital Publishing 0.11
## 8765 DS 2010 Action Disney Interactive Studios 0.12
## 8766 PS3 2014 Action Square Enix 0.05
## 8767 DS 2009 Simulation City Interactive 0.13
## 8768 XB 2005 Strategy Deep Silver 0.11
## 8769 XOne 2015 Action Bethesda Softworks 0.07
## 8770 XB 2002 Action Atari 0.11
## 8771 GBA 2005 Misc N/A 0.11
## 8772 PSP 2009 Fighting Namco Bandai Games 0.14
## 8773 GC 2005 Platform THQ 0.12
## 8774 PS 1998 Racing GT Interactive 0.09
## 8775 Wii 2007 Action Tecmo Koei 0.11
## 8776 X360 2006 Shooter Microsoft Game Studios 0.12
## 8777 PS2 2005 Racing Konami Digital Entertainment 0.07
## 8778 PS2 2000 Sports Sony Computer Entertainment 0.07
## 8779 PS2 2004 Misc Eidos Interactive 0.07
## 8780 DS 2007 Strategy Square Enix 0.08
## 8781 Wii 2009 Shooter Activision 0.14
## 8782 GC 2004 Shooter Global Star 0.12
## 8783 Wii 2008 Simulation Deep Silver 0.13
## 8784 PSP 2011 Adventure Kadokawa Shoten 0.00
## 8785 DS 2006 Platform Vivendi Games 0.13
## 8786 PS2 2009 Sports Konami Digital Entertainment 0.00
## 8787 PS3 2007 Simulation Ubisoft 0.10
## 8788 DS 2009 Racing Zoo Digital Publishing 0.14
## 8789 X360 2010 Action THQ 0.12
## 8790 SAT 1997 Strategy Sega 0.00
## 8791 PS3 2013 Role-Playing Nippon Ichi Software 0.07
## 8792 GC 2003 Platform Konami Digital Entertainment 0.12
## 8793 DS 2005 Action THQ 0.13
## 8794 PC 2010 Action THQ 0.07
## 8795 PS2 2009 Action D3Publisher 0.05
## 8796 DS 2009 Puzzle Mindscape 0.00
## 8797 Wii 2010 Sports Namco Bandai Games 0.14
## 8798 PS2 2008 Sports Konami Digital Entertainment 0.05
## 8799 GBA 2005 Adventure THQ 0.11
## 8800 3DS 2015 Misc Square Enix 0.00
## 8801 DS 2010 Sports Take-Two Interactive 0.14
## 8802 3DS 2012 Platform Namco Bandai Games 0.08
## 8803 PS 2000 Action Activision 0.08
## 8804 Wii 2010 Sports D3Publisher 0.14
## 8805 PS3 2011 Action Sega 0.07
## 8806 PS3 2007 Action Take-Two Interactive 0.12
## 8807 Wii 2006 Shooter Ignition Entertainment 0.12
## 8808 DS 2010 Action Activision 0.11
## 8809 PSP 2012 Action Konami Digital Entertainment 0.00
## 8810 SAT 1997 Fighting Sega 0.00
## 8811 SNES 1996 Role-Playing SquareSoft 0.00
## 8812 PSV 2014 Action Namco Bandai Games 0.00
## 8813 GBA 2003 Action Ubisoft 0.11
## 8814 Wii 2008 Puzzle Majesco Entertainment 0.14
## 8815 GC 2003 Action Tomy Corporation 0.12
## 8816 XB 2003 Sports Sega 0.11
## 8817 XB 2002 Shooter Take-Two Interactive 0.11
## 8818 PS 1997 Adventure Sony Computer Entertainment 0.00
## 8819 GC 2005 Action Capcom 0.12
## 8820 PSP 2005 Role-Playing Sony Computer Entertainment 0.14
## 8821 DS 2010 Puzzle Astragon 0.09
## 8822 PS3 2007 Sports Electronic Arts 0.12
## 8823 PC 2011 Simulation Electronic Arts 0.05
## 8824 X360 2011 Action DTP Entertainment 0.08
## 8825 GC 2006 Platform Sega 0.12
## 8826 DS 2011 Misc Unknown 0.14
## 8827 PS 2001 Sports Electronic Arts 0.08
## 8828 DS 2010 Misc Game Factory 0.14
## 8829 XB 2004 Fighting Capcom 0.11
## 8830 X360 2007 Role-Playing Square Enix 0.13
## 8831 PSP 2007 Adventure Namco Bandai Games 0.00
## 8832 XB 2004 Shooter Atari 0.11
## 8833 PS2 2005 Adventure Atari 0.07
## 8834 PSV 2013 Role-Playing GungHo 0.08
## 8835 SNES 1991 Sports Imagineer 0.00
## 8836 PS2 2001 Sports Sony Computer Entertainment 0.07
## 8837 X360 2013 Shooter D3Publisher 0.06
## 8838 Wii 2007 Action Activision 0.13
## 8839 Wii 2007 Misc Xplosiv 0.14
## 8840 PS3 2012 Shooter EA Games 0.07
## 8841 PS2 2008 Fighting Ignition Entertainment 0.07
## 8842 PS3 2008 Sports Sony Computer Entertainment 0.14
## 8843 PS2 2005 Role-Playing Atari 0.07
## 8844 PS4 2015 Fighting Namco Bandai Games 0.00
## 8845 PC 2011 Action Unknown 0.00
## 8846 3DS 2013 Action Konami Digital Entertainment 0.04
## 8847 PS3 2015 Action Namco Bandai Games 0.00
## 8848 XOne 2014 Misc Disney Interactive Studios 0.11
## 8849 GBA 2004 Misc N/A 0.11
## 8850 PS2 2001 Racing Electronic Arts 0.07
## 8851 PSV 2014 Role-Playing Nippon Ichi Software 0.02
## 8852 GC 2002 Simulation Titus 0.12
## 8853 SAT 1995 Sports Sega 0.00
## 8854 PSP 2010 Action Activision 0.09
## 8855 PSV 2014 Role-Playing Sony Computer Entertainment 0.00
## 8856 PSP 2011 Role-Playing Sony Computer Entertainment 0.00
## 8857 3DS 2015 Simulation Marvelous Entertainment 0.04
## 8858 GBA 2005 Action THQ 0.11
## 8859 PS2 2008 Shooter Activision 0.07
## 8860 PS2 2008 Sports Electronic Arts 0.07
## 8861 XOne 2016 Platform Electronic Arts 0.08
## 8862 N64 2001 Sports Media Factory 0.00
## 8863 N64 2000 Platform Epoch 0.00
## 8864 N64 1997 Adventure Take-Two Interactive 0.12
## 8865 N64 1997 Fighting Vic Tokai 0.12
## 8866 PSV 2015 Role-Playing Nihon Falcom Corporation 0.00
## 8867 GC 2002 Sports Acclaim Entertainment 0.12
## 8868 Wii 2009 Action Destineer 0.14
## 8869 DS 2009 Simulation Ubisoft 0.14
## 8870 PS 1998 Action Activision 0.08
## 8871 XB 2002 Fighting Rage Software 0.11
## 8872 XB 2003 Racing Empire Interactive 0.11
## 8873 PSV 2016 Role-Playing Nippon Ichi Software 0.02
## 8874 Wii 2008 Adventure JoWood Productions 0.13
## 8875 Wii 2011 Sports Sega 0.05
## 8876 SNES 1995 Puzzle Nintendo 0.00
## 8877 Wii 2008 Action Destineer 0.14
## 8878 XB 2004 Shooter THQ 0.11
## 8879 Wii 2007 Racing Activision 0.13
## 8880 PS3 2007 Shooter Activision 0.12
## 8881 XB 2006 Action THQ 0.11
## 8882 PS3 2009 Sports Konami Digital Entertainment 0.00
## 8883 PS2 2001 Shooter Codemasters 0.07
## 8884 GC 2006 Action Activision 0.12
## 8885 DS 2005 Puzzle 505 Games 0.14
## 8886 Wii 2007 Action Vivendi Games 0.12
## 8887 X360 2009 Misc MTV Games 0.14
## 8888 PS 1998 Strategy Mindscape 0.08
## 8889 GBA 2002 Sports Acclaim Entertainment 0.11
## 8890 XB 2004 Action THQ 0.11
## 8891 PS 1999 Sports Tecmo Koei 0.00
## 8892 PS3 2013 Sports Take-Two Interactive 0.14
## 8893 Wii 2011 Racing Activision 0.10
## 8894 PS3 2015 Action Konami Digital Entertainment 0.00
## 8895 PS2 2005 Racing Ubisoft 0.07
## 8896 GC 2006 Action Namco Bandai Games 0.11
## 8897 GBA 2004 Misc N/A 0.11
## 8898 X360 2008 Simulation Ubisoft 0.06
## 8899 GC 2005 Adventure Nintendo 0.11
## 8901 PS 1998 Fighting Sony Computer Entertainment 0.08
## 8902 Wii 2009 Misc Electronic Arts 0.14
## 8903 GBA 2002 Fighting Capcom 0.11
## 8904 DS 2008 Role-Playing D3Publisher 0.13
## 8905 SAT 1997 Shooter Namco Bandai Games 0.00
## 8906 DS 2004 Racing Namco Bandai Games 0.14
## 8907 PS4 2014 Action Tecmo Koei 0.04
## 8908 Wii 2008 Adventure Sega 0.14
## 8909 GEN 1993 Fighting Capcom 0.00
## 8910 PS3 2011 Action Konami Digital Entertainment 0.00
## 8911 PS2 2006 Fighting Namco Bandai Games 0.00
## 8912 PS 2000 Sports Konami Digital Entertainment 0.00
## 8913 DS 2005 Puzzle 505 Games 0.14
## 8914 DS 2006 Sports Konami Digital Entertainment 0.00
## 8915 Wii 2008 Puzzle Game Factory 0.13
## 8916 Wii 2008 Sports THQ 0.14
## 8917 DC 2001 Adventure Sega 0.00
## 8918 PS2 2008 Sports Bethesda Softworks 0.07
## 8919 XB 2005 Misc Capcom 0.11
## 8920 PS2 2003 Shooter Play It 0.07
## 8921 GC 2005 Action Vivendi Games 0.11
## 8922 GC 2005 Action Ubisoft 0.11
## 8923 PSP 2011 Adventure Banpresto 0.00
## 8924 Wii 2009 Sports Take-Two Interactive 0.14
## 8925 XB 2005 Platform Namco Bandai Games 0.11
## 8926 PSV 2014 Adventure Telltale Games 0.10
## 8927 PSP 2009 Simulation Rising Star Games 0.07
## 8928 XB 2003 Role-Playing Sega 0.11
## 8929 PC 2012 Racing Codemasters 0.01
## 8931 DS 2007 Misc Ubisoft 0.13
## 8932 X360 2011 Action Black Bean Games 0.08
## 8933 PSP 2008 Misc Ignition Entertainment 0.13
## 8934 PSP 2004 Fighting Capcom 0.13
## 8935 X360 2009 Sports Take-Two Interactive 0.11
## 8936 GC 2005 Action Electronic Arts 0.11
## 8937 PS 2001 Racing Activision 0.08
## 8938 PS4 2014 Action Sega 0.00
## 8939 PSV 2011 Racing Codemasters 0.03
## 8940 PS 2000 Platform Ubisoft 0.08
## 8941 PS 1997 Strategy Namco Bandai Games 0.00
## 8942 PS 1999 Adventure Crave Entertainment 0.08
## 8943 XB 2004 Platform Vivendi Games 0.11
## 8944 PS2 2000 Simulation Konami Digital Entertainment 0.00
## 8945 DS 2005 Action Konami Digital Entertainment 0.15
## 8946 PSV 2014 Adventure Idea Factory 0.09
## 8947 3DS 2013 Action Nippon Columbia 0.00
## 8948 XOne 2016 Role-Playing Square Enix 0.08
## 8949 XB 2006 Sports Electronic Arts 0.11
## 8950 DS 2009 Role-Playing Namco Bandai Games 0.00
## 8951 GBA 2004 Sports Konami Digital Entertainment 0.00
## 8952 3DS 2012 Platform Ubisoft 0.06
## 8953 X360 2011 Action Sega 0.09
## 8954 GBA 2003 Shooter Electronic Arts 0.11
## 8955 X360 2012 Role-Playing Deep Silver 0.05
## 8956 PS 1996 Adventure Crystal Dynamics 0.08
## 8957 DS 2007 Shooter Vivendi Games 0.13
## 8958 XB 2005 Misc Sega 0.11
## 8959 PS 1999 Role-Playing Atlus 0.00
## 8960 DS 2008 Platform 505 Games 0.00
## 8961 PC 2014 Shooter Sega 0.00
## 8962 PS3 2010 Sports Sony Computer Entertainment 0.13
## 8963 DS 2011 Misc Namco Bandai Games 0.00
## 8964 3DS 2011 Misc Namco Bandai Games 0.09
## 8965 Wii 2010 Sports Black Bean Games 0.12
## 8966 DS 2010 Sports Atari 0.14
## 8967 PS 1997 Racing Sony Computer Entertainment 0.08
## 8968 GBA 2005 Misc Vivendi Games 0.10
## 8969 GC 2003 Shooter Ubisoft 0.11
## 8970 PS 2001 Simulation Konami Digital Entertainment 0.08
## 8971 X360 2010 Action Activision 0.11
## 8972 XB 2001 Racing Eidos Interactive 0.11
## 8973 DS 2010 Misc Activision 0.14
## 8974 PSP 2013 Role-Playing Namco Bandai Games 0.00
## 8975 PS2 2001 Racing Sony Computer Entertainment 0.07
## 8976 PSP 2011 Role-Playing Unknown 0.00
## 8977 DS 2008 Misc Electronic Arts 0.13
## 8978 PS2 2002 Sports Acclaim Entertainment 0.07
## 8979 DS 2009 Puzzle The Adventure Company 0.07
## 8980 DS 2004 Sports Electronic Arts 0.13
## 8981 SAT 1995 Fighting Namco Bandai Games 0.00
## 8982 GBA 2005 Misc Sega 0.10
## 8983 GBA 2003 Role-Playing Konami Digital Entertainment 0.10
## 8984 X360 2007 Racing THQ 0.13
## 8985 Wii 2010 Strategy Namco Bandai Games 0.00
## 8986 DS 2010 Misc THQ 0.14
## 8987 XB 2004 Fighting Zoo Digital Publishing 0.11
## 8988 PS 1995 Role-Playing Sony Computer Entertainment 0.00
## 8989 PSV 2013 Action Tecmo Koei 0.04
## 8990 DS 2013 Action Activision 0.00
## 8991 GBA 2004 Action Crave Entertainment 0.10
## 8992 DS 2008 Shooter Ignition Entertainment 0.13
## 8993 GC 2002 Sports Midway Games 0.11
## 8994 DS 2007 Role-Playing Namco Bandai Games 0.00
## 8995 XB 2003 Action Microsoft Game Studios 0.11
## 8996 PSP 2010 Role-Playing Falcom Corporation 0.09
## 8997 PS2 2005 Role-Playing Ghostlight 0.07
## 8998 PSP 2006 Platform Capcom 0.12
## 8999 PS2 2007 Adventure Ubisoft 0.07
## 9000 PS2 2002 Fighting Titus 0.07
## 9001 DS 2006 Misc Namco Bandai Games 0.02
## 9002 PSV 2014 Action Tecmo Koei 0.03
## 9003 GBA 2002 Sports Konami Digital Entertainment 0.00
## 9004 XB 2005 Racing Midway Games 0.11
## 9005 GEN 1994 Role-Playing Game Arts 0.00
## 9006 DS 2009 Platform Warner Bros. Interactive Entertainment 0.13
## 9007 PS 2001 Puzzle Empire Interactive 0.08
## 9008 3DS 2014 Sports Kadokawa Shoten 0.00
## 9009 3DS 2013 Action D3Publisher 0.10
## 9010 PSV 2014 Role-Playing Nippon Ichi Software 0.07
## 9011 PS 1997 Sports Gremlin Interactive Ltd 0.08
## 9012 PS2 2009 Shooter Activision 0.07
## 9013 PS2 2007 Action Disney Interactive Studios 0.07
## 9014 GB 2000 Adventure Media Factory 0.00
## 9015 SCD 1994 Strategy Sega 0.00
## 9016 GBA 2003 Platform Ubisoft 0.10
## 9017 PS2 2001 Action Wanadoo 0.07
## 9018 PS 1998 Action Sony Computer Entertainment 0.08
## 9019 Wii 2011 Action THQ 0.08
## 9020 DS 2010 Simulation Nobilis 0.13
## 9021 DS 2009 Puzzle Zoo Games 0.13
## 9022 X360 2010 Racing Konami Digital Entertainment 0.12
## 9023 DS 2009 Adventure Nintendo 0.00
## 9024 PS2 2005 Role-Playing 505 Games 0.07
## 9025 Wii 2010 Action Atari 0.13
## 9026 GC 2007 Action THQ 0.11
## 9027 PS2 2009 Action Electronic Arts 0.11
## 9028 PS2 2001 Platform TDK Mediactive 0.07
## 9029 DS 2008 Role-Playing Namco Bandai Games 0.00
## 9030 PS3 2011 Action Tecmo Koei 0.00
## 9031 Wii 2008 Misc SouthPeak Games 0.10
## 9032 PS 1997 Racing Psygnosis 0.08
## 9033 XOne 2015 Action Bethesda Softworks 0.08
## 9034 GBA 2001 Platform Infogrames 0.10
## 9035 PSP 2009 Action Electronic Arts 0.11
## 9036 PC 2010 Role-Playing Electronic Arts 0.00
## 9037 DS 2009 Puzzle UFO Interactive 0.13
## 9038 PSV 2015 Action Disney Interactive Studios 0.00
## 9039 PS 1996 Fighting Acclaim Entertainment 0.08
## 9040 DS 2006 Racing Ubisoft 0.09
## 9041 Wii 2006 Misc System 3 Arcade Software 0.13
## 9042 PS2 2004 Adventure Codemasters 0.07
## 9043 DS 2011 Action Activision 0.12
## 9044 PS2 2006 Adventure THQ 0.07
## 9045 PS2 2004 Role-Playing Tecmo Koei 0.07
## 9046 X360 2006 Action Eidos Interactive 0.10
## 9047 PC 2009 Shooter 505 Games 0.00
## 9048 PS 2001 Racing THQ 0.08
## 9049 PSP 2011 Action Spike 0.00
## 9050 DS 2010 Action Warner Bros. Interactive Entertainment 0.11
## 9051 GC 2002 Simulation Nintendo 0.00
## 9052 GBA 2005 Misc Activision 0.10
## 9053 GB 2001 Role-Playing Enix Corporation 0.00
## 9054 PS2 2003 Puzzle Mindscape 0.07
## 9055 Wii 2008 Action THQ 0.13
## 9056 PC 2000 Strategy Ubisoft 0.02
## 9057 PSP 2008 Racing Xplosiv 0.05
## 9058 PS 2002 Action Namco Bandai Games 0.00
## 9059 PS 1997 Strategy SquareSoft 0.00
## 9060 PSP 2006 Misc 505 Games 0.13
## 9061 GC 2004 Sports Electronic Arts 0.11
## 9062 3DS 2011 Platform Nippon Ichi Software 0.09
## 9063 PC 2007 Shooter Electronic Arts 0.00
## 9064 DS 2008 Sports Arc System Works 0.13
## 9065 Wii 2007 Fighting Ubisoft 0.07
## 9066 PS3 2010 Role-Playing Compile Heart 0.09
## 9067 PS3 2011 Racing Black Bean Games 0.01
## 9068 DC 1998 Fighting Eidos Interactive 0.00
## 9069 PS2 2001 Sports 3DO 0.07
## 9070 DS 2008 Role-Playing Eidos Interactive 0.12
## 9071 PSP 2011 Adventure Broccoli 0.00
## 9072 3DS 2012 Action Marvelous Entertainment 0.00
## 9073 PS2 2004 Misc Codemasters 0.07
## 9074 DS 2009 Simulation Majesco Entertainment 0.13
## 9075 PSP 2010 Role-Playing Namco Bandai Games 0.00
## 9076 XB 2003 Action Atari 0.11
## 9077 PC 2003 Role-Playing LucasArts 0.01
## 9078 XB 2005 Sports Electronic Arts 0.11
## 9079 XB 2002 Sports Sega 0.11
## 9080 PSP 2008 Role-Playing Acquire 0.06
## 9081 DS 2010 Action D3Publisher 0.10
## 9083 PSP 2004 Role-Playing Namco Bandai Games 0.03
## 9084 Wii 2007 Misc Ubisoft 0.13
## 9085 DS 2008 Role-Playing GungHo 0.13
## 9086 GBA 2001 Shooter Activision 0.10
## 9087 PS3 2014 Action Namco Bandai Games 0.00
## 9088 PS3 2010 Role-Playing Ubisoft Annecy 0.06
## 9089 PS 2001 Action Acclaim Entertainment 0.08
## 9090 PS2 2001 Misc Sony Computer Entertainment 0.07
## 9091 PSP 2009 Role-Playing Atlus 0.07
## 9092 XB 2004 Racing Sega 0.11
## 9093 PS3 2012 Action Capcom 0.00
## 9094 DC 2000 Fighting Virgin Interactive 0.00
## 9095 XB 2006 Action Eidos Interactive 0.11
## 9096 PS 1998 Role-Playing SquareSoft 0.00
## 9097 DS 2006 Fighting D3Publisher 0.00
## 9098 PS 1997 Shooter Sony Computer Entertainment 0.01
## 9099 PS2 2008 Puzzle Empire Interactive 0.07
## 9100 PSP 2005 Sports Sony Computer Entertainment 0.13
## 9101 GBA 2004 Role-Playing Konami Digital Entertainment 0.10
## 9102 PSP 2009 Sports Takara Tomy 0.09
## 9103 XB 2002 Sports Midway Games 0.11
## 9104 3DS 2015 Action Nippon Columbia 0.00
## 9105 PS2 2002 Adventure Electronic Arts 0.07
## 9106 PS2 2001 Action Acclaim Entertainment 0.07
## 9107 2600 1982 Action Atari 0.13
## 9108 GB 2000 Role-Playing Konami Digital Entertainment 0.00
## 9109 PC 2009 Role-Playing Deep Silver 0.00
## 9110 DS 2008 Action D3Publisher 0.11
## 9111 GBA 2002 Platform Infogrames 0.10
## 9112 PS2 2006 Action Take-Two Interactive 0.07
## 9113 WiiU 2014 Action Ubisoft 0.08
## 9114 DS 2004 Puzzle Nintendo 0.08
## 9115 DS 2007 Adventure Zoo Digital Publishing 0.13
## 9116 XB 2003 Platform THQ 0.11
## 9117 DS 2009 Racing THQ 0.13
## 9118 DS 2007 Simulation Touchstone 0.07
## 9119 DS 2007 Action Zoo Digital Publishing 0.13
## 9120 GC 2002 Shooter Electronic Arts 0.11
## 9121 GC 2003 Action THQ 0.11
## 9122 PS2 2009 Sports Activision Value 0.07
## 9123 PS 1998 Adventure Sunsoft 0.08
## 9124 DS 2005 Role-Playing Tomy Corporation 0.00
## 9125 PS 2000 Racing Sony Computer Entertainment 0.08
## 9126 PS 1998 Strategy General Entertainment 0.00
## 9127 3DS 2012 Action Excalibur Publishing 0.00
## 9128 PS3 2008 Sports Electronic Arts 0.13
## 9129 PS2 2002 Sports Sony Computer Entertainment 0.07
## 9130 PSP 2011 Adventure Acquire 0.00
## 9131 PS 1997 Racing THQ 0.08
## 9132 PS2 2008 Action Capcom 0.07
## 9133 X360 2007 Simulation Ubisoft 0.11
## 9134 PS 1997 Fighting Namco Bandai Games 0.00
## 9135 XB 2004 Platform Vivendi Games 0.11
## 9136 DS 2007 Platform 505 Games 0.00
## 9137 PC 2015 Action Square Enix 0.03
## 9138 PS2 2008 Role-Playing Banpresto 0.07
## 9139 PSP 2005 Strategy Electronic Arts 0.11
## 9140 X360 2009 Action SouthPeak Games 0.10
## 9141 PS2 2005 Sports Sony Computer Entertainment 0.07
## 9142 PS2 2004 Shooter Play It 0.07
## 9143 PSP 2011 Strategy Namco Bandai Games 0.00
## 9144 X360 2010 Action Activision 0.11
## 9145 WiiU 2012 Action Ubisoft 0.06
## 9146 PS3 2011 Sports Ubisoft 0.00
## 9147 PS 2001 Sports Sony Computer Entertainment 0.08
## 9148 PS3 2008 Misc Sony Computer Entertainment 0.00
## 9149 PS 1997 Role-Playing Sony Computer Entertainment 0.08
## 9150 Wii 2009 Misc Warner Bros. Interactive Entertainment 0.13
## 9151 PSP 2007 Role-Playing Nippon Ichi Software 0.00
## 9153 N64 1999 Racing Codemasters 0.11
## 9154 N64 1999 Sports THQ 0.11
## 9155 GC 2002 Role-Playing Virgin Interactive 0.11
## 9156 N64 1998 Action GT Interactive 0.11
## 9157 PS 1999 Role-Playing Sunsoft 0.08
## 9158 PSV 2013 Fighting Warner Bros. Interactive Entertainment 0.11
## 9159 PS2 2008 Fighting Capcom 0.00
## 9160 DS 2010 Misc Atari 0.13
## 9161 PS2 2002 Shooter Electronic Arts 0.07
## 9162 X360 2010 Sports Codemasters 0.00
## 9163 PS 1995 Shooter Sony Computer Entertainment 0.02
## 9164 GC 2006 Adventure THQ 0.11
## 9165 DC 2000 Fighting Acclaim Entertainment 0.00
## 9166 Wii 2009 Sports Destineer 0.13
## 9167 PS 1997 Sports Mindscape 0.08
## 9168 PS2 2002 Adventure Sony Computer Entertainment 0.07
## 9169 X360 2009 Simulation Ubisoft 0.10
## 9170 PS 1997 Platform Kemco 0.08
## 9171 PSP 2011 Action D3Publisher 0.00
## 9173 DS 2007 Racing Activision 0.13
## 9174 DS 2005 Action Vivendi Games 0.12
## 9175 GBA 2002 Action Capcom 0.00
## 9176 XB 2004 Fighting Atari 0.10
## 9177 3DS 2012 Action Activision 0.12
## 9178 X360 2006 Action Vivendi Games 0.12
## 9179 PS2 2002 Racing Atari 0.07
## 9180 PS 1999 Adventure Mattel Interactive 0.08
## 9181 GBA 2003 Action TDK Mediactive 0.10
## 9182 SAT 1997 Adventure Imadio 0.00
## 9183 Wii 2009 Role-Playing Rising Star Games 0.10
## 9184 X360 2010 Misc Microsoft Game Studios 0.00
## 9185 3DS 2015 Action Capcom 0.00
## 9186 PS 1996 Sports Acclaim Entertainment 0.08
## 9187 GBA 2005 Platform Disney Interactive Studios 0.10
## 9188 DS 2005 Sports Konami Digital Entertainment 0.00
## 9189 XB 2005 Strategy Take-Two Interactive 0.11
## 9190 XB 2002 Adventure Swing! Entertainment 0.11
## 9191 PS 1996 Sports Konami Digital Entertainment 0.08
## 9192 PS3 2014 Sports Konami Digital Entertainment 0.00
## 9193 XB 2003 Action Capcom 0.08
## 9194 DS 2008 Action Mindscape 0.10
## 9195 DS 2011 Misc Activision 0.10
## 9196 GC 2002 Sports Midway Games 0.11
## 9197 NG 1993 Fighting SNK 0.00
## 9198 XOne 2014 Adventure Telltale Games 0.08
## 9199 DS 2006 Misc 505 Games 0.13
## 9200 PC 2012 Shooter Take-Two Interactive 0.10
## 9201 X360 2010 Action Electronic Arts 0.10
## 9202 X360 2011 Misc Konami Digital Entertainment 0.13
## 9203 PS 2001 Platform Unknown 0.08
## 9204 Wii 2011 Action Electronic Arts 0.08
## 9205 XB 2005 Platform Disney Interactive Studios 0.10
## 9206 PS3 2010 Misc Unknown 0.13
## 9207 WiiU 2012 Action Activision 0.09
## 9208 PS 1995 Simulation Virgin Interactive 0.08
## 9209 X360 2011 Adventure Ubisoft 0.10
## 9210 Wii 2007 Sports Konami Digital Entertainment 0.00
## 9211 PSV 2012 Fighting Sony Computer Entertainment 0.06
## 9212 PS3 2012 Action Ubisoft Annecy 0.00
## 9213 X360 2006 Sports Activision Value 0.13
## 9214 DS 2011 Racing D3Publisher 0.10
## 9215 PS3 2007 Sports Take-Two Interactive 0.13
## 9216 PS 1996 Puzzle Virgin Interactive 0.08
## 9217 DS 2008 Strategy SouthPeak Games 0.12
## 9218 GBA 2002 Action THQ 0.10
## 9219 GC 2002 Fighting Namco Bandai Games 0.04
## 9220 PSP 2007 Misc Oxygen Interactive 0.12
## 9221 PS2 2001 Misc Sony Music Entertainment 0.00
## 9222 PS 1999 Adventure Aqua Plus 0.00
## 9223 PSP 2007 Role-Playing 505 Games 0.07
## 9224 TG16 1995 Adventure NEC 0.00
## 9225 SNES 1998 Platform Capcom 0.00
## 9226 PS3 2014 Fighting Atlus 0.00
## 9227 WiiU 2012 Sports Take-Two Interactive 0.08
## 9228 Wii 2009 Misc Activision 0.12
## 9229 DS 2005 Action Konami Digital Entertainment 0.00
## 9230 Wii 2010 Misc Electronic Arts 0.13
## 9231 PC 2015 Simulation Paradox Interactive 0.00
## 9232 PSP 2011 Sports Sega 0.00
## 9233 PSP 2004 Misc Sony Computer Entertainment 0.00
## 9234 GC 2005 Sports Electronic Arts 0.11
## 9235 GC 2002 Racing Ubisoft 0.11
## EU_Sales JP_Sales Other_Sales Global_Sales
## 1 29.02 3.77 8.46 82.74
## 2 3.58 6.81 0.77 40.24
## 3 12.88 3.79 3.31 35.82
## 4 11.01 3.28 2.96 33.00
## 5 8.89 10.22 1.00 31.37
## 6 2.26 4.22 0.58 30.26
## 7 9.23 6.50 2.90 30.01
## 8 9.20 2.93 2.85 29.02
## 9 7.06 4.70 2.26 28.62
## 10 0.63 0.28 0.47 28.31
## 11 11.00 1.93 2.75 24.76
## 12 7.57 4.13 1.92 23.42
## 13 6.18 7.20 0.71 23.10
## 14 8.03 3.60 2.15 22.72
## 15 8.59 2.53 1.79 22.00
## 16 4.94 0.24 1.67 21.82
## 17 9.27 0.97 4.14 21.40
## 18 0.40 0.41 10.57 20.81
## 19 3.75 3.54 0.55 20.61
## 20 9.26 4.16 2.05 20.22
## 21 4.52 6.04 1.37 18.36
## 22 2.71 4.18 0.42 18.14
## 23 3.44 3.84 0.46 17.28
## 24 5.31 0.06 1.38 16.38
## 25 5.49 0.47 1.78 16.15
## 26 3.90 5.38 0.50 15.85
## 27 3.28 5.65 0.82 15.32
## 28 5.36 5.32 1.18 15.30
## 29 5.09 1.87 1.16 14.98
## 30 4.28 0.13 1.32 14.76
## 31 5.04 3.12 0.59 14.64
## 32 3.73 0.11 1.13 14.64
## 33 4.05 4.34 0.79 14.35
## 34 5.81 0.35 2.31 14.24
## 35 5.88 0.65 2.52 14.03
## 36 4.30 0.07 1.12 13.73
## 37 3.63 0.08 1.29 13.51
## 38 5.82 0.49 1.62 13.46
## 39 4.51 0.30 1.30 13.10
## 40 2.61 2.66 1.02 13.04
## 41 4.44 0.48 1.83 12.73
## 42 3.52 5.33 0.88 12.27
## 43 3.91 2.67 0.89 12.21
## 44 2.83 0.13 1.21 12.14
## 45 5.81 0.36 2.02 11.98
## 46 2.77 3.96 0.77 11.90
## 47 2.85 1.91 0.23 11.89
## 48 0.01 1.10 7.53 11.66
## 49 3.40 1.20 0.76 11.52
## 50 3.37 3.08 0.65 11.33
## 51 2.04 2.69 0.29 11.18
## 52 3.10 0.14 1.03 11.02
## 53 3.87 2.54 0.52 10.95
## 54 2.99 2.13 0.78 10.79
## 55 4.88 0.81 2.12 10.77
## 56 3.69 0.38 1.63 10.69
## 57 3.76 0.44 1.62 10.57
## 58 2.15 2.12 0.29 10.55
## 59 2.65 3.15 0.35 10.49
## 60 3.11 1.25 0.98 10.42
## 61 3.15 0.00 1.07 10.26
## 62 2.63 0.04 0.82 10.21
## 63 1.98 0.08 0.78 9.88
## 64 1.94 2.23 0.15 9.87
## 65 3.07 2.47 0.63 9.82
## 66 2.36 0.04 0.73 9.76
## 67 2.47 3.28 0.96 9.72
## 68 3.73 0.38 1.38 9.59
## 69 2.89 0.01 0.78 9.52
## 70 3.42 1.69 0.50 9.49
## 71 2.38 0.13 0.90 9.32
## 72 1.71 3.00 0.23 9.30
## 73 2.83 0.02 0.77 9.20
## 74 2.32 4.36 0.41 9.09
## 75 1.88 1.98 0.70 9.02
## 76 2.86 0.10 0.85 8.84
## 77 1.24 3.81 0.18 8.76
## 78 6.06 0.06 1.26 8.49
## 79 3.53 2.49 0.68 8.49
## 80 1.53 0.05 0.08 8.49
## 81 2.30 1.58 0.73 8.42
## 82 1.86 3.14 0.43 8.33
## 83 5.05 0.13 2.01 8.24
## 84 6.42 0.00 0.71 8.11
## 85 2.01 0.13 0.15 8.09
## 86 3.90 0.66 0.91 8.06
## 87 2.07 2.73 0.33 8.05
## 88 1.72 3.63 0.23 7.86
## 89 1.78 2.69 0.55 7.84
## 90 0.45 0.00 0.08 7.81
## 91 2.83 0.24 1.75 7.72
## 92 2.42 0.98 0.64 7.69
## 93 3.29 0.22 1.23 7.67
## 94 3.30 0.14 1.37 7.60
## 95 1.89 1.45 0.16 7.60
## 96 2.17 1.31 0.31 7.58
## 97 1.18 0.70 0.19 7.46
## 98 1.35 2.42 0.43 7.45
## 99 1.90 0.00 0.69 7.37
## 100 2.13 0.06 0.69 7.34
## 101 2.19 0.60 0.70 7.31
## 102 2.09 0.01 0.67 7.30
## 103 3.03 0.00 0.73 7.27
## 104 2.93 0.35 1.10 7.23
## 105 2.83 0.08 1.02 7.20
## 106 2.22 1.40 0.29 7.16
## 107 1.75 1.42 0.28 7.13
## 108 1.04 1.39 0.22 7.07
## 109 2.07 1.27 0.49 6.96
## 110 3.15 0.24 1.10 6.96
## 111 1.77 0.87 0.19 6.95
## 112 2.21 0.00 0.56 6.91
## 113 4.32 0.07 1.73 6.90
## 114 3.02 0.08 1.09 6.90
## 115 2.75 0.17 0.99 6.83
## 116 2.80 0.19 1.06 6.83
## 117 2.35 0.94 0.30 6.82
## 118 2.64 0.00 0.67 6.81
## 119 1.92 0.06 0.64 6.76
## 120 2.25 0.21 1.00 6.73
## 121 2.30 0.28 1.04 6.72
## 122 4.32 0.11 1.42 6.69
## 123 2.78 1.60 0.62 6.67
## 124 2.61 0.17 1.03 6.60
## 125 4.29 0.05 1.47 6.59
## 126 1.84 1.03 0.47 6.59
## 127 2.71 0.25 1.05 6.56
## 128 0.93 1.69 0.14 6.51
## 129 2.56 0.16 1.14 6.50
## 130 1.30 0.08 0.07 6.43
## 131 1.58 2.06 0.21 6.41
## 132 1.20 1.49 0.07 6.40
## 133 1.56 1.29 0.99 6.39
## 134 1.35 0.06 0.61 6.36
## 135 1.97 0.09 0.57 6.34
## 136 1.26 0.87 0.17 6.31
## 137 0.83 2.87 0.12 6.30
## 138 6.21 0.00 0.00 6.28
## 139 2.80 0.02 0.33 6.27
## 140 1.78 0.03 0.51 6.24
## 141 1.62 0.07 0.49 6.24
## 142 1.90 0.07 0.60 6.11
## 143 2.01 0.87 0.72 6.05
## 144 1.20 0.16 0.19 6.03
## 145 1.74 0.83 0.83 6.03
## 146 1.83 0.78 0.24 6.03
## 147 2.28 0.28 1.01 5.99
## 148 0.00 2.33 1.74 5.95
## 149 2.05 0.17 0.90 5.92
## 150 0.69 4.35 0.15 5.84
## 151 1.63 0.00 0.53 5.83
## 152 1.47 2.02 0.45 5.82
## 153 1.89 1.36 0.23 5.74
## 154 1.94 0.07 0.58 5.72
## 155 2.05 0.16 0.96 5.65
## 156 0.69 1.81 0.11 5.58
## 157 1.95 0.21 0.87 5.57
## 158 0.60 1.97 0.04 5.55
## 159 1.65 0.07 0.55 5.55
## 160 1.91 0.11 0.80 5.53
## 161 1.92 0.10 0.51 5.51
## 162 0.57 4.13 0.34 5.50
## 163 1.24 0.91 0.20 5.49
## 164 1.64 0.99 0.23 5.47
## 165 1.11 0.95 0.20 5.46
## 166 1.24 0.94 0.09 5.45
## 167 1.87 0.00 0.84 5.43
## 168 2.29 0.24 0.82 5.42
## 169 2.51 0.00 0.94 5.42
## 170 1.24 1.87 0.52 5.36
## 171 0.96 2.00 0.20 5.34
## 172 1.12 1.01 0.16 5.31
## 173 1.71 0.03 0.44 5.30
## 174 0.77 2.78 0.14 5.30
## 175 1.08 2.11 0.17 5.29
## 176 0.79 1.09 0.06 5.27
## 177 1.56 0.08 0.51 5.27
## 178 2.48 1.03 0.52 5.26
## 179 2.46 0.20 0.28 5.24
## 181 0.75 3.61 0.20 5.21
## 182 2.15 0.00 0.62 5.20
## 183 1.25 0.83 0.20 5.20
## 184 1.30 1.27 0.31 5.19
## 185 0.98 1.57 0.15 5.19
## 186 3.48 0.03 0.58 5.18
## 187 1.83 0.95 0.49 5.17
## 188 0.74 2.20 0.11 5.15
## 189 2.02 1.89 0.28 5.15
## 190 2.48 0.44 0.58 5.14
## 191 2.23 0.13 0.80 5.13
## 192 0.61 1.70 0.11 5.13
## 193 1.11 0.05 0.38 5.13
## 194 1.53 0.01 0.38 5.13
## 195 1.69 0.00 0.20 5.12
## 196 0.63 0.00 0.68 5.12
## 197 1.43 1.08 0.65 5.11
## 198 2.01 0.00 0.41 5.08
## 199 2.02 0.16 1.21 5.08
## 200 3.29 0.06 1.13 5.08
## 201 1.30 0.15 0.22 5.07
## 202 1.16 1.11 0.73 5.05
## 203 1.38 0.02 0.20 5.02
## 204 1.06 0.80 0.57 5.02
## 205 1.89 0.00 0.33 5.01
## 206 1.36 0.07 0.21 5.00
## 207 1.18 0.29 0.46 5.00
## 208 0.01 0.01 1.48 4.98
## 209 1.03 0.09 0.44 4.96
## 210 1.20 1.54 0.37 4.96
## 211 1.73 0.12 0.78 4.94
## 212 0.26 0.01 0.66 4.91
## 213 1.54 0.00 0.46 4.90
## 214 0.99 0.89 0.10 4.88
## 215 0.00 4.87 0.00 4.87
## 216 0.60 1.52 0.10 4.85
## 217 1.36 0.12 0.63 4.84
## 218 1.68 0.00 0.59 4.83
## 219 2.00 0.09 0.83 4.83
## 220 3.14 0.04 1.07 4.82
## 221 1.57 0.44 0.21 4.79
## 222 3.75 0.06 0.69 4.77
## 223 1.31 0.04 0.41 4.76
## 224 2.10 0.02 0.25 4.73
## 225 2.19 0.00 0.79 4.70
## 226 1.41 0.02 0.20 4.68
## 227 1.12 1.32 0.37 4.68
## 228 1.95 0.08 0.70 4.67
## 229 2.04 0.06 0.47 4.64
## 230 1.97 0.13 0.24 4.63
## 231 1.12 0.00 0.44 4.62
## 232 0.91 1.15 0.13 4.61
## 233 0.99 0.89 0.13 4.60
## 234 1.99 0.22 0.48 4.58
## 235 1.39 1.10 0.30 4.58
## 236 1.15 1.44 0.43 4.57
## 237 1.87 0.07 0.82 4.55
## 238 0.92 0.01 0.42 4.53
## 239 0.26 0.01 0.08 4.53
## 240 0.24 0.00 0.05 4.50
## 241 0.24 0.01 0.61 4.49
## 242 1.51 0.03 0.23 4.48
## 243 0.14 4.10 0.02 4.47
## 244 1.69 0.08 0.74 4.47
## 245 1.94 0.19 0.77 4.45
## 246 1.29 0.02 0.43 4.45
## 247 1.11 0.46 0.33 4.44
## 248 1.35 0.01 0.39 4.42
## 249 1.29 0.01 0.46 4.41
## 250 2.39 1.05 0.86 4.39
## 251 1.05 0.13 0.40 4.39
## 252 0.50 1.61 0.08 4.38
## 253 1.79 0.08 0.47 4.37
## 254 1.73 0.14 0.75 4.35
## 255 0.91 0.26 0.13 4.34
## 256 0.58 1.38 0.17 4.33
## 257 2.93 0.01 0.46 4.31
## 258 1.18 0.00 0.37 4.31
## 259 0.26 0.00 0.05 4.31
## 260 1.27 0.11 0.41 4.31
## 261 1.20 0.03 0.39 4.26
## 262 1.11 0.72 0.30 4.25
## 263 1.34 0.07 0.61 4.25
## 264 2.02 0.10 0.72 4.24
## 265 1.11 0.05 0.07 4.24
## 266 0.00 0.83 1.93 4.23
## 267 1.02 0.00 0.75 4.22
## 268 2.27 0.00 0.23 4.21
## 269 1.27 0.62 0.30 4.21
## 270 2.55 0.04 0.84 4.21
## 271 2.30 0.20 0.83 4.20
## 272 2.07 0.18 0.65 4.20
## 273 1.83 0.57 0.53 4.20
## 274 1.47 0.04 0.43 4.19
## 275 1.06 0.58 0.53 4.19
## 276 2.79 0.02 0.53 4.19
## 277 0.44 0.31 0.04 4.17
## 278 0.48 1.57 0.07 4.16
## 279 0.27 0.00 0.11 4.16
## 280 0.21 0.01 0.56 4.14
## 281 1.86 0.11 0.77 4.14
## 282 0.00 0.09 0.00 4.12
## 283 0.61 1.76 0.09 4.12
## 284 2.48 0.03 0.89 4.11
## 285 1.20 0.37 0.40 4.10
## 286 0.51 2.10 0.07 4.10
## 287 1.50 0.05 0.42 4.10
## 288 1.26 0.01 0.37 4.09
## 289 1.52 0.00 0.00 4.09
## 290 1.06 0.04 0.33 4.08
## 291 0.04 0.04 1.67 4.07
## 292 1.28 0.03 0.41 4.06
## 293 2.26 0.90 0.77 4.06
## 294 1.55 0.16 0.06 4.05
## 295 1.51 0.51 0.35 4.05
## 296 2.12 0.10 0.69 4.03
## 297 0.58 0.64 0.04 4.03
## 298 1.87 0.12 0.65 4.02
## 299 0.28 2.46 0.04 4.01
## 300 1.20 0.07 0.59 4.01
## 301 1.78 0.92 0.37 4.00
## 302 0.89 0.05 0.37 3.99
## 303 1.35 0.00 0.54 3.98
## 304 1.36 0.06 0.40 3.92
## 305 1.96 0.08 0.70 3.92
## 306 0.76 1.07 0.11 3.91
## 307 1.17 0.01 0.42 3.90
## 308 1.71 0.13 0.73 3.89
## 309 0.49 2.62 0.11 3.89
## 310 1.61 0.06 0.67 3.88
## 311 2.09 0.00 0.64 3.88
## 312 1.94 0.31 0.70 3.87
## 313 0.00 3.77 0.00 3.87
## 314 1.14 0.10 0.51 3.87
## 315 0.65 0.03 0.69 3.85
## 316 1.89 1.12 0.68 3.85
## 317 1.57 1.05 0.35 3.84
## 318 1.44 0.22 0.06 3.84
## 319 0.96 0.54 0.13 3.83
## 320 0.48 0.81 0.27 3.83
## 321 1.93 0.41 0.43 3.82
## 322 1.37 0.73 0.27 3.81
## 323 1.58 0.10 0.61 3.79
## 324 1.91 0.27 0.46 3.78
## 325 1.03 0.00 0.36 3.78
## 326 1.24 0.47 0.25 3.77
## 327 1.40 0.10 0.87 3.77
## 328 1.47 0.00 0.32 3.76
## 329 1.56 0.00 0.17 3.76
## 330 0.88 0.59 0.32 3.76
## 331 2.00 0.14 0.22 3.73
## 332 2.00 0.21 0.56 3.73
## 333 0.77 1.54 0.11 3.72
## 334 1.58 0.00 0.19 3.71
## 335 2.48 0.04 0.59 3.70
## 336 0.73 1.38 0.10 3.70
## 337 1.51 0.27 0.61 3.69
## 338 1.61 0.08 0.41 3.69
## 339 0.00 3.67 0.00 3.67
## 340 1.18 0.01 0.35 3.67
## 341 1.22 0.00 0.79 3.66
## 342 1.13 0.55 0.10 3.65
## 343 0.81 0.06 0.24 3.65
## 344 0.97 0.00 0.35 3.65
## 345 1.80 0.40 0.74 3.64
## 346 1.09 0.15 0.33 3.64
## 347 0.68 0.66 0.06 3.63
## 348 2.46 0.05 0.52 3.63
## 349 0.00 0.64 2.93 3.63
## 350 1.42 0.05 0.38 3.63
## 351 0.83 0.46 0.25 3.62
## 352 1.61 0.15 0.57 3.61
## 353 1.22 0.03 0.44 3.61
## 354 1.40 0.00 0.16 3.61
## 355 1.17 0.00 0.42 3.61
## 356 1.50 0.10 0.39 3.61
## 357 0.67 0.46 0.10 3.60
## 358 1.02 0.03 0.37 3.59
## 359 1.35 0.06 0.16 3.58
## 360 1.79 0.00 0.20 3.56
## 361 1.40 0.07 0.50 3.54
## 362 1.77 0.05 0.49 3.54
## 363 1.58 0.12 0.18 3.54
## 364 1.13 0.10 0.41 3.53
## 365 1.14 0.01 0.41 3.53
## 366 1.08 0.02 0.29 3.53
## 367 2.40 0.02 0.40 3.53
## 368 1.33 0.00 0.23 3.52
## 369 1.21 0.01 0.17 3.52
## 370 0.50 0.05 0.30 3.52
## 371 1.66 0.27 0.38 3.52
## 372 0.94 0.12 0.34 3.51
## 373 0.50 1.75 0.08 3.51
## 374 0.39 0.03 0.24 3.50
## 375 0.38 1.42 0.06 3.50
## 376 0.97 0.02 0.31 3.50
## 377 1.83 0.73 0.35 3.50
## 379 1.22 0.02 0.31 3.49
## 380 1.02 0.04 0.32 3.48
## 381 1.01 0.01 0.35 3.48
## 382 0.89 0.00 0.30 3.46
## 383 1.75 0.10 0.72 3.45
## 384 0.00 3.44 0.00 3.44
## 385 0.73 0.03 0.29 3.44
## 386 1.27 0.33 0.29 3.44
## 387 1.54 0.17 0.38 3.43
## 388 1.07 0.06 0.47 3.42
## 389 2.07 0.00 0.22 3.42
## 390 0.00 2.55 0.02 3.42
## 391 1.20 0.02 0.43 3.41
## 392 0.69 0.59 0.40 3.41
## 393 2.28 0.05 0.61 3.40
## 394 1.47 0.19 0.17 3.39
## 395 1.03 0.00 0.32 3.38
## 396 1.35 0.48 0.47 3.38
## 397 0.94 0.74 0.27 3.38
## 398 0.76 0.00 0.13 3.36
## 399 0.67 0.73 0.06 3.36
## 400 1.61 0.82 0.28 3.36
## 401 1.53 0.00 0.18 3.34
## 402 1.14 0.01 0.29 3.34
## 403 0.99 2.32 0.02 3.33
## 404 1.29 0.12 0.46 3.33
## 405 1.01 0.57 0.30 3.33
## 406 1.17 0.76 0.24 3.32
## 407 1.39 0.03 0.43 3.32
## 408 1.05 0.05 0.22 3.31
## 409 1.28 0.05 0.46 3.28
## 410 1.92 0.06 0.50 3.28
## 411 0.92 0.00 0.23 3.28
## 412 1.05 0.02 0.31 3.27
## 413 1.13 0.46 0.32 3.27
## 414 1.59 0.31 0.87 3.27
## 415 0.19 2.78 0.04 3.26
## 416 1.30 0.77 0.22 3.24
## 417 2.11 0.00 0.23 3.23
## 418 1.33 0.12 0.51 3.23
## 419 0.30 0.00 0.59 3.22
## 420 0.00 3.18 0.00 3.22
## 421 1.33 0.00 0.16 3.21
## 422 0.10 2.35 0.02 3.20
## 423 0.72 0.12 0.10 3.20
## 424 1.21 0.07 0.16 3.20
## 425 0.60 0.80 0.44 3.19
## 426 1.01 0.04 0.66 3.19
## 427 0.00 3.19 0.00 3.19
## 428 0.77 0.01 0.26 3.19
## 429 1.12 0.09 0.19 3.18
## 430 0.87 0.93 0.20 3.18
## 431 1.08 0.10 0.47 3.17
## 433 0.51 1.93 0.14 3.17
## 434 0.56 0.38 0.17 3.17
## 435 0.98 0.00 0.30 3.16
## 436 0.16 0.99 0.09 3.15
## 437 1.06 0.00 0.29 3.15
## 438 1.57 0.06 0.29 3.15
## 439 0.97 0.88 0.42 3.15
## 440 0.99 0.03 0.24 3.15
## 441 0.00 0.00 2.46 3.14
## 442 1.25 0.02 0.16 3.13
## 443 0.86 0.00 0.13 3.12
## 444 0.62 0.14 0.04 3.12
## 445 1.00 1.03 0.17 3.12
## 446 0.87 0.14 0.42 3.12
## 447 0.00 3.03 0.01 3.12
## 448 1.27 0.06 0.50 3.12
## 449 0.82 0.03 0.27 3.11
## 450 2.02 0.00 0.30 3.11
## 451 0.28 0.55 0.08 3.09
## 452 0.16 0.01 0.42 3.08
## 453 0.45 0.64 0.07 3.08
## 454 0.91 0.04 0.24 3.07
## 455 0.99 0.46 0.22 3.07
## 456 0.62 0.55 0.34 3.07
## 457 1.21 0.00 0.14 3.07
## 458 0.86 0.03 0.24 3.07
## 459 0.84 0.00 0.29 3.05
## 460 1.35 0.02 0.28 3.04
## 461 0.64 0.12 0.22 3.04
## 462 0.80 0.02 0.27 3.03
## 463 1.33 0.00 0.16 3.03
## 464 1.07 0.08 0.47 3.02
## 465 1.04 0.00 0.13 3.02
## 466 0.47 0.45 0.07 3.02
## 467 1.13 0.07 0.38 3.02
## 468 0.32 0.00 0.31 3.00
## 469 0.21 0.01 0.19 3.00
## 470 0.00 0.76 1.09 3.00
## 472 1.41 0.05 0.53 2.99
## 473 0.51 0.80 0.07 2.99
## 474 1.18 0.00 0.13 2.99
## 475 1.26 1.16 0.45 2.99
## 476 0.86 0.64 0.13 2.99
## 477 1.00 1.39 0.12 2.98
## 478 1.12 0.08 0.45 2.97
## 479 1.72 0.00 0.29 2.97
## 480 1.01 0.00 0.38 2.97
## 481 1.37 0.06 0.49 2.96
## 482 0.04 1.19 0.15 2.96
## 483 1.15 0.04 0.41 2.96
## 484 0.71 0.15 0.26 2.95
## 485 0.58 0.34 0.04 2.94
## 486 0.51 0.06 0.15 2.94
## 487 1.11 0.04 0.33 2.94
## 488 0.69 0.12 0.37 2.94
## 489 0.77 0.05 0.05 2.94
## 490 0.80 0.03 0.27 2.93
## 491 1.06 0.73 0.26 2.92
## 492 1.13 0.05 0.30 2.91
## 493 0.45 0.62 0.09 2.91
## 494 1.85 0.11 0.33 2.90
## 495 0.80 0.04 0.22 2.90
## 496 1.14 0.00 0.22 2.90
## 497 0.86 0.00 0.28 2.90
## 498 1.24 1.13 0.45 2.90
## 499 1.51 0.06 0.61 2.89
## 500 0.32 1.38 0.20 2.89
## 501 1.12 0.01 0.24 2.89
## 502 1.07 0.00 0.28 2.88
## 503 0.72 0.02 0.11 2.88
## 504 1.27 0.00 0.31 2.88
## 505 2.43 0.12 0.22 2.87
## 506 0.77 0.00 0.22 2.86
## 507 0.16 0.00 0.17 2.86
## 508 0.63 0.03 0.11 2.86
## 509 0.55 0.00 0.32 2.85
## 510 0.51 0.89 0.07 2.85
## 511 0.53 0.98 0.05 2.85
## 512 1.34 0.00 0.14 2.85
## 513 1.14 0.00 0.31 2.85
## 514 1.98 0.05 0.42 2.85
## 515 0.57 0.11 0.30 2.84
## 516 0.86 0.05 0.28 2.83
## 517 0.09 0.00 0.22 2.83
## 518 1.05 0.07 0.43 2.83
## 519 1.08 0.04 0.39 2.83
## 520 0.67 0.10 0.09 2.82
## 521 1.05 0.04 0.14 2.82
## 522 2.79 0.00 0.00 2.81
## 523 1.25 0.03 0.48 2.81
## 524 1.19 0.00 0.30 2.81
## 525 1.06 0.04 0.38 2.80
## 526 0.80 0.00 0.26 2.80
## 527 0.07 1.10 0.15 2.80
## 528 0.20 2.13 0.18 2.79
## 529 0.88 0.09 0.38 2.79
## 530 0.72 0.00 0.11 2.79
## 531 1.15 0.04 0.41 2.79
## 532 0.00 2.78 0.01 2.79
## 533 0.70 0.00 0.11 2.79
## 534 1.43 0.00 0.48 2.79
## 535 0.22 0.00 0.38 2.79
## 536 1.47 0.68 0.34 2.79
## 537 0.29 1.96 0.07 2.79
## 538 0.74 0.00 0.36 2.78
## 539 0.97 0.07 0.47 2.78
## 540 0.83 0.26 0.25 2.78
## 541 0.98 0.17 0.43 2.78
## 542 1.12 0.00 0.24 2.77
## 543 1.20 0.04 0.30 2.77
## 544 1.15 0.07 0.30 2.77
## 545 0.17 0.00 0.03 2.76
## 546 0.54 0.71 0.07 2.75
## 547 1.31 0.06 0.31 2.74
## 548 0.36 1.13 0.23 2.73
## 549 0.31 1.04 0.05 2.73
## 550 0.94 0.02 0.24 2.72
## 551 0.93 0.02 0.27 2.71
## 552 0.52 0.33 0.10 2.70
## 553 0.48 1.09 0.14 2.70
## 554 0.76 0.00 0.47 2.70
## 555 0.53 0.87 0.05 2.70
## 556 0.11 0.00 0.16 2.69
## 557 0.64 0.01 0.19 2.69
## 558 0.12 0.00 0.18 2.69
## 559 0.52 0.35 0.18 2.69
## 560 0.98 0.00 0.24 2.68
## 561 1.11 0.00 0.34 2.68
## 562 0.00 2.68 0.00 2.68
## 563 1.41 0.04 0.53 2.68
## 564 0.75 0.89 0.26 2.68
## 565 0.63 0.00 0.09 2.67
## 566 0.92 0.01 0.26 2.67
## 567 0.64 0.00 0.25 2.67
## 568 1.09 0.00 0.14 2.67
## 569 0.58 0.00 0.09 2.66
## 570 0.80 0.00 0.26 2.65
## 571 1.11 0.00 0.40 2.65
## 572 0.88 0.00 0.22 2.65
## 573 1.11 0.01 0.66 2.65
## 574 0.00 2.65 0.00 2.65
## 575 0.50 0.12 0.03 2.65
## 576 0.87 0.00 0.24 2.64
## 577 0.47 0.02 0.14 2.63
## 578 1.10 0.12 0.65 2.63
## 579 0.82 0.04 0.24 2.63
## 580 0.46 0.06 0.41 2.63
## 581 0.12 0.00 0.36 2.62
## 582 1.06 0.24 0.25 2.62
## 583 0.81 0.04 0.21 2.62
## 584 1.79 0.01 0.23 2.62
## 585 0.14 0.01 0.16 2.62
## 586 0.84 0.96 0.19 2.61
## 587 1.22 0.04 0.44 2.61
## 588 0.52 0.92 0.14 2.60
## 589 0.55 0.11 0.08 2.60
## 590 1.63 0.04 0.43 2.59
## 591 1.12 0.08 0.45 2.59
## 592 0.21 0.00 0.35 2.59
## 593 1.24 0.01 0.69 2.58
## 594 1.33 0.07 0.28 2.58
## 595 1.24 0.03 0.27 2.58
## 596 0.27 1.75 0.18 2.58
## 597 0.88 0.03 0.26 2.58
## 598 0.74 0.31 0.22 2.57
## 599 1.68 0.33 0.28 2.57
## 600 0.56 0.03 0.22 2.57
## 601 0.08 0.00 0.35 2.57
## 602 0.59 0.21 0.07 2.56
## 603 0.00 2.41 0.00 2.56
## 604 0.23 0.00 0.22 2.56
## 605 0.57 0.70 0.07 2.54
## 606 0.87 0.29 0.25 2.54
## 607 0.12 0.00 0.20 2.54
## 609 1.12 0.06 0.22 2.52
## 610 0.75 0.16 0.06 2.52
## 611 0.78 0.00 0.24 2.52
## 612 0.00 0.52 1.51 2.52
## 613 1.31 0.08 0.52 2.51
## 614 0.02 0.00 0.19 2.50
## 615 0.07 0.26 2.05 2.50
## 616 0.14 1.08 0.01 2.50
## 617 1.06 0.18 0.39 2.49
## 618 0.56 0.00 0.09 2.49
## 619 0.97 0.00 0.23 2.49
## 620 0.52 0.00 0.15 2.49
## 621 0.85 0.10 0.39 2.48
## 622 0.85 0.00 0.25 2.48
## 623 1.14 0.06 0.13 2.48
## 624 0.44 0.05 0.27 2.48
## 626 0.20 0.00 0.17 2.47
## 627 0.36 0.92 0.07 2.47
## 628 0.58 0.00 0.20 2.46
## 629 0.54 0.05 0.31 2.45
## 630 0.00 2.43 0.02 2.45
## 631 0.12 1.34 0.06 2.45
## 632 0.25 0.00 0.07 2.44
## 633 0.73 0.04 0.22 2.44
## 634 0.98 0.00 0.59 2.44
## 635 1.19 0.00 0.18 2.43
## 636 0.82 0.00 0.10 2.43
## 637 0.61 0.02 0.23 2.42
## 638 0.61 0.46 0.08 2.42
## 639 0.32 0.78 0.05 2.42
## 640 1.18 0.54 0.41 2.42
## 641 0.22 0.51 0.06 2.41
## 642 0.26 0.00 0.08 2.41
## 643 0.76 0.70 0.14 2.41
## 644 0.76 0.00 0.22 2.41
## 645 0.00 0.04 1.68 2.41
## 646 0.08 0.00 0.26 2.40
## 647 0.24 0.00 0.07 2.40
## 648 0.18 1.42 0.03 2.40
## 649 0.10 0.00 0.00 2.40
## 651 1.49 0.05 0.36 2.39
## 652 0.48 0.00 0.18 2.39
## 654 0.81 0.00 0.10 2.39
## 655 0.87 0.04 0.40 2.39
## 656 0.71 0.00 0.20 2.39
## 657 0.61 0.03 0.07 2.38
## 658 0.97 0.00 0.39 2.38
## 659 0.46 0.02 0.18 2.38
## 660 0.39 0.03 0.02 2.38
## 661 0.76 0.26 0.36 2.38
## 662 0.54 0.01 0.37 2.38
## 663 0.15 0.00 0.19 2.38
## 664 0.91 0.00 0.30 2.38
## 665 0.01 0.00 0.18 2.37
## 666 0.02 0.08 0.00 2.37
## 667 1.08 0.04 0.30 2.37
## 668 0.86 0.01 0.26 2.37
## 669 0.13 0.00 0.21 2.37
## 670 0.74 0.02 0.22 2.36
## 671 0.14 1.48 0.05 2.36
## 672 1.05 0.00 0.23 2.35
## 673 0.48 0.40 0.08 2.35
## 674 0.00 2.34 0.01 2.35
## 675 0.46 0.01 0.20 2.35
## 676 0.83 0.00 0.20 2.34
## 677 0.00 0.01 1.41 2.34
## 678 0.90 0.00 0.24 2.34
## 679 0.70 0.34 0.21 2.34
## 680 0.86 0.00 0.20 2.33
## 681 0.54 0.47 0.17 2.32
## 682 0.14 0.00 0.24 2.32
## 683 0.56 0.00 0.19 2.32
## 684 0.40 1.06 0.07 2.32
## 685 1.35 0.04 0.14 2.32
## 686 1.06 0.09 0.32 2.31
## 687 0.45 1.21 0.13 2.31
## 688 0.64 0.00 0.09 2.31
## 689 0.00 2.02 0.01 2.31
## 690 0.46 0.10 0.10 2.31
## 691 0.85 0.00 0.21 2.30
## 692 1.06 0.00 0.29 2.30
## 693 0.54 0.62 0.18 2.30
## 694 0.75 0.15 0.31 2.29
## 695 1.25 0.00 0.13 2.29
## 696 0.68 0.04 0.34 2.29
## 697 0.80 0.00 0.10 2.28
## 698 1.27 0.46 0.26 2.28
## 699 0.98 0.00 0.20 2.28
## 700 0.00 2.28 0.00 2.28
## 701 0.12 1.63 0.02 2.28
## 702 0.07 0.01 1.82 2.28
## 703 0.90 0.00 0.37 2.28
## 704 0.77 0.10 0.36 2.28
## 705 2.00 0.02 0.18 2.28
## 706 0.39 0.64 0.12 2.27
## 707 0.62 0.00 0.31 2.27
## 708 0.92 0.04 0.24 2.27
## 709 0.10 0.91 0.04 2.27
## 710 0.73 0.54 0.09 2.26
## 711 0.54 0.02 0.30 2.26
## 713 0.57 0.14 0.21 2.26
## 714 0.79 0.87 0.32 2.25
## 715 0.44 1.06 0.13 2.25
## 716 0.46 0.20 0.08 2.25
## 717 0.25 0.46 0.06 2.25
## 718 0.15 0.00 0.17 2.25
## 719 0.41 1.05 0.11 2.25
## 720 0.51 0.91 0.32 2.25
## 721 0.71 0.22 0.13 2.24
## 722 0.83 0.00 0.11 2.23
## 723 0.25 0.21 0.03 2.23
## 724 0.61 0.00 0.21 2.23
## 725 0.85 0.00 0.28 2.23
## 726 0.62 0.18 0.16 2.22
## 727 1.03 0.00 0.31 2.22
## 728 0.32 0.02 0.18 2.22
## 729 0.63 0.45 0.13 2.22
## 730 0.98 0.00 0.21 2.22
## 731 0.55 0.02 0.19 2.21
## 732 0.55 0.00 0.19 2.21
## 733 0.82 0.05 0.28 2.21
## 734 0.24 0.00 0.18 2.20
## 735 0.12 0.00 0.02 2.20
## 736 0.02 0.00 0.17 2.20
## 737 0.51 0.34 0.23 2.20
## 738 0.00 2.05 0.00 2.20
## 739 0.68 0.02 0.21 2.20
## 740 0.91 0.00 0.23 2.20
## 741 0.97 0.55 0.33 2.19
## 742 0.78 0.02 0.22 2.19
## 743 0.44 0.00 0.08 2.19
## 744 0.17 1.10 0.05 2.19
## 745 0.72 0.30 0.13 2.19
## 746 1.07 0.07 0.45 2.19
## 747 0.00 2.17 0.01 2.18
## 748 0.20 0.00 0.06 2.18
## 749 0.78 0.01 0.17 2.18
## 750 0.07 0.00 0.13 2.18
## 751 0.04 0.73 0.12 2.18
## 752 0.17 0.47 0.06 2.17
## 753 0.68 0.01 0.20 2.17
## 754 0.46 0.08 0.03 2.17
## 755 0.11 1.56 0.02 2.17
## 756 0.83 0.00 0.10 2.16
## 757 0.47 0.00 0.18 2.16
## 758 0.55 0.02 0.08 2.15
## 759 1.16 0.13 0.32 2.15
## 760 0.03 1.98 0.00 2.15
## 761 1.41 0.00 0.14 2.15
## 762 1.03 0.00 0.59 2.14
## 763 0.00 1.45 0.03 2.14
## 764 0.00 2.13 0.00 2.14
## 765 0.38 0.19 0.10 2.14
## 766 0.84 0.00 0.10 2.14
## 767 0.12 0.00 0.02 2.13
## 768 0.81 0.00 0.27 2.13
## 769 0.07 1.35 0.08 2.13
## 770 0.37 0.89 0.05 2.13
## 771 1.16 0.06 0.33 2.13
## 772 0.97 0.02 0.21 2.12
## 773 0.05 1.07 0.09 2.12
## 774 0.09 0.45 0.11 2.12
## 775 0.61 0.05 0.09 2.12
## 776 0.33 0.92 0.04 2.12
## 777 0.27 0.05 0.18 2.11
## 778 0.62 0.00 0.29 2.11
## 779 0.40 0.00 0.03 2.11
## 780 1.34 0.40 0.26 2.11
## 781 0.31 0.02 0.09 2.11
## 782 0.45 0.63 0.13 2.11
## 784 0.21 1.13 0.13 2.11
## 785 0.33 0.00 0.15 2.11
## 786 0.07 1.05 0.04 2.10
## 787 0.72 0.00 0.22 2.10
## 788 0.44 0.04 0.07 2.10
## 789 0.13 0.02 0.18 2.10
## 790 0.51 0.01 0.17 2.10
## 791 0.63 0.29 0.19 2.09
## 792 0.00 1.96 0.14 2.09
## 793 0.65 0.08 0.20 2.09
## 794 0.60 0.05 0.18 2.09
## 795 0.12 0.01 0.13 2.09
## 796 0.00 0.00 0.12 2.09
## 797 0.94 0.00 0.22 2.09
## 798 0.93 0.14 0.32 2.09
## 799 0.42 0.96 0.25 2.09
## 800 0.32 0.00 0.00 2.08
## 801 0.71 0.00 0.27 2.08
## 802 1.02 0.05 0.39 2.08
## 803 0.52 0.00 0.20 2.08
## 804 0.33 0.73 0.06 2.08
## 805 0.99 0.13 0.36 2.08
## 806 0.04 0.00 0.00 2.08
## 807 1.08 0.00 0.11 2.08
## 808 0.94 0.00 0.35 2.08
## 809 0.46 0.00 0.08 2.07
## 810 0.42 0.75 0.26 2.07
## 811 0.39 0.00 0.19 2.07
## 812 0.54 0.54 0.23 2.07
## 813 0.36 0.00 0.07 2.07
## 814 0.80 0.01 0.22 2.06
## 815 0.97 0.02 0.34 2.06
## 816 0.63 0.04 0.19 2.06
## 817 0.52 0.74 0.08 2.06
## 818 0.77 0.04 0.10 2.06
## 819 0.46 0.79 0.13 2.06
## 820 0.62 0.13 0.25 2.06
## 821 0.57 0.46 0.13 2.06
## 822 0.92 0.04 0.37 2.05
## 823 0.64 0.00 0.19 2.05
## 824 0.33 0.04 0.25 2.05
## 825 0.06 0.83 0.00 2.05
## 826 0.48 0.05 0.06 2.05
## 827 0.83 0.15 0.35 2.05
## 828 0.25 0.00 0.05 2.05
## 829 1.29 0.02 0.25 2.05
## 830 0.27 0.53 0.14 2.04
## 831 0.42 0.01 0.16 2.04
## 832 1.09 0.00 0.23 2.04
## 833 0.02 0.00 0.28 2.04
## 834 1.02 0.00 0.31 2.04
## 835 0.48 0.29 0.07 2.04
## 836 1.06 0.03 0.37 2.04
## 837 0.25 0.00 0.25 2.03
## 838 0.61 0.13 0.05 2.03
## 839 0.40 0.00 0.16 2.03
## 840 0.18 0.00 0.27 2.03
## 841 0.67 0.00 0.30 2.02
## 842 0.05 0.01 0.15 2.02
## 843 0.09 0.00 0.17 2.02
## 844 0.98 0.04 0.18 2.02
## 845 1.27 0.00 0.25 2.01
## 846 0.62 0.00 0.18 2.01
## 847 0.85 0.01 0.37 2.00
## 848 0.45 0.53 0.13 2.00
## 849 1.31 0.02 0.33 2.00
## 850 0.16 1.29 0.03 2.00
## 851 0.30 0.00 0.22 2.00
## 852 0.64 0.27 0.13 1.99
## 853 0.30 0.90 0.04 1.99
## 854 0.64 0.05 0.09 1.99
## 855 1.09 0.02 0.12 1.98
## 856 0.27 0.75 0.04 1.98
## 857 0.58 0.00 0.16 1.98
## 858 0.63 0.07 0.16 1.98
## 859 0.86 0.08 0.32 1.97
## 860 0.80 0.00 0.18 1.97
## 861 0.95 0.00 0.28 1.97
## 862 0.59 0.00 0.19 1.97
## 863 0.58 0.51 0.17 1.97
## 864 0.64 0.02 0.30 1.97
## 865 0.11 0.00 0.02 1.97
## 866 0.57 0.02 0.15 1.96
## 867 0.50 0.63 0.33 1.96
## 868 0.37 0.41 0.05 1.96
## 869 0.23 1.53 0.02 1.96
## 870 0.03 1.05 0.08 1.96
## 871 0.65 0.02 0.20 1.96
## 872 0.49 0.00 0.16 1.95
## 873 1.01 0.00 0.20 1.95
## 874 0.61 0.00 0.09 1.95
## 875 0.77 0.00 0.09 1.95
## 876 0.20 0.00 0.06 1.95
## 877 0.74 0.00 0.25 1.94
## 878 1.26 0.01 0.18 1.94
## 879 0.00 0.00 0.00 1.94
## 880 1.23 0.00 0.13 1.94
## 881 0.38 0.55 0.05 1.94
## 882 0.15 0.65 0.04 1.94
## 883 0.42 0.03 0.07 1.94
## 884 0.40 0.00 0.12 1.94
## 885 0.72 0.00 0.21 1.93
## 886 0.61 0.00 0.17 1.93
## 887 0.56 0.00 0.27 1.93
## 888 0.39 0.00 0.06 1.93
## 889 0.26 1.30 0.03 1.93
## 890 0.60 0.20 0.07 1.93
## 891 0.24 0.00 0.16 1.93
## 892 0.89 0.10 0.37 1.93
## 893 0.00 0.29 0.12 1.93
## 894 0.87 0.01 0.17 1.92
## 895 0.53 0.41 0.06 1.92
## 896 0.97 0.01 0.22 1.92
## 897 0.85 0.00 0.20 1.92
## 898 0.96 0.00 0.20 1.92
## 899 0.80 0.00 0.09 1.92
## 900 0.73 0.00 0.25 1.92
## 901 0.16 1.46 0.03 1.92
## 902 0.67 0.00 0.18 1.92
## 903 0.16 1.01 0.02 1.91
## 904 0.57 0.00 0.19 1.91
## 905 0.44 0.00 0.17 1.91
## 906 0.78 0.04 0.31 1.91
## 907 0.66 0.00 0.17 1.91
## 908 0.75 0.03 0.09 1.90
## 909 0.92 0.06 0.32 1.90
## 910 0.91 0.03 0.22 1.89
## 911 0.15 0.00 0.18 1.89
## 912 0.30 1.33 0.04 1.89
## 913 0.54 0.03 0.26 1.88
## 914 0.44 0.00 0.08 1.88
## 915 0.72 0.00 0.24 1.88
## 916 0.12 1.48 0.03 1.88
## 917 0.69 0.09 0.21 1.88
## 918 0.36 0.03 0.07 1.88
## 919 0.08 0.00 1.33 1.87
## 920 0.53 0.30 0.09 1.87
## 921 1.47 0.04 0.14 1.87
## 922 0.16 1.07 0.10 1.87
## 923 0.62 0.40 0.12 1.87
## 924 0.52 0.41 0.06 1.86
## 925 0.03 0.00 0.08 1.86
## 926 0.69 0.03 0.02 1.86
## 927 0.44 0.39 0.10 1.86
## 928 0.41 0.04 0.04 1.86
## 929 1.37 0.00 0.49 1.86
## 930 0.92 0.01 0.29 1.86
## 931 0.71 0.00 0.24 1.86
## 932 0.37 0.00 0.15 1.86
## 933 0.42 0.69 0.12 1.86
## 934 0.71 0.13 0.16 1.86
## 935 0.59 0.55 0.11 1.85
## 936 0.49 0.00 0.03 1.85
## 937 0.82 0.00 0.20 1.85
## 938 0.18 0.35 0.06 1.85
## 939 0.19 0.83 0.03 1.85
## 940 0.49 0.08 0.23 1.85
## 941 1.10 0.42 0.33 1.84
## 942 0.34 0.35 0.18 1.84
## 943 0.05 0.00 0.25 1.84
## 944 0.06 0.93 0.00 1.83
## 945 0.49 0.00 0.03 1.83
## 946 0.76 0.00 0.23 1.83
## 947 0.40 0.03 0.07 1.83
## 948 1.02 0.07 0.28 1.83
## 949 0.07 1.49 0.02 1.83
## 950 0.54 0.02 0.17 1.83
## 951 0.33 0.52 0.05 1.83
## 952 0.34 0.79 0.09 1.82
## 953 0.43 0.03 0.12 1.82
## 954 0.07 0.00 0.02 1.82
## 955 0.00 0.00 0.00 1.82
## 956 0.74 0.07 0.09 1.82
## 957 0.21 1.35 0.03 1.81
## 958 0.84 0.11 0.31 1.81
## 959 0.59 0.00 0.18 1.81
## 960 0.51 0.12 0.08 1.81
## 961 0.44 0.56 0.04 1.81
## 962 0.69 0.00 0.23 1.81
## 963 0.03 0.00 0.77 1.80
## 964 0.59 0.21 0.07 1.80
## 965 0.00 0.01 0.13 1.80
## 966 0.21 0.03 0.16 1.80
## 967 0.68 0.00 0.12 1.80
## 968 0.96 0.07 0.27 1.79
## 969 0.39 0.08 0.06 1.79
## 970 0.88 0.06 0.34 1.79
## 971 0.57 0.03 0.14 1.78
## 972 0.29 0.00 0.24 1.78
## 973 0.03 1.49 0.03 1.78
## 974 0.58 0.00 0.08 1.78
## 975 1.01 0.02 0.36 1.78
## 976 0.95 0.36 0.14 1.78
## 977 0.94 0.06 0.33 1.78
## 978 0.46 0.72 0.19 1.78
## 979 0.57 0.14 0.13 1.77
## 980 0.76 0.00 0.16 1.77
## 981 0.45 0.00 0.16 1.77
## 982 0.54 0.84 0.08 1.77
## 983 0.03 0.00 0.15 1.77
## 984 0.09 1.33 0.12 1.77
## 985 0.06 1.03 0.04 1.77
## 986 0.29 0.24 0.06 1.77
## 987 0.45 0.01 0.24 1.77
## 988 0.31 0.56 0.04 1.76
## 989 0.42 0.00 0.07 1.76
## 990 0.54 0.00 0.16 1.76
## 991 0.38 0.40 0.06 1.76
## 992 0.47 0.20 0.07 1.76
## 993 0.12 1.09 0.02 1.76
## 994 0.67 0.00 0.22 1.76
## 995 0.46 0.00 0.07 1.76
## 996 0.67 0.00 0.22 1.76
## 997 0.69 0.04 0.31 1.76
## 998 0.90 0.01 0.17 1.76
## 999 0.47 0.00 0.03 1.76
## 1000 0.48 0.00 0.16 1.76
## 1001 0.95 0.00 0.29 1.76
## 1002 1.07 0.02 0.32 1.76
## 1003 0.87 0.02 0.26 1.76
## 1004 0.04 0.00 0.04 1.75
## 1005 0.37 0.25 0.24 1.75
## 1006 0.45 0.00 0.07 1.75
## 1007 0.90 0.53 0.27 1.75
## 1008 0.54 0.03 0.18 1.75
## 1009 0.13 0.91 0.01 1.75
## 1010 0.34 0.21 0.27 1.75
## 1011 0.14 0.80 0.02 1.75
## 1012 0.66 0.08 0.18 1.75
## 1013 0.66 0.01 0.22 1.75
## 1014 0.46 0.00 0.03 1.75
## 1015 0.89 0.04 0.10 1.74
## 1016 0.49 0.45 0.17 1.74
## 1017 0.63 0.02 0.25 1.74
## 1018 0.40 0.00 0.16 1.74
## 1019 0.89 0.03 0.14 1.74
## 1020 0.61 0.01 0.16 1.74
## 1021 0.04 0.00 0.01 1.74
## 1022 0.04 0.00 0.04 1.74
## 1023 0.88 0.06 0.30 1.74
## 1024 0.75 0.13 0.27 1.74
## 1025 0.66 0.12 0.27 1.73
## 1026 0.66 0.00 0.22 1.73
## 1027 0.68 0.14 0.26 1.73
## 1028 0.20 0.00 0.05 1.73
## 1029 0.62 0.10 0.07 1.73
## 1030 0.44 0.00 0.14 1.73
## 1031 0.70 0.00 0.08 1.73
## 1032 0.52 0.01 0.14 1.73
## 1033 0.66 0.00 0.22 1.72
## 1034 0.78 0.06 0.27 1.72
## 1035 0.78 0.00 0.28 1.72
## 1036 0.18 0.00 0.94 1.72
## 1037 0.83 0.00 0.19 1.72
## 1038 0.98 0.00 0.33 1.72
## 1039 0.03 0.00 0.08 1.72
## 1040 0.21 0.55 0.15 1.72
## 1041 0.87 0.00 0.25 1.71
## 1042 0.16 0.00 0.12 1.71
## 1043 0.64 0.00 0.08 1.71
## 1044 0.41 0.00 0.15 1.71
## 1045 0.34 0.32 0.18 1.71
## 1046 0.55 0.00 0.07 1.71
## 1047 0.00 1.71 0.00 1.71
## 1048 0.39 0.00 0.06 1.71
## 1049 0.00 0.00 0.12 1.70
## 1050 1.08 0.03 0.26 1.70
## 1051 0.24 0.00 1.23 1.70
## 1052 0.42 0.14 0.15 1.70
## 1053 1.12 0.00 0.09 1.70
## 1054 0.21 0.79 0.08 1.70
## 1055 0.00 1.69 0.01 1.70
## 1056 0.83 0.00 0.19 1.70
## 1057 0.05 0.00 0.23 1.70
## 1058 0.34 0.04 0.10 1.69
## 1059 0.18 0.00 0.15 1.69
## 1060 0.54 0.02 0.25 1.69
## 1061 0.53 0.01 0.14 1.69
## 1062 0.64 0.00 0.11 1.69
## 1063 0.44 0.08 0.22 1.69
## 1064 1.01 0.00 0.13 1.69
## 1065 0.28 0.03 0.02 1.69
## 1066 0.48 0.04 0.07 1.69
## 1067 0.66 0.08 0.08 1.69
## 1068 0.71 0.01 0.18 1.69
## 1069 0.12 0.00 0.05 1.69
## 1070 0.52 0.00 0.19 1.69
## 1071 0.42 0.22 0.06 1.69
## 1072 0.52 0.07 0.30 1.69
## 1073 0.47 0.00 0.32 1.68
## 1074 0.64 0.00 0.22 1.68
## 1075 0.06 0.00 0.04 1.68
## 1076 0.64 0.00 0.15 1.68
## 1077 0.24 0.82 0.03 1.68
## 1078 0.87 0.33 0.10 1.68
## 1079 0.00 0.00 0.00 1.68
## 1080 0.30 0.00 0.14 1.68
## 1081 0.55 0.04 0.17 1.68
## 1082 0.27 0.17 0.06 1.68
## 1083 0.57 0.00 0.17 1.67
## 1084 0.52 0.00 0.22 1.67
## 1085 1.02 0.00 0.20 1.67
## 1086 0.05 0.00 0.04 1.67
## 1087 0.59 0.01 0.26 1.67
## 1088 0.67 0.42 0.15 1.67
## 1089 0.39 0.00 0.06 1.67
## 1090 0.30 0.42 0.04 1.67
## 1091 0.49 0.02 0.07 1.67
## 1092 0.95 0.03 0.10 1.67
## 1093 0.65 0.00 0.19 1.67
## 1094 0.59 0.04 0.07 1.67
## 1095 0.32 0.00 0.22 1.67
## 1096 0.09 0.00 0.23 1.67
## 1097 0.45 0.00 0.14 1.67
## 1098 0.66 0.11 0.26 1.66
## 1099 0.73 0.06 0.30 1.66
## 1100 0.30 0.31 0.04 1.66
## 1101 0.61 0.06 0.20 1.66
## 1102 0.64 0.01 0.14 1.66
## 1103 0.63 0.00 0.21 1.66
## 1104 0.70 0.02 0.18 1.66
## 1105 0.15 0.03 0.22 1.66
## 1106 0.12 0.54 0.04 1.66
## 1107 0.10 0.00 0.02 1.65
## 1108 0.11 0.60 0.05 1.65
## 1109 0.38 0.15 0.05 1.65
## 1110 0.68 0.33 0.16 1.65
## 1111 0.00 1.65 0.00 1.65
## 1112 0.38 0.02 0.16 1.65
## 1113 0.02 1.27 0.03 1.64
## 1114 0.05 0.76 0.03 1.64
## 1115 0.72 0.00 0.16 1.64
## 1116 0.10 0.00 0.02 1.64
## 1117 0.63 0.00 0.08 1.64
## 1118 0.26 0.61 0.03 1.64
## 1119 0.63 0.00 0.21 1.64
## 1120 0.15 0.00 0.05 1.64
## 1121 0.88 0.00 0.22 1.64
## 1122 0.48 0.00 0.14 1.64
## 1123 0.89 0.05 0.25 1.64
## 1124 0.02 0.00 0.07 1.63
## 1125 0.96 0.02 0.20 1.63
## 1126 0.25 0.56 0.04 1.63
## 1128 0.73 0.02 0.28 1.63
## 1129 0.34 0.00 0.10 1.63
## 1130 0.48 0.32 0.11 1.63
## 1131 0.14 0.00 0.15 1.63
## 1132 0.09 0.00 0.22 1.62
## 1133 0.85 0.02 0.17 1.62
## 1135 0.63 0.01 0.19 1.62
## 1136 0.61 0.03 0.15 1.62
## 1137 0.04 0.49 0.10 1.62
## 1138 0.11 0.45 0.04 1.62
## 1139 0.61 0.00 0.11 1.62
## 1140 0.38 0.30 0.13 1.61
## 1141 0.62 0.00 0.21 1.61
## 1142 0.53 0.03 0.13 1.61
## 1143 0.27 0.65 0.03 1.61
## 1144 0.00 1.61 0.01 1.61
## 1145 0.38 0.20 0.04 1.61
## 1146 1.18 0.00 0.43 1.61
## 1147 0.00 0.00 0.11 1.61
## 1148 0.68 0.01 0.13 1.61
## 1149 0.48 0.01 0.15 1.60
## 1150 0.99 0.00 0.22 1.60
## 1151 0.23 0.00 0.07 1.60
## 1152 0.69 0.02 0.18 1.60
## 1153 0.96 0.09 0.08 1.60
## 1154 0.09 0.00 0.02 1.60
## 1155 0.48 0.30 0.10 1.60
## 1156 0.02 1.36 0.02 1.60
## 1157 0.74 0.02 0.26 1.60
## 1158 0.44 0.06 0.04 1.60
## 1159 0.12 0.00 0.21 1.59
## 1160 1.58 0.00 0.00 1.59
## 1161 0.36 0.04 0.04 1.59
## 1162 0.41 0.46 0.10 1.59
## 1163 0.46 0.34 0.21 1.59
## 1164 0.09 0.00 0.02 1.59
## 1165 1.10 0.32 0.13 1.59
## 1166 0.44 0.07 0.15 1.59
## 1167 0.50 0.00 0.14 1.59
## 1168 0.60 0.00 0.10 1.59
## 1169 0.80 0.03 0.29 1.58
## 1170 0.56 0.00 0.15 1.58
## 1171 0.58 0.00 0.16 1.58
## 1172 0.60 0.01 0.17 1.58
## 1173 0.60 0.00 0.10 1.58
## 1174 0.80 0.01 0.15 1.58
## 1175 0.49 0.00 0.15 1.58
## 1176 0.76 0.00 0.17 1.58
## 1177 0.26 0.34 0.09 1.58
## 1178 0.37 0.00 0.15 1.58
## 1179 0.44 0.44 0.12 1.58
## 1180 0.65 0.00 0.08 1.58
## 1181 0.18 0.12 1.16 1.57
## 1182 0.60 0.00 0.20 1.57
## 1183 0.53 0.00 0.06 1.57
## 1184 0.11 0.46 0.04 1.57
## 1185 0.64 0.49 0.25 1.56
## 1186 0.60 0.00 0.20 1.56
## 1187 0.40 0.00 0.10 1.56
## 1188 0.14 0.81 0.02 1.56
## 1189 0.19 0.00 0.05 1.56
## 1190 0.44 0.33 0.21 1.56
## 1191 0.17 0.69 0.03 1.56
## 1192 0.00 1.56 0.00 1.56
## 1193 0.38 0.44 0.05 1.56
## 1194 0.75 0.01 0.21 1.56
## 1195 0.56 0.00 0.15 1.55
## 1196 0.54 0.04 0.25 1.55
## 1197 0.59 0.00 0.20 1.55
## 1198 0.57 0.00 0.07 1.55
## 1199 0.44 0.19 0.14 1.55
## 1200 0.47 0.02 0.22 1.55
## 1201 0.38 0.02 0.03 1.55
## 1202 0.87 0.02 0.09 1.55
## 1203 0.53 0.00 0.13 1.55
## 1204 0.53 0.00 0.22 1.55
## 1205 0.51 0.21 0.23 1.55
## 1206 0.00 0.00 0.00 1.55
## 1207 0.36 0.00 0.12 1.55
## 1208 0.50 0.24 0.11 1.55
## 1209 0.35 0.01 0.12 1.54
## 1210 0.43 0.29 0.14 1.54
## 1211 0.22 0.52 0.10 1.54
## 1212 0.44 0.08 0.19 1.54
## 1213 0.87 0.00 0.09 1.54
## 1214 0.02 0.02 0.10 1.54
## 1215 0.52 0.01 0.15 1.54
## 1216 0.07 0.00 0.21 1.54
## 1217 0.58 0.00 0.10 1.54
## 1218 0.69 0.00 0.21 1.53
## 1219 0.41 0.00 0.21 1.53
## 1220 0.65 0.01 0.17 1.53
## 1221 0.79 0.00 0.17 1.53
## 1222 0.29 0.00 0.05 1.53
## 1223 0.05 0.00 0.04 1.53
## 1224 0.43 0.00 0.14 1.53
## 1225 1.26 0.00 0.10 1.53
## 1226 0.15 0.25 0.04 1.53
## 1227 0.58 0.00 0.10 1.53
## 1228 0.52 0.15 0.12 1.52
## 1229 0.45 0.00 0.13 1.52
## 1230 0.69 0.00 0.39 1.52
## 1231 0.39 0.00 0.06 1.52
## 1232 0.90 0.00 0.27 1.52
## 1233 0.05 0.00 0.04 1.52
## 1234 0.00 1.52 0.00 1.52
## 1235 0.06 1.27 0.01 1.52
## 1236 0.04 0.00 0.04 1.52
## 1237 0.05 0.00 0.03 1.52
## 1238 0.72 0.04 0.26 1.52
## 1239 0.63 0.03 0.26 1.52
## 1240 0.31 0.06 0.04 1.52
## 1241 0.05 0.00 0.21 1.51
## 1242 0.09 0.00 0.12 1.51
## 1243 0.71 0.00 0.15 1.51
## 1244 0.54 0.00 0.13 1.51
## 1245 1.16 0.00 0.34 1.51
## 1246 0.00 1.51 0.00 1.51
## 1247 0.15 0.42 0.01 1.51
## 1248 1.16 0.00 0.11 1.51
## 1249 0.06 0.00 0.04 1.51
## 1250 0.03 0.00 1.13 1.51
## 1251 0.27 0.00 0.05 1.51
## 1252 0.32 0.11 0.08 1.50
## 1253 0.58 0.05 0.23 1.50
## 1254 0.52 0.15 0.17 1.50
## 1255 0.48 0.00 0.17 1.50
## 1256 0.05 0.00 0.04 1.50
## 1257 0.78 0.00 0.23 1.50
## 1258 0.31 0.00 0.11 1.50
## 1259 0.07 0.05 0.20 1.50
## 1260 0.27 0.02 0.02 1.50
## 1261 0.10 0.92 0.02 1.50
## 1262 0.36 0.09 0.05 1.50
## 1263 0.00 1.50 0.00 1.50
## 1264 0.53 0.09 0.12 1.50
## 1265 0.20 0.00 0.16 1.50
## 1266 0.14 0.10 0.04 1.50
## 1267 0.28 0.00 0.13 1.49
## 1268 0.38 0.36 0.04 1.49
## 1269 0.43 0.00 0.06 1.49
## 1270 0.00 0.00 0.27 1.49
## 1271 0.36 0.00 0.13 1.49
## 1272 0.36 0.25 0.06 1.49
## 1273 1.10 0.00 0.39 1.49
## 1274 0.52 0.01 0.14 1.49
## 1275 0.73 0.00 0.15 1.49
## 1276 0.69 0.28 0.14 1.48
## 1277 0.88 0.00 0.18 1.48
## 1278 0.37 0.52 0.12 1.48
## 1279 0.50 0.65 0.05 1.48
## 1280 0.25 0.02 0.02 1.48
## 1281 0.35 0.39 0.04 1.48
## 1282 0.47 0.03 0.20 1.48
## 1283 0.56 0.00 0.19 1.48
## 1284 0.20 0.00 0.20 1.48
## 1285 0.59 0.00 0.07 1.48
## 1286 0.92 0.00 0.17 1.47
## 1287 0.55 0.06 0.28 1.47
## 1288 0.41 0.14 0.20 1.47
## 1289 0.18 0.65 0.02 1.47
## 1290 0.37 0.00 0.06 1.47
## 1291 0.03 0.01 0.10 1.47
## 1292 0.40 0.44 0.18 1.47
## 1293 0.20 0.49 0.09 1.47
## 1294 0.40 0.00 0.12 1.47
## 1295 0.50 0.03 0.15 1.47
## 1296 0.20 0.00 0.12 1.47
## 1297 0.72 0.02 0.33 1.47
## 1298 0.19 0.89 0.10 1.46
## 1299 0.38 0.00 0.06 1.46
## 1300 0.40 0.02 0.12 1.46
## 1301 0.46 0.04 0.15 1.46
## 1302 0.56 0.00 0.19 1.46
## 1303 0.83 0.00 0.17 1.46
## 1305 0.48 0.02 0.12 1.46
## 1306 0.37 0.10 0.04 1.46
## 1307 0.08 0.00 0.02 1.46
## 1308 0.55 0.00 0.10 1.46
## 1309 0.24 0.25 0.04 1.46
## 1310 0.59 0.03 0.21 1.46
## 1311 0.40 0.00 0.11 1.46
## 1312 0.65 0.06 0.28 1.46
## 1313 0.20 0.04 0.05 1.46
## 1314 0.58 0.00 0.35 1.46
## 1315 0.75 0.07 0.12 1.46
## 1316 0.47 0.54 0.07 1.45
## 1317 0.44 0.00 0.12 1.45
## 1318 0.46 0.00 0.13 1.45
## 1319 0.49 0.01 0.21 1.45
## 1320 0.55 0.00 0.19 1.45
## 1321 1.13 0.00 0.32 1.45
## 1322 0.35 0.46 0.10 1.45
## 1323 0.76 0.00 0.16 1.45
## 1324 0.00 1.44 0.01 1.45
## 1325 0.00 1.45 0.00 1.45
## 1326 0.00 1.45 0.00 1.45
## 1327 0.00 1.44 0.01 1.45
## 1328 0.17 0.03 0.01 1.45
## 1329 0.34 0.00 0.13 1.45
## 1330 0.08 1.24 0.02 1.45
## 1331 0.05 0.00 0.02 1.45
## 1332 0.90 0.00 0.18 1.45
## 1333 0.53 0.00 0.13 1.44
## 1334 1.08 0.00 0.32 1.44
## 1335 0.42 0.00 0.28 1.44
## 1336 0.77 0.00 0.19 1.44
## 1337 0.07 1.09 0.02 1.44
## 1338 0.79 0.08 0.23 1.44
## 1339 0.38 0.00 0.13 1.44
## 1340 0.40 0.00 0.12 1.44
## 1341 0.07 0.02 0.11 1.44
## 1342 0.74 0.05 0.31 1.44
## 1343 0.32 0.00 0.09 1.44
## 1344 0.50 0.00 0.21 1.44
## 1345 0.08 0.00 0.19 1.44
## 1346 0.54 0.00 0.09 1.43
## 1347 0.37 0.00 0.11 1.43
## 1348 0.39 0.00 0.13 1.43
## 1349 0.46 0.00 0.13 1.43
## 1350 0.48 0.00 0.14 1.43
## 1351 0.23 0.35 0.03 1.43
## 1352 0.00 1.39 0.03 1.43
## 1353 0.54 0.00 0.09 1.43
## 1354 0.04 1.30 0.01 1.42
## 1355 0.54 0.00 0.18 1.42
## 1356 0.41 0.02 0.19 1.42
## 1357 0.05 0.00 0.02 1.42
## 1358 0.22 0.22 0.10 1.42
## 1359 0.08 0.00 0.19 1.42
## 1360 0.57 0.00 0.14 1.42
## 1361 0.12 0.71 0.02 1.42
## 1362 0.00 1.30 0.00 1.42
## 1363 0.40 0.00 0.13 1.42
## 1364 0.38 0.35 0.05 1.42
## 1365 0.21 1.18 0.03 1.42
## 1366 0.64 0.06 0.25 1.41
## 1367 0.51 0.00 0.32 1.41
## 1368 0.63 0.00 0.14 1.41
## 1369 0.34 0.00 0.13 1.41
## 1370 0.28 0.00 0.04 1.41
## 1371 0.34 0.00 0.11 1.41
## 1372 0.15 0.00 0.19 1.41
## 1373 0.37 0.03 0.05 1.41
## 1374 0.45 0.32 0.28 1.41
## 1375 0.31 0.13 0.10 1.41
## 1376 0.34 0.00 0.05 1.41
## 1377 0.47 0.77 0.17 1.41
## 1378 0.17 0.00 0.05 1.41
## 1379 0.54 0.00 0.18 1.41
## 1380 0.47 0.00 0.12 1.40
## 1381 0.28 0.00 0.05 1.40
## 1382 0.08 0.03 0.93 1.40
## 1383 0.20 0.00 0.05 1.40
## 1384 0.70 0.01 0.27 1.40
## 1385 0.52 0.08 0.06 1.40
## 1386 0.00 1.39 0.01 1.40
## 1387 0.86 0.00 0.16 1.40
## 1388 1.05 0.02 0.30 1.40
## 1389 0.53 0.00 0.09 1.39
## 1390 0.66 0.02 0.22 1.39
## 1391 0.42 0.54 0.10 1.39
## 1392 0.02 0.00 0.09 1.39
## 1393 0.60 0.07 0.23 1.39
## 1394 0.16 0.00 0.03 1.39
## 1395 0.17 0.15 0.02 1.39
## 1396 0.18 0.91 0.06 1.39
## 1397 0.38 0.00 0.13 1.39
## 1398 0.62 0.00 0.26 1.39
## 1399 0.48 0.02 0.12 1.39
## 1400 0.37 0.00 0.05 1.38
## 1401 0.56 0.00 0.33 1.38
## 1402 0.18 0.59 0.02 1.38
## 1403 0.32 0.49 0.07 1.38
## 1404 0.38 0.02 0.11 1.38
## 1405 0.54 0.00 0.07 1.38
## 1406 0.34 0.38 0.21 1.38
## 1407 0.57 0.15 0.22 1.38
## 1408 0.53 0.00 0.13 1.38
## 1409 0.04 0.00 0.09 1.38
## 1410 0.43 0.01 0.13 1.38
## 1411 0.53 0.00 0.18 1.38
## 1412 0.58 0.00 0.15 1.38
## 1413 0.01 0.00 0.76 1.37
## 1414 0.62 0.06 0.23 1.37
## 1415 0.70 0.16 0.26 1.37
## 1416 0.52 0.00 0.09 1.37
## 1417 0.78 0.01 0.09 1.37
## 1418 0.67 0.02 0.26 1.37
## 1419 0.50 0.01 0.13 1.37
## 1420 0.33 0.00 0.05 1.37
## 1421 0.60 0.00 0.22 1.37
## 1422 0.00 1.37 0.00 1.37
## 1423 0.27 0.02 0.22 1.36
## 1424 0.45 0.00 0.06 1.36
## 1425 0.66 0.00 0.07 1.36
## 1426 0.58 0.01 0.15 1.36
## 1427 0.04 0.00 1.09 1.36
## 1428 0.08 1.00 0.01 1.36
## 1429 0.00 1.36 0.00 1.36
## 1430 0.08 0.00 0.01 1.36
## 1431 0.51 0.28 0.09 1.36
## 1432 0.42 0.00 0.11 1.36
## 1433 0.52 0.00 0.17 1.36
## 1435 0.29 0.11 0.14 1.35
## 1436 0.00 1.26 0.09 1.35
## 1437 0.76 0.08 0.27 1.35
## 1438 0.03 0.00 0.03 1.35
## 1439 0.73 0.02 0.37 1.35
## 1440 0.01 0.06 0.09 1.35
## 1441 0.76 0.00 0.39 1.35
## 1442 0.57 0.05 0.14 1.35
## 1443 0.51 0.05 0.13 1.35
## 1444 0.36 0.05 0.18 1.35
## 1445 0.21 0.00 0.13 1.35
## 1446 0.05 1.06 0.02 1.35
## 1447 0.58 0.00 0.07 1.35
## 1448 0.34 0.08 0.13 1.35
## 1449 0.45 0.04 0.21 1.35
## 1450 0.04 1.03 0.04 1.35
## 1451 0.50 0.02 0.12 1.35
## 1452 0.04 1.07 0.09 1.35
## 1453 1.04 0.00 0.31 1.35
## 1454 0.89 0.01 0.14 1.35
## 1455 0.37 0.13 0.17 1.35
## 1456 0.21 0.01 0.18 1.34
## 1457 0.07 0.43 0.08 1.34
## 1458 0.04 0.10 0.11 1.34
## 1459 0.27 0.00 0.04 1.34
## 1460 0.43 0.00 0.06 1.34
## 1461 0.22 0.24 0.04 1.34
## 1462 0.05 0.05 0.01 1.34
## 1463 0.51 0.00 0.17 1.34
## 1464 0.02 0.00 0.00 1.34
## 1465 0.06 0.00 0.18 1.34
## 1466 0.50 0.01 0.21 1.33
## 1467 0.05 0.00 0.02 1.33
## 1468 0.42 0.00 0.11 1.33
## 1469 0.59 0.06 0.21 1.33
## 1470 0.36 0.00 0.11 1.33
## 1471 0.31 0.01 0.12 1.33
## 1472 0.35 0.01 0.05 1.33
## 1473 0.24 0.00 0.02 1.33
## 1474 0.38 0.01 0.05 1.33
## 1475 0.35 0.00 0.06 1.33
## 1476 0.50 0.00 0.09 1.33
## 1477 0.35 0.07 0.04 1.33
## 1478 0.31 0.00 0.11 1.33
## 1479 0.40 0.32 0.18 1.33
## 1480 0.51 0.00 0.17 1.33
## 1481 0.48 0.00 0.13 1.33
## 1482 0.17 0.58 0.06 1.33
## 1483 0.50 0.01 0.10 1.32
## 1484 0.38 0.02 0.24 1.32
## 1485 0.42 0.00 0.19 1.32
## 1486 0.36 0.40 0.17 1.32
## 1487 0.13 0.00 1.18 1.32
## 1488 0.43 0.18 0.19 1.32
## 1489 0.52 0.00 0.11 1.32
## 1490 1.16 0.02 0.11 1.32
## 1491 0.16 0.40 0.03 1.32
## 1492 0.08 0.00 0.18 1.32
## 1493 0.50 0.00 0.09 1.32
## 1494 0.04 0.96 0.01 1.32
## 1495 0.30 0.09 0.16 1.32
## 1496 0.50 0.00 0.09 1.32
## 1497 0.44 0.04 0.12 1.32
## 1498 0.45 0.00 0.11 1.32
## 1500 0.50 0.00 0.09 1.31
## 1501 0.50 0.00 0.17 1.31
## 1502 0.23 0.00 0.11 1.31
## 1503 0.42 0.05 0.13 1.31
## 1504 0.35 0.00 0.12 1.31
## 1505 0.00 0.00 0.09 1.31
## 1506 0.45 0.00 0.07 1.31
## 1507 0.67 0.00 0.07 1.31
## 1508 0.38 0.00 0.12 1.31
## 1509 0.07 0.00 0.02 1.31
## 1510 0.50 0.00 0.17 1.31
## 1511 0.49 0.00 0.13 1.31
## 1512 0.04 0.06 0.09 1.31
## 1513 0.43 0.00 0.04 1.31
## 1515 0.35 0.00 0.02 1.30
## 1516 0.57 0.06 0.21 1.30
## 1517 0.04 0.02 0.17 1.30
## 1518 0.44 0.09 0.21 1.30
## 1519 0.02 0.00 1.02 1.30
## 1520 0.48 0.00 0.13 1.30
## 1521 0.20 0.00 0.05 1.30
## 1522 0.00 1.29 0.01 1.30
## 1523 0.40 0.00 0.11 1.30
## 1524 0.38 0.28 0.08 1.30
## 1525 0.64 0.02 0.10 1.30
## 1526 0.66 0.02 0.15 1.29
## 1527 0.47 0.11 0.10 1.29
## 1528 0.02 0.85 0.03 1.29
## 1529 0.92 0.00 0.25 1.29
## 1530 0.27 0.45 0.04 1.29
## 1531 0.17 0.02 0.10 1.29
## 1532 0.44 0.00 0.12 1.29
## 1533 0.34 0.00 0.02 1.29
## 1534 0.49 0.00 0.16 1.29
## 1535 0.14 0.00 0.10 1.29
## 1536 0.40 0.00 0.12 1.29
## 1537 0.20 0.24 0.13 1.29
## 1538 0.05 0.00 0.01 1.29
## 1539 0.49 0.00 0.16 1.28
## 1540 0.45 0.01 0.11 1.28
## 1541 0.59 0.00 0.14 1.28
## 1542 0.46 0.17 0.20 1.28
## 1543 0.00 1.28 0.00 1.28
## 1544 0.56 0.00 0.11 1.28
## 1545 0.14 0.00 0.04 1.28
## 1546 0.45 0.00 0.11 1.28
## 1547 0.16 0.00 0.04 1.28
## 1548 0.49 0.00 0.16 1.28
## 1549 0.35 0.36 0.07 1.28
## 1550 0.49 0.00 0.16 1.28
## 1551 0.56 0.05 0.22 1.27
## 1552 0.40 0.21 0.08 1.27
## 1553 0.05 0.00 0.00 1.27
## 1554 0.03 0.00 0.52 1.27
## 1555 0.48 0.00 0.08 1.27
## 1556 0.30 0.47 0.06 1.27
## 1557 0.08 0.00 0.01 1.27
## 1558 0.16 0.00 0.11 1.27
## 1559 0.40 0.00 0.12 1.27
## 1560 0.37 0.00 0.05 1.27
## 1561 0.16 0.41 0.02 1.27
## 1562 0.38 0.00 0.12 1.27
## 1563 0.20 0.00 0.11 1.27
## 1564 0.38 0.26 0.13 1.27
## 1565 0.73 0.00 0.15 1.27
## 1566 0.30 0.06 0.03 1.27
## 1567 0.48 0.00 0.16 1.27
## 1568 0.26 0.53 0.08 1.27
## 1569 0.00 1.27 0.00 1.27
## 1570 0.57 0.00 0.14 1.26
## 1571 0.02 1.12 0.01 1.26
## 1572 1.01 0.00 0.25 1.26
## 1573 0.03 1.10 0.08 1.26
## 1574 0.05 0.62 0.05 1.26
## 1575 0.42 0.13 0.10 1.26
## 1576 0.52 0.03 0.21 1.26
## 1577 1.15 0.00 0.11 1.26
## 1578 1.13 0.01 0.10 1.26
## 1579 0.62 0.00 0.14 1.26
## 1580 0.22 0.00 0.04 1.26
## 1581 0.51 0.00 0.11 1.26
## 1582 0.68 0.00 0.12 1.26
## 1583 0.17 0.02 0.13 1.25
## 1584 0.47 0.00 0.08 1.25
## 1585 0.00 0.01 0.75 1.25
## 1587 0.53 0.03 0.22 1.25
## 1588 0.00 1.25 0.00 1.25
## 1589 0.00 1.25 0.00 1.25
## 1590 0.13 0.10 0.04 1.25
## 1591 0.53 0.01 0.23 1.25
## 1592 0.19 0.31 0.03 1.25
## 1593 0.04 0.03 0.16 1.25
## 1594 0.05 0.00 0.00 1.25
## 1595 0.48 0.00 0.16 1.25
## 1596 0.56 0.00 0.17 1.25
## 1597 0.16 0.00 0.04 1.25
## 1598 0.03 0.22 0.14 1.24
## 1599 0.48 0.00 0.16 1.24
## 1600 0.03 0.00 0.09 1.24
## 1601 0.19 0.67 0.09 1.24
## 1602 0.04 0.00 0.10 1.24
## 1603 0.41 0.00 0.19 1.24
## 1604 0.48 0.05 0.28 1.24
## 1605 0.44 0.00 0.06 1.24
## 1606 0.47 0.00 0.11 1.24
## 1607 0.19 0.75 0.06 1.24
## 1608 0.00 0.00 0.55 1.24
## 1609 0.22 0.43 0.03 1.24
## 1610 0.38 0.00 0.04 1.24
## 1611 0.55 0.00 0.13 1.23
## 1612 0.47 0.00 0.16 1.23
## 1613 0.64 0.07 0.22 1.23
## 1614 0.20 0.07 0.04 1.23
## 1615 0.57 0.00 0.07 1.23
## 1616 0.47 0.00 0.16 1.23
## 1617 0.47 0.00 0.08 1.23
## 1618 1.02 0.00 0.13 1.23
## 1619 0.14 0.00 0.10 1.23
## 1620 0.70 0.03 0.25 1.23
## 1621 0.17 0.75 0.02 1.23
## 1622 0.33 0.00 0.02 1.23
## 1623 0.47 0.00 0.08 1.23
## 1624 0.06 0.62 0.01 1.23
## 1625 0.27 0.12 0.04 1.23
## 1626 0.41 0.21 0.17 1.23
## 1627 0.11 0.70 0.02 1.23
## 1628 0.06 0.01 0.11 1.23
## 1629 0.08 0.00 0.23 1.23
## 1630 0.38 0.00 0.12 1.23
## 1631 0.63 0.00 0.10 1.23
## 1632 0.64 0.00 0.14 1.23
## 1633 0.53 0.00 0.20 1.22
## 1634 0.47 0.15 0.18 1.22
## 1635 0.16 0.46 0.03 1.22
## 1636 0.07 1.00 0.02 1.22
## 1637 0.30 0.12 0.04 1.22
## 1638 0.31 0.08 0.04 1.22
## 1639 0.08 0.85 0.02 1.22
## 1640 0.46 0.01 0.15 1.22
## 1641 0.75 0.11 0.25 1.22
## 1642 0.29 0.00 0.21 1.22
## 1643 0.05 0.00 0.03 1.22
## 1644 0.00 1.14 0.08 1.22
## 1645 0.27 0.27 0.07 1.22
## 1646 0.46 0.00 0.08 1.22
## 1647 0.19 0.00 0.05 1.22
## 1648 0.46 0.00 0.08 1.22
## 1649 0.46 0.01 0.15 1.22
## 1651 0.44 0.14 0.09 1.22
## 1652 0.04 0.00 0.16 1.21
## 1653 0.24 0.00 0.04 1.21
## 1654 0.40 0.00 0.04 1.21
## 1655 0.70 0.01 0.37 1.21
## 1656 0.14 0.00 0.04 1.21
## 1657 0.43 0.00 0.12 1.21
## 1658 0.17 0.35 0.03 1.21
## 1659 0.00 1.20 0.01 1.21
## 1660 0.48 0.01 0.06 1.21
## 1661 0.49 0.28 0.10 1.21
## 1662 0.48 0.01 0.03 1.21
## 1663 0.32 0.00 0.02 1.21
## 1664 0.46 0.00 0.08 1.21
## 1665 0.65 0.00 0.32 1.21
## 1666 0.88 0.31 0.00 1.20
## 1667 0.46 0.00 0.15 1.20
## 1668 0.49 0.00 0.20 1.20
## 1669 0.04 0.00 0.16 1.20
## 1670 0.13 0.56 0.03 1.20
## 1671 0.59 0.00 0.10 1.20
## 1672 0.31 0.00 0.12 1.20
## 1673 0.37 0.01 0.11 1.20
## 1674 0.60 0.00 0.19 1.20
## 1675 0.00 1.20 0.00 1.20
## 1676 0.00 1.20 0.00 1.20
## 1677 0.00 1.20 0.00 1.20
## 1678 0.05 0.00 0.02 1.20
## 1679 0.39 0.36 0.04 1.20
## 1680 0.43 0.01 0.04 1.20
## 1681 0.46 0.00 0.15 1.20
## 1682 0.03 0.36 0.07 1.20
## 1683 0.17 0.42 0.06 1.20
## 1684 0.24 0.86 0.09 1.20
## 1685 0.49 0.00 0.21 1.19
## 1686 0.35 0.38 0.09 1.19
## 1687 0.45 0.00 0.08 1.19
## 1688 0.36 0.19 0.09 1.19
## 1689 0.47 0.00 0.28 1.19
## 1690 0.32 0.00 0.02 1.19
## 1691 0.84 0.11 0.15 1.19
## 1692 0.23 0.00 0.04 1.19
## 1693 0.64 0.27 0.10 1.19
## 1694 0.04 0.00 0.16 1.19
## 1695 0.13 0.04 0.01 1.19
## 1696 0.14 0.35 0.02 1.19
## 1697 0.16 0.00 0.04 1.19
## 1699 0.66 0.00 0.12 1.19
## 1700 0.27 0.01 0.04 1.19
## 1701 0.24 0.29 0.02 1.19
## 1702 0.14 0.00 0.22 1.19
## 1703 0.31 0.33 0.08 1.19
## 1704 0.20 0.00 0.08 1.19
## 1705 0.45 0.00 0.08 1.18
## 1706 0.07 0.00 0.01 1.18
## 1707 0.25 0.36 0.10 1.18
## 1708 0.49 0.00 0.29 1.18
## 1709 0.00 1.08 0.00 1.18
## 1710 0.24 0.38 0.04 1.18
## 1711 0.18 0.44 0.06 1.18
## 1712 0.31 0.00 0.02 1.18
## 1713 0.46 0.02 0.17 1.18
## 1714 0.49 0.01 0.20 1.18
## 1715 0.15 0.00 0.08 1.18
## 1716 0.07 0.04 0.66 1.18
## 1717 0.14 0.52 0.02 1.18
## 1718 1.06 0.00 0.09 1.17
## 1719 0.44 0.00 0.08 1.17
## 1720 0.37 0.00 0.10 1.17
## 1721 0.26 0.02 0.15 1.17
## 1722 0.04 0.00 0.16 1.17
## 1723 0.45 0.00 0.15 1.17
## 1724 0.31 0.15 0.11 1.17
## 1725 0.49 0.01 0.12 1.17
## 1726 0.47 0.01 0.10 1.17
## 1727 0.10 0.39 0.00 1.17
## 1728 0.64 0.04 0.18 1.17
## 1729 0.38 0.02 0.03 1.17
## 1730 0.00 1.17 0.00 1.17
## 1731 0.45 0.00 0.15 1.17
## 1732 0.44 0.00 0.08 1.17
## 1733 0.11 0.83 0.08 1.17
## 1734 0.36 0.00 0.05 1.17
## 1735 0.95 0.00 0.22 1.17
## 1736 0.44 0.00 0.08 1.17
## 1737 0.51 0.01 0.13 1.17
## 1738 0.23 0.00 0.11 1.17
## 1739 0.25 0.21 0.02 1.17
## 1740 0.52 0.02 0.20 1.16
## 1741 0.28 0.00 0.10 1.16
## 1742 0.45 0.00 0.14 1.16
## 1743 0.52 0.01 0.25 1.16
## 1744 0.25 0.30 0.16 1.16
## 1745 0.04 0.00 0.16 1.16
## 1746 0.44 0.00 0.15 1.16
## 1747 0.58 0.00 0.13 1.16
## 1748 0.27 0.43 0.08 1.16
## 1749 0.39 0.00 0.11 1.16
## 1750 0.44 0.00 0.15 1.16
## 1751 0.28 0.07 0.02 1.16
## 1752 0.08 0.50 0.01 1.16
## 1753 0.27 0.00 0.05 1.16
## 1754 0.16 0.77 0.02 1.16
## 1755 0.44 0.00 0.08 1.16
## 1756 0.39 0.02 0.25 1.16
## 1757 0.51 0.00 0.12 1.16
## 1758 0.38 0.09 0.17 1.16
## 1759 0.28 0.00 0.05 1.16
## 1760 0.68 0.01 0.32 1.16
## 1761 0.54 0.00 0.10 1.16
## 1762 1.14 0.00 0.01 1.15
## 1763 0.46 0.00 0.17 1.15
## 1764 0.44 0.00 0.15 1.15
## 1765 0.33 0.09 0.16 1.15
## 1766 0.44 0.00 0.15 1.15
## 1767 0.07 0.00 0.01 1.15
## 1768 0.46 0.06 0.18 1.15
## 1769 0.35 0.01 0.11 1.15
## 1770 1.12 0.00 0.03 1.15
## 1771 0.20 0.41 0.03 1.15
## 1772 0.00 1.15 0.00 1.15
## 1773 0.00 1.15 0.00 1.15
## 1774 0.52 0.00 0.13 1.15
## 1775 0.22 0.05 0.12 1.15
## 1776 0.16 0.46 0.03 1.15
## 1777 0.51 0.00 0.19 1.15
## 1778 0.00 1.15 0.00 1.15
## 1779 0.44 0.00 0.15 1.15
## 1780 0.43 0.00 0.07 1.15
## 1781 0.00 1.07 0.07 1.15
## 1782 0.26 0.35 0.07 1.14
## 1783 0.43 0.00 0.07 1.14
## 1784 0.34 0.25 0.11 1.14
## 1785 0.03 0.20 0.13 1.14
## 1786 0.17 0.65 0.07 1.14
## 1787 0.03 0.76 0.04 1.14
## 1788 0.04 0.00 0.16 1.14
## 1789 0.59 0.02 0.22 1.14
## 1790 0.75 0.00 0.14 1.14
## 1791 0.23 0.00 0.02 1.14
## 1792 0.16 0.25 0.03 1.14
## 1793 0.17 0.48 0.02 1.14
## 1794 0.23 0.47 0.03 1.14
## 1795 0.37 0.15 0.04 1.14
## 1796 0.38 0.00 0.05 1.14
## 1797 0.30 0.00 0.02 1.14
## 1798 0.51 0.00 0.62 1.14
## 1799 0.37 0.00 0.11 1.14
## 1800 0.10 0.88 0.03 1.14
## 1801 0.39 0.01 0.03 1.14
## 1802 0.10 0.00 0.03 1.13
## 1803 0.41 0.06 0.16 1.13
## 1804 0.43 0.00 0.09 1.13
## 1805 0.00 1.06 0.07 1.13
## 1806 0.30 0.00 0.02 1.13
## 1807 0.37 0.37 0.06 1.13
## 1808 0.12 0.00 0.02 1.13
## 1809 0.56 0.00 0.19 1.13
## 1810 0.05 0.84 0.01 1.13
## 1811 0.43 0.00 0.07 1.13
## 1812 0.39 0.00 0.10 1.13
## 1813 0.56 0.04 0.19 1.13
## 1814 0.21 0.62 0.08 1.13
## 1815 0.30 0.00 0.02 1.13
## 1816 0.30 0.00 0.15 1.13
## 1817 0.30 0.01 0.09 1.12
## 1818 0.06 0.00 0.01 1.12
## 1819 0.43 0.00 0.14 1.12
## 1820 0.24 0.30 0.02 1.12
## 1821 0.37 0.02 0.10 1.12
## 1822 0.33 0.28 0.15 1.12
## 1823 0.37 0.10 0.16 1.12
## 1824 0.20 0.01 0.08 1.12
## 1825 0.40 0.00 0.10 1.12
## 1826 0.00 0.01 0.08 1.12
## 1827 0.40 0.00 0.05 1.12
## 1828 0.06 0.63 0.02 1.12
## 1829 0.30 0.00 0.54 1.12
## 1830 1.12 0.00 0.00 1.12
## 1831 0.26 0.00 0.04 1.12
## 1832 0.23 0.00 0.04 1.11
## 1833 0.58 0.04 0.17 1.11
## 1834 0.37 0.00 0.11 1.11
## 1835 0.57 0.03 0.20 1.11
## 1836 0.04 0.00 0.15 1.11
## 1837 0.40 0.00 0.08 1.11
## 1839 0.38 0.00 0.05 1.11
## 1840 0.07 0.70 0.01 1.11
## 1841 0.00 1.10 0.01 1.11
## 1842 0.14 0.00 0.03 1.11
## 1843 0.46 0.00 0.12 1.11
## 1844 0.31 0.29 0.06 1.11
## 1845 0.13 0.73 0.07 1.11
## 1846 0.35 0.00 0.23 1.11
## 1847 0.42 0.00 0.17 1.11
## 1848 0.40 0.00 0.17 1.10
## 1849 0.06 0.00 0.01 1.10
## 1850 0.53 0.01 0.12 1.10
## 1851 0.33 0.17 0.08 1.10
## 1852 0.06 0.00 0.01 1.10
## 1853 0.42 0.00 0.07 1.10
## 1854 0.53 0.00 0.21 1.10
## 1855 0.52 0.00 0.12 1.10
## 1856 0.46 0.01 0.18 1.10
## 1857 0.00 1.10 0.00 1.10
## 1858 0.00 1.10 0.00 1.10
## 1859 0.00 1.10 0.00 1.10
## 1860 0.00 1.10 0.00 1.10
## 1861 0.33 0.29 0.03 1.10
## 1862 0.12 0.45 0.02 1.10
## 1863 0.09 0.00 0.09 1.10
## 1864 0.40 0.04 0.13 1.10
## 1865 0.75 0.00 0.23 1.10
## 1866 0.84 0.00 0.25 1.10
## 1867 0.21 0.31 0.04 1.10
## 1868 0.33 0.01 0.22 1.10
## 1869 0.10 0.72 0.02 1.10
## 1870 0.22 0.45 0.12 1.10
## 1871 0.41 0.00 0.25 1.09
## 1872 0.36 0.00 0.10 1.09
## 1873 0.55 0.00 0.31 1.09
## 1874 0.04 0.84 0.16 1.09
## 1875 0.17 0.01 0.09 1.09
## 1876 0.29 0.00 0.02 1.09
## 1877 0.52 0.08 0.20 1.09
## 1878 0.05 0.00 0.02 1.09
## 1879 0.00 1.07 0.02 1.09
## 1880 0.18 0.00 0.16 1.09
## 1881 0.04 0.00 0.08 1.09
## 1882 0.02 0.00 0.05 1.09
## 1883 0.97 0.00 0.11 1.09
## 1884 0.03 0.01 0.15 1.09
## 1885 0.37 0.00 0.11 1.09
## 1886 0.42 0.00 0.14 1.09
## 1887 0.00 1.02 0.07 1.09
## 1888 0.28 0.04 0.13 1.09
## 1889 0.54 0.00 0.11 1.09
## 1890 0.52 0.00 0.22 1.09
## 1891 0.47 0.09 0.09 1.09
## 1892 0.41 0.00 0.07 1.09
## 1893 0.26 0.00 0.09 1.09
## 1894 0.41 0.00 0.14 1.08
## 1895 0.41 0.03 0.18 1.08
## 1896 0.41 0.00 0.14 1.08
## 1897 0.64 0.00 0.08 1.08
## 1898 0.12 0.00 0.09 1.08
## 1899 0.41 0.00 0.14 1.08
## 1900 0.43 0.00 0.11 1.08
## 1901 0.32 0.20 0.09 1.08
## 1902 0.00 0.00 0.06 1.08
## 1903 0.50 0.03 0.28 1.08
## 1904 0.69 0.00 0.12 1.08
## 1905 0.59 0.00 0.22 1.08
## 1906 0.06 0.00 0.01 1.08
## 1907 0.43 0.01 0.11 1.08
## 1908 0.34 0.00 0.10 1.08
## 1909 0.59 0.01 0.21 1.08
## 1910 0.40 0.13 0.08 1.08
## 1911 0.30 0.00 0.11 1.08
## 1912 0.41 0.00 0.07 1.08
## 1913 0.29 0.00 0.02 1.08
## 1914 0.29 0.00 0.02 1.08
## 1915 0.18 0.19 0.03 1.08
## 1916 0.35 0.09 0.16 1.08
## 1917 0.18 0.03 0.07 1.08
## 1918 0.00 0.00 0.06 1.07
## 1919 0.00 1.00 0.07 1.07
## 1920 0.03 0.00 0.15 1.07
## 1921 0.32 0.00 0.10 1.07
## 1922 0.39 0.02 0.09 1.07
## 1923 0.40 0.03 0.11 1.07
## 1924 0.12 0.77 0.02 1.07
## 1925 0.98 0.00 0.09 1.07
## 1926 0.01 0.00 0.54 1.07
## 1927 0.90 0.04 0.05 1.07
## 1928 0.06 0.21 0.07 1.07
## 1929 0.40 0.00 0.07 1.07
## 1930 0.15 0.13 0.05 1.07
## 1931 0.44 0.00 0.20 1.07
## 1932 0.64 0.05 0.25 1.07
## 1933 0.63 0.00 0.34 1.07
## 1934 0.30 0.00 0.10 1.07
## 1935 0.12 0.71 0.07 1.07
## 1936 0.42 0.00 0.10 1.07
## 1937 0.40 0.00 0.07 1.07
## 1938 0.40 0.00 0.07 1.06
## 1939 0.04 0.00 0.14 1.06
## 1940 0.40 0.00 0.11 1.06
## 1941 0.41 0.00 0.14 1.06
## 1942 0.74 0.00 0.10 1.06
## 1943 0.29 0.01 0.10 1.06
## 1944 0.67 0.00 0.23 1.06
## 1945 0.02 0.01 0.08 1.06
## 1946 0.00 0.99 0.07 1.06
## 1947 0.65 0.00 0.13 1.06
## 1948 0.41 0.00 0.14 1.06
## 1949 0.50 0.05 0.19 1.06
## 1950 0.30 0.01 0.10 1.06
## 1951 0.81 0.00 0.08 1.06
## 1952 0.41 0.00 0.14 1.06
## 1953 0.44 0.00 0.18 1.06
## 1954 0.04 0.00 0.01 1.06
## 1955 0.05 0.00 0.01 1.06
## 1956 0.40 0.00 0.11 1.06
## 1957 0.01 0.00 0.08 1.06
## 1958 0.02 0.00 0.00 1.06
## 1959 0.41 0.10 0.16 1.06
## 1960 0.28 0.00 0.02 1.06
## 1961 0.59 0.03 0.22 1.06
## 1962 0.40 0.00 0.14 1.06
## 1963 0.39 0.00 0.17 1.06
## 1964 0.06 0.64 0.04 1.06
## 1965 0.38 0.00 0.09 1.05
## 1966 0.05 0.00 0.01 1.05
## 1967 0.11 0.00 0.13 1.05
## 1968 0.54 0.00 0.08 1.05
## 1969 0.47 0.00 0.18 1.05
## 1970 0.05 0.00 0.01 1.05
## 1971 0.66 0.00 0.12 1.05
## 1972 0.00 1.05 0.00 1.05
## 1973 0.00 0.92 0.13 1.05
## 1974 0.00 1.05 0.00 1.05
## 1975 0.00 1.04 0.01 1.05
## 1976 0.34 0.03 0.13 1.05
## 1977 0.40 0.00 0.13 1.05
## 1978 0.48 0.12 0.15 1.05
## 1979 0.26 0.00 0.01 1.05
## 1980 0.11 0.00 0.03 1.05
## 1981 0.49 0.00 0.11 1.05
## 1982 0.38 0.01 0.11 1.05
## 1983 0.51 0.00 0.02 1.05
## 1984 0.49 0.00 0.11 1.05
## 1985 0.32 0.00 0.10 1.05
## 1986 0.13 0.66 0.07 1.05
## 1987 0.06 0.37 0.04 1.05
## 1988 0.40 0.00 0.11 1.05
## 1989 0.47 0.00 0.11 1.04
## 1990 0.40 0.00 0.13 1.04
## 1992 0.37 0.26 0.09 1.04
## 1993 0.37 0.00 0.09 1.04
## 1994 0.06 0.83 0.07 1.04
## 1995 0.39 0.00 0.07 1.04
## 1996 0.35 0.02 0.10 1.04
## 1997 0.30 0.22 0.07 1.04
## 1998 0.12 0.45 0.03 1.04
## 1999 0.03 0.00 0.14 1.04
## 2000 0.35 0.01 0.09 1.04
## 2001 0.16 0.37 0.12 1.04
## 2002 0.20 0.31 0.03 1.04
## 2003 0.10 0.00 0.03 1.04
## 2004 0.33 0.00 0.09 1.04
## 2005 0.69 0.02 0.15 1.04
## 2006 0.46 0.00 0.05 1.04
## 2007 0.06 0.41 0.05 1.04
## 2008 0.34 0.00 0.09 1.04
## 2009 0.27 0.00 0.09 1.04
## 2010 0.48 0.02 0.19 1.04
## 2011 0.58 0.00 0.30 1.04
## 2012 0.34 0.00 0.22 1.04
## 2013 0.40 0.01 0.17 1.04
## 2014 0.03 0.00 0.14 1.03
## 2015 0.33 0.01 0.14 1.03
## 2016 0.02 0.00 0.08 1.03
## 2017 0.51 0.01 0.18 1.03
## 2018 0.23 0.00 0.08 1.03
## 2019 0.39 0.00 0.13 1.03
## 2021 0.00 0.85 0.00 1.03
## 2022 0.47 0.00 0.11 1.03
## 2023 0.07 0.00 0.00 1.03
## 2024 0.01 0.00 0.08 1.03
## 2025 0.12 0.51 0.02 1.03
## 2026 0.32 0.01 0.08 1.02
## 2027 0.59 0.01 0.11 1.02
## 2028 0.46 0.00 0.11 1.02
## 2029 0.05 0.02 0.08 1.02
## 2030 0.36 0.05 0.08 1.02
## 2031 0.26 0.01 0.03 1.02
## 2032 0.40 0.00 0.11 1.02
## 2033 0.21 0.45 0.08 1.02
## 2034 0.12 0.49 0.02 1.02
## 2035 0.40 0.00 0.11 1.02
## 2036 0.39 0.00 0.07 1.02
## 2037 0.04 0.22 0.06 1.02
## 2038 0.03 0.00 0.03 1.02
## 2039 0.40 0.00 0.17 1.02
## 2040 0.39 0.00 0.13 1.02
## 2041 0.38 0.00 0.07 1.01
## 2042 0.28 0.10 0.30 1.01
## 2043 0.35 0.02 0.10 1.01
## 2044 0.36 0.03 0.21 1.01
## 2045 0.46 0.01 0.09 1.01
## 2046 0.22 0.05 0.10 1.01
## 2047 0.12 0.00 0.02 1.01
## 2048 0.93 0.00 0.08 1.01
## 2049 0.44 0.00 0.09 1.01
## 2050 0.00 1.01 0.00 1.01
## 2051 0.08 0.74 0.07 1.01
## 2052 0.48 0.02 0.18 1.01
## 2053 0.53 0.00 0.20 1.01
## 2054 0.61 0.00 0.18 1.01
## 2055 0.00 0.00 0.07 1.00
## 2056 0.38 0.00 0.13 1.00
## 2057 0.19 0.46 0.07 1.00
## 2058 0.76 0.03 0.09 1.00
## 2059 0.24 0.38 0.08 1.00
## 2060 0.14 0.21 0.00 1.00
## 2061 0.15 0.19 0.01 1.00
## 2062 0.10 0.47 0.02 1.00
## 2063 0.25 0.09 0.03 1.00
## 2064 0.00 1.00 0.00 1.00
## 2065 0.18 0.03 0.00 1.00
## 2066 0.33 0.02 0.15 1.00
## 2067 0.21 0.00 0.07 1.00
## 2068 0.90 0.02 0.00 1.00
## 2069 0.38 0.00 0.07 1.00
## 2070 0.38 0.00 0.07 1.00
## 2071 0.49 0.04 0.22 1.00
## 2072 0.38 0.00 0.07 1.00
## 2073 0.10 0.74 0.03 1.00
## 2074 0.04 0.01 0.08 1.00
## 2075 0.27 0.05 0.15 1.00
## 2076 0.38 0.00 0.17 1.00
## 2077 0.04 0.00 0.06 1.00
## 2078 0.35 0.00 0.16 1.00
## 2079 0.28 0.00 0.08 1.00
## 2080 0.78 0.00 0.04 1.00
## 2081 0.38 0.00 0.07 1.00
## 2082 0.28 0.00 0.08 0.99
## 2083 0.07 0.39 0.05 0.99
## 2084 0.21 0.00 0.04 0.99
## 2085 0.20 0.00 0.03 0.99
## 2086 0.31 0.00 0.10 0.99
## 2088 0.34 0.01 0.08 0.99
## 2089 0.31 0.12 0.19 0.99
## 2090 0.00 0.00 0.06 0.99
## 2091 0.46 0.00 0.17 0.99
## 2092 0.30 0.00 0.09 0.99
## 2093 0.30 0.00 0.09 0.99
## 2094 0.38 0.00 0.06 0.99
## 2095 0.52 0.04 0.09 0.99
## 2096 0.05 0.00 0.07 0.99
## 2097 0.28 0.00 0.19 0.99
## 2098 0.23 0.38 0.08 0.99
## 2099 0.15 0.00 0.11 0.99
## 2100 0.50 0.00 0.11 0.99
## 2101 0.65 0.00 0.11 0.99
## 2102 0.20 0.00 0.03 0.99
## 2103 0.80 0.00 0.18 0.99
## 2104 0.88 0.00 0.08 0.99
## 2105 0.05 0.00 0.08 0.98
## 2106 0.53 0.19 0.25 0.98
## 2107 0.62 0.00 0.14 0.98
## 2108 0.26 0.16 0.08 0.98
## 2109 0.19 0.00 0.07 0.98
## 2110 0.19 0.28 0.02 0.98
## 2111 0.46 0.00 0.17 0.98
## 2112 0.13 0.21 0.02 0.98
## 2113 0.04 0.00 0.01 0.98
## 2116 0.10 0.27 0.05 0.98
## 2117 0.38 0.00 0.17 0.98
## 2118 0.54 0.01 0.18 0.98
## 2119 0.39 0.06 0.15 0.98
## 2120 0.44 0.00 0.08 0.98
## 2121 0.92 0.00 0.05 0.98
## 2122 0.41 0.06 0.18 0.98
## 2123 0.43 0.51 0.01 0.98
## 2124 0.05 0.00 0.10 0.98
## 2125 0.00 0.00 0.10 0.98
## 2126 0.27 0.00 0.09 0.98
## 2127 0.02 0.86 0.01 0.98
## 2128 0.32 0.15 0.14 0.97
## 2129 0.01 0.00 0.08 0.97
## 2130 0.37 0.00 0.10 0.97
## 2131 0.21 0.00 0.03 0.97
## 2132 0.44 0.00 0.13 0.97
## 2133 0.02 0.00 0.08 0.97
## 2134 0.18 0.29 0.01 0.97
## 2136 0.35 0.00 0.10 0.97
## 2137 0.33 0.00 0.08 0.97
## 2138 0.37 0.00 0.12 0.97
## 2139 0.03 0.03 0.13 0.97
## 2140 0.10 0.00 0.10 0.97
## 2141 0.60 0.00 0.04 0.97
## 2142 0.37 0.00 0.08 0.97
## 2143 0.00 0.97 0.00 0.97
## 2144 0.05 0.00 0.01 0.97
## 2145 0.19 0.00 0.03 0.97
## 2147 0.31 0.28 0.16 0.97
## 2148 0.37 0.00 0.06 0.97
## 2149 0.07 0.00 0.07 0.96
## 2150 0.25 0.26 0.07 0.96
## 2151 0.36 0.00 0.06 0.96
## 2152 0.28 0.04 0.14 0.96
## 2153 0.00 0.90 0.06 0.96
## 2154 0.17 0.00 0.07 0.96
## 2155 0.00 0.96 0.00 0.96
## 2156 0.49 0.00 0.10 0.96
## 2157 0.44 0.00 0.22 0.96
## 2158 0.22 0.00 0.02 0.96
## 2159 0.06 0.57 0.01 0.96
## 2160 0.33 0.00 0.09 0.96
## 2161 0.34 0.20 0.13 0.96
## 2162 0.37 0.00 0.12 0.96
## 2163 0.00 0.96 0.00 0.96
## 2164 0.54 0.00 0.11 0.96
## 2165 0.33 0.09 0.12 0.96
## 2166 0.00 0.53 0.03 0.96
## 2167 0.28 0.22 0.09 0.96
## 2168 0.15 0.00 0.04 0.96
## 2169 0.56 0.00 0.15 0.96
## 2170 0.36 0.13 0.07 0.96
## 2171 0.33 0.15 0.15 0.96
## 2172 0.40 0.00 0.08 0.95
## 2173 0.04 0.00 0.04 0.95
## 2175 0.03 0.00 0.13 0.95
## 2176 0.45 0.00 0.14 0.95
## 2177 0.19 0.00 0.03 0.95
## 2178 0.30 0.00 0.08 0.95
## 2179 0.22 0.00 0.09 0.95
## 2180 0.51 0.00 0.17 0.95
## 2181 0.39 0.00 0.10 0.95
## 2182 0.17 0.46 0.06 0.95
## 2183 0.21 0.41 0.07 0.95
## 2184 0.25 0.00 0.02 0.95
## 2185 0.36 0.00 0.06 0.95
## 2186 0.28 0.00 0.13 0.95
## 2187 0.40 0.00 0.16 0.95
## 2188 0.43 0.00 0.10 0.95
## 2189 0.41 0.05 0.15 0.95
## 2190 0.31 0.01 0.13 0.95
## 2191 0.24 0.00 0.08 0.95
## 2192 0.17 0.00 0.08 0.95
## 2193 0.38 0.00 0.08 0.95
## 2194 0.43 0.18 0.09 0.95
## 2195 0.03 0.00 0.13 0.94
## 2196 0.50 0.00 0.17 0.94
## 2197 0.71 0.01 0.21 0.94
## 2198 0.27 0.13 0.07 0.94
## 2199 0.19 0.00 0.03 0.94
## 2200 0.17 0.00 0.08 0.94
## 2201 0.36 0.00 0.06 0.94
## 2202 0.04 0.00 0.07 0.94
## 2203 0.53 0.00 0.13 0.94
## 2204 0.36 0.00 0.12 0.94
## 2205 0.29 0.33 0.05 0.94
## 2206 0.36 0.02 0.08 0.94
## 2207 0.26 0.09 0.08 0.94
## 2208 0.03 0.00 0.13 0.94
## 2209 0.20 0.00 0.03 0.94
## 2210 0.07 0.71 0.06 0.94
## 2211 0.00 0.00 0.07 0.94
## 2212 0.35 0.00 0.06 0.94
## 2213 0.30 0.08 0.08 0.94
## 2214 0.03 0.04 0.12 0.94
## 2215 0.33 0.00 0.04 0.94
## 2216 0.06 0.63 0.05 0.94
## 2217 0.36 0.00 0.12 0.94
## 2218 0.03 0.00 0.13 0.94
## 2219 0.36 0.00 0.12 0.93
## 2220 0.45 0.02 0.10 0.93
## 2221 0.09 0.00 0.06 0.93
## 2222 0.58 0.00 0.20 0.93
## 2223 0.25 0.00 0.02 0.93
## 2224 0.30 0.00 0.04 0.93
## 2225 0.41 0.00 0.11 0.93
## 2226 0.52 0.02 0.11 0.93
## 2227 0.16 0.36 0.08 0.93
## 2228 0.42 0.02 0.14 0.93
## 2229 0.32 0.02 0.10 0.93
## 2230 0.44 0.00 0.15 0.93
## 2231 0.01 0.00 0.07 0.93
## 2232 0.25 0.00 0.02 0.93
## 2233 0.05 0.00 0.01 0.93
## 2234 0.09 0.32 0.01 0.93
## 2235 0.06 0.42 0.00 0.93
## 2236 0.20 0.00 0.01 0.93
## 2237 0.25 0.00 0.02 0.93
## 2238 0.03 0.00 0.13 0.93
## 2239 0.31 0.00 0.08 0.93
## 2240 0.19 0.00 0.03 0.93
## 2241 0.34 0.00 0.15 0.93
## 2242 0.00 0.93 0.00 0.93
## 2243 0.22 0.16 0.07 0.93
## 2244 0.35 0.00 0.06 0.93
## 2245 0.35 0.00 0.12 0.92
## 2246 0.35 0.00 0.12 0.92
## 2247 0.33 0.21 0.08 0.92
## 2248 0.35 0.00 0.06 0.92
## 2249 0.00 0.00 0.06 0.92
## 2250 0.35 0.00 0.06 0.92
## 2251 0.65 0.00 0.10 0.92
## 2252 0.28 0.00 0.12 0.92
## 2253 0.21 0.00 0.16 0.92
## 2254 0.26 0.00 0.08 0.92
## 2255 0.20 0.02 0.07 0.92
## 2256 0.00 0.00 0.05 0.92
## 2257 0.35 0.00 0.06 0.92
## 2258 0.32 0.00 0.09 0.92
## 2259 0.27 0.00 0.02 0.92
## 2260 0.09 0.43 0.01 0.92
## 2261 0.83 0.00 0.08 0.92
## 2262 0.20 0.53 0.03 0.92
## 2263 0.33 0.01 0.08 0.92
## 2264 0.39 0.00 0.15 0.92
## 2265 0.14 0.46 0.06 0.92
## 2266 0.39 0.12 0.14 0.92
## 2267 0.00 0.00 0.06 0.92
## 2268 0.18 0.00 0.03 0.92
## 2269 0.35 0.00 0.12 0.92
## 2270 0.08 0.66 0.06 0.92
## 2271 0.27 0.11 0.09 0.92
## 2272 0.08 0.00 0.17 0.92
## 2273 0.46 0.05 0.17 0.92
## 2274 0.40 0.04 0.15 0.91
## 2275 0.00 0.00 0.07 0.91
## 2276 0.35 0.00 0.12 0.91
## 2277 0.43 0.00 0.16 0.91
## 2278 0.17 0.29 0.05 0.91
## 2279 0.24 0.01 0.09 0.91
## 2280 0.35 0.00 0.12 0.91
## 2281 0.27 0.21 0.09 0.91
## 2282 0.30 0.00 0.13 0.91
## 2283 0.80 0.02 0.07 0.91
## 2284 0.17 0.00 0.01 0.91
## 2285 0.26 0.00 0.12 0.91
## 2286 0.38 0.00 0.08 0.91
## 2288 0.15 0.00 0.08 0.91
## 2289 0.26 0.00 0.08 0.91
## 2290 0.00 0.91 0.00 0.91
## 2291 0.26 0.00 0.04 0.91
## 2292 0.34 0.00 0.14 0.91
## 2293 0.28 0.00 0.07 0.91
## 2294 0.37 0.00 0.15 0.91
## 2295 0.35 0.00 0.12 0.90
## 2297 0.00 0.90 0.00 0.90
## 2298 0.35 0.00 0.12 0.90
## 2299 0.12 0.04 0.08 0.90
## 2300 0.03 0.00 0.12 0.90
## 2301 0.48 0.00 0.14 0.90
## 2302 0.29 0.15 0.08 0.90
## 2303 0.34 0.00 0.06 0.90
## 2304 0.49 0.00 0.10 0.90
## 2305 0.43 0.03 0.18 0.90
## 2306 0.34 0.00 0.06 0.90
## 2307 0.13 0.55 0.05 0.90
## 2308 0.43 0.01 0.05 0.90
## 2309 0.36 0.05 0.22 0.90
## 2310 0.26 0.00 0.12 0.90
## 2311 0.29 0.00 0.09 0.90
## 2312 0.05 0.00 0.01 0.90
## 2313 0.03 0.01 0.12 0.90
## 2314 0.22 0.00 0.03 0.90
## 2315 0.37 0.01 0.10 0.90
## 2316 0.48 0.00 0.09 0.90
## 2317 0.33 0.00 0.14 0.90
## 2318 0.52 0.00 0.09 0.90
## 2319 0.00 0.00 0.06 0.90
## 2320 0.32 0.01 0.15 0.90
## 2321 0.24 0.00 0.04 0.90
## 2322 0.05 0.00 0.04 0.90
## 2323 0.34 0.00 0.11 0.90
## 2324 0.10 0.00 0.06 0.90
## 2325 0.24 0.00 0.03 0.89
## 2326 0.38 0.01 0.16 0.89
## 2327 0.28 0.00 0.18 0.89
## 2328 0.01 0.00 0.07 0.89
## 2329 0.03 0.00 0.12 0.89
## 2330 0.42 0.01 0.14 0.89
## 2331 0.22 0.05 0.02 0.89
## 2332 0.29 0.01 0.09 0.89
## 2333 0.03 0.00 0.12 0.89
## 2334 0.17 0.24 0.02 0.89
## 2335 0.19 0.00 0.10 0.89
## 2336 0.16 0.30 0.02 0.89
## 2337 0.00 0.89 0.00 0.89
## 2338 0.18 0.00 0.02 0.89
## 2339 0.43 0.00 0.10 0.89
## 2340 0.11 0.56 0.06 0.89
## 2341 0.63 0.00 0.11 0.89
## 2342 0.34 0.00 0.11 0.89
## 2343 0.47 0.00 0.14 0.89
## 2344 0.13 0.46 0.08 0.89
## 2345 0.36 0.04 0.07 0.89
## 2346 0.59 0.01 0.10 0.89
## 2347 0.00 0.01 0.07 0.89
## 2348 0.79 0.00 0.09 0.89
## 2349 0.24 0.21 0.06 0.89
## 2350 0.25 0.01 0.07 0.89
## 2351 0.21 0.00 0.08 0.89
## 2352 0.34 0.00 0.06 0.89
## 2353 0.68 0.00 0.20 0.89
## 2354 0.00 0.89 0.00 0.89
## 2355 0.30 0.09 0.06 0.88
## 2356 0.36 0.00 0.08 0.88
## 2357 0.41 0.01 0.08 0.88
## 2358 0.79 0.00 0.08 0.88
## 2359 0.82 0.00 0.06 0.88
## 2360 0.20 0.00 0.07 0.88
## 2361 0.21 0.00 0.08 0.88
## 2362 0.10 0.00 0.06 0.88
## 2363 0.22 0.30 0.05 0.88
## 2364 0.34 0.00 0.11 0.88
## 2365 0.06 0.00 0.50 0.88
## 2366 0.22 0.12 0.07 0.88
## 2367 0.33 0.00 0.06 0.88
## 2368 0.38 0.00 0.07 0.88
## 2369 0.26 0.12 0.17 0.88
## 2370 0.28 0.01 0.08 0.88
## 2371 0.33 0.13 0.14 0.88
## 2372 0.33 0.00 0.11 0.88
## 2373 0.44 0.01 0.09 0.88
## 2374 0.11 0.62 0.06 0.88
## 2375 0.19 0.00 0.03 0.87
## 2376 0.33 0.00 0.06 0.87
## 2377 0.33 0.00 0.06 0.87
## 2378 0.11 0.00 0.06 0.87
## 2379 0.40 0.00 0.09 0.87
## 2380 0.00 0.87 0.00 0.87
## 2381 0.11 0.00 0.06 0.87
## 2382 0.29 0.01 0.09 0.87
## 2383 0.24 0.00 0.03 0.87
## 2384 0.40 0.02 0.16 0.87
## 2385 0.29 0.09 0.06 0.87
## 2386 0.03 0.00 0.12 0.87
## 2387 0.19 0.00 0.07 0.87
## 2388 0.00 0.00 0.06 0.87
## 2389 0.30 0.09 0.11 0.87
## 2390 0.33 0.00 0.06 0.87
## 2391 0.54 0.01 0.18 0.87
## 2392 0.31 0.02 0.09 0.87
## 2393 0.03 0.00 0.12 0.87
## 2394 0.29 0.00 0.12 0.87
## 2395 0.33 0.00 0.06 0.87
## 2396 0.44 0.00 0.23 0.87
## 2397 0.31 0.00 0.09 0.87
## 2398 0.03 0.00 0.12 0.87
## 2399 0.20 0.00 0.08 0.87
## 2400 0.17 0.00 0.07 0.87
## 2401 0.37 0.00 0.02 0.87
## 2402 0.33 0.00 0.11 0.87
## 2403 0.20 0.30 0.06 0.87
## 2404 0.52 0.00 0.23 0.87
## 2405 0.09 0.64 0.03 0.87
## 2406 0.32 0.00 0.08 0.87
## 2407 0.05 0.00 0.01 0.87
## 2408 0.15 0.45 0.07 0.87
## 2409 0.59 0.00 0.18 0.87
## 2410 0.00 0.86 0.00 0.86
## 2411 0.63 0.00 0.11 0.86
## 2412 0.72 0.12 0.01 0.86
## 2413 0.37 0.01 0.14 0.86
## 2414 0.37 0.00 0.15 0.86
## 2415 0.06 0.21 0.05 0.86
## 2417 0.33 0.00 0.11 0.86
## 2418 0.00 0.86 0.00 0.86
## 2419 0.33 0.00 0.06 0.86
## 2420 0.04 0.00 0.01 0.86
## 2421 0.32 0.00 0.06 0.86
## 2422 0.34 0.18 0.12 0.86
## 2424 0.00 0.20 0.05 0.86
## 2425 0.43 0.02 0.09 0.86
## 2426 0.13 0.51 0.04 0.86
## 2427 0.16 0.08 0.10 0.86
## 2428 0.43 0.00 0.07 0.85
## 2429 0.26 0.01 0.12 0.85
## 2430 0.65 0.00 0.11 0.85
## 2431 0.32 0.00 0.06 0.85
## 2432 0.31 0.00 0.08 0.85
## 2433 0.01 0.00 0.07 0.85
## 2434 0.00 0.00 0.07 0.85
## 2435 0.32 0.00 0.07 0.85
## 2436 0.09 0.57 0.06 0.85
## 2437 0.18 0.00 0.03 0.85
## 2438 0.27 0.01 0.12 0.85
## 2439 0.04 0.00 0.06 0.85
## 2440 0.07 0.37 0.01 0.85
## 2441 0.47 0.00 0.10 0.85
## 2442 0.32 0.00 0.06 0.85
## 2443 0.06 0.00 0.09 0.85
## 2444 0.35 0.00 0.14 0.85
## 2445 0.25 0.00 0.08 0.85
## 2446 0.00 0.00 0.53 0.85
## 2447 0.32 0.00 0.06 0.85
## 2448 0.32 0.00 0.11 0.85
## 2449 0.10 0.44 0.04 0.85
## 2450 0.25 0.20 0.08 0.85
## 2451 0.25 0.00 0.07 0.85
## 2452 0.29 0.02 0.07 0.85
## 2453 0.37 0.03 0.16 0.84
## 2454 0.17 0.00 0.02 0.84
## 2455 0.11 0.13 0.05 0.84
## 2456 0.34 0.00 0.13 0.84
## 2457 0.21 0.11 0.10 0.84
## 2458 0.00 0.00 0.16 0.84
## 2459 0.01 0.01 0.07 0.84
## 2460 0.28 0.14 0.06 0.84
## 2461 0.30 0.00 0.09 0.84
## 2462 0.17 0.00 0.02 0.84
## 2463 0.00 0.00 0.06 0.84
## 2464 0.27 0.05 0.12 0.84
## 2465 0.32 0.00 0.11 0.84
## 2466 0.03 0.06 0.06 0.84
## 2467 0.00 0.52 0.00 0.84
## 2468 0.22 0.10 0.10 0.84
## 2469 0.32 0.00 0.05 0.84
## 2470 0.25 0.00 0.07 0.84
## 2471 0.32 0.00 0.11 0.84
## 2472 0.32 0.03 0.14 0.84
## 2473 0.16 0.39 0.05 0.84
## 2474 0.32 0.00 0.11 0.84
## 2475 0.22 0.00 0.01 0.84
## 2476 0.48 0.04 0.19 0.84
## 2477 0.33 0.05 0.14 0.84
## 2478 0.00 0.00 0.74 0.84
## 2479 0.38 0.01 0.08 0.84
## 2480 0.32 0.00 0.05 0.84
## 2481 0.31 0.00 0.08 0.83
## 2482 0.15 0.40 0.05 0.83
## 2483 0.19 0.34 0.06 0.83
## 2484 0.37 0.00 0.09 0.83
## 2486 0.22 0.00 0.01 0.83
## 2487 0.21 0.01 0.19 0.83
## 2488 0.21 0.28 0.07 0.83
## 2489 0.18 0.01 0.03 0.83
## 2490 0.20 0.00 0.06 0.83
## 2491 0.00 0.83 0.00 0.83
## 2492 0.31 0.00 0.05 0.83
## 2493 0.26 0.12 0.05 0.83
## 2494 0.00 0.00 0.05 0.83
## 2495 0.03 0.00 0.11 0.83
## 2496 0.00 0.00 0.06 0.83
## 2497 0.17 0.00 0.07 0.83
## 2499 0.00 0.00 0.06 0.83
## 2500 0.37 0.00 0.14 0.83
## 2501 0.20 0.11 0.09 0.83
## 2502 0.31 0.00 0.05 0.83
## 2503 0.31 0.00 0.05 0.83
## 2504 0.34 0.09 0.07 0.82
## 2505 0.22 0.00 0.03 0.82
## 2506 0.02 0.00 0.09 0.82
## 2507 0.21 0.00 0.15 0.82
## 2508 0.17 0.00 0.02 0.82
## 2509 0.03 0.00 0.11 0.82
## 2510 0.30 0.00 0.08 0.82
## 2511 0.12 0.00 0.06 0.82
## 2512 0.26 0.08 0.13 0.82
## 2513 0.11 0.00 0.03 0.82
## 2514 0.10 0.28 0.02 0.82
## 2515 0.19 0.00 0.01 0.82
## 2516 0.11 0.00 0.02 0.82
## 2517 0.05 0.00 0.01 0.82
## 2518 0.41 0.00 0.22 0.82
## 2519 0.28 0.19 0.12 0.82
## 2520 0.19 0.14 0.06 0.82
## 2521 0.31 0.00 0.10 0.82
## 2522 0.35 0.00 0.14 0.82
## 2523 0.28 0.00 0.07 0.82
## 2524 0.11 0.00 0.15 0.82
## 2525 0.33 0.01 0.09 0.82
## 2526 0.33 0.00 0.09 0.82
## 2527 0.04 0.36 0.08 0.82
## 2528 0.40 0.00 0.13 0.82
## 2530 0.13 0.00 0.07 0.82
## 2531 0.07 0.00 0.07 0.82
## 2532 0.00 0.81 0.00 0.81
## 2533 0.03 0.00 0.06 0.81
## 2534 0.31 0.00 0.10 0.81
## 2535 0.00 0.81 0.00 0.81
## 2536 0.25 0.07 0.17 0.81
## 2537 0.04 0.66 0.05 0.81
## 2538 0.00 0.81 0.00 0.81
## 2539 0.31 0.00 0.05 0.81
## 2540 0.00 0.00 0.05 0.81
## 2541 0.16 0.00 0.02 0.81
## 2542 0.00 0.76 0.05 0.81
## 2543 0.35 0.00 0.13 0.81
## 2544 0.05 0.63 0.05 0.81
## 2545 0.00 0.81 0.00 0.81
## 2546 0.58 0.03 0.08 0.81
## 2547 0.12 0.00 0.01 0.81
## 2548 0.08 0.27 0.01 0.81
## 2549 0.31 0.00 0.10 0.81
## 2550 0.35 0.00 0.13 0.81
## 2551 0.00 0.81 0.00 0.81
## 2552 0.40 0.00 0.09 0.81
## 2553 0.26 0.30 0.04 0.81
## 2554 0.31 0.00 0.05 0.81
## 2555 0.30 0.01 0.07 0.81
## 2556 0.00 0.00 0.06 0.81
## 2557 0.21 0.00 0.07 0.81
## 2558 0.00 0.75 0.05 0.81
## 2559 0.27 0.09 0.09 0.81
## 2560 0.03 0.00 0.11 0.81
## 2561 0.21 0.00 0.07 0.81
## 2562 0.00 0.00 0.06 0.80
## 2563 0.25 0.02 0.07 0.80
## 2564 0.33 0.00 0.07 0.80
## 2565 0.30 0.00 0.05 0.80
## 2566 0.02 0.74 0.01 0.80
## 2567 0.16 0.00 0.02 0.80
## 2568 0.50 0.00 0.11 0.80
## 2569 0.30 0.00 0.05 0.80
## 2570 0.31 0.00 0.10 0.80
## 2571 0.39 0.00 0.22 0.80
## 2572 0.30 0.00 0.05 0.80
## 2573 0.37 0.00 0.07 0.80
## 2574 0.33 0.20 0.18 0.80
## 2575 0.25 0.00 0.07 0.80
## 2576 0.35 0.00 0.07 0.80
## 2577 0.35 0.00 0.13 0.80
## 2578 0.19 0.03 0.13 0.80
## 2579 0.29 0.00 0.08 0.80
## 2580 0.46 0.00 0.25 0.80
## 2581 0.28 0.00 0.04 0.80
## 2582 0.24 0.07 0.06 0.80
## 2583 0.28 0.00 0.07 0.80
## 2584 0.32 0.22 0.12 0.80
## 2585 0.01 0.00 0.06 0.80
## 2586 0.00 0.75 0.05 0.80
## 2588 0.09 0.00 0.02 0.80
## 2589 0.19 0.00 0.06 0.80
## 2590 0.22 0.00 0.07 0.80
## 2591 0.22 0.13 0.06 0.80
## 2592 0.00 0.80 0.00 0.80
## 2593 0.00 0.80 0.00 0.80
## 2594 0.36 0.04 0.14 0.80
## 2595 0.24 0.01 0.08 0.79
## 2596 0.30 0.29 0.16 0.79
## 2597 0.04 0.00 0.01 0.79
## 2598 0.02 0.00 0.11 0.79
## 2599 0.25 0.03 0.11 0.79
## 2600 0.34 0.00 0.08 0.79
## 2601 0.00 0.00 0.18 0.79
## 2602 0.00 0.74 0.05 0.79
## 2603 0.03 0.30 0.04 0.79
## 2604 0.16 0.00 0.02 0.79
## 2605 0.00 0.74 0.05 0.79
## 2606 0.51 0.00 0.11 0.79
## 2607 0.30 0.00 0.05 0.79
## 2608 0.25 0.00 0.12 0.79
## 2609 0.11 0.00 0.07 0.79
## 2610 0.15 0.00 0.01 0.79
## 2611 0.07 0.32 0.01 0.79
## 2612 0.20 0.21 0.06 0.79
## 2613 0.03 0.02 0.10 0.79
## 2614 0.22 0.23 0.07 0.79
## 2615 0.00 0.79 0.00 0.79
## 2616 0.21 0.08 0.07 0.79
## 2617 0.27 0.01 0.07 0.79
## 2618 0.02 0.00 0.06 0.79
## 2619 0.03 0.00 0.01 0.79
## 2620 0.52 0.00 0.11 0.79
## 2621 0.30 0.03 0.08 0.79
## 2622 0.19 0.01 0.10 0.79
## 2623 0.03 0.00 0.11 0.79
## 2624 0.49 0.00 0.05 0.79
## 2625 0.32 0.17 0.07 0.79
## 2626 0.27 0.01 0.07 0.79
## 2627 0.20 0.27 0.05 0.79
## 2628 0.48 0.25 0.06 0.78
## 2629 0.05 0.01 0.06 0.78
## 2630 0.04 0.00 0.01 0.78
## 2631 0.56 0.00 0.10 0.78
## 2632 0.21 0.00 0.01 0.78
## 2633 0.04 0.11 0.06 0.78
## 2634 0.77 0.00 0.00 0.78
## 2635 0.30 0.00 0.05 0.78
## 2636 0.00 0.00 0.61 0.78
## 2637 0.30 0.00 0.07 0.78
## 2638 0.00 0.00 0.06 0.78
## 2639 0.69 0.00 0.09 0.78
## 2640 0.30 0.00 0.05 0.78
## 2641 0.00 0.00 0.06 0.78
## 2642 0.29 0.00 0.05 0.78
## 2643 0.30 0.12 0.07 0.78
## 2644 0.42 0.13 0.10 0.78
## 2645 0.43 0.00 0.24 0.78
## 2646 0.24 0.00 0.16 0.78
## 2647 0.19 0.00 0.06 0.78
## 2648 0.15 0.03 0.06 0.78
## 2649 0.02 0.00 0.11 0.78
## 2650 0.33 0.01 0.20 0.78
## 2651 0.29 0.00 0.07 0.78
## 2652 0.00 0.78 0.00 0.78
## 2653 0.05 0.00 0.01 0.78
## 2654 0.16 0.00 0.02 0.78
## 2655 0.36 0.00 0.09 0.78
## 2656 0.29 0.00 0.05 0.78
## 2657 0.35 0.00 0.08 0.78
## 2658 0.40 0.00 0.09 0.77
## 2659 0.23 0.00 0.07 0.77
## 2660 0.02 0.03 0.06 0.77
## 2661 0.05 0.00 0.01 0.77
## 2662 0.29 0.00 0.05 0.77
## 2663 0.29 0.00 0.05 0.77
## 2664 0.05 0.00 0.05 0.77
## 2665 0.04 0.00 0.01 0.77
## 2666 0.32 0.03 0.19 0.77
## 2667 0.31 0.00 0.12 0.77
## 2668 0.14 0.32 0.10 0.77
## 2669 0.02 0.00 0.10 0.77
## 2670 0.04 0.00 0.01 0.77
## 2671 0.29 0.00 0.05 0.77
## 2672 0.19 0.11 0.10 0.77
## 2673 0.04 0.00 0.01 0.77
## 2674 0.22 0.00 0.02 0.77
## 2675 0.00 0.77 0.00 0.77
## 2676 0.20 0.00 0.01 0.77
## 2677 0.10 0.00 0.06 0.77
## 2678 0.27 0.00 0.06 0.77
## 2679 0.00 0.00 0.06 0.77
## 2680 0.29 0.00 0.10 0.77
## 2681 0.29 0.00 0.10 0.77
## 2682 0.14 0.38 0.04 0.77
## 2683 0.17 0.14 0.01 0.77
## 2684 0.29 0.00 0.10 0.77
## 2685 0.08 0.56 0.03 0.77
## 2686 0.29 0.00 0.10 0.76
## 2687 0.04 0.00 0.36 0.76
## 2688 0.12 0.42 0.05 0.76
## 2689 0.40 0.01 0.14 0.76
## 2690 0.47 0.00 0.08 0.76
## 2691 0.37 0.03 0.07 0.76
## 2692 0.38 0.00 0.03 0.76
## 2693 0.02 0.00 0.10 0.76
## 2694 0.29 0.00 0.10 0.76
## 2695 0.11 0.43 0.05 0.76
## 2696 0.18 0.00 0.12 0.76
## 2697 0.00 0.71 0.05 0.76
## 2698 0.24 0.08 0.06 0.76
## 2699 0.24 0.07 0.10 0.76
## 2700 0.32 0.00 0.11 0.76
## 2701 0.01 0.00 0.06 0.76
## 2702 0.43 0.11 0.13 0.76
## 2703 0.39 0.00 0.08 0.76
## 2704 0.26 0.00 0.12 0.76
## 2705 0.00 0.76 0.00 0.76
## 2706 0.16 0.00 0.01 0.76
## 2707 0.00 0.76 0.00 0.76
## 2708 0.03 0.62 0.02 0.76
## 2709 0.29 0.00 0.10 0.76
## 2710 0.29 0.00 0.36 0.76
## 2711 0.04 0.00 0.05 0.76
## 2712 0.31 0.01 0.08 0.76
## 2713 0.48 0.00 0.14 0.76
## 2714 0.12 0.00 0.03 0.76
## 2715 0.15 0.30 0.04 0.76
## 2716 0.20 0.00 0.01 0.76
## 2717 0.46 0.00 0.06 0.76
## 2718 0.24 0.13 0.08 0.76
## 2719 0.38 0.01 0.21 0.76
## 2720 0.32 0.01 0.13 0.76
## 2721 0.20 0.01 0.06 0.76
## 2722 0.02 0.07 0.09 0.76
## 2723 0.29 0.00 0.10 0.76
## 2724 0.39 0.00 0.09 0.76
## 2725 0.44 0.00 0.08 0.76
## 2726 0.38 0.06 0.14 0.76
## 2727 0.09 0.02 0.05 0.76
## 2728 0.00 0.76 0.00 0.76
## 2729 0.53 0.00 0.11 0.76
## 2730 0.21 0.01 0.07 0.75
## 2731 0.03 0.00 0.06 0.75
## 2732 0.00 0.00 0.54 0.75
## 2733 0.21 0.00 0.14 0.75
## 2734 0.24 0.00 0.11 0.75
## 2735 0.21 0.20 0.05 0.75
## 2736 0.39 0.00 0.19 0.75
## 2737 0.19 0.00 0.09 0.75
## 2738 0.22 0.01 0.11 0.75
## 2739 0.17 0.00 0.07 0.75
## 2740 0.21 0.01 0.07 0.75
## 2741 0.28 0.00 0.11 0.75
## 2742 0.29 0.00 0.10 0.75
## 2743 0.11 0.00 0.01 0.75
## 2744 0.26 0.00 0.06 0.75
## 2745 0.24 0.13 0.08 0.75
## 2746 0.28 0.02 0.12 0.75
## 2747 0.19 0.23 0.05 0.75
## 2748 0.00 0.00 0.06 0.75
## 2749 0.29 0.00 0.18 0.75
## 2750 0.24 0.00 0.03 0.75
## 2751 0.18 0.19 0.05 0.75
## 2752 0.32 0.00 0.13 0.75
## 2753 0.26 0.00 0.07 0.75
## 2754 0.31 0.01 0.12 0.75
## 2755 0.17 0.30 0.06 0.75
## 2756 0.02 0.00 0.10 0.75
## 2757 0.28 0.00 0.07 0.75
## 2758 0.22 0.01 0.06 0.75
## 2759 0.43 0.01 0.11 0.75
## 2760 0.16 0.00 0.09 0.75
## 2761 0.37 0.00 0.08 0.75
## 2762 0.14 0.00 0.05 0.75
## 2763 0.16 0.22 0.07 0.74
## 2764 0.00 0.74 0.00 0.74
## 2765 0.28 0.00 0.10 0.74
## 2766 0.22 0.24 0.09 0.74
## 2767 0.28 0.00 0.10 0.74
## 2768 0.19 0.00 0.14 0.74
## 2769 0.30 0.02 0.06 0.74
## 2770 0.27 0.00 0.06 0.74
## 2771 0.01 0.00 0.06 0.74
## 2772 0.30 0.25 0.04 0.74
## 2773 0.16 0.15 0.01 0.74
## 2774 0.32 0.01 0.12 0.74
## 2775 0.35 0.02 0.06 0.74
## 2776 0.37 0.02 0.13 0.74
## 2778 0.00 0.00 0.05 0.74
## 2779 0.10 0.00 0.03 0.74
## 2780 0.45 0.00 0.13 0.74
## 2781 0.20 0.00 0.01 0.74
## 2782 0.28 0.00 0.09 0.74
## 2783 0.30 0.00 0.08 0.74
## 2784 0.28 0.00 0.05 0.74
## 2785 0.25 0.14 0.08 0.74
## 2786 0.12 0.00 0.03 0.74
## 2788 0.41 0.00 0.15 0.74
## 2789 0.38 0.00 0.14 0.74
## 2790 0.12 0.24 0.07 0.74
## 2791 0.11 0.30 0.02 0.74
## 2792 0.01 0.25 0.04 0.74
## 2793 0.16 0.22 0.08 0.73
## 2794 0.05 0.00 0.06 0.73
## 2795 0.09 0.46 0.05 0.73
## 2796 0.00 0.73 0.00 0.73
## 2797 0.15 0.17 0.01 0.73
## 2798 0.41 0.00 0.09 0.73
## 2799 0.00 0.73 0.00 0.73
## 2800 0.17 0.00 0.01 0.73
## 2801 0.51 0.01 0.09 0.73
## 2802 0.04 0.00 0.06 0.73
## 2803 0.00 0.32 0.04 0.73
## 2804 0.28 0.00 0.05 0.73
## 2805 0.00 0.73 0.00 0.73
## 2806 0.16 0.00 0.03 0.73
## 2807 0.04 0.00 0.01 0.73
## 2808 0.07 0.00 0.05 0.73
## 2809 0.34 0.00 0.07 0.73
## 2810 0.01 0.00 0.05 0.73
## 2811 0.41 0.01 0.08 0.73
## 2812 0.00 0.00 0.06 0.73
## 2813 0.00 0.73 0.00 0.73
## 2814 0.16 0.00 0.03 0.73
## 2815 0.02 0.17 0.08 0.73
## 2816 0.19 0.00 0.01 0.73
## 2817 0.14 0.02 0.09 0.73
## 2818 0.32 0.00 0.08 0.73
## 2819 0.28 0.00 0.09 0.73
## 2820 0.15 0.00 0.06 0.73
## 2821 0.31 0.00 0.08 0.73
## 2822 0.28 0.00 0.06 0.72
## 2823 0.02 0.53 0.01 0.72
## 2824 0.15 0.00 0.02 0.72
## 2825 0.36 0.00 0.10 0.72
## 2826 0.30 0.00 0.07 0.72
## 2827 0.19 0.00 0.01 0.72
## 2828 0.02 0.00 0.10 0.72
## 2829 0.46 0.00 0.08 0.72
## 2830 0.00 0.72 0.00 0.72
## 2831 0.22 0.08 0.10 0.72
## 2832 0.00 0.67 0.05 0.72
## 2833 0.27 0.00 0.05 0.72
## 2834 0.02 0.01 0.10 0.72
## 2835 0.17 0.00 0.03 0.72
## 2836 0.02 0.00 0.10 0.72
## 2837 0.27 0.00 0.05 0.72
## 2838 0.00 0.70 0.02 0.72
## 2840 0.00 0.00 0.05 0.72
## 2841 0.27 0.00 0.05 0.72
## 2842 0.31 0.00 0.06 0.72
## 2843 0.28 0.00 0.09 0.72
## 2844 0.04 0.00 0.01 0.72
## 2845 0.38 0.02 0.13 0.72
## 2846 0.31 0.00 0.18 0.72
## 2847 0.04 0.00 0.06 0.72
## 2848 0.19 0.00 0.01 0.72
## 2849 0.39 0.00 0.08 0.72
## 2850 0.00 0.00 0.05 0.72
## 2851 0.19 0.22 0.04 0.72
## 2852 0.04 0.61 0.01 0.72
## 2853 0.15 0.20 0.07 0.72
## 2854 0.27 0.00 0.05 0.72
## 2855 0.50 0.00 0.09 0.72
## 2856 0.69 0.00 0.03 0.72
## 2857 0.53 0.00 0.00 0.71
## 2858 0.24 0.00 0.03 0.71
## 2859 0.02 0.00 0.03 0.71
## 2860 0.01 0.50 0.02 0.71
## 2861 0.00 0.00 0.05 0.71
## 2862 0.23 0.00 0.06 0.71
## 2863 0.13 0.37 0.06 0.71
## 2864 0.27 0.00 0.09 0.71
## 2865 0.40 0.00 0.14 0.71
## 2866 0.15 0.29 0.05 0.71
## 2867 0.08 0.41 0.04 0.71
## 2868 0.27 0.00 0.09 0.71
## 2869 0.07 0.27 0.04 0.71
## 2870 0.04 0.00 0.07 0.71
## 2871 0.14 0.00 0.02 0.71
## 2872 0.27 0.00 0.05 0.71
## 2873 0.20 0.00 0.02 0.71
## 2874 0.27 0.00 0.09 0.71
## 2875 0.00 0.00 0.06 0.71
## 2876 0.25 0.06 0.11 0.71
## 2877 0.13 0.07 0.02 0.71
## 2878 0.22 0.00 0.07 0.71
## 2879 0.00 0.00 0.05 0.71
## 2880 0.14 0.00 0.02 0.71
## 2881 0.19 0.00 0.01 0.71
## 2882 0.27 0.00 0.09 0.71
## 2883 0.00 0.71 0.00 0.71
## 2884 0.18 0.00 0.01 0.71
## 2885 0.13 0.00 0.01 0.71
## 2886 0.09 0.17 0.06 0.71
## 2887 0.37 0.00 0.19 0.71
## 2888 0.00 0.71 0.00 0.71
## 2889 0.05 0.44 0.02 0.71
## 2890 0.60 0.00 0.10 0.71
## 2891 0.10 0.41 0.05 0.71
## 2892 0.31 0.00 0.17 0.71
## 2893 0.27 0.00 0.05 0.71
## 2894 0.27 0.00 0.05 0.71
## 2895 0.26 0.01 0.06 0.71
## 2896 0.23 0.00 0.07 0.71
## 2897 0.15 0.00 0.03 0.71
## 2898 0.00 0.00 0.05 0.71
## 2899 0.14 0.00 0.07 0.71
## 2900 0.29 0.00 0.11 0.71
## 2901 0.21 0.00 0.14 0.71
## 2902 0.39 0.01 0.16 0.71
## 2903 0.50 0.00 0.15 0.70
## 2904 0.10 0.00 0.05 0.70
## 2905 0.14 0.00 0.02 0.70
## 2906 0.18 0.12 0.06 0.70
## 2907 0.00 0.70 0.00 0.70
## 2908 0.27 0.00 0.05 0.70
## 2909 0.31 0.00 0.07 0.70
## 2910 0.16 0.00 0.02 0.70
## 2911 0.00 0.00 0.05 0.70
## 2912 0.27 0.00 0.09 0.70
## 2913 0.10 0.00 0.06 0.70
## 2914 0.14 0.00 0.02 0.70
## 2915 0.19 0.00 0.01 0.70
## 2916 0.27 0.00 0.09 0.70
## 2917 0.27 0.00 0.05 0.70
## 2918 0.19 0.00 0.03 0.70
## 2919 0.30 0.00 0.12 0.70
## 2920 0.25 0.00 0.06 0.70
## 2921 0.25 0.00 0.06 0.70
## 2922 0.36 0.01 0.13 0.70
## 2923 0.03 0.58 0.05 0.70
## 2924 0.19 0.00 0.01 0.70
## 2925 0.25 0.00 0.07 0.70
## 2926 0.20 0.00 0.06 0.70
## 2927 0.01 0.12 0.05 0.70
## 2928 0.27 0.00 0.09 0.70
## 2929 0.26 0.00 0.10 0.70
## 2930 0.40 0.00 0.16 0.70
## 2931 0.26 0.00 0.05 0.70
## 2932 0.27 0.00 0.09 0.70
## 2933 0.13 0.36 0.04 0.70
## 2934 0.18 0.22 0.08 0.70
## 2935 0.27 0.00 0.09 0.70
## 2936 0.26 0.00 0.06 0.70
## 2937 0.00 0.00 0.05 0.70
## 2938 0.14 0.17 0.01 0.70
## 2939 0.00 0.70 0.00 0.70
## 2940 0.18 0.00 0.01 0.70
## 2941 0.04 0.00 0.01 0.69
## 2942 0.26 0.00 0.06 0.69
## 2943 0.31 0.05 0.05 0.69
## 2944 0.21 0.00 0.06 0.69
## 2945 0.01 0.26 0.17 0.69
## 2946 0.17 0.00 0.05 0.69
## 2947 0.10 0.00 0.06 0.69
## 2949 0.26 0.00 0.05 0.69
## 2950 0.13 0.00 0.02 0.69
## 2951 0.33 0.00 0.11 0.69
## 2952 0.02 0.00 0.09 0.69
## 2953 0.00 0.00 0.05 0.69
## 2954 0.33 0.00 0.12 0.69
## 2955 0.18 0.00 0.01 0.69
## 2956 0.00 0.69 0.00 0.69
## 2957 0.00 0.69 0.00 0.69
## 2958 0.14 0.00 0.02 0.69
## 2959 0.26 0.00 0.05 0.69
## 2960 0.09 0.01 0.07 0.69
## 2961 0.20 0.42 0.07 0.69
## 2962 0.38 0.00 0.10 0.69
## 2963 0.14 0.00 0.02 0.69
## 2964 0.36 0.00 0.13 0.69
## 2965 0.14 0.00 0.02 0.69
## 2966 0.61 0.02 0.04 0.69
## 2967 0.08 0.00 0.06 0.69
## 2968 0.20 0.18 0.06 0.69
## 2969 0.35 0.00 0.06 0.69
## 2970 0.32 0.00 0.10 0.69
## 2971 0.26 0.00 0.09 0.68
## 2972 0.18 0.00 0.01 0.68
## 2973 0.23 0.00 0.06 0.68
## 2974 0.00 0.33 0.02 0.68
## 2975 0.03 0.00 0.05 0.68
## 2976 0.26 0.00 0.04 0.68
## 2977 0.13 0.18 0.04 0.68
## 2978 0.04 0.00 0.02 0.68
## 2979 0.25 0.00 0.11 0.68
## 2980 0.36 0.00 0.11 0.68
## 2981 0.29 0.02 0.12 0.68
## 2982 0.02 0.00 0.03 0.68
## 2983 0.26 0.00 0.04 0.68
## 2984 0.33 0.03 0.06 0.68
## 2985 0.14 0.00 0.02 0.68
## 2986 0.02 0.00 0.09 0.68
## 2987 0.11 0.28 0.08 0.68
## 2988 0.30 0.04 0.12 0.68
## 2989 0.00 0.34 0.02 0.68
## 2990 0.11 0.00 0.03 0.68
## 2991 0.33 0.00 0.13 0.68
## 2992 0.23 0.00 0.06 0.68
## 2993 0.17 0.22 0.04 0.68
## 2994 0.10 0.38 0.04 0.68
## 2995 0.33 0.00 0.06 0.68
## 2996 0.01 0.00 0.05 0.68
## 2997 0.38 0.00 0.01 0.68
## 2998 0.43 0.00 0.05 0.68
## 2999 0.04 0.04 0.05 0.68
## 3000 0.15 0.00 0.02 0.68
## 3001 0.22 0.11 0.07 0.68
## 3002 0.59 0.00 0.09 0.68
## 3003 0.18 0.20 0.06 0.68
## 3004 0.04 0.00 0.04 0.68
## 3005 0.22 0.01 0.10 0.68
## 3006 0.26 0.00 0.09 0.68
## 3007 0.52 0.00 0.02 0.67
## 3008 0.24 0.00 0.11 0.67
## 3009 0.01 0.42 0.02 0.67
## 3010 0.16 0.00 0.02 0.67
## 3011 0.17 0.00 0.05 0.67
## 3012 0.21 0.11 0.09 0.67
## 3013 0.34 0.00 0.13 0.67
## 3014 0.25 0.00 0.04 0.67
## 3015 0.22 0.00 0.06 0.67
## 3016 0.25 0.00 0.04 0.67
## 3017 0.22 0.00 0.10 0.67
## 3018 0.18 0.00 0.03 0.67
## 3019 0.28 0.00 0.06 0.67
## 3020 0.13 0.00 0.05 0.67
## 3021 0.00 0.67 0.00 0.67
## 3022 0.25 0.00 0.04 0.67
## 3023 0.17 0.00 0.02 0.67
## 3024 0.17 0.23 0.06 0.67
## 3025 0.32 0.00 0.07 0.67
## 3026 0.00 0.67 0.00 0.67
## 3027 0.42 0.00 0.05 0.67
## 3028 0.36 0.00 0.14 0.67
## 3029 0.31 0.01 0.11 0.67
## 3030 0.28 0.00 0.16 0.67
## 3031 0.16 0.00 0.07 0.67
## 3032 0.13 0.31 0.04 0.67
## 3033 0.66 0.00 0.01 0.67
## 3034 0.18 0.01 0.05 0.67
## 3035 0.30 0.00 0.08 0.67
## 3036 0.33 0.00 0.11 0.67
## 3037 0.41 0.00 0.08 0.67
## 3038 0.21 0.01 0.05 0.67
## 3039 0.29 0.01 0.07 0.67
## 3040 0.06 0.00 0.05 0.67
## 3041 0.64 0.00 0.02 0.67
## 3042 0.25 0.00 0.09 0.67
## 3043 0.20 0.00 0.14 0.67
## 3044 0.58 0.00 0.09 0.67
## 3045 0.03 0.00 0.01 0.67
## 3046 0.05 0.25 0.04 0.67
## 3047 0.11 0.00 0.05 0.67
## 3048 0.26 0.05 0.11 0.67
## 3049 0.53 0.00 0.12 0.67
## 3051 0.00 0.66 0.00 0.66
## 3052 0.25 0.00 0.04 0.66
## 3053 0.15 0.00 0.02 0.66
## 3054 0.24 0.01 0.10 0.66
## 3055 0.23 0.03 0.06 0.66
## 3056 0.02 0.00 0.09 0.66
## 3057 0.25 0.00 0.08 0.66
## 3058 0.01 0.13 0.26 0.66
## 3059 0.25 0.00 0.04 0.66
## 3060 0.25 0.00 0.04 0.66
## 3061 0.25 0.00 0.08 0.66
## 3062 0.16 0.00 0.02 0.66
## 3063 0.02 0.00 0.09 0.66
## 3064 0.10 0.00 0.06 0.66
## 3065 0.00 0.66 0.00 0.66
## 3066 0.13 0.00 0.02 0.66
## 3067 0.00 0.66 0.00 0.66
## 3068 0.00 0.64 0.02 0.66
## 3069 0.18 0.00 0.01 0.66
## 3070 0.38 0.00 0.14 0.66
## 3071 0.24 0.00 0.07 0.66
## 3072 0.25 0.00 0.08 0.66
## 3073 0.25 0.00 0.04 0.66
## 3074 0.52 0.00 0.12 0.66
## 3075 0.03 0.55 0.02 0.66
## 3076 0.02 0.33 0.03 0.66
## 3077 0.25 0.00 0.14 0.66
## 3078 0.20 0.00 0.03 0.66
## 3079 0.22 0.00 0.10 0.66
## 3080 0.04 0.00 0.01 0.66
## 3081 0.35 0.00 0.16 0.66
## 3082 0.14 0.19 0.04 0.66
## 3083 0.17 0.00 0.01 0.66
## 3084 0.13 0.30 0.05 0.66
## 3085 0.00 0.62 0.00 0.66
## 3086 0.17 0.00 0.01 0.66
## 3087 0.08 0.41 0.04 0.66
## 3088 0.14 0.00 0.02 0.66
## 3089 0.08 0.00 0.08 0.66
## 3090 0.27 0.00 0.16 0.66
## 3091 0.00 0.66 0.00 0.66
## 3092 0.44 0.03 0.09 0.66
## 3093 0.25 0.00 0.07 0.66
## 3094 0.25 0.00 0.04 0.66
## 3095 0.22 0.00 0.06 0.65
## 3096 0.22 0.00 0.10 0.65
## 3097 0.00 0.00 0.41 0.65
## 3098 0.22 0.01 0.10 0.65
## 3099 0.25 0.00 0.05 0.65
## 3100 0.23 0.00 0.07 0.65
## 3101 0.14 0.29 0.05 0.65
## 3102 0.11 0.12 0.02 0.65
## 3103 0.25 0.00 0.08 0.65
## 3104 0.22 0.00 0.14 0.65
## 3105 0.09 0.30 0.01 0.65
## 3106 0.28 0.00 0.07 0.65
## 3107 0.25 0.00 0.08 0.65
## 3108 0.04 0.00 0.05 0.65
## 3109 0.17 0.00 0.01 0.65
## 3110 0.01 0.58 0.04 0.65
## 3111 0.14 0.00 0.06 0.65
## 3112 0.00 0.00 0.07 0.65
## 3113 0.20 0.00 0.06 0.65
## 3114 0.17 0.00 0.01 0.65
## 3115 0.03 0.27 0.03 0.65
## 3116 0.25 0.00 0.04 0.65
## 3117 0.15 0.26 0.05 0.65
## 3118 0.50 0.00 0.15 0.65
## 3119 0.04 0.00 0.01 0.65
## 3120 0.25 0.00 0.08 0.65
## 3121 0.02 0.00 0.09 0.65
## 3122 0.05 0.00 0.60 0.65
## 3123 0.24 0.00 0.04 0.65
## 3124 0.18 0.00 0.12 0.65
## 3125 0.11 0.00 0.05 0.65
## 3126 0.15 0.20 0.07 0.65
## 3127 0.14 0.22 0.09 0.65
## 3128 0.00 0.65 0.00 0.65
## 3129 0.23 0.05 0.10 0.65
## 3130 0.20 0.00 0.06 0.65
## 3131 0.00 0.65 0.00 0.65
## 3132 0.04 0.40 0.03 0.65
## 3133 0.39 0.00 0.09 0.64
## 3134 0.00 0.00 0.05 0.64
## 3135 0.07 0.00 0.44 0.64
## 3136 0.17 0.00 0.01 0.64
## 3137 0.24 0.00 0.05 0.64
## 3138 0.25 0.00 0.08 0.64
## 3139 0.25 0.00 0.15 0.64
## 3140 0.31 0.00 0.13 0.64
## 3141 0.25 0.00 0.08 0.64
## 3143 0.15 0.00 0.02 0.64
## 3144 0.09 0.01 0.05 0.64
## 3145 0.02 0.00 0.09 0.64
## 3146 0.04 0.00 0.07 0.64
## 3147 0.17 0.07 0.09 0.64
## 3148 0.23 0.00 0.05 0.64
## 3149 0.35 0.00 0.06 0.64
## 3150 0.29 0.00 0.10 0.64
## 3151 0.19 0.00 0.02 0.64
## 3152 0.24 0.00 0.08 0.64
## 3153 0.32 0.00 0.07 0.64
## 3154 0.04 0.00 0.03 0.64
## 3155 0.33 0.00 0.09 0.64
## 3156 0.04 0.00 0.05 0.64
## 3157 0.15 0.00 0.01 0.64
## 3158 0.10 0.04 0.05 0.64
## 3159 0.22 0.00 0.02 0.64
## 3160 0.17 0.00 0.01 0.64
## 3161 0.21 0.00 0.06 0.64
## 3162 0.33 0.00 0.01 0.64
## 3163 0.12 0.34 0.04 0.64
## 3164 0.20 0.20 0.07 0.64
## 3165 0.17 0.00 0.06 0.64
## 3166 0.43 0.00 0.14 0.64
## 3167 0.17 0.00 0.01 0.64
## 3168 0.20 0.09 0.10 0.64
## 3169 0.17 0.00 0.01 0.64
## 3170 0.09 0.27 0.05 0.64
## 3171 0.28 0.00 0.11 0.64
## 3172 0.24 0.00 0.08 0.64
## 3173 0.32 0.00 0.10 0.64
## 3174 0.42 0.00 0.14 0.64
## 3175 0.04 0.00 0.01 0.64
## 3176 0.03 0.00 0.01 0.64
## 3177 0.02 0.01 0.05 0.64
## 3178 0.12 0.00 0.05 0.64
## 3179 0.26 0.11 0.06 0.64
## 3180 0.10 0.04 0.05 0.64
## 3181 0.24 0.00 0.08 0.64
## 3182 0.33 0.01 0.10 0.64
## 3183 0.00 0.00 0.04 0.64
## 3184 0.21 0.01 0.06 0.63
## 3185 0.02 0.00 0.09 0.63
## 3186 0.24 0.00 0.04 0.63
## 3187 0.12 0.00 0.44 0.63
## 3188 0.16 0.00 0.06 0.63
## 3189 0.45 0.03 0.15 0.63
## 3190 0.34 0.00 0.07 0.63
## 3191 0.19 0.00 0.03 0.63
## 3192 0.24 0.00 0.04 0.63
## 3193 0.40 0.00 0.04 0.63
## 3194 0.14 0.00 0.06 0.63
## 3196 0.02 0.00 0.09 0.63
## 3197 0.23 0.01 0.10 0.63
## 3198 0.17 0.00 0.01 0.63
## 3199 0.23 0.00 0.09 0.63
## 3200 0.24 0.00 0.10 0.63
## 3201 0.09 0.00 0.09 0.63
## 3202 0.00 0.63 0.00 0.63
## 3203 0.35 0.00 0.07 0.63
## 3204 0.13 0.00 0.01 0.63
## 3205 0.05 0.25 0.01 0.63
## 3206 0.09 0.00 0.04 0.63
## 3207 0.20 0.00 0.05 0.63
## 3208 0.19 0.00 0.06 0.63
## 3209 0.00 0.00 0.05 0.63
## 3210 0.00 0.63 0.00 0.63
## 3211 0.21 0.00 0.09 0.63
## 3212 0.05 0.00 0.04 0.63
## 3213 0.29 0.01 0.10 0.63
## 3214 0.09 0.38 0.03 0.63
## 3215 0.05 0.00 0.14 0.63
## 3216 0.04 0.00 0.01 0.63
## 3217 0.23 0.00 0.06 0.63
## 3219 0.23 0.00 0.00 0.63
## 3220 0.34 0.00 0.05 0.63
## 3221 0.25 0.00 0.06 0.63
## 3222 0.00 0.63 0.00 0.63
## 3223 0.37 0.00 0.06 0.63
## 3224 0.20 0.16 0.05 0.63
## 3225 0.24 0.00 0.08 0.63
## 3226 0.06 0.34 0.04 0.63
## 3227 0.00 0.59 0.04 0.63
## 3228 0.17 0.00 0.05 0.63
## 3229 0.03 0.15 0.34 0.63
## 3230 0.24 0.00 0.04 0.63
## 3231 0.16 0.00 0.05 0.63
## 3232 0.22 0.00 0.06 0.63
## 3233 0.27 0.01 0.11 0.63
## 3234 0.29 0.00 0.07 0.63
## 3235 0.24 0.00 0.04 0.63
## 3236 0.13 0.00 0.02 0.63
## 3237 0.00 0.32 0.00 0.62
## 3238 0.00 0.62 0.00 0.62
## 3240 0.20 0.00 0.03 0.62
## 3241 0.24 0.00 0.04 0.62
## 3242 0.26 0.00 0.06 0.62
## 3243 0.22 0.11 0.09 0.62
## 3244 0.13 0.29 0.04 0.62
## 3245 0.24 0.00 0.04 0.62
## 3246 0.23 0.08 0.09 0.62
## 3247 0.13 0.00 0.02 0.62
## 3248 0.42 0.00 0.05 0.62
## 3249 0.03 0.00 0.01 0.62
## 3250 0.13 0.00 0.02 0.62
## 3251 0.28 0.00 0.06 0.62
## 3252 0.23 0.22 0.08 0.62
## 3253 0.20 0.00 0.06 0.62
## 3254 0.24 0.00 0.08 0.62
## 3255 0.20 0.07 0.09 0.62
## 3256 0.04 0.57 0.01 0.62
## 3257 0.21 0.00 0.06 0.62
## 3258 0.10 0.12 0.02 0.62
## 3259 0.22 0.00 0.03 0.62
## 3260 0.20 0.00 0.02 0.62
## 3261 0.34 0.02 0.09 0.62
## 3262 0.23 0.00 0.04 0.62
## 3263 0.00 0.00 0.04 0.62
## 3264 0.24 0.00 0.08 0.62
## 3265 0.01 0.00 0.04 0.62
## 3266 0.14 0.27 0.06 0.62
## 3267 0.03 0.00 0.01 0.62
## 3268 0.18 0.09 0.08 0.62
## 3269 0.23 0.00 0.14 0.62
## 3270 0.14 0.23 0.04 0.62
## 3271 0.24 0.00 0.08 0.62
## 3272 0.00 0.62 0.00 0.62
## 3273 0.12 0.00 0.02 0.62
## 3274 0.17 0.00 0.11 0.62
## 3275 0.00 0.62 0.00 0.62
## 3276 0.00 0.62 0.00 0.62
## 3277 0.26 0.00 0.07 0.62
## 3278 0.03 0.00 0.00 0.62
## 3279 0.00 0.62 0.00 0.62
## 3280 0.00 0.62 0.00 0.62
## 3281 0.02 0.00 0.00 0.62
## 3282 0.00 0.58 0.04 0.62
## 3283 0.57 0.04 0.00 0.61
## 3284 0.13 0.11 0.04 0.61
## 3285 0.00 0.00 0.05 0.61
## 3286 0.04 0.00 0.57 0.61
## 3287 0.15 0.00 0.11 0.61
## 3288 0.29 0.01 0.11 0.61
## 3289 0.13 0.00 0.02 0.61
## 3290 0.02 0.57 0.01 0.61
## 3291 0.11 0.34 0.05 0.61
## 3292 0.18 0.00 0.05 0.61
## 3293 0.16 0.00 0.01 0.61
## 3294 0.23 0.00 0.08 0.61
## 3295 0.16 0.00 0.01 0.61
## 3296 0.21 0.00 0.05 0.61
## 3297 0.10 0.00 0.05 0.61
## 3298 0.23 0.00 0.05 0.61
## 3299 0.07 0.00 0.04 0.61
## 3300 0.16 0.00 0.01 0.61
## 3301 0.23 0.00 0.08 0.61
## 3302 0.00 0.00 0.03 0.61
## 3303 0.00 0.61 0.00 0.61
## 3304 0.44 0.00 0.07 0.61
## 3305 0.17 0.14 0.05 0.61
## 3306 0.23 0.00 0.04 0.61
## 3307 0.07 0.42 0.03 0.61
## 3308 0.24 0.00 0.06 0.61
## 3309 0.21 0.00 0.03 0.61
## 3310 0.23 0.00 0.04 0.61
## 3311 0.09 0.01 0.04 0.61
## 3312 0.27 0.00 0.15 0.61
## 3313 0.00 0.00 0.05 0.61
## 3314 0.03 0.21 0.03 0.61
## 3315 0.00 0.00 0.05 0.61
## 3316 0.00 0.00 0.05 0.61
## 3317 0.23 0.00 0.06 0.61
## 3318 0.10 0.22 0.01 0.61
## 3319 0.16 0.00 0.01 0.61
## 3320 0.23 0.00 0.04 0.61
## 3321 0.16 0.00 0.01 0.61
## 3322 0.16 0.00 0.01 0.61
## 3323 0.12 0.00 0.02 0.61
## 3324 0.21 0.00 0.06 0.61
## 3325 0.16 0.01 0.06 0.61
## 3326 0.16 0.00 0.01 0.61
## 3327 0.02 0.00 0.00 0.61
## 3328 0.05 0.00 0.05 0.61
## 3329 0.16 0.00 0.01 0.61
## 3330 0.20 0.00 0.06 0.61
## 3331 0.02 0.00 0.08 0.61
## 3332 0.24 0.00 0.06 0.61
## 3333 0.24 0.00 0.06 0.61
## 3334 0.14 0.33 0.02 0.60
## 3335 0.16 0.00 0.01 0.60
## 3336 0.11 0.25 0.06 0.60
## 3337 0.16 0.00 0.01 0.60
## 3338 0.02 0.00 0.08 0.60
## 3339 0.10 0.09 0.02 0.60
## 3340 0.23 0.00 0.08 0.60
## 3341 0.16 0.00 0.02 0.60
## 3342 0.00 0.60 0.00 0.60
## 3343 0.25 0.00 0.06 0.60
## 3344 0.02 0.00 0.08 0.60
## 3345 0.19 0.00 0.05 0.60
## 3346 0.22 0.00 0.05 0.60
## 3348 0.19 0.20 0.04 0.60
## 3349 0.15 0.00 0.08 0.60
## 3350 0.22 0.03 0.05 0.60
## 3351 0.25 0.04 0.09 0.60
## 3352 0.37 0.00 0.10 0.60
## 3353 0.14 0.21 0.04 0.60
## 3354 0.18 0.00 0.29 0.60
## 3355 0.23 0.00 0.08 0.60
## 3356 0.24 0.00 0.14 0.60
## 3357 0.02 0.00 0.08 0.60
## 3358 0.00 0.60 0.00 0.60
## 3359 0.23 0.00 0.08 0.60
## 3360 0.21 0.00 0.05 0.60
## 3361 0.08 0.14 0.01 0.60
## 3362 0.26 0.23 0.02 0.60
## 3363 0.15 0.00 0.06 0.60
## 3364 0.23 0.00 0.08 0.60
## 3365 0.23 0.00 0.04 0.60
## 3366 0.00 0.56 0.04 0.60
## 3367 0.00 0.56 0.04 0.60
## 3368 0.03 0.03 0.05 0.60
## 3369 0.25 0.00 0.11 0.60
## 3370 0.28 0.00 0.06 0.60
## 3371 0.23 0.00 0.04 0.60
## 3372 0.01 0.00 0.04 0.60
## 3373 0.00 0.60 0.00 0.60
## 3374 0.13 0.00 0.07 0.60
## 3375 0.16 0.00 0.05 0.60
## 3376 0.20 0.00 0.06 0.60
## 3377 0.24 0.00 0.10 0.60
## 3378 0.23 0.00 0.08 0.60
## 3379 0.22 0.00 0.06 0.60
## 3380 0.22 0.00 0.09 0.60
## 3381 0.00 0.60 0.00 0.60
## 3382 0.00 0.31 0.02 0.60
## 3383 0.53 0.00 0.06 0.59
## 3384 0.23 0.00 0.08 0.59
## 3385 0.35 0.00 0.11 0.59
## 3386 0.46 0.00 0.07 0.59
## 3387 0.38 0.00 0.07 0.59
## 3388 0.00 0.59 0.00 0.59
## 3389 0.00 0.00 0.03 0.59
## 3390 0.00 0.56 0.04 0.59
## 3391 0.34 0.00 0.10 0.59
## 3392 0.22 0.00 0.04 0.59
## 3393 0.22 0.00 0.04 0.59
## 3394 0.12 0.00 0.02 0.59
## 3395 0.11 0.23 0.03 0.59
## 3396 0.22 0.00 0.06 0.59
## 3397 0.28 0.05 0.10 0.59
## 3398 0.22 0.00 0.04 0.59
## 3399 0.31 0.00 0.09 0.59
## 3400 0.00 0.55 0.04 0.59
## 3401 0.23 0.00 0.08 0.59
## 3402 0.00 0.59 0.00 0.59
## 3403 0.24 0.00 0.14 0.59
## 3404 0.03 0.00 0.01 0.59
## 3405 0.28 0.00 0.07 0.59
## 3406 0.17 0.16 0.06 0.59
## 3407 0.13 0.00 0.02 0.59
## 3408 0.12 0.00 0.02 0.59
## 3409 0.03 0.00 0.01 0.59
## 3410 0.00 0.00 0.04 0.59
## 3411 0.02 0.00 0.04 0.59
## 3412 0.03 0.00 0.04 0.59
## 3413 0.11 0.00 0.01 0.59
## 3414 0.11 0.00 0.01 0.59
## 3415 0.21 0.00 0.05 0.59
## 3416 0.08 0.14 0.02 0.59
## 3417 0.00 0.59 0.00 0.59
## 3418 0.14 0.02 0.04 0.59
## 3419 0.16 0.00 0.07 0.59
## 3420 0.09 0.42 0.03 0.59
## 3421 0.22 0.01 0.23 0.59
## 3423 0.04 0.00 0.05 0.59
## 3424 0.18 0.00 0.05 0.59
## 3425 0.22 0.00 0.04 0.59
## 3426 0.34 0.00 0.07 0.59
## 3427 0.22 0.00 0.08 0.59
## 3428 0.02 0.13 0.04 0.59
## 3429 0.22 0.08 0.08 0.59
## 3430 0.14 0.00 0.10 0.59
## 3431 0.25 0.00 0.09 0.59
## 3432 0.21 0.00 0.09 0.59
## 3433 0.13 0.11 0.01 0.59
## 3434 0.22 0.00 0.07 0.59
## 3435 0.37 0.00 0.07 0.59
## 3436 0.00 0.59 0.00 0.59
## 3437 0.22 0.00 0.10 0.59
## 3438 0.17 0.14 0.06 0.58
## 3439 0.37 0.00 0.07 0.58
## 3440 0.01 0.00 0.04 0.58
## 3441 0.22 0.00 0.07 0.58
## 3442 0.23 0.00 0.06 0.58
## 3443 0.25 0.00 0.05 0.58
## 3444 0.00 0.55 0.04 0.58
## 3445 0.19 0.07 0.04 0.58
## 3446 0.02 0.00 0.04 0.58
## 3447 0.18 0.00 0.10 0.58
## 3448 0.03 0.00 0.01 0.58
## 3449 0.04 0.47 0.01 0.58
## 3450 0.02 0.00 0.08 0.58
## 3451 0.03 0.17 0.03 0.58
## 3452 0.31 0.00 0.07 0.58
## 3453 0.18 0.00 0.05 0.58
## 3454 0.18 0.00 0.39 0.58
## 3455 0.22 0.02 0.04 0.58
## 3456 0.29 0.00 0.07 0.58
## 3457 0.22 0.00 0.05 0.58
## 3458 0.30 0.00 0.07 0.58
## 3459 0.00 0.00 0.04 0.58
## 3460 0.19 0.02 0.06 0.58
## 3461 0.22 0.00 0.04 0.58
## 3462 0.26 0.00 0.05 0.58
## 3463 0.22 0.00 0.07 0.58
## 3464 0.15 0.00 0.05 0.58
## 3465 0.06 0.22 0.03 0.58
## 3466 0.39 0.00 0.03 0.58
## 3467 0.40 0.00 0.04 0.58
## 3468 0.30 0.19 0.03 0.58
## 3470 0.22 0.00 0.07 0.58
## 3471 0.16 0.16 0.04 0.58
## 3472 0.00 0.54 0.04 0.58
## 3473 0.22 0.00 0.03 0.58
## 3474 0.22 0.00 0.07 0.58
## 3475 0.22 0.00 0.04 0.58
## 3476 0.15 0.00 0.01 0.58
## 3477 0.00 0.31 0.02 0.58
## 3478 0.02 0.50 0.01 0.58
## 3479 0.00 0.00 0.04 0.58
## 3480 0.22 0.00 0.07 0.58
## 3481 0.22 0.00 0.04 0.58
## 3482 0.00 0.58 0.00 0.58
## 3483 0.00 0.00 0.04 0.58
## 3484 0.27 0.00 0.09 0.58
## 3485 0.05 0.26 0.03 0.58
## 3486 0.00 0.58 0.00 0.58
## 3487 0.09 0.00 0.06 0.58
## 3488 0.11 0.14 0.06 0.58
## 3489 0.10 0.06 0.06 0.58
## 3490 0.22 0.00 0.04 0.58
## 3491 0.12 0.00 0.02 0.58
## 3492 0.00 0.00 0.04 0.58
## 3493 0.22 0.00 0.07 0.58
## 3494 0.02 0.00 0.08 0.58
## 3495 0.12 0.00 0.07 0.58
## 3496 0.41 0.01 0.06 0.58
## 3497 0.02 0.00 0.04 0.58
## 3498 0.22 0.00 0.04 0.58
## 3499 0.17 0.02 0.05 0.58
## 3500 0.02 0.00 0.00 0.58
## 3501 0.53 0.00 0.04 0.58
## 3503 0.22 0.00 0.07 0.58
## 3504 0.37 0.00 0.12 0.57
## 3505 0.00 0.27 0.02 0.57
## 3506 0.16 0.13 0.04 0.57
## 3507 0.23 0.00 0.06 0.57
## 3508 0.04 0.00 0.04 0.57
## 3509 0.00 0.00 0.04 0.57
## 3510 0.24 0.00 0.02 0.57
## 3511 0.22 0.00 0.07 0.57
## 3512 0.15 0.00 0.01 0.57
## 3513 0.28 0.00 0.06 0.57
## 3514 0.00 0.57 0.00 0.57
## 3515 0.15 0.00 0.05 0.57
## 3516 0.24 0.00 0.06 0.57
## 3517 0.00 0.54 0.04 0.57
## 3518 0.15 0.00 0.01 0.57
## 3519 0.24 0.01 0.09 0.57
## 3520 0.00 0.00 0.04 0.57
## 3521 0.08 0.35 0.04 0.57
## 3522 0.02 0.00 0.33 0.57
## 3523 0.23 0.00 0.13 0.57
## 3524 0.27 0.00 0.06 0.57
## 3525 0.11 0.00 0.02 0.57
## 3526 0.17 0.04 0.05 0.57
## 3527 0.45 0.00 0.11 0.57
## 3528 0.01 0.00 0.04 0.57
## 3529 0.02 0.00 0.08 0.57
## 3530 0.15 0.00 0.04 0.57
## 3531 0.02 0.00 0.04 0.57
## 3532 0.12 0.03 0.07 0.57
## 3533 0.00 0.57 0.00 0.57
## 3534 0.08 0.00 0.00 0.57
## 3535 0.01 0.00 0.04 0.57
## 3536 0.12 0.29 0.07 0.57
## 3537 0.25 0.00 0.05 0.57
## 3538 0.12 0.00 0.02 0.57
## 3539 0.08 0.35 0.03 0.57
## 3540 0.20 0.00 0.05 0.57
## 3541 0.03 0.00 0.04 0.57
## 3542 0.22 0.00 0.07 0.57
## 3543 0.02 0.00 0.08 0.57
## 3544 0.11 0.02 0.02 0.57
## 3545 0.00 0.57 0.00 0.57
## 3546 0.10 0.00 0.02 0.57
## 3547 0.25 0.04 0.09 0.57
## 3548 0.00 0.57 0.00 0.57
## 3549 0.22 0.00 0.06 0.57
## 3550 0.16 0.00 0.02 0.57
## 3551 0.15 0.17 0.05 0.57
## 3552 0.21 0.00 0.04 0.57
## 3553 0.22 0.00 0.07 0.57
## 3554 0.19 0.00 0.09 0.57
## 3555 0.12 0.00 0.05 0.57
## 3556 0.31 0.00 0.06 0.57
## 3557 0.40 0.00 0.07 0.57
## 3558 0.22 0.05 0.09 0.57
## 3559 0.28 0.00 0.05 0.56
## 3560 0.08 0.34 0.04 0.56
## 3561 0.11 0.00 0.02 0.56
## 3562 0.18 0.09 0.06 0.56
## 3563 0.04 0.24 0.03 0.56
## 3564 0.15 0.00 0.01 0.56
## 3565 0.15 0.00 0.01 0.56
## 3566 0.22 0.00 0.07 0.56
## 3567 0.15 0.00 0.01 0.56
## 3568 0.22 0.00 0.07 0.56
## 3569 0.11 0.13 0.01 0.56
## 3570 0.14 0.00 0.02 0.56
## 3571 0.22 0.00 0.07 0.56
## 3572 0.21 0.00 0.04 0.56
## 3573 0.21 0.00 0.07 0.56
## 3574 0.08 0.00 0.07 0.56
## 3575 0.15 0.00 0.01 0.56
## 3576 0.21 0.00 0.07 0.56
## 3577 0.05 0.22 0.03 0.56
## 3578 0.21 0.00 0.07 0.56
## 3579 0.21 0.00 0.04 0.56
## 3580 0.19 0.00 0.05 0.56
## 3581 0.21 0.00 0.07 0.56
## 3582 0.15 0.00 0.02 0.56
## 3583 0.22 0.00 0.06 0.56
## 3584 0.21 0.00 0.07 0.56
## 3585 0.15 0.00 0.01 0.56
## 3586 0.11 0.00 0.02 0.56
## 3587 0.21 0.00 0.04 0.56
## 3588 0.11 0.00 0.04 0.56
## 3589 0.02 0.00 0.04 0.56
## 3590 0.11 0.00 0.02 0.56
## 3591 0.09 0.07 0.01 0.56
## 3592 0.02 0.45 0.00 0.56
## 3593 0.21 0.00 0.07 0.56
## 3594 0.14 0.12 0.04 0.56
## 3595 0.12 0.26 0.04 0.56
## 3596 0.08 0.00 0.04 0.56
## 3597 0.09 0.27 0.06 0.56
## 3598 0.15 0.01 0.05 0.56
## 3599 0.35 0.00 0.07 0.56
## 3600 0.00 0.56 0.00 0.56
## 3601 0.21 0.00 0.07 0.56
## 3602 0.23 0.00 0.06 0.56
## 3603 0.21 0.00 0.07 0.56
## 3604 0.15 0.00 0.01 0.56
## 3605 0.15 0.00 0.01 0.56
## 3606 0.15 0.00 0.02 0.56
## 3607 0.18 0.00 0.05 0.56
## 3608 0.24 0.00 0.14 0.56
## 3609 0.21 0.00 0.07 0.56
## 3610 0.00 0.56 0.00 0.56
## 3611 0.02 0.00 0.04 0.56
## 3612 0.02 0.00 0.02 0.56
## 3613 0.00 0.56 0.00 0.56
## 3614 0.23 0.00 0.04 0.56
## 3615 0.04 0.00 0.04 0.56
## 3616 0.09 0.22 0.06 0.56
## 3617 0.23 0.00 0.06 0.56
## 3618 0.26 0.00 0.06 0.56
## 3619 0.21 0.00 0.07 0.56
## 3620 0.02 0.14 0.03 0.56
## 3621 0.02 0.00 0.03 0.56
## 3622 0.00 0.00 0.04 0.56
## 3623 0.21 0.00 0.07 0.56
## 3624 0.36 0.00 0.02 0.56
## 3625 0.12 0.00 0.01 0.56
## 3626 0.08 0.02 0.06 0.56
## 3627 0.14 0.00 0.05 0.56
## 3628 0.18 0.06 0.04 0.55
## 3629 0.20 0.14 0.07 0.55
## 3630 0.21 0.00 0.04 0.55
## 3631 0.11 0.00 0.04 0.55
## 3632 0.16 0.00 0.05 0.55
## 3633 0.21 0.00 0.07 0.55
## 3634 0.01 0.15 0.06 0.55
## 3635 0.13 0.00 0.08 0.55
## 3636 0.11 0.00 0.02 0.55
## 3637 0.00 0.55 0.00 0.55
## 3638 0.28 0.00 0.05 0.55
## 3639 0.22 0.00 0.09 0.55
## 3640 0.13 0.00 0.02 0.55
## 3641 0.00 0.52 0.04 0.55
## 3642 0.00 0.55 0.00 0.55
## 3643 0.17 0.00 0.07 0.55
## 3644 0.03 0.00 0.01 0.55
## 3645 0.21 0.00 0.04 0.55
## 3646 0.00 0.00 0.04 0.55
## 3647 0.21 0.00 0.04 0.55
## 3648 0.00 0.55 0.00 0.55
## 3649 0.00 0.55 0.00 0.55
## 3650 0.16 0.12 0.05 0.55
## 3651 0.21 0.00 0.07 0.55
## 3652 0.15 0.04 0.07 0.55
## 3653 0.16 0.03 0.05 0.55
## 3654 0.04 0.00 0.04 0.55
## 3655 0.27 0.00 0.10 0.55
## 3656 0.22 0.00 0.00 0.55
## 3657 0.33 0.00 0.05 0.55
## 3658 0.00 0.55 0.00 0.55
## 3659 0.01 0.00 0.05 0.55
## 3660 0.00 0.00 0.04 0.55
## 3661 0.00 0.00 0.04 0.55
## 3662 0.18 0.00 0.02 0.55
## 3663 0.08 0.24 0.01 0.55
## 3664 0.21 0.00 0.04 0.55
## 3665 0.25 0.02 0.09 0.55
## 3666 0.21 0.00 0.04 0.55
## 3667 0.00 0.51 0.04 0.55
## 3668 0.00 0.55 0.00 0.55
## 3669 0.13 0.00 0.02 0.55
## 3670 0.00 0.55 0.00 0.55
## 3671 0.21 0.07 0.08 0.55
## 3672 0.15 0.00 0.01 0.55
## 3673 0.00 0.55 0.00 0.55
## 3674 0.19 0.00 0.05 0.55
## 3675 0.00 0.21 0.03 0.55
## 3676 0.02 0.00 0.04 0.55
## 3677 0.15 0.00 0.01 0.55
## 3678 0.05 0.36 0.02 0.55
## 3679 0.20 0.02 0.04 0.55
## 3680 0.14 0.00 0.02 0.55
## 3681 0.02 0.00 0.07 0.55
## 3682 0.24 0.03 0.05 0.55
## 3683 0.00 0.00 0.04 0.55
## 3684 0.21 0.00 0.07 0.55
## 3685 0.21 0.00 0.04 0.55
## 3686 0.12 0.00 0.02 0.55
## 3687 0.08 0.13 0.07 0.55
## 3688 0.32 0.00 0.10 0.54
## 3689 0.00 0.00 0.19 0.54
## 3690 0.06 0.00 0.48 0.54
## 3691 0.02 0.00 0.04 0.54
## 3692 0.03 0.01 0.05 0.54
## 3693 0.12 0.00 0.02 0.54
## 3694 0.35 0.00 0.04 0.54
## 3695 0.00 0.54 0.00 0.54
## 3696 0.00 0.54 0.00 0.54
## 3697 0.03 0.08 0.04 0.54
## 3698 0.17 0.04 0.05 0.54
## 3699 0.40 0.00 0.07 0.54
## 3700 0.11 0.00 0.02 0.54
## 3701 0.27 0.02 0.14 0.54
## 3702 0.21 0.00 0.07 0.54
## 3703 0.08 0.03 0.04 0.54
## 3704 0.33 0.01 0.11 0.54
## 3705 0.20 0.00 0.08 0.54
## 3706 0.11 0.25 0.04 0.54
## 3707 0.14 0.00 0.01 0.54
## 3708 0.30 0.00 0.09 0.54
## 3709 0.14 0.38 0.02 0.54
## 3710 0.00 0.54 0.00 0.54
## 3711 0.21 0.00 0.05 0.54
## 3712 0.24 0.10 0.07 0.54
## 3713 0.23 0.00 0.06 0.54
## 3714 0.21 0.00 0.07 0.54
## 3715 0.09 0.00 0.04 0.54
## 3717 0.03 0.00 0.01 0.54
## 3718 0.10 0.00 0.01 0.54
## 3719 0.39 0.00 0.03 0.54
## 3720 0.00 0.54 0.00 0.54
## 3721 0.10 0.01 0.04 0.54
## 3722 0.13 0.13 0.06 0.54
## 3723 0.06 0.35 0.04 0.54
## 3724 0.08 0.16 0.01 0.54
## 3725 0.00 0.54 0.00 0.54
## 3726 0.23 0.00 0.06 0.54
## 3727 0.00 0.50 0.04 0.54
## 3728 0.10 0.00 0.04 0.54
## 3729 0.16 0.18 0.09 0.54
## 3730 0.21 0.00 0.05 0.54
## 3731 0.00 0.00 0.03 0.54
## 3732 0.03 0.15 0.03 0.54
## 3733 0.29 0.01 0.11 0.54
## 3734 0.23 0.00 0.09 0.54
## 3735 0.14 0.00 0.01 0.54
## 3736 0.17 0.00 0.05 0.54
## 3737 0.11 0.00 0.01 0.54
## 3738 0.14 0.00 0.05 0.54
## 3739 0.06 0.00 0.02 0.54
## 3740 0.08 0.00 0.04 0.54
## 3741 0.01 0.10 0.04 0.54
## 3742 0.00 0.54 0.00 0.54
## 3743 0.21 0.00 0.07 0.54
## 3744 0.05 0.48 0.00 0.54
## 3745 0.02 0.00 0.07 0.54
## 3746 0.20 0.00 0.04 0.54
## 3747 0.32 0.00 0.08 0.54
## 3748 0.17 0.00 0.04 0.54
## 3749 0.03 0.00 0.01 0.54
## 3750 0.01 0.48 0.00 0.54
## 3751 0.20 0.00 0.07 0.54
## 3752 0.20 0.00 0.07 0.54
## 3753 0.05 0.24 0.03 0.54
## 3755 0.20 0.00 0.07 0.54
## 3756 0.37 0.00 0.04 0.54
## 3757 0.00 0.53 0.00 0.53
## 3758 0.27 0.00 0.05 0.53
## 3759 0.20 0.00 0.07 0.53
## 3760 0.05 0.38 0.03 0.53
## 3761 0.02 0.00 0.07 0.53
## 3762 0.00 0.00 0.04 0.53
## 3763 0.20 0.00 0.07 0.53
## 3764 0.07 0.17 0.05 0.53
## 3765 0.07 0.27 0.05 0.53
## 3766 0.20 0.00 0.07 0.53
## 3767 0.14 0.00 0.01 0.53
## 3768 0.02 0.00 0.07 0.53
## 3769 0.20 0.00 0.03 0.53
## 3770 0.20 0.00 0.07 0.53
## 3771 0.11 0.00 0.02 0.53
## 3772 0.00 0.33 0.02 0.53
## 3773 0.21 0.00 0.06 0.53
## 3774 0.20 0.00 0.07 0.53
## 3775 0.20 0.00 0.03 0.53
## 3776 0.20 0.00 0.07 0.53
## 3777 0.11 0.00 0.02 0.53
## 3778 0.20 0.00 0.03 0.53
## 3779 0.19 0.02 0.04 0.53
## 3780 0.10 0.00 0.04 0.53
## 3781 0.00 0.53 0.00 0.53
## 3782 0.00 0.53 0.00 0.53
## 3783 0.00 0.53 0.00 0.53
## 3784 0.17 0.00 0.02 0.53
## 3785 0.32 0.00 0.12 0.53
## 3786 0.14 0.12 0.04 0.53
## 3787 0.19 0.00 0.01 0.53
## 3788 0.26 0.02 0.14 0.53
## 3789 0.19 0.00 0.02 0.53
## 3790 0.28 0.00 0.09 0.53
## 3791 0.20 0.00 0.07 0.53
## 3792 0.19 0.00 0.03 0.53
## 3793 0.20 0.00 0.07 0.53
## 3794 0.27 0.02 0.05 0.53
## 3795 0.09 0.00 0.01 0.53
## 3796 0.00 0.00 0.04 0.53
## 3797 0.10 0.00 0.08 0.53
## 3798 0.11 0.00 0.01 0.53
## 3799 0.21 0.00 0.05 0.53
## 3800 0.00 0.00 0.03 0.53
## 3801 0.00 0.49 0.03 0.53
## 3802 0.20 0.01 0.08 0.53
## 3803 0.15 0.00 0.05 0.53
## 3804 0.20 0.00 0.05 0.53
## 3805 0.26 0.00 0.10 0.53
## 3806 0.00 0.00 0.04 0.53
## 3807 0.29 0.00 0.16 0.53
## 3808 0.20 0.00 0.07 0.53
## 3809 0.11 0.00 0.01 0.53
## 3810 0.20 0.00 0.07 0.53
## 3811 0.02 0.00 0.07 0.53
## 3812 0.20 0.00 0.13 0.53
## 3813 0.00 0.53 0.00 0.53
## 3814 0.01 0.00 0.04 0.53
## 3815 0.17 0.00 0.08 0.53
## 3816 0.03 0.16 0.03 0.53
## 3817 0.13 0.00 0.05 0.53
## 3818 0.16 0.04 0.10 0.53
## 3819 0.03 0.00 0.00 0.53
## 3820 0.03 0.00 0.00 0.53
## 3821 0.00 0.49 0.03 0.53
## 3822 0.20 0.00 0.07 0.53
## 3823 0.09 0.19 0.01 0.52
## 3824 0.00 0.52 0.00 0.52
## 3825 0.01 0.00 0.04 0.52
## 3826 0.20 0.00 0.03 0.52
## 3827 0.01 0.02 0.04 0.52
## 3828 0.00 0.52 0.00 0.52
## 3829 0.11 0.00 0.04 0.52
## 3830 0.37 0.00 0.07 0.52
## 3831 0.04 0.00 0.04 0.52
## 3832 0.02 0.00 0.05 0.52
## 3833 0.00 0.00 0.39 0.52
## 3834 0.20 0.00 0.03 0.52
## 3835 0.00 0.00 0.04 0.52
## 3836 0.20 0.00 0.03 0.52
## 3837 0.04 0.00 0.04 0.52
## 3838 0.14 0.16 0.05 0.52
## 3839 0.20 0.00 0.07 0.52
## 3840 0.11 0.00 0.02 0.52
## 3841 0.08 0.22 0.04 0.52
## 3842 0.00 0.02 0.04 0.52
## 3843 0.12 0.00 0.06 0.52
## 3844 0.20 0.00 0.03 0.52
## 3845 0.07 0.16 0.01 0.52
## 3846 0.20 0.00 0.03 0.52
## 3847 0.07 0.28 0.02 0.52
## 3848 0.08 0.28 0.03 0.52
## 3849 0.29 0.00 0.06 0.52
## 3850 0.24 0.00 0.05 0.52
## 3851 0.15 0.01 0.10 0.52
## 3852 0.32 0.00 0.11 0.52
## 3853 0.02 0.00 0.03 0.52
## 3854 0.21 0.00 0.09 0.52
## 3855 0.13 0.18 0.04 0.52
## 3856 0.00 0.52 0.00 0.52
## 3857 0.19 0.02 0.06 0.52
## 3858 0.04 0.00 0.04 0.52
## 3859 0.20 0.00 0.07 0.52
## 3860 0.12 0.00 0.02 0.52
## 3861 0.14 0.00 0.01 0.52
## 3862 0.04 0.08 0.04 0.52
## 3863 0.00 0.01 0.04 0.52
## 3864 0.20 0.00 0.07 0.52
## 3865 0.07 0.31 0.03 0.52
## 3866 0.00 0.52 0.00 0.52
## 3867 0.20 0.00 0.07 0.52
## 3868 0.14 0.00 0.01 0.52
## 3869 0.14 0.00 0.01 0.52
## 3870 0.00 0.00 0.04 0.52
## 3871 0.11 0.20 0.03 0.52
## 3872 0.05 0.00 0.00 0.52
## 3873 0.12 0.00 0.05 0.52
## 3874 0.11 0.00 0.02 0.52
## 3875 0.19 0.00 0.03 0.52
## 3876 0.20 0.00 0.07 0.52
## 3877 0.02 0.00 0.04 0.51
## 3878 0.10 0.25 0.03 0.51
## 3879 0.46 0.00 0.06 0.51
## 3880 0.17 0.01 0.04 0.51
## 3882 0.20 0.00 0.07 0.51
## 3883 0.13 0.00 0.04 0.51
## 3884 0.07 0.27 0.05 0.51
## 3885 0.25 0.00 0.09 0.51
## 3886 0.05 0.35 0.03 0.51
## 3887 0.12 0.00 0.04 0.51
## 3888 0.20 0.00 0.07 0.51
## 3889 0.29 0.00 0.04 0.51
## 3890 0.18 0.00 0.04 0.51
## 3891 0.20 0.07 0.12 0.51
## 3892 0.21 0.00 0.05 0.51
## 3893 0.23 0.02 0.09 0.51
## 3894 0.27 0.06 0.05 0.51
## 3895 0.21 0.00 0.05 0.51
## 3896 0.00 0.51 0.00 0.51
## 3897 0.10 0.00 0.01 0.51
## 3898 0.00 0.51 0.00 0.51
## 3899 0.20 0.00 0.07 0.51
## 3900 0.19 0.00 0.03 0.51
## 3901 0.00 0.00 0.04 0.51
## 3902 0.01 0.00 0.04 0.51
## 3903 0.03 0.17 0.03 0.51
## 3904 0.01 0.30 0.02 0.51
## 3905 0.14 0.00 0.01 0.51
## 3906 0.09 0.02 0.04 0.51
## 3907 0.09 0.00 0.01 0.51
## 3908 0.00 0.51 0.00 0.51
## 3909 0.26 0.22 0.02 0.51
## 3910 0.00 0.00 0.04 0.51
## 3911 0.13 0.00 0.05 0.51
## 3912 0.19 0.00 0.08 0.51
## 3913 0.02 0.00 0.04 0.51
## 3914 0.23 0.00 0.09 0.51
## 3915 0.04 0.00 0.02 0.51
## 3916 0.00 0.48 0.03 0.51
## 3917 0.14 0.00 0.01 0.51
## 3918 0.03 0.00 0.04 0.51
## 3919 0.12 0.20 0.04 0.51
## 3920 0.22 0.02 0.09 0.51
## 3921 0.04 0.11 0.04 0.51
## 3922 0.28 0.00 0.15 0.51
## 3923 0.16 0.00 0.05 0.51
## 3924 0.02 0.30 0.02 0.51
## 3925 0.03 0.07 0.04 0.51
## 3926 0.02 0.00 0.07 0.51
## 3927 0.21 0.00 0.12 0.51
## 3928 0.19 0.01 0.04 0.51
## 3929 0.01 0.00 0.03 0.51
## 3930 0.11 0.00 0.02 0.51
## 3931 0.19 0.00 0.06 0.51
## 3932 0.00 0.51 0.00 0.51
## 3933 0.05 0.00 0.04 0.51
## 3934 0.24 0.00 0.08 0.51
## 3935 0.42 0.00 0.09 0.51
## 3936 0.13 0.00 0.01 0.51
## 3937 0.19 0.00 0.06 0.51
## 3938 0.01 0.00 0.04 0.51
## 3939 0.11 0.00 0.02 0.51
## 3940 0.19 0.00 0.06 0.51
## 3941 0.03 0.00 0.01 0.51
## 3942 0.17 0.05 0.06 0.51
## 3943 0.17 0.00 0.05 0.51
## 3944 0.25 0.02 0.09 0.51
## 3945 0.19 0.00 0.06 0.51
## 3946 0.33 0.00 0.06 0.51
## 3947 0.19 0.00 0.03 0.51
## 3948 0.13 0.00 0.01 0.50
## 3949 0.35 0.00 0.06 0.50
## 3950 0.01 0.00 0.04 0.50
## 3951 0.02 0.00 0.07 0.50
## 3952 0.19 0.00 0.06 0.50
## 3954 0.03 0.00 0.01 0.50
## 3955 0.15 0.04 0.04 0.50
## 3956 0.34 0.00 0.07 0.50
## 3957 0.12 0.00 0.07 0.50
## 3958 0.06 0.00 0.02 0.50
## 3959 0.12 0.11 0.05 0.50
## 3960 0.00 0.50 0.00 0.50
## 3961 0.02 0.32 0.02 0.50
## 3962 0.10 0.00 0.01 0.50
## 3963 0.19 0.00 0.03 0.50
## 3964 0.19 0.00 0.06 0.50
## 3965 0.19 0.00 0.06 0.50
## 3966 0.19 0.00 0.06 0.50
## 3967 0.03 0.00 0.01 0.50
## 3968 0.19 0.00 0.06 0.50
## 3969 0.19 0.00 0.06 0.50
## 3970 0.19 0.00 0.04 0.50
## 3971 0.26 0.00 0.04 0.50
## 3972 0.12 0.00 0.04 0.50
## 3973 0.03 0.00 0.04 0.50
## 3974 0.07 0.18 0.02 0.50
## 3975 0.11 0.07 0.05 0.50
## 3976 0.00 0.00 0.04 0.50
## 3977 0.09 0.00 0.01 0.50
## 3978 0.01 0.00 0.04 0.50
## 3979 0.19 0.00 0.06 0.50
## 3980 0.05 0.31 0.01 0.50
## 3981 0.04 0.17 0.02 0.50
## 3982 0.00 0.50 0.00 0.50
## 3983 0.18 0.00 0.05 0.50
## 3984 0.01 0.00 0.04 0.50
## 3985 0.02 0.03 0.04 0.50
## 3986 0.19 0.00 0.03 0.50
## 3987 0.10 0.08 0.02 0.50
## 3988 0.07 0.29 0.03 0.50
## 3989 0.25 0.01 0.13 0.50
## 3990 0.19 0.00 0.06 0.50
## 3991 0.22 0.00 0.08 0.50
## 3992 0.19 0.00 0.06 0.50
## 3993 0.16 0.00 0.04 0.50
## 3994 0.02 0.00 0.07 0.50
## 3995 0.00 0.00 0.03 0.50
## 3996 0.24 0.00 0.04 0.50
## 3997 0.00 0.00 0.04 0.50
## 3998 0.08 0.28 0.03 0.50
## 3999 0.17 0.00 0.05 0.50
## 4000 0.16 0.00 0.05 0.50
## 4001 0.10 0.00 0.01 0.50
## 4002 0.19 0.00 0.06 0.50
## 4003 0.00 0.50 0.00 0.50
## 4004 0.07 0.32 0.03 0.50
## 4005 0.19 0.00 0.06 0.50
## 4006 0.13 0.00 0.01 0.50
## 4007 0.00 0.50 0.00 0.50
## 4008 0.00 0.46 0.03 0.50
## 4009 0.02 0.00 0.07 0.50
## 4010 0.01 0.00 0.07 0.50
## 4011 0.20 0.00 0.08 0.50
## 4012 0.19 0.00 0.06 0.50
## 4013 0.20 0.01 0.04 0.50
## 4014 0.03 0.00 0.01 0.50
## 4015 0.19 0.00 0.06 0.50
## 4016 0.03 0.00 0.01 0.50
## 4017 0.03 0.00 0.01 0.50
## 4018 0.15 0.12 0.03 0.50
## 4019 0.00 0.00 0.04 0.49
## 4020 0.12 0.03 0.04 0.49
## 4021 0.17 0.13 0.03 0.49
## 4022 0.15 0.05 0.04 0.49
## 4023 0.02 0.00 0.04 0.49
## 4024 0.13 0.00 0.01 0.49
## 4025 0.20 0.00 0.08 0.49
## 4026 0.03 0.00 0.01 0.49
## 4027 0.00 0.49 0.00 0.49
## 4028 0.29 0.00 0.11 0.49
## 4029 0.01 0.00 0.07 0.49
## 4030 0.23 0.01 0.05 0.49
## 4031 0.13 0.02 0.04 0.49
## 4032 0.10 0.00 0.01 0.49
## 4033 0.15 0.07 0.03 0.49
## 4034 0.13 0.00 0.01 0.49
## 4035 0.13 0.00 0.02 0.49
## 4036 0.00 0.00 0.03 0.49
## 4037 0.00 0.00 0.04 0.49
## 4038 0.13 0.00 0.01 0.49
## 4039 0.10 0.24 0.03 0.49
## 4040 0.31 0.00 0.06 0.49
## 4041 0.00 0.49 0.00 0.49
## 4042 0.00 0.49 0.00 0.49
## 4043 0.11 0.00 0.02 0.49
## 4044 0.20 0.00 0.05 0.49
## 4045 0.12 0.16 0.03 0.49
## 4046 0.30 0.00 0.03 0.49
## 4047 0.18 0.03 0.05 0.49
## 4048 0.02 0.02 0.03 0.49
## 4049 0.23 0.00 0.07 0.49
## 4050 0.17 0.00 0.04 0.49
## 4051 0.00 0.49 0.00 0.49
## 4052 0.26 0.09 0.07 0.49
## 4053 0.19 0.00 0.06 0.49
## 4054 0.15 0.00 0.33 0.49
## 4055 0.19 0.00 0.06 0.49
## 4056 0.04 0.04 0.04 0.49
## 4057 0.17 0.00 0.04 0.49
## 4058 0.00 0.49 0.00 0.49
## 4059 0.30 0.00 0.05 0.49
## 4060 0.00 0.46 0.03 0.49
## 4061 0.01 0.00 0.22 0.49
## 4062 0.47 0.00 0.02 0.49
## 4063 0.45 0.00 0.03 0.49
## 4064 0.09 0.02 0.01 0.49
## 4065 0.19 0.00 0.06 0.49
## 4066 0.31 0.02 0.08 0.49
## 4067 0.11 0.00 0.02 0.49
## 4068 0.00 0.00 0.03 0.49
## 4069 0.18 0.00 0.03 0.49
## 4070 0.35 0.00 0.06 0.49
## 4071 0.16 0.02 0.04 0.49
## 4072 0.00 0.49 0.00 0.49
## 4073 0.10 0.05 0.03 0.49
## 4074 0.05 0.35 0.02 0.49
## 4075 0.00 0.49 0.00 0.49
## 4076 0.02 0.00 0.04 0.49
## 4077 0.45 0.00 0.03 0.49
## 4078 0.23 0.07 0.07 0.49
## 4079 0.06 0.00 0.04 0.49
## 4080 0.01 0.00 0.04 0.49
## 4081 0.21 0.01 0.08 0.49
## 4082 0.25 0.00 0.11 0.48
## 4083 0.02 0.00 0.04 0.48
## 4084 0.11 0.01 0.04 0.48
## 4085 0.48 0.00 0.00 0.48
## 4086 0.02 0.00 0.07 0.48
## 4087 0.18 0.05 0.09 0.48
## 4088 0.01 0.29 0.02 0.48
## 4089 0.13 0.00 0.01 0.48
## 4090 0.27 0.00 0.06 0.48
## 4091 0.03 0.00 0.04 0.48
## 4092 0.14 0.17 0.03 0.48
## 4093 0.13 0.00 0.01 0.48
## 4094 0.00 0.45 0.03 0.48
## 4095 0.11 0.00 0.02 0.48
## 4096 0.19 0.01 0.05 0.48
## 4097 0.03 0.00 0.01 0.48
## 4098 0.00 0.48 0.00 0.48
## 4099 0.17 0.00 0.05 0.48
## 4100 0.20 0.01 0.05 0.48
## 4101 0.24 0.00 0.05 0.48
## 4102 0.18 0.00 0.06 0.48
## 4103 0.02 0.00 0.07 0.48
## 4104 0.18 0.00 0.03 0.48
## 4105 0.03 0.00 0.04 0.48
## 4106 0.00 0.00 0.04 0.48
## 4107 0.18 0.00 0.03 0.48
## 4108 0.36 0.00 0.04 0.48
## 4109 0.15 0.00 0.10 0.48
## 4110 0.07 0.13 0.03 0.48
## 4111 0.21 0.00 0.05 0.48
## 4112 0.24 0.03 0.12 0.48
## 4113 0.18 0.00 0.06 0.48
## 4114 0.01 0.00 0.03 0.48
## 4115 0.04 0.00 0.00 0.48
## 4116 0.06 0.11 0.06 0.48
## 4117 0.02 0.00 0.07 0.48
## 4118 0.18 0.00 0.06 0.48
## 4119 0.26 0.00 0.04 0.48
## 4120 0.07 0.00 0.00 0.48
## 4121 0.18 0.00 0.03 0.48
## 4122 0.11 0.06 0.05 0.48
## 4123 0.43 0.00 0.05 0.48
## 4124 0.18 0.00 0.06 0.48
## 4125 0.24 0.00 0.05 0.48
## 4126 0.18 0.00 0.04 0.48
## 4127 0.25 0.01 0.05 0.48
## 4128 0.00 0.00 0.03 0.48
## 4129 0.01 0.07 0.02 0.48
## 4130 0.18 0.00 0.03 0.48
## 4131 0.02 0.00 0.04 0.48
## 4132 0.13 0.00 0.01 0.48
## 4133 0.01 0.31 0.02 0.48
## 4134 0.28 0.00 0.06 0.48
## 4135 0.06 0.27 0.02 0.48
## 4136 0.19 0.01 0.04 0.48
## 4137 0.11 0.00 0.02 0.48
## 4138 0.27 0.01 0.00 0.48
## 4139 0.05 0.00 0.24 0.48
## 4140 0.03 0.00 0.00 0.48
## 4141 0.40 0.00 0.01 0.48
## 4142 0.03 0.04 0.04 0.48
## 4143 0.18 0.00 0.06 0.48
## 4144 0.09 0.00 0.04 0.48
## 4145 0.27 0.00 0.06 0.48
## 4147 0.11 0.19 0.04 0.47
## 4148 0.02 0.00 0.01 0.47
## 4149 0.16 0.04 0.03 0.47
## 4150 0.02 0.00 0.00 0.47
## 4151 0.11 0.18 0.03 0.47
## 4153 0.16 0.01 0.07 0.47
## 4154 0.17 0.01 0.05 0.47
## 4155 0.18 0.00 0.06 0.47
## 4156 0.10 0.03 0.03 0.47
## 4157 0.02 0.00 0.06 0.47
## 4158 0.23 0.00 0.05 0.47
## 4159 0.01 0.00 0.04 0.47
## 4160 0.10 0.00 0.04 0.47
## 4161 0.00 0.47 0.00 0.47
## 4162 0.18 0.00 0.03 0.47
## 4163 0.04 0.03 0.04 0.47
## 4164 0.16 0.09 0.08 0.47
## 4165 0.17 0.00 0.08 0.47
## 4166 0.18 0.00 0.03 0.47
## 4167 0.18 0.00 0.06 0.47
## 4168 0.16 0.04 0.06 0.47
## 4169 0.28 0.00 0.04 0.47
## 4170 0.13 0.00 0.04 0.47
## 4171 0.00 0.47 0.00 0.47
## 4172 0.04 0.38 0.01 0.47
## 4173 0.01 0.00 0.04 0.47
## 4174 0.21 0.00 0.04 0.47
## 4175 0.00 0.46 0.01 0.47
## 4176 0.03 0.39 0.01 0.47
## 4177 0.18 0.00 0.06 0.47
## 4178 0.02 0.00 0.04 0.47
## 4179 0.30 0.05 0.12 0.47
## 4180 0.30 0.01 0.12 0.47
## 4181 0.45 0.00 0.02 0.47
## 4182 0.22 0.02 0.12 0.47
## 4183 0.00 0.47 0.00 0.47
## 4184 0.02 0.00 0.04 0.47
## 4185 0.25 0.00 0.08 0.47
## 4186 0.18 0.00 0.06 0.47
## 4187 0.06 0.08 0.05 0.47
## 4188 0.17 0.00 0.01 0.47
## 4189 0.08 0.00 0.01 0.47
## 4190 0.00 0.44 0.03 0.47
## 4191 0.08 0.00 0.01 0.47
## 4192 0.09 0.00 0.04 0.47
## 4193 0.29 0.00 0.18 0.47
## 4194 0.03 0.10 0.03 0.47
## 4195 0.02 0.00 0.00 0.47
## 4196 0.13 0.01 0.04 0.47
## 4197 0.13 0.00 0.04 0.47
## 4198 0.18 0.00 0.06 0.47
## 4199 0.10 0.00 0.02 0.47
## 4201 0.05 0.00 0.05 0.47
## 4202 0.33 0.00 0.10 0.47
## 4203 0.18 0.00 0.03 0.47
## 4204 0.00 0.00 0.04 0.47
## 4205 0.00 0.00 0.03 0.47
## 4206 0.00 0.47 0.00 0.47
## 4207 0.00 0.47 0.00 0.47
## 4208 0.38 0.00 0.09 0.47
## 4209 0.03 0.00 0.17 0.47
## 4210 0.18 0.00 0.06 0.47
## 4211 0.07 0.00 0.04 0.47
## 4212 0.12 0.00 0.01 0.47
## 4213 0.01 0.00 0.06 0.47
## 4214 0.01 0.46 0.00 0.47
## 4215 0.18 0.00 0.03 0.47
## 4216 0.41 0.00 0.06 0.47
## 4217 0.12 0.00 0.01 0.47
## 4218 0.15 0.00 0.07 0.47
## 4219 0.00 0.22 0.02 0.47
## 4220 0.01 0.00 0.03 0.47
## 4221 0.18 0.00 0.06 0.47
## 4222 0.09 0.00 0.01 0.47
## 4223 0.08 0.07 0.01 0.47
## 4224 0.01 0.00 0.00 0.47
## 4225 0.18 0.00 0.06 0.46
## 4226 0.18 0.00 0.06 0.46
## 4227 0.15 0.00 0.05 0.46
## 4228 0.12 0.00 0.01 0.46
## 4229 0.06 0.00 0.05 0.46
## 4230 0.09 0.12 0.01 0.46
## 4231 0.11 0.00 0.02 0.46
## 4232 0.12 0.00 0.01 0.46
## 4234 0.00 0.00 0.03 0.46
## 4235 0.17 0.00 0.03 0.46
## 4236 0.03 0.00 0.04 0.46
## 4237 0.17 0.01 0.07 0.46
## 4238 0.12 0.00 0.01 0.46
## 4239 0.15 0.06 0.05 0.46
## 4240 0.12 0.00 0.09 0.46
## 4241 0.00 0.46 0.00 0.46
## 4242 0.10 0.20 0.03 0.46
## 4243 0.00 0.46 0.00 0.46
## 4244 0.12 0.00 0.01 0.46
## 4245 0.29 0.00 0.05 0.46
## 4246 0.25 0.00 0.09 0.46
## 4247 0.12 0.00 0.01 0.46
## 4248 0.03 0.21 0.02 0.46
## 4249 0.03 0.02 0.04 0.46
## 4250 0.04 0.00 0.05 0.46
## 4251 0.16 0.00 0.04 0.46
## 4252 0.18 0.00 0.06 0.46
## 4253 0.01 0.00 0.06 0.46
## 4254 0.06 0.00 0.04 0.46
## 4255 0.09 0.00 0.04 0.46
## 4256 0.01 0.00 0.06 0.46
## 4257 0.12 0.00 0.01 0.46
## 4258 0.19 0.00 0.08 0.46
## 4259 0.17 0.00 0.03 0.46
## 4260 0.14 0.00 0.09 0.46
## 4261 0.00 0.00 0.03 0.46
## 4262 0.16 0.24 0.01 0.46
## 4263 0.17 0.00 0.03 0.46
## 4264 0.16 0.00 0.04 0.46
## 4265 0.01 0.00 0.06 0.46
## 4266 0.25 0.03 0.09 0.46
## 4267 0.12 0.00 0.04 0.46
## 4268 0.03 0.00 0.00 0.46
## 4269 0.18 0.00 0.06 0.46
## 4270 0.18 0.00 0.06 0.46
## 4271 0.12 0.00 0.01 0.46
## 4272 0.12 0.00 0.01 0.46
## 4273 0.19 0.00 0.07 0.46
## 4274 0.28 0.00 0.07 0.46
## 4275 0.01 0.12 0.03 0.46
## 4276 0.00 0.00 0.03 0.46
## 4277 0.09 0.00 0.04 0.46
## 4278 0.16 0.00 0.04 0.46
## 4279 0.05 0.00 0.03 0.46
## 4280 0.17 0.00 0.06 0.46
## 4281 0.00 0.46 0.00 0.46
## 4282 0.23 0.00 0.05 0.46
## 4283 0.24 0.00 0.12 0.46
## 4284 0.18 0.00 0.04 0.46
## 4285 0.12 0.00 0.04 0.46
## 4286 0.17 0.00 0.03 0.46
## 4287 0.13 0.00 0.04 0.46
## 4288 0.10 0.23 0.05 0.46
## 4289 0.17 0.00 0.03 0.46
## 4290 0.17 0.00 0.06 0.46
## 4291 0.38 0.01 0.06 0.46
## 4292 0.00 0.00 0.04 0.46
## 4293 0.17 0.00 0.05 0.46
## 4294 0.00 0.46 0.00 0.46
## 4295 0.11 0.17 0.04 0.46
## 4296 0.23 0.00 0.04 0.46
## 4297 0.00 0.45 0.01 0.46
## 4298 0.11 0.07 0.05 0.46
## 4299 0.00 0.00 0.03 0.46
## 4300 0.05 0.34 0.01 0.46
## 4301 0.20 0.00 0.04 0.46
## 4302 0.08 0.00 0.02 0.46
## 4303 0.00 0.00 0.03 0.46
## 4304 0.17 0.00 0.03 0.46
## 4305 0.02 0.01 0.04 0.46
## 4306 0.16 0.03 0.07 0.46
## 4307 0.35 0.00 0.10 0.46
## 4308 0.10 0.15 0.07 0.46
## 4309 0.00 0.45 0.00 0.45
## 4310 0.15 0.00 0.04 0.45
## 4311 0.03 0.38 0.02 0.45
## 4312 0.12 0.00 0.01 0.45
## 4313 0.13 0.09 0.08 0.45
## 4314 0.17 0.00 0.03 0.45
## 4315 0.21 0.00 0.04 0.45
## 4316 0.00 0.00 0.03 0.45
## 4317 0.00 0.45 0.00 0.45
## 4318 0.25 0.01 0.08 0.45
## 4319 0.00 0.45 0.00 0.45
## 4320 0.09 0.02 0.01 0.45
## 4321 0.06 0.00 0.03 0.45
## 4322 0.10 0.00 0.02 0.45
## 4323 0.00 0.45 0.00 0.45
## 4324 0.00 0.00 0.03 0.45
## 4325 0.06 0.16 0.01 0.45
## 4326 0.37 0.00 0.05 0.45
## 4327 0.17 0.00 0.06 0.45
## 4328 0.16 0.02 0.07 0.45
## 4329 0.03 0.00 0.03 0.45
## 4330 0.21 0.07 0.03 0.45
## 4332 0.01 0.00 0.03 0.45
## 4333 0.01 0.00 0.06 0.45
## 4334 0.26 0.00 0.05 0.45
## 4335 0.00 0.00 0.03 0.45
## 4336 0.03 0.00 0.03 0.45
## 4337 0.11 0.00 0.04 0.45
## 4338 0.03 0.00 0.00 0.45
## 4339 0.17 0.00 0.03 0.45
## 4340 0.17 0.00 0.06 0.45
## 4341 0.00 0.42 0.03 0.45
## 4342 0.28 0.00 0.05 0.45
## 4343 0.17 0.00 0.06 0.45
## 4344 0.15 0.00 0.04 0.45
## 4345 0.10 0.00 0.02 0.45
## 4346 0.02 0.00 0.03 0.45
## 4347 0.02 0.00 0.00 0.45
## 4348 0.13 0.00 0.06 0.45
## 4349 0.11 0.01 0.04 0.45
## 4350 0.01 0.00 0.03 0.45
## 4351 0.21 0.00 0.07 0.45
## 4352 0.00 0.00 0.03 0.45
## 4353 0.18 0.15 0.05 0.45
## 4354 0.17 0.00 0.03 0.45
## 4355 0.14 0.00 0.04 0.45
## 4356 0.26 0.05 0.05 0.45
## 4357 0.12 0.00 0.01 0.45
## 4358 0.26 0.00 0.08 0.45
## 4359 0.00 0.45 0.00 0.45
## 4360 0.02 0.32 0.01 0.45
## 4361 0.00 0.45 0.00 0.45
## 4362 0.22 0.10 0.05 0.45
## 4363 0.17 0.00 0.06 0.45
## 4364 0.00 0.45 0.00 0.45
## 4365 0.08 0.00 0.01 0.45
## 4366 0.08 0.00 0.01 0.45
## 4367 0.13 0.07 0.06 0.45
## 4368 0.14 0.00 0.04 0.45
## 4369 0.33 0.00 0.03 0.45
## 4370 0.01 0.00 0.03 0.45
## 4371 0.00 0.00 0.03 0.45
## 4372 0.12 0.00 0.01 0.45
## 4373 0.03 0.00 0.20 0.45
## 4374 0.00 0.42 0.03 0.45
## 4375 0.19 0.00 0.05 0.45
## 4376 0.14 0.01 0.04 0.45
## 4377 0.12 0.00 0.01 0.45
## 4378 0.24 0.00 0.05 0.45
## 4380 0.00 0.42 0.03 0.45
## 4382 0.06 0.00 0.39 0.45
## 4383 0.13 0.06 0.08 0.45
## 4384 0.00 0.42 0.03 0.45
## 4385 0.02 0.00 0.34 0.45
## 4386 0.02 0.00 0.03 0.45
## 4387 0.03 0.36 0.01 0.45
## 4388 0.05 0.00 0.05 0.45
## 4389 0.17 0.00 0.03 0.45
## 4390 0.10 0.00 0.02 0.45
## 4391 0.04 0.00 0.03 0.45
## 4392 0.26 0.00 0.14 0.45
## 4393 0.09 0.00 0.01 0.45
## 4394 0.02 0.00 0.00 0.45
## 4395 0.09 0.00 0.01 0.45
## 4396 0.00 0.31 0.01 0.45
## 4397 0.07 0.00 0.01 0.45
## 4398 0.17 0.00 0.03 0.45
## 4399 0.17 0.00 0.06 0.45
## 4400 0.09 0.19 0.03 0.45
## 4401 0.16 0.13 0.03 0.45
## 4402 0.22 0.00 0.05 0.45
## 4403 0.03 0.00 0.00 0.45
## 4404 0.17 0.00 0.06 0.45
## 4405 0.12 0.00 0.01 0.45
## 4406 0.22 0.00 0.12 0.45
## 4407 0.16 0.00 0.04 0.45
## 4408 0.00 0.00 0.03 0.45
## 4409 0.11 0.00 0.04 0.45
## 4410 0.17 0.00 0.06 0.44
## 4411 0.15 0.00 0.08 0.44
## 4412 0.01 0.00 0.06 0.44
## 4413 0.01 0.00 0.06 0.44
## 4414 0.33 0.02 0.03 0.44
## 4415 0.02 0.00 0.00 0.44
## 4416 0.17 0.00 0.06 0.44
## 4417 0.01 0.00 0.06 0.44
## 4418 0.21 0.00 0.04 0.44
## 4419 0.11 0.00 0.04 0.44
## 4420 0.17 0.00 0.06 0.44
## 4421 0.21 0.00 0.04 0.44
## 4422 0.17 0.00 0.06 0.44
## 4423 0.12 0.00 0.02 0.44
## 4424 0.00 0.00 0.03 0.44
## 4425 0.13 0.00 0.04 0.44
## 4426 0.20 0.03 0.08 0.44
## 4427 0.01 0.02 0.00 0.44
## 4428 0.17 0.00 0.06 0.44
## 4429 0.10 0.00 0.02 0.44
## 4430 0.13 0.01 0.04 0.44
## 4431 0.15 0.00 0.04 0.44
## 4432 0.00 0.41 0.03 0.44
## 4433 0.08 0.00 0.01 0.44
## 4434 0.01 0.00 0.06 0.44
## 4435 0.20 0.00 0.05 0.44
## 4436 0.15 0.00 0.04 0.44
## 4437 0.10 0.00 0.02 0.44
## 4438 0.00 0.43 0.01 0.44
## 4439 0.17 0.00 0.03 0.44
## 4440 0.22 0.00 0.04 0.44
## 4441 0.05 0.30 0.03 0.44
## 4442 0.10 0.11 0.05 0.44
## 4443 0.12 0.00 0.04 0.44
## 4444 0.10 0.00 0.02 0.44
## 4445 0.29 0.00 0.05 0.44
## 4446 0.01 0.00 0.03 0.44
## 4447 0.04 0.01 0.04 0.44
## 4448 0.00 0.44 0.00 0.44
## 4449 0.17 0.00 0.03 0.44
## 4450 0.17 0.00 0.03 0.44
## 4451 0.00 0.44 0.00 0.44
## 4452 0.03 0.15 0.10 0.44
## 4453 0.08 0.00 0.01 0.44
## 4454 0.14 0.06 0.04 0.44
## 4455 0.00 0.00 0.03 0.44
## 4456 0.18 0.00 0.07 0.44
## 4457 0.09 0.00 0.01 0.44
## 4458 0.00 0.44 0.00 0.44
## 4459 0.17 0.00 0.03 0.44
## 4460 0.00 0.00 0.03 0.44
## 4461 0.00 0.00 0.03 0.44
## 4462 0.07 0.12 0.06 0.44
## 4463 0.08 0.00 0.02 0.44
## 4464 0.00 0.44 0.00 0.44
## 4465 0.17 0.00 0.03 0.44
## 4466 0.00 0.43 0.01 0.44
## 4467 0.14 0.00 0.04 0.44
## 4468 0.09 0.00 0.01 0.44
## 4469 0.12 0.00 0.01 0.44
## 4471 0.00 0.44 0.00 0.44
## 4472 0.00 0.00 0.02 0.44
## 4474 0.12 0.00 0.06 0.44
## 4475 0.09 0.00 0.01 0.44
## 4476 0.12 0.00 0.01 0.44
## 4477 0.11 0.01 0.03 0.44
## 4478 0.09 0.00 0.01 0.44
## 4479 0.12 0.00 0.01 0.44
## 4480 0.01 0.00 0.06 0.44
## 4481 0.06 0.00 0.38 0.44
## 4482 0.00 0.44 0.00 0.44
## 4483 0.00 0.00 0.03 0.44
## 4484 0.00 0.44 0.00 0.44
## 4485 0.00 0.44 0.00 0.44
## 4486 0.17 0.00 0.06 0.44
## 4487 0.00 0.00 0.03 0.44
## 4488 0.01 0.00 0.06 0.44
## 4489 0.09 0.08 0.07 0.44
## 4490 0.00 0.26 0.01 0.44
## 4491 0.07 0.00 0.02 0.44
## 4492 0.00 0.00 0.03 0.44
## 4493 0.10 0.07 0.01 0.43
## 4494 0.18 0.00 0.07 0.43
## 4495 0.13 0.06 0.03 0.43
## 4496 0.01 0.00 0.03 0.43
## 4497 0.17 0.00 0.06 0.43
## 4498 0.02 0.00 0.00 0.43
## 4499 0.12 0.00 0.01 0.43
## 4500 0.00 0.00 0.26 0.43
## 4501 0.16 0.00 0.03 0.43
## 4502 0.09 0.00 0.02 0.43
## 4503 0.12 0.00 0.01 0.43
## 4504 0.36 0.00 0.06 0.43
## 4505 0.01 0.00 0.06 0.43
## 4506 0.21 0.01 0.08 0.43
## 4507 0.00 0.00 0.03 0.43
## 4508 0.00 0.43 0.00 0.43
## 4509 0.02 0.00 0.02 0.43
## 4510 0.18 0.00 0.04 0.43
## 4511 0.04 0.00 0.04 0.43
## 4512 0.03 0.00 0.03 0.43
## 4513 0.17 0.00 0.06 0.43
## 4514 0.09 0.14 0.03 0.43
## 4515 0.16 0.00 0.03 0.43
## 4516 0.20 0.00 0.07 0.43
## 4517 0.17 0.00 0.06 0.43
## 4518 0.02 0.00 0.00 0.43
## 4519 0.17 0.00 0.06 0.43
## 4520 0.03 0.10 0.02 0.43
## 4521 0.11 0.00 0.01 0.43
## 4522 0.07 0.17 0.01 0.43
## 4523 0.00 0.43 0.00 0.43
## 4524 0.15 0.01 0.04 0.43
## 4525 0.07 0.21 0.03 0.43
## 4526 0.19 0.00 0.04 0.43
## 4527 0.11 0.00 0.01 0.43
## 4528 0.04 0.00 0.24 0.43
## 4529 0.16 0.00 0.06 0.43
## 4530 0.15 0.00 0.04 0.43
## 4531 0.05 0.00 0.03 0.43
## 4532 0.14 0.00 0.01 0.43
## 4533 0.06 0.07 0.06 0.43
## 4534 0.22 0.00 0.06 0.43
## 4535 0.01 0.00 0.03 0.43
## 4536 0.03 0.04 0.03 0.43
## 4538 0.01 0.00 0.06 0.43
## 4539 0.38 0.00 0.05 0.43
## 4540 0.16 0.00 0.05 0.43
## 4541 0.07 0.24 0.03 0.43
## 4542 0.00 0.03 0.03 0.43
## 4543 0.07 0.25 0.02 0.43
## 4544 0.08 0.09 0.05 0.43
## 4545 0.19 0.00 0.08 0.43
## 4546 0.01 0.23 0.02 0.43
## 4547 0.16 0.00 0.05 0.43
## 4548 0.05 0.29 0.02 0.43
## 4549 0.34 0.00 0.07 0.43
## 4550 0.17 0.00 0.04 0.43
## 4551 0.09 0.00 0.01 0.43
## 4552 0.00 0.00 0.03 0.43
## 4553 0.01 0.00 0.03 0.43
## 4554 0.11 0.00 0.01 0.43
## 4555 0.18 0.00 0.03 0.43
## 4556 0.10 0.00 0.05 0.43
## 4557 0.08 0.00 0.01 0.43
## 4558 0.02 0.00 0.03 0.43
## 4559 0.00 0.00 0.03 0.43
## 4560 0.14 0.00 0.04 0.43
## 4561 0.16 0.00 0.05 0.43
## 4562 0.16 0.00 0.03 0.43
## 4563 0.17 0.00 0.07 0.43
## 4564 0.16 0.00 0.05 0.43
## 4565 0.17 0.00 0.10 0.43
## 4566 0.20 0.00 0.12 0.43
## 4567 0.00 0.00 0.03 0.42
## 4568 0.00 0.42 0.00 0.42
## 4569 0.00 0.42 0.00 0.42
## 4570 0.09 0.00 0.01 0.42
## 4571 0.16 0.00 0.04 0.42
## 4572 0.19 0.00 0.11 0.42
## 4573 0.02 0.16 0.02 0.42
## 4574 0.16 0.00 0.05 0.42
## 4575 0.05 0.22 0.01 0.42
## 4576 0.13 0.00 0.06 0.42
## 4577 0.01 0.00 0.06 0.42
## 4578 0.16 0.00 0.05 0.42
## 4579 0.09 0.00 0.01 0.42
## 4580 0.10 0.00 0.01 0.42
## 4581 0.15 0.00 0.04 0.42
## 4582 0.16 0.00 0.05 0.42
## 4583 0.16 0.00 0.03 0.42
## 4584 0.00 0.42 0.00 0.42
## 4585 0.16 0.00 0.03 0.42
## 4586 0.13 0.04 0.04 0.42
## 4587 0.08 0.00 0.01 0.42
## 4588 0.23 0.00 0.04 0.42
## 4589 0.00 0.41 0.01 0.42
## 4590 0.00 0.00 0.03 0.42
## 4591 0.04 0.01 0.04 0.42
## 4592 0.20 0.10 0.11 0.42
## 4593 0.16 0.00 0.03 0.42
## 4594 0.16 0.00 0.05 0.42
## 4595 0.16 0.00 0.03 0.42
## 4596 0.01 0.16 0.03 0.42
## 4597 0.19 0.00 0.04 0.42
## 4598 0.01 0.00 0.03 0.42
## 4599 0.00 0.00 0.00 0.42
## 4600 0.16 0.00 0.03 0.42
## 4601 0.00 0.42 0.00 0.42
## 4602 0.09 0.00 0.02 0.42
## 4603 0.11 0.00 0.01 0.42
## 4604 0.16 0.00 0.05 0.42
## 4605 0.16 0.00 0.05 0.42
## 4606 0.16 0.00 0.05 0.42
## 4607 0.03 0.04 0.03 0.42
## 4608 0.01 0.00 0.06 0.42
## 4609 0.17 0.03 0.04 0.42
## 4610 0.11 0.00 0.01 0.42
## 4611 0.02 0.00 0.03 0.42
## 4612 0.11 0.00 0.01 0.42
## 4613 0.16 0.00 0.03 0.42
## 4614 0.00 0.00 0.03 0.42
## 4615 0.00 0.39 0.03 0.42
## 4616 0.00 0.00 0.03 0.42
## 4617 0.00 0.42 0.00 0.42
## 4618 0.05 0.00 0.02 0.42
## 4619 0.00 0.42 0.00 0.42
## 4620 0.08 0.12 0.03 0.42
## 4621 0.16 0.00 0.05 0.42
## 4622 0.06 0.00 0.00 0.42
## 4623 0.07 0.00 0.00 0.42
## 4624 0.07 0.00 0.00 0.42
## 4625 0.00 0.39 0.03 0.42
## 4626 0.07 0.00 0.00 0.42
## 4627 0.08 0.00 0.01 0.42
## 4628 0.16 0.00 0.07 0.42
## 4629 0.25 0.02 0.06 0.42
## 4630 0.01 0.00 0.06 0.42
## 4631 0.15 0.00 0.03 0.42
## 4632 0.09 0.00 0.02 0.42
## 4633 0.08 0.00 0.01 0.42
## 4634 0.03 0.00 0.03 0.42
## 4635 0.00 0.42 0.00 0.42
## 4636 0.11 0.00 0.01 0.42
## 4637 0.16 0.00 0.05 0.42
## 4638 0.00 0.42 0.00 0.42
## 4639 0.08 0.00 0.01 0.42
## 4640 0.00 0.00 0.03 0.42
## 4641 0.16 0.00 0.05 0.42
## 4642 0.03 0.00 0.03 0.42
## 4643 0.03 0.00 0.03 0.42
## 4644 0.10 0.16 0.03 0.42
## 4645 0.00 0.00 0.03 0.42
## 4646 0.16 0.00 0.05 0.42
## 4647 0.08 0.00 0.01 0.42
## 4648 0.14 0.05 0.05 0.42
## 4649 0.12 0.03 0.05 0.42
## 4650 0.05 0.13 0.02 0.42
## 4651 0.02 0.35 0.03 0.42
## 4652 0.11 0.00 0.01 0.42
## 4653 0.09 0.00 0.01 0.42
## 4654 0.17 0.03 0.04 0.42
## 4655 0.09 0.00 0.01 0.42
## 4656 0.13 0.00 0.08 0.42
## 4657 0.00 0.00 0.03 0.42
## 4658 0.11 0.09 0.03 0.42
## 4659 0.12 0.11 0.03 0.42
## 4660 0.21 0.00 0.08 0.42
## 4661 0.00 0.25 0.01 0.42
## 4662 0.18 0.00 0.07 0.42
## 4663 0.09 0.00 0.01 0.42
## 4664 0.28 0.00 0.14 0.42
## 4665 0.16 0.00 0.05 0.42
## 4666 0.12 0.10 0.03 0.42
## 4667 0.11 0.12 0.03 0.42
## 4668 0.16 0.00 0.05 0.42
## 4669 0.09 0.04 0.07 0.42
## 4670 0.16 0.00 0.05 0.42
## 4671 0.00 0.42 0.00 0.42
## 4672 0.05 0.06 0.04 0.42
## 4673 0.10 0.00 0.02 0.42
## 4674 0.02 0.00 0.03 0.41
## 4675 0.16 0.00 0.05 0.41
## 4676 0.12 0.11 0.04 0.41
## 4677 0.12 0.00 0.04 0.41
## 4678 0.00 0.41 0.00 0.41
## 4679 0.16 0.00 0.05 0.41
## 4680 0.11 0.00 0.01 0.41
## 4681 0.16 0.00 0.05 0.41
## 4682 0.11 0.00 0.01 0.41
## 4683 0.07 0.15 0.06 0.41
## 4685 0.00 0.00 0.00 0.41
## 4686 0.21 0.05 0.11 0.41
## 4687 0.00 0.41 0.00 0.41
## 4688 0.16 0.00 0.03 0.41
## 4689 0.01 0.00 0.06 0.41
## 4690 0.39 0.00 0.02 0.41
## 4691 0.01 0.00 0.03 0.41
## 4692 0.16 0.00 0.05 0.41
## 4693 0.16 0.00 0.03 0.41
## 4694 0.13 0.00 0.02 0.41
## 4695 0.00 0.41 0.00 0.41
## 4696 0.16 0.00 0.03 0.41
## 4697 0.16 0.00 0.03 0.41
## 4698 0.00 0.39 0.03 0.41
## 4699 0.17 0.02 0.06 0.41
## 4700 0.00 0.41 0.00 0.41
## 4701 0.10 0.00 0.03 0.41
## 4702 0.15 0.00 0.09 0.41
## 4703 0.19 0.00 0.04 0.41
## 4704 0.22 0.00 0.05 0.41
## 4705 0.16 0.00 0.04 0.41
## 4706 0.16 0.00 0.05 0.41
## 4707 0.00 0.41 0.00 0.41
## 4708 0.03 0.04 0.03 0.41
## 4709 0.08 0.09 0.04 0.41
## 4710 0.16 0.00 0.05 0.41
## 4711 0.08 0.00 0.06 0.41
## 4712 0.00 0.41 0.00 0.41
## 4713 0.01 0.00 0.06 0.41
## 4714 0.10 0.00 0.04 0.41
## 4715 0.03 0.00 0.03 0.41
## 4716 0.00 0.00 0.04 0.41
## 4717 0.16 0.00 0.03 0.41
## 4718 0.23 0.00 0.09 0.41
## 4719 0.00 0.41 0.00 0.41
## 4720 0.10 0.00 0.07 0.41
## 4721 0.02 0.00 0.03 0.41
## 4722 0.00 0.41 0.00 0.41
## 4723 0.03 0.00 0.03 0.41
## 4724 0.07 0.00 0.06 0.41
## 4725 0.08 0.00 0.03 0.41
## 4726 0.16 0.00 0.03 0.41
## 4727 0.14 0.00 0.04 0.41
## 4728 0.00 0.41 0.00 0.41
## 4729 0.02 0.25 0.04 0.41
## 4730 0.07 0.00 0.00 0.41
## 4731 0.27 0.00 0.06 0.41
## 4732 0.16 0.00 0.05 0.41
## 4733 0.26 0.00 0.09 0.41
## 4734 0.16 0.00 0.05 0.41
## 4735 0.09 0.16 0.03 0.41
## 4736 0.00 0.00 0.02 0.41
## 4737 0.19 0.00 0.04 0.41
## 4738 0.13 0.00 0.04 0.41
## 4739 0.00 0.38 0.03 0.41
## 4740 0.15 0.00 0.07 0.41
## 4741 0.23 0.00 0.04 0.41
## 4742 0.11 0.00 0.04 0.41
## 4743 0.18 0.00 0.07 0.41
## 4744 0.06 0.00 0.20 0.41
## 4745 0.10 0.08 0.03 0.41
## 4746 0.12 0.04 0.03 0.41
## 4747 0.02 0.01 0.03 0.41
## 4748 0.08 0.19 0.03 0.41
## 4749 0.16 0.00 0.05 0.41
## 4750 0.08 0.00 0.01 0.41
## 4751 0.01 0.00 0.03 0.41
## 4752 0.01 0.00 0.06 0.41
## 4753 0.00 0.41 0.00 0.41
## 4754 0.15 0.00 0.03 0.41
## 4755 0.10 0.12 0.03 0.41
## 4756 0.01 0.00 0.06 0.41
## 4757 0.00 0.40 0.01 0.41
## 4758 0.02 0.00 0.03 0.41
## 4759 0.16 0.00 0.04 0.41
## 4760 0.04 0.00 0.03 0.41
## 4761 0.12 0.00 0.06 0.41
## 4762 0.09 0.00 0.03 0.41
## 4763 0.17 0.00 0.06 0.41
## 4764 0.00 0.41 0.00 0.41
## 4765 0.02 0.00 0.16 0.41
## 4766 0.00 0.41 0.00 0.41
## 4767 0.01 0.00 0.06 0.41
## 4768 0.00 0.41 0.00 0.41
## 4769 0.16 0.00 0.05 0.41
## 4770 0.13 0.00 0.04 0.41
## 4771 0.11 0.00 0.04 0.41
## 4772 0.15 0.00 0.03 0.41
## 4773 0.01 0.00 0.06 0.41
## 4774 0.31 0.00 0.07 0.41
## 4775 0.12 0.06 0.05 0.41
## 4776 0.18 0.00 0.04 0.41
## 4777 0.00 0.00 0.03 0.41
## 4778 0.15 0.00 0.05 0.41
## 4779 0.15 0.00 0.03 0.40
## 4780 0.15 0.00 0.03 0.40
## 4781 0.02 0.00 0.00 0.40
## 4782 0.26 0.00 0.07 0.40
## 4783 0.13 0.26 0.01 0.40
## 4784 0.01 0.00 0.03 0.40
## 4785 0.02 0.00 0.00 0.40
## 4786 0.20 0.00 0.04 0.40
## 4787 0.06 0.16 0.06 0.40
## 4788 0.03 0.01 0.03 0.40
## 4789 0.08 0.00 0.01 0.40
## 4790 0.04 0.01 0.04 0.40
## 4791 0.20 0.00 0.08 0.40
## 4793 0.00 0.40 0.00 0.40
## 4794 0.21 0.00 0.08 0.40
## 4795 0.00 0.40 0.00 0.40
## 4796 0.01 0.00 0.05 0.40
## 4797 0.15 0.00 0.05 0.40
## 4799 0.00 0.00 0.03 0.40
## 4800 0.00 0.40 0.00 0.40
## 4801 0.20 0.02 0.08 0.40
## 4802 0.02 0.00 0.00 0.40
## 4803 0.15 0.00 0.05 0.40
## 4804 0.08 0.00 0.01 0.40
## 4805 0.03 0.04 0.03 0.40
## 4806 0.01 0.09 0.03 0.40
## 4807 0.00 0.40 0.00 0.40
## 4808 0.01 0.00 0.03 0.40
## 4809 0.15 0.00 0.05 0.40
## 4810 0.11 0.00 0.01 0.40
## 4811 0.00 0.38 0.03 0.40
## 4812 0.07 0.07 0.01 0.40
## 4813 0.15 0.00 0.03 0.40
## 4814 0.08 0.00 0.01 0.40
## 4815 0.08 0.00 0.04 0.40
## 4816 0.00 0.40 0.00 0.40
## 4817 0.06 0.00 0.03 0.40
## 4818 0.03 0.00 0.03 0.40
## 4819 0.08 0.08 0.03 0.40
## 4820 0.00 0.00 0.03 0.40
## 4821 0.14 0.00 0.04 0.40
## 4822 0.00 0.40 0.00 0.40
## 4823 0.15 0.00 0.03 0.40
## 4824 0.19 0.00 0.07 0.40
## 4825 0.01 0.00 0.27 0.40
## 4826 0.00 0.40 0.00 0.40
## 4827 0.07 0.00 0.00 0.40
## 4828 0.07 0.00 0.00 0.40
## 4829 0.03 0.00 0.00 0.40
## 4830 0.07 0.00 0.00 0.40
## 4831 0.15 0.00 0.05 0.40
## 4832 0.01 0.00 0.05 0.40
## 4833 0.15 0.00 0.03 0.40
## 4834 0.10 0.00 0.03 0.40
## 4835 0.30 0.00 0.04 0.40
## 4836 0.15 0.00 0.05 0.40
## 4837 0.01 0.00 0.05 0.40
## 4838 0.17 0.00 0.04 0.40
## 4839 0.15 0.00 0.05 0.40
## 4840 0.17 0.00 0.06 0.40
## 4841 0.11 0.00 0.01 0.40
## 4842 0.01 0.00 0.00 0.40
## 4843 0.07 0.00 0.01 0.40
## 4844 0.08 0.00 0.01 0.40
## 4845 0.14 0.00 0.04 0.40
## 4846 0.14 0.00 0.02 0.40
## 4847 0.15 0.00 0.03 0.40
## 4848 0.00 0.39 0.01 0.40
## 4849 0.11 0.00 0.01 0.40
## 4850 0.03 0.00 0.03 0.40
## 4851 0.05 0.00 0.03 0.40
## 4852 0.16 0.00 0.04 0.40
## 4853 0.14 0.04 0.03 0.40
## 4854 0.23 0.00 0.05 0.40
## 4855 0.15 0.00 0.03 0.40
## 4856 0.00 0.40 0.00 0.40
## 4857 0.12 0.01 0.03 0.40
## 4858 0.16 0.00 0.07 0.40
## 4860 0.08 0.00 0.01 0.40
## 4861 0.03 0.00 0.02 0.40
## 4862 0.00 0.37 0.03 0.40
## 4863 0.04 0.24 0.02 0.40
## 4864 0.15 0.00 0.05 0.40
## 4865 0.15 0.00 0.03 0.40
## 4867 0.12 0.00 0.06 0.40
## 4868 0.32 0.00 0.07 0.40
## 4869 0.00 0.40 0.00 0.40
## 4870 0.08 0.00 0.01 0.40
## 4871 0.10 0.00 0.03 0.40
## 4872 0.00 0.00 0.03 0.40
## 4873 0.19 0.00 0.03 0.40
## 4874 0.06 0.01 0.03 0.40
## 4875 0.00 0.40 0.00 0.40
## 4876 0.13 0.00 0.04 0.40
## 4877 0.01 0.00 0.05 0.40
## 4878 0.15 0.00 0.05 0.39
## 4879 0.15 0.00 0.07 0.39
## 4880 0.15 0.00 0.05 0.39
## 4881 0.11 0.00 0.02 0.39
## 4882 0.23 0.01 0.09 0.39
## 4883 0.17 0.00 0.03 0.39
## 4884 0.15 0.01 0.05 0.39
## 4885 0.18 0.00 0.06 0.39
## 4886 0.01 0.00 0.00 0.39
## 4887 0.00 0.00 0.03 0.39
## 4888 0.14 0.03 0.06 0.39
## 4889 0.18 0.00 0.07 0.39
## 4890 0.01 0.00 0.03 0.39
## 4891 0.00 0.00 0.03 0.39
## 4892 0.00 0.39 0.00 0.39
## 4893 0.15 0.00 0.03 0.39
## 4894 0.15 0.00 0.03 0.39
## 4895 0.02 0.00 0.00 0.39
## 4896 0.00 0.39 0.00 0.39
## 4897 0.10 0.00 0.01 0.39
## 4898 0.02 0.00 0.03 0.39
## 4899 0.01 0.01 0.05 0.39
## 4900 0.17 0.00 0.09 0.39
## 4901 0.08 0.00 0.01 0.39
## 4902 0.14 0.04 0.04 0.39
## 4903 0.00 0.39 0.00 0.39
## 4904 0.00 0.00 0.00 0.39
## 4905 0.26 0.00 0.05 0.39
## 4906 0.00 0.00 0.03 0.39
## 4907 0.12 0.00 0.03 0.39
## 4908 0.07 0.03 0.06 0.39
## 4909 0.02 0.00 0.00 0.39
## 4910 0.00 0.00 0.03 0.39
## 4911 0.05 0.16 0.04 0.39
## 4912 0.15 0.00 0.03 0.39
## 4913 0.00 0.00 0.03 0.39
## 4914 0.08 0.00 0.01 0.39
## 4915 0.16 0.00 0.05 0.39
## 4916 0.01 0.03 0.05 0.39
## 4917 0.00 0.37 0.03 0.39
## 4918 0.04 0.15 0.02 0.39
## 4919 0.17 0.01 0.04 0.39
## 4920 0.19 0.00 0.06 0.39
## 4921 0.13 0.00 0.04 0.39
## 4922 0.17 0.00 0.03 0.39
## 4923 0.02 0.00 0.03 0.39
## 4924 0.17 0.00 0.04 0.39
## 4925 0.06 0.05 0.03 0.39
## 4926 0.00 0.39 0.00 0.39
## 4927 0.32 0.00 0.07 0.39
## 4928 0.08 0.00 0.01 0.39
## 4929 0.01 0.00 0.07 0.39
## 4930 0.10 0.00 0.01 0.39
## 4931 0.03 0.00 0.00 0.39
## 4932 0.00 0.34 0.05 0.39
## 4933 0.07 0.00 0.00 0.39
## 4934 0.07 0.00 0.00 0.39
## 4936 0.06 0.09 0.01 0.39
## 4937 0.32 0.00 0.07 0.39
## 4938 0.15 0.00 0.05 0.39
## 4939 0.00 0.00 0.03 0.39
## 4940 0.13 0.06 0.04 0.39
## 4941 0.15 0.00 0.05 0.39
## 4942 0.00 0.00 0.02 0.39
## 4943 0.12 0.00 0.04 0.39
## 4944 0.14 0.00 0.03 0.39
## 4945 0.00 0.39 0.00 0.39
## 4946 0.15 0.00 0.05 0.39
## 4947 0.02 0.00 0.04 0.39
## 4948 0.11 0.00 0.04 0.39
## 4949 0.24 0.00 0.08 0.39
## 4950 0.02 0.00 0.03 0.39
## 4951 0.15 0.00 0.05 0.39
## 4952 0.15 0.00 0.07 0.39
## 4953 0.00 0.39 0.00 0.39
## 4954 0.13 0.00 0.03 0.39
## 4955 0.00 0.39 0.00 0.39
## 4956 0.01 0.00 0.03 0.39
## 4957 0.01 0.00 0.03 0.39
## 4958 0.10 0.00 0.01 0.39
## 4959 0.15 0.00 0.05 0.39
## 4960 0.00 0.00 0.04 0.39
## 4961 0.00 0.39 0.00 0.39
## 4962 0.15 0.00 0.05 0.39
## 4963 0.08 0.00 0.01 0.39
## 4964 0.09 0.00 0.03 0.39
## 4965 0.00 0.00 0.03 0.39
## 4966 0.15 0.00 0.05 0.39
## 4967 0.15 0.00 0.05 0.39
## 4968 0.02 0.00 0.00 0.39
## 4969 0.00 0.36 0.03 0.39
## 4970 0.05 0.20 0.01 0.39
## 4971 0.08 0.01 0.03 0.39
## 4972 0.15 0.00 0.04 0.39
## 4973 0.36 0.00 0.02 0.39
## 4974 0.10 0.00 0.01 0.39
## 4975 0.00 0.00 0.00 0.38
## 4976 0.17 0.03 0.06 0.38
## 4977 0.15 0.00 0.05 0.38
## 4978 0.04 0.28 0.01 0.38
## 4979 0.00 0.20 0.01 0.38
## 4980 0.15 0.00 0.03 0.38
## 4981 0.23 0.00 0.07 0.38
## 4982 0.00 0.38 0.00 0.38
## 4983 0.05 0.25 0.02 0.38
## 4984 0.00 0.38 0.00 0.38
## 4985 0.15 0.00 0.03 0.38
## 4986 0.05 0.12 0.05 0.38
## 4987 0.00 0.36 0.03 0.38
## 4988 0.11 0.00 0.04 0.38
## 4989 0.08 0.00 0.01 0.38
## 4990 0.15 0.00 0.05 0.38
## 4991 0.00 0.00 0.03 0.38
## 4992 0.12 0.06 0.03 0.38
## 4993 0.00 0.38 0.00 0.38
## 4994 0.18 0.00 0.03 0.38
## 4995 0.07 0.00 0.04 0.38
## 4996 0.35 0.00 0.03 0.38
## 4997 0.01 0.37 0.00 0.38
## 4998 0.17 0.00 0.07 0.38
## 4999 0.10 0.00 0.01 0.38
## 5000 0.04 0.19 0.03 0.38
## 5001 0.15 0.00 0.05 0.38
## 5002 0.08 0.00 0.01 0.38
## 5003 0.12 0.00 0.03 0.38
## 5004 0.00 0.31 0.01 0.38
## 5005 0.00 0.38 0.00 0.38
## 5006 0.10 0.00 0.01 0.38
## 5007 0.00 0.00 0.28 0.38
## 5008 0.15 0.00 0.05 0.38
## 5009 0.05 0.00 0.04 0.38
## 5010 0.00 0.38 0.00 0.38
## 5011 0.23 0.00 0.04 0.38
## 5012 0.00 0.00 0.03 0.38
## 5013 0.08 0.00 0.01 0.38
## 5014 0.11 0.00 0.06 0.38
## 5015 0.08 0.17 0.03 0.38
## 5016 0.20 0.00 0.03 0.38
## 5017 0.22 0.00 0.04 0.38
## 5018 0.14 0.00 0.02 0.38
## 5019 0.00 0.36 0.02 0.38
## 5020 0.15 0.00 0.05 0.38
## 5021 0.15 0.00 0.05 0.38
## 5022 0.00 0.38 0.00 0.38
## 5023 0.08 0.00 0.01 0.38
## 5024 0.15 0.00 0.05 0.38
## 5025 0.15 0.02 0.06 0.38
## 5026 0.10 0.00 0.01 0.38
## 5027 0.11 0.10 0.02 0.38
## 5028 0.15 0.00 0.05 0.38
## 5029 0.03 0.00 0.03 0.38
## 5030 0.04 0.00 0.04 0.38
## 5031 0.00 0.36 0.02 0.38
## 5032 0.05 0.25 0.02 0.38
## 5033 0.15 0.00 0.05 0.38
## 5034 0.00 0.38 0.00 0.38
## 5035 0.21 0.00 0.04 0.38
## 5036 0.15 0.00 0.05 0.38
## 5037 0.01 0.00 0.05 0.38
## 5038 0.00 0.00 0.17 0.38
## 5039 0.02 0.00 0.02 0.38
## 5040 0.15 0.01 0.06 0.38
## 5041 0.12 0.00 0.07 0.38
## 5042 0.23 0.00 0.04 0.38
## 5043 0.00 0.38 0.00 0.38
## 5044 0.14 0.00 0.02 0.38
## 5045 0.20 0.00 0.04 0.38
## 5046 0.08 0.00 0.01 0.38
## 5047 0.01 0.00 0.05 0.38
## 5048 0.14 0.00 0.02 0.38
## 5049 0.00 0.38 0.00 0.38
## 5050 0.15 0.00 0.09 0.38
## 5051 0.06 0.07 0.01 0.38
## 5052 0.00 0.38 0.00 0.38
## 5053 0.05 0.20 0.01 0.38
## 5054 0.14 0.00 0.02 0.38
## 5055 0.14 0.00 0.02 0.38
## 5056 0.09 0.00 0.03 0.38
## 5057 0.29 0.01 0.05 0.38
## 5058 0.16 0.00 0.06 0.38
## 5059 0.13 0.00 0.06 0.38
## 5060 0.00 0.00 0.26 0.38
## 5061 0.03 0.00 0.03 0.38
## 5063 0.00 0.00 0.03 0.38
## 5064 0.12 0.00 0.03 0.38
## 5065 0.02 0.00 0.00 0.38
## 5066 0.00 0.00 0.02 0.38
## 5067 0.05 0.25 0.03 0.38
## 5068 0.14 0.00 0.05 0.38
## 5069 0.08 0.00 0.01 0.38
## 5070 0.00 0.38 0.00 0.38
## 5071 0.07 0.00 0.07 0.38
## 5072 0.20 0.00 0.06 0.38
## 5073 0.01 0.00 0.03 0.38
## 5074 0.13 0.11 0.02 0.38
## 5075 0.01 0.06 0.02 0.38
## 5076 0.02 0.21 0.01 0.38
## 5077 0.03 0.00 0.03 0.38
## 5078 0.17 0.00 0.06 0.38
## 5080 0.08 0.00 0.01 0.38
## 5081 0.03 0.00 0.03 0.38
## 5082 0.00 0.00 0.03 0.37
## 5083 0.02 0.00 0.00 0.37
## 5084 0.00 0.00 0.03 0.37
## 5085 0.07 0.19 0.02 0.37
## 5086 0.00 0.00 0.03 0.37
## 5087 0.12 0.00 0.04 0.37
## 5088 0.19 0.00 0.07 0.37
## 5089 0.03 0.13 0.02 0.37
## 5090 0.17 0.00 0.07 0.37
## 5091 0.03 0.00 0.03 0.37
## 5092 0.00 0.35 0.02 0.37
## 5093 0.00 0.00 0.02 0.37
## 5094 0.21 0.00 0.04 0.37
## 5095 0.00 0.00 0.21 0.37
## 5096 0.07 0.00 0.01 0.37
## 5097 0.15 0.03 0.06 0.37
## 5098 0.12 0.04 0.04 0.37
## 5099 0.08 0.00 0.01 0.37
## 5100 0.00 0.00 0.03 0.37
## 5101 0.00 0.00 0.03 0.37
## 5102 0.06 0.21 0.02 0.37
## 5103 0.14 0.00 0.05 0.37
## 5104 0.17 0.00 0.04 0.37
## 5105 0.14 0.00 0.03 0.37
## 5106 0.00 0.37 0.00 0.37
## 5107 0.01 0.00 0.03 0.37
## 5108 0.13 0.00 0.03 0.37
## 5109 0.07 0.00 0.01 0.37
## 5110 0.14 0.00 0.05 0.37
## 5111 0.14 0.00 0.05 0.37
## 5112 0.18 0.01 0.10 0.37
## 5113 0.14 0.00 0.05 0.37
## 5114 0.14 0.00 0.05 0.37
## 5115 0.00 0.00 0.03 0.37
## 5116 0.00 0.37 0.00 0.37
## 5117 0.00 0.37 0.00 0.37
## 5118 0.13 0.00 0.03 0.37
## 5119 0.18 0.00 0.06 0.37
## 5120 0.01 0.00 0.05 0.37
## 5121 0.00 0.35 0.02 0.37
## 5122 0.12 0.01 0.03 0.37
## 5123 0.20 0.00 0.11 0.37
## 5124 0.00 0.00 0.02 0.37
## 5125 0.00 0.32 0.05 0.37
## 5126 0.06 0.00 0.00 0.37
## 5127 0.06 0.00 0.00 0.37
## 5128 0.02 0.00 0.00 0.37
## 5129 0.07 0.00 0.01 0.37
## 5130 0.19 0.02 0.10 0.37
## 5131 0.17 0.00 0.06 0.37
## 5132 0.17 0.00 0.10 0.37
## 5133 0.33 0.00 0.03 0.37
## 5134 0.07 0.00 0.01 0.37
## 5135 0.00 0.37 0.00 0.37
## 5136 0.10 0.00 0.01 0.37
## 5137 0.17 0.01 0.07 0.37
## 5138 0.15 0.00 0.04 0.37
## 5139 0.00 0.36 0.01 0.37
## 5140 0.18 0.02 0.06 0.37
## 5141 0.00 0.00 0.03 0.37
## 5142 0.00 0.00 0.03 0.37
## 5143 0.00 0.37 0.00 0.37
## 5144 0.13 0.02 0.04 0.37
## 5145 0.00 0.00 0.00 0.37
## 5146 0.08 0.15 0.02 0.37
## 5147 0.01 0.02 0.03 0.37
## 5148 0.00 0.37 0.00 0.37
## 5149 0.07 0.18 0.02 0.37
## 5150 0.00 0.00 0.03 0.37
## 5151 0.22 0.00 0.03 0.37
## 5152 0.21 0.00 0.07 0.37
## 5153 0.00 0.37 0.00 0.37
## 5154 0.19 0.00 0.07 0.37
## 5155 0.00 0.37 0.00 0.37
## 5156 0.12 0.00 0.05 0.37
## 5157 0.13 0.00 0.06 0.37
## 5158 0.05 0.00 0.07 0.37
## 5159 0.32 0.00 0.04 0.37
## 5160 0.01 0.00 0.05 0.37
## 5161 0.00 0.00 0.03 0.37
## 5162 0.02 0.00 0.03 0.36
## 5164 0.08 0.00 0.03 0.36
## 5165 0.00 0.00 0.03 0.36
## 5166 0.07 0.00 0.01 0.36
## 5167 0.00 0.36 0.00 0.36
## 5168 0.06 0.21 0.02 0.36
## 5169 0.00 0.36 0.00 0.36
## 5170 0.09 0.01 0.03 0.36
## 5171 0.14 0.00 0.05 0.36
## 5173 0.17 0.05 0.05 0.36
## 5174 0.00 0.36 0.00 0.36
## 5175 0.00 0.36 0.00 0.36
## 5176 0.00 0.36 0.00 0.36
## 5177 0.14 0.00 0.05 0.36
## 5178 0.14 0.00 0.05 0.36
## 5179 0.14 0.00 0.05 0.36
## 5180 0.00 0.36 0.00 0.36
## 5181 0.01 0.16 0.02 0.36
## 5182 0.19 0.00 0.10 0.36
## 5183 0.16 0.00 0.03 0.36
## 5184 0.13 0.00 0.03 0.36
## 5185 0.09 0.01 0.05 0.36
## 5186 0.09 0.14 0.03 0.36
## 5187 0.14 0.00 0.05 0.36
## 5188 0.09 0.00 0.03 0.36
## 5189 0.08 0.04 0.03 0.36
## 5190 0.14 0.00 0.02 0.36
## 5191 0.03 0.27 0.02 0.36
## 5192 0.10 0.00 0.01 0.36
## 5193 0.11 0.08 0.04 0.36
## 5194 0.00 0.00 0.03 0.36
## 5195 0.00 0.34 0.02 0.36
## 5198 0.05 0.00 0.03 0.36
## 5199 0.01 0.00 0.03 0.36
## 5200 0.13 0.00 0.03 0.36
## 5201 0.00 0.36 0.00 0.36
## 5202 0.14 0.00 0.02 0.36
## 5203 0.14 0.00 0.05 0.36
## 5204 0.08 0.00 0.01 0.36
## 5205 0.10 0.00 0.01 0.36
## 5206 0.02 0.23 0.04 0.36
## 5207 0.06 0.00 0.00 0.36
## 5208 0.06 0.00 0.00 0.36
## 5209 0.02 0.16 0.05 0.36
## 5210 0.00 0.00 0.03 0.36
## 5211 0.14 0.00 0.02 0.36
## 5212 0.11 0.00 0.05 0.36
## 5213 0.10 0.00 0.01 0.36
## 5214 0.00 0.00 0.03 0.36
## 5215 0.08 0.00 0.01 0.36
## 5216 0.20 0.00 0.04 0.36
## 5217 0.00 0.35 0.01 0.36
## 5218 0.00 0.36 0.00 0.36
## 5219 0.09 0.01 0.03 0.36
## 5220 0.14 0.00 0.02 0.36
## 5221 0.03 0.00 0.02 0.36
## 5222 0.00 0.00 0.03 0.36
## 5223 0.06 0.00 0.03 0.36
## 5224 0.08 0.00 0.01 0.36
## 5225 0.00 0.00 0.02 0.36
## 5226 0.00 0.36 0.00 0.36
## 5227 0.10 0.00 0.03 0.36
## 5228 0.25 0.00 0.04 0.36
## 5229 0.14 0.00 0.05 0.36
## 5230 0.00 0.36 0.00 0.36
## 5231 0.12 0.00 0.06 0.36
## 5232 0.17 0.00 0.07 0.36
## 5233 0.00 0.36 0.00 0.36
## 5234 0.09 0.00 0.03 0.36
## 5235 0.14 0.00 0.05 0.36
## 5236 0.14 0.00 0.05 0.36
## 5237 0.00 0.33 0.02 0.36
## 5238 0.00 0.36 0.00 0.36
## 5239 0.32 0.00 0.03 0.36
## 5240 0.00 0.35 0.01 0.36
## 5242 0.01 0.00 0.02 0.36
## 5243 0.25 0.00 0.05 0.36
## 5244 0.11 0.00 0.05 0.36
## 5245 0.31 0.00 0.05 0.36
## 5246 0.00 0.33 0.02 0.36
## 5247 0.02 0.00 0.00 0.36
## 5248 0.04 0.00 0.02 0.36
## 5249 0.08 0.00 0.01 0.36
## 5250 0.10 0.00 0.03 0.36
## 5251 0.00 0.36 0.00 0.36
## 5252 0.13 0.00 0.02 0.36
## 5253 0.00 0.36 0.00 0.36
## 5254 0.06 0.00 0.04 0.36
## 5255 0.02 0.11 0.02 0.36
## 5256 0.14 0.00 0.05 0.36
## 5257 0.07 0.00 0.05 0.36
## 5258 0.14 0.00 0.05 0.36
## 5259 0.26 0.00 0.09 0.36
## 5260 0.00 0.36 0.00 0.36
## 5261 0.00 0.00 0.02 0.36
## 5262 0.04 0.23 0.02 0.36
## 5263 0.10 0.00 0.01 0.36
## 5264 0.16 0.00 0.04 0.35
## 5265 0.01 0.00 0.03 0.35
## 5266 0.13 0.00 0.02 0.35
## 5267 0.02 0.03 0.03 0.35
## 5268 0.09 0.00 0.01 0.35
## 5269 0.09 0.00 0.03 0.35
## 5270 0.14 0.00 0.05 0.35
## 5271 0.07 0.00 0.01 0.35
## 5272 0.06 0.19 0.02 0.35
## 5273 0.00 0.35 0.00 0.35
## 5274 0.18 0.00 0.07 0.35
## 5275 0.03 0.08 0.02 0.35
## 5276 0.14 0.00 0.05 0.35
## 5277 0.07 0.00 0.03 0.35
## 5278 0.00 0.35 0.00 0.35
## 5279 0.20 0.00 0.07 0.35
## 5280 0.00 0.35 0.00 0.35
## 5281 0.16 0.00 0.06 0.35
## 5282 0.12 0.01 0.03 0.35
## 5283 0.13 0.00 0.05 0.35
## 5284 0.09 0.00 0.01 0.35
## 5285 0.08 0.00 0.01 0.35
## 5286 0.18 0.00 0.04 0.35
## 5287 0.00 0.35 0.00 0.35
## 5288 0.04 0.23 0.01 0.35
## 5289 0.10 0.07 0.03 0.35
## 5290 0.01 0.30 0.00 0.35
## 5291 0.15 0.00 0.04 0.35
## 5292 0.00 0.35 0.00 0.35
## 5293 0.11 0.05 0.04 0.35
## 5294 0.13 0.00 0.04 0.35
## 5295 0.02 0.28 0.02 0.35
## 5296 0.09 0.00 0.01 0.35
## 5297 0.00 0.35 0.00 0.35
## 5298 0.08 0.04 0.04 0.35
## 5299 0.02 0.00 0.02 0.35
## 5300 0.03 0.00 0.03 0.35
## 5301 0.18 0.00 0.04 0.35
## 5302 0.10 0.00 0.03 0.35
## 5304 0.00 0.09 0.02 0.35
## 5305 0.00 0.29 0.06 0.35
## 5306 0.19 0.03 0.07 0.35
## 5307 0.17 0.00 0.06 0.35
## 5308 0.14 0.00 0.03 0.35
## 5309 0.10 0.00 0.03 0.35
## 5310 0.13 0.00 0.04 0.35
## 5311 0.07 0.00 0.01 0.35
## 5312 0.09 0.00 0.01 0.35
## 5313 0.00 0.00 0.02 0.35
## 5314 0.13 0.00 0.04 0.35
## 5315 0.13 0.00 0.02 0.35
## 5316 0.08 0.00 0.01 0.35
## 5317 0.14 0.00 0.03 0.35
## 5318 0.16 0.01 0.06 0.35
## 5319 0.13 0.00 0.04 0.35
## 5320 0.13 0.00 0.04 0.35
## 5321 0.07 0.16 0.02 0.35
## 5322 0.20 0.00 0.04 0.35
## 5323 0.05 0.14 0.03 0.35
## 5324 0.07 0.00 0.04 0.35
## 5325 0.13 0.00 0.04 0.35
## 5326 0.00 0.32 0.02 0.35
## 5327 0.13 0.00 0.04 0.35
## 5328 0.13 0.00 0.04 0.35
## 5329 0.13 0.00 0.04 0.35
## 5330 0.07 0.00 0.01 0.35
## 5331 0.00 0.00 0.03 0.35
## 5332 0.13 0.00 0.04 0.35
## 5333 0.20 0.00 0.05 0.35
## 5334 0.00 0.35 0.00 0.35
## 5335 0.13 0.00 0.02 0.35
## 5336 0.08 0.15 0.03 0.35
## 5337 0.01 0.00 0.03 0.35
## 5338 0.13 0.00 0.02 0.35
## 5339 0.00 0.35 0.00 0.35
## 5340 0.13 0.00 0.04 0.35
## 5341 0.14 0.00 0.03 0.35
## 5342 0.00 0.00 0.03 0.35
## 5343 0.21 0.00 0.08 0.35
## 5344 0.07 0.00 0.01 0.35
## 5345 0.07 0.15 0.04 0.35
## 5346 0.13 0.00 0.06 0.35
## 5347 0.13 0.00 0.04 0.35
## 5348 0.01 0.01 0.03 0.35
## 5349 0.23 0.00 0.03 0.35
## 5350 0.00 0.32 0.02 0.34
## 5351 0.00 0.00 0.02 0.34
## 5352 0.09 0.00 0.01 0.34
## 5353 0.00 0.34 0.00 0.34
## 5354 0.15 0.00 0.08 0.34
## 5355 0.09 0.00 0.01 0.34
## 5356 0.13 0.00 0.04 0.34
## 5357 0.09 0.12 0.03 0.34
## 5358 0.00 0.34 0.00 0.34
## 5359 0.13 0.00 0.02 0.34
## 5360 0.03 0.09 0.02 0.34
## 5361 0.15 0.00 0.06 0.34
## 5362 0.04 0.20 0.01 0.34
## 5363 0.07 0.00 0.03 0.34
## 5364 0.00 0.00 0.03 0.34
## 5365 0.03 0.00 0.03 0.34
## 5366 0.02 0.02 0.03 0.34
## 5367 0.02 0.00 0.00 0.34
## 5368 0.09 0.00 0.01 0.34
## 5369 0.06 0.19 0.02 0.34
## 5370 0.16 0.00 0.03 0.34
## 5371 0.16 0.00 0.03 0.34
## 5372 0.13 0.00 0.04 0.34
## 5373 0.00 0.34 0.00 0.34
## 5374 0.12 0.00 0.03 0.34
## 5375 0.03 0.00 0.25 0.34
## 5376 0.09 0.00 0.01 0.34
## 5377 0.00 0.09 0.02 0.34
## 5378 0.13 0.00 0.02 0.34
## 5379 0.13 0.00 0.04 0.34
## 5380 0.07 0.00 0.01 0.34
## 5381 0.13 0.00 0.04 0.34
## 5382 0.02 0.00 0.00 0.34
## 5383 0.02 0.00 0.00 0.34
## 5384 0.15 0.00 0.03 0.34
## 5385 0.03 0.00 0.03 0.34
## 5386 0.03 0.00 0.02 0.34
## 5387 0.07 0.00 0.01 0.34
## 5388 0.03 0.15 0.02 0.34
## 5389 0.11 0.00 0.01 0.34
## 5390 0.02 0.00 0.00 0.34
## 5391 0.17 0.00 0.04 0.34
## 5392 0.01 0.00 0.03 0.34
## 5393 0.11 0.03 0.05 0.34
## 5394 0.00 0.34 0.00 0.34
## 5395 0.06 0.00 0.00 0.34
## 5396 0.02 0.00 0.00 0.34
## 5397 0.13 0.00 0.06 0.34
## 5398 0.09 0.00 0.03 0.34
## 5399 0.13 0.00 0.02 0.34
## 5400 0.03 0.00 0.03 0.34
## 5401 0.02 0.00 0.00 0.34
## 5402 0.34 0.00 0.00 0.34
## 5403 0.13 0.00 0.04 0.34
## 5404 0.15 0.00 0.05 0.34
## 5405 0.07 0.00 0.01 0.34
## 5406 0.00 0.34 0.00 0.34
## 5407 0.03 0.23 0.02 0.34
## 5408 0.01 0.00 0.02 0.34
## 5409 0.00 0.00 0.02 0.34
## 5410 0.18 0.00 0.03 0.34
## 5411 0.01 0.03 0.02 0.34
## 5412 0.02 0.16 0.02 0.34
## 5413 0.02 0.00 0.03 0.34
## 5414 0.13 0.00 0.02 0.34
## 5415 0.21 0.00 0.04 0.34
## 5416 0.07 0.00 0.01 0.34
## 5417 0.15 0.00 0.03 0.34
## 5418 0.00 0.00 0.02 0.34
## 5419 0.02 0.00 0.03 0.34
## 5420 0.13 0.00 0.03 0.34
## 5421 0.09 0.00 0.01 0.34
## 5422 0.17 0.00 0.05 0.34
## 5423 0.07 0.00 0.01 0.34
## 5424 0.10 0.00 0.03 0.34
## 5425 0.02 0.00 0.22 0.34
## 5426 0.25 0.00 0.08 0.34
## 5427 0.00 0.34 0.00 0.34
## 5428 0.00 0.02 0.03 0.34
## 5429 0.02 0.00 0.03 0.34
## 5430 0.12 0.00 0.05 0.34
## 5431 0.03 0.25 0.01 0.34
## 5432 0.04 0.00 0.02 0.34
## 5433 0.13 0.00 0.02 0.34
## 5434 0.13 0.00 0.04 0.34
## 5435 0.01 0.00 0.03 0.34
## 5436 0.14 0.00 0.03 0.34
## 5437 0.07 0.00 0.01 0.34
## 5438 0.18 0.00 0.04 0.34
## 5439 0.13 0.00 0.04 0.34
## 5440 0.00 0.33 0.00 0.33
## 5441 0.15 0.07 0.05 0.33
## 5442 0.14 0.02 0.03 0.33
## 5443 0.11 0.00 0.01 0.33
## 5444 0.13 0.00 0.03 0.33
## 5445 0.14 0.00 0.04 0.33
## 5446 0.04 0.21 0.02 0.33
## 5447 0.10 0.08 0.03 0.33
## 5448 0.08 0.14 0.03 0.33
## 5449 0.07 0.01 0.03 0.33
## 5450 0.13 0.00 0.04 0.33
## 5451 0.09 0.00 0.01 0.33
## 5452 0.04 0.22 0.02 0.33
## 5453 0.29 0.00 0.04 0.33
## 5454 0.00 0.18 0.01 0.33
## 5455 0.01 0.02 0.03 0.33
## 5456 0.12 0.00 0.08 0.33
## 5457 0.18 0.00 0.03 0.33
## 5458 0.13 0.00 0.02 0.33
## 5459 0.00 0.33 0.00 0.33
## 5460 0.00 0.00 0.02 0.33
## 5461 0.15 0.00 0.03 0.33
## 5462 0.15 0.00 0.05 0.33
## 5463 0.14 0.00 0.05 0.33
## 5464 0.30 0.00 0.03 0.33
## 5465 0.05 0.00 0.03 0.33
## 5466 0.09 0.00 0.05 0.33
## 5467 0.07 0.00 0.01 0.33
## 5468 0.01 0.16 0.01 0.33
## 5469 0.07 0.00 0.01 0.33
## 5470 0.07 0.00 0.01 0.33
## 5471 0.02 0.00 0.03 0.33
## 5472 0.00 0.00 0.02 0.33
## 5473 0.00 0.00 0.02 0.33
## 5474 0.10 0.08 0.03 0.33
## 5475 0.07 0.00 0.01 0.33
## 5476 0.13 0.06 0.03 0.33
## 5477 0.00 0.00 0.03 0.33
## 5478 0.13 0.00 0.04 0.33
## 5479 0.07 0.00 0.01 0.33
## 5480 0.00 0.10 0.02 0.33
## 5481 0.00 0.00 0.03 0.33
## 5482 0.00 0.31 0.02 0.33
## 5483 0.13 0.08 0.04 0.33
## 5484 0.07 0.00 0.01 0.33
## 5485 0.25 0.00 0.08 0.33
## 5486 0.15 0.00 0.04 0.33
## 5487 0.13 0.00 0.04 0.33
## 5488 0.09 0.00 0.01 0.33
## 5489 0.09 0.00 0.03 0.33
## 5490 0.13 0.00 0.04 0.33
## 5491 0.00 0.31 0.02 0.33
## 5492 0.13 0.00 0.05 0.33
## 5493 0.08 0.00 0.03 0.33
## 5494 0.00 0.33 0.00 0.33
## 5495 0.00 0.33 0.00 0.33
## 5496 0.13 0.00 0.03 0.33
## 5497 0.00 0.03 0.03 0.33
## 5498 0.00 0.00 0.03 0.33
## 5499 0.13 0.00 0.04 0.33
## 5500 0.18 0.00 0.05 0.33
## 5501 0.13 0.00 0.04 0.33
## 5502 0.06 0.09 0.01 0.33
## 5503 0.11 0.06 0.05 0.33
## 5504 0.03 0.00 0.16 0.33
## 5505 0.06 0.00 0.01 0.33
## 5506 0.09 0.00 0.01 0.33
## 5507 0.04 0.23 0.01 0.33
## 5508 0.18 0.00 0.06 0.33
## 5510 0.06 0.00 0.00 0.33
## 5511 0.00 0.33 0.00 0.33
## 5512 0.12 0.01 0.03 0.33
## 5513 0.12 0.00 0.02 0.33
## 5514 0.07 0.15 0.02 0.33
## 5515 0.04 0.00 0.03 0.33
## 5516 0.04 0.00 0.02 0.33
## 5517 0.08 0.12 0.03 0.33
## 5518 0.00 0.33 0.00 0.33
## 5519 0.00 0.00 0.02 0.33
## 5520 0.12 0.00 0.05 0.33
## 5521 0.07 0.00 0.01 0.33
## 5522 0.01 0.08 0.02 0.33
## 5523 0.14 0.00 0.08 0.33
## 5524 0.28 0.00 0.03 0.33
## 5525 0.13 0.00 0.04 0.33
## 5526 0.13 0.00 0.04 0.33
## 5527 0.01 0.00 0.03 0.33
## 5528 0.16 0.00 0.09 0.33
## 5529 0.15 0.00 0.06 0.33
## 5530 0.07 0.00 0.01 0.33
## 5531 0.03 0.00 0.02 0.33
## 5532 0.00 0.00 0.02 0.33
## 5533 0.10 0.00 0.03 0.33
## 5534 0.00 0.31 0.02 0.33
## 5535 0.09 0.00 0.01 0.33
## 5536 0.00 0.33 0.00 0.33
## 5537 0.17 0.00 0.04 0.33
## 5538 0.12 0.00 0.02 0.33
## 5539 0.09 0.00 0.01 0.33
## 5540 0.17 0.00 0.06 0.33
## 5541 0.00 0.32 0.01 0.33
## 5542 0.00 0.33 0.00 0.33
## 5543 0.12 0.00 0.03 0.33
## 5544 0.11 0.00 0.03 0.33
## 5545 0.08 0.00 0.03 0.33
## 5546 0.07 0.00 0.01 0.33
## 5547 0.00 0.33 0.00 0.33
## 5548 0.16 0.00 0.03 0.33
## 5549 0.04 0.08 0.02 0.33
## 5550 0.00 0.31 0.02 0.33
## 5551 0.01 0.00 0.03 0.33
## 5552 0.11 0.04 0.02 0.33
## 5553 0.16 0.01 0.06 0.33
## 5554 0.05 0.05 0.03 0.33
## 5555 0.03 0.16 0.02 0.33
## 5556 0.00 0.33 0.00 0.33
## 5557 0.11 0.00 0.03 0.33
## 5558 0.07 0.00 0.01 0.33
## 5559 0.08 0.10 0.03 0.33
## 5560 0.02 0.00 0.00 0.33
## 5561 0.00 0.19 0.01 0.33
## 5562 0.15 0.00 0.07 0.33
## 5563 0.07 0.00 0.01 0.33
## 5564 0.00 0.00 0.02 0.33
## 5565 0.02 0.00 0.00 0.33
## 5566 0.09 0.00 0.03 0.33
## 5567 0.00 0.00 0.02 0.33
## 5568 0.04 0.16 0.01 0.33
## 5569 0.01 0.08 0.02 0.33
## 5570 0.00 0.30 0.02 0.33
## 5571 0.07 0.00 0.01 0.33
## 5572 0.12 0.00 0.04 0.33
## 5573 0.10 0.01 0.07 0.33
## 5574 0.15 0.00 0.05 0.33
## 5575 0.05 0.00 0.03 0.33
## 5576 0.14 0.00 0.03 0.32
## 5577 0.00 0.00 0.03 0.32
## 5578 0.06 0.20 0.02 0.32
## 5579 0.01 0.00 0.00 0.32
## 5580 0.09 0.00 0.01 0.32
## 5581 0.12 0.00 0.04 0.32
## 5582 0.00 0.32 0.00 0.32
## 5583 0.16 0.00 0.04 0.32
## 5584 0.12 0.00 0.04 0.32
## 5585 0.12 0.00 0.02 0.32
## 5586 0.08 0.16 0.03 0.32
## 5587 0.04 0.02 0.03 0.32
## 5588 0.14 0.00 0.06 0.32
## 5589 0.00 0.00 0.03 0.32
## 5590 0.11 0.00 0.03 0.32
## 5591 0.00 0.00 0.02 0.32
## 5592 0.08 0.03 0.02 0.32
## 5593 0.01 0.12 0.01 0.32
## 5594 0.02 0.00 0.00 0.32
## 5595 0.00 0.32 0.00 0.32
## 5596 0.11 0.00 0.03 0.32
## 5597 0.04 0.10 0.03 0.32
## 5598 0.12 0.00 0.04 0.32
## 5599 0.02 0.15 0.02 0.32
## 5600 0.12 0.00 0.02 0.32
## 5601 0.03 0.00 0.01 0.32
## 5602 0.15 0.00 0.06 0.32
## 5603 0.00 0.30 0.02 0.32
## 5604 0.13 0.00 0.08 0.32
## 5605 0.08 0.00 0.03 0.32
## 5606 0.00 0.00 0.02 0.32
## 5607 0.27 0.00 0.05 0.32
## 5608 0.02 0.00 0.03 0.32
## 5609 0.13 0.00 0.03 0.32
## 5610 0.03 0.00 0.03 0.32
## 5611 0.00 0.00 0.02 0.32
## 5612 0.04 0.21 0.02 0.32
## 5613 0.12 0.00 0.02 0.32
## 5614 0.16 0.02 0.05 0.32
## 5615 0.02 0.00 0.03 0.32
## 5616 0.07 0.12 0.02 0.32
## 5617 0.14 0.00 0.03 0.32
## 5618 0.00 0.32 0.00 0.32
## 5620 0.26 0.00 0.06 0.32
## 5621 0.12 0.00 0.04 0.32
## 5622 0.24 0.00 0.05 0.32
## 5623 0.11 0.00 0.03 0.32
## 5624 0.00 0.00 0.02 0.32
## 5625 0.12 0.00 0.04 0.32
## 5627 0.00 0.00 0.02 0.32
## 5628 0.14 0.00 0.03 0.32
## 5629 0.06 0.00 0.01 0.32
## 5630 0.12 0.00 0.04 0.32
## 5631 0.04 0.13 0.00 0.32
## 5632 0.12 0.00 0.02 0.32
## 5633 0.00 0.32 0.00 0.32
## 5634 0.24 0.00 0.05 0.32
## 5635 0.08 0.00 0.01 0.32
## 5636 0.12 0.00 0.02 0.32
## 5637 0.28 0.00 0.04 0.32
## 5638 0.12 0.00 0.02 0.32
## 5639 0.02 0.00 0.03 0.32
## 5640 0.12 0.00 0.04 0.32
## 5641 0.12 0.00 0.02 0.32
## 5642 0.03 0.00 0.03 0.32
## 5643 0.12 0.00 0.04 0.32
## 5644 0.30 0.00 0.02 0.32
## 5645 0.00 0.32 0.00 0.32
## 5646 0.00 0.32 0.00 0.32
## 5647 0.00 0.30 0.02 0.32
## 5648 0.08 0.00 0.01 0.32
## 5649 0.12 0.00 0.04 0.32
## 5650 0.00 0.00 0.03 0.32
## 5651 0.08 0.00 0.01 0.32
## 5652 0.00 0.32 0.00 0.32
## 5653 0.12 0.00 0.03 0.32
## 5654 0.12 0.00 0.04 0.32
## 5655 0.12 0.00 0.04 0.32
## 5656 0.15 0.00 0.03 0.32
## 5657 0.08 0.00 0.01 0.32
## 5659 0.02 0.00 0.00 0.32
## 5660 0.12 0.00 0.02 0.32
## 5661 0.00 0.32 0.00 0.32
## 5662 0.14 0.02 0.06 0.32
## 5663 0.18 0.00 0.10 0.32
## 5664 0.07 0.00 0.01 0.32
## 5665 0.02 0.00 0.02 0.32
## 5666 0.00 0.32 0.00 0.32
## 5667 0.00 0.32 0.00 0.32
## 5668 0.00 0.32 0.00 0.32
## 5669 0.08 0.00 0.01 0.32
## 5671 0.00 0.30 0.02 0.32
## 5672 0.00 0.30 0.02 0.32
## 5673 0.00 0.32 0.00 0.32
## 5674 0.07 0.00 0.01 0.32
## 5675 0.08 0.00 0.01 0.32
## 5676 0.00 0.00 0.28 0.32
## 5677 0.01 0.00 0.02 0.32
## 5678 0.00 0.00 0.02 0.32
## 5679 0.07 0.00 0.01 0.32
## 5680 0.12 0.00 0.04 0.32
## 5681 0.01 0.00 0.02 0.32
## 5682 0.00 0.32 0.00 0.32
## 5683 0.12 0.00 0.02 0.32
## 5684 0.06 0.16 0.02 0.32
## 5685 0.15 0.00 0.09 0.32
## 5686 0.06 0.03 0.02 0.32
## 5687 0.04 0.02 0.02 0.32
## 5688 0.12 0.00 0.04 0.32
## 5689 0.02 0.00 0.20 0.32
## 5690 0.12 0.00 0.06 0.32
## 5691 0.00 0.32 0.00 0.32
## 5692 0.04 0.00 0.03 0.32
## 5693 0.04 0.08 0.02 0.32
## 5694 0.00 0.32 0.00 0.32
## 5695 0.08 0.00 0.01 0.32
## 5696 0.12 0.00 0.02 0.32
## 5697 0.17 0.00 0.05 0.32
## 5698 0.00 0.32 0.00 0.32
## 5699 0.17 0.00 0.05 0.32
## 5700 0.11 0.00 0.03 0.31
## 5701 0.14 0.00 0.05 0.31
## 5702 0.19 0.00 0.04 0.31
## 5703 0.18 0.00 0.03 0.31
## 5704 0.12 0.00 0.02 0.31
## 5705 0.00 0.31 0.00 0.31
## 5706 0.07 0.00 0.01 0.31
## 5707 0.00 0.00 0.02 0.31
## 5708 0.12 0.00 0.02 0.31
## 5709 0.00 0.00 0.02 0.31
## 5710 0.04 0.00 0.02 0.31
## 5711 0.00 0.31 0.00 0.31
## 5712 0.00 0.01 0.02 0.31
## 5713 0.08 0.00 0.01 0.31
## 5714 0.15 0.00 0.06 0.31
## 5715 0.00 0.31 0.00 0.31
## 5716 0.15 0.06 0.03 0.31
## 5717 0.00 0.31 0.00 0.31
## 5718 0.00 0.31 0.00 0.31
## 5719 0.12 0.00 0.02 0.31
## 5720 0.01 0.00 0.02 0.31
## 5721 0.01 0.01 0.02 0.31
## 5722 0.07 0.00 0.01 0.31
## 5723 0.12 0.00 0.04 0.31
## 5724 0.01 0.00 0.02 0.31
## 5725 0.03 0.00 0.03 0.31
## 5726 0.04 0.10 0.02 0.31
## 5727 0.00 0.31 0.00 0.31
## 5728 0.10 0.00 0.03 0.31
## 5729 0.00 0.00 0.02 0.31
## 5730 0.19 0.03 0.04 0.31
## 5731 0.12 0.00 0.04 0.31
## 5732 0.12 0.00 0.02 0.31
## 5733 0.07 0.00 0.01 0.31
## 5734 0.07 0.00 0.01 0.31
## 5735 0.07 0.00 0.01 0.31
## 5736 0.01 0.00 0.02 0.31
## 5737 0.07 0.13 0.02 0.31
## 5738 0.12 0.00 0.02 0.31
## 5739 0.00 0.00 0.02 0.31
## 5740 0.13 0.00 0.03 0.31
## 5741 0.09 0.00 0.03 0.31
## 5742 0.20 0.00 0.03 0.31
## 5743 0.06 0.16 0.02 0.31
## 5744 0.00 0.31 0.00 0.31
## 5745 0.00 0.00 0.02 0.31
## 5746 0.00 0.31 0.00 0.31
## 5747 0.12 0.00 0.02 0.31
## 5748 0.07 0.00 0.01 0.31
## 5749 0.08 0.00 0.01 0.31
## 5750 0.00 0.29 0.02 0.31
## 5751 0.01 0.00 0.03 0.31
## 5752 0.00 0.00 0.02 0.31
## 5753 0.04 0.17 0.03 0.31
## 5754 0.00 0.26 0.05 0.31
## 5755 0.02 0.13 0.10 0.31
## 5756 0.06 0.00 0.00 0.31
## 5757 0.06 0.00 0.00 0.31
## 5758 0.06 0.00 0.00 0.31
## 5759 0.00 0.26 0.05 0.31
## 5760 0.29 0.00 0.02 0.31
## 5761 0.00 0.00 0.00 0.31
## 5762 0.05 0.00 0.02 0.31
## 5763 0.10 0.00 0.03 0.31
## 5764 0.00 0.31 0.00 0.31
## 5765 0.00 0.00 0.02 0.31
## 5766 0.10 0.00 0.03 0.31
## 5767 0.00 0.31 0.00 0.31
## 5768 0.00 0.00 0.02 0.31
## 5769 0.04 0.00 0.03 0.31
## 5771 0.02 0.09 0.02 0.31
## 5772 0.08 0.00 0.01 0.31
## 5773 0.11 0.02 0.02 0.31
## 5774 0.02 0.00 0.00 0.31
## 5775 0.12 0.00 0.04 0.31
## 5776 0.04 0.00 0.03 0.31
## 5777 0.00 0.00 0.02 0.31
## 5778 0.12 0.00 0.04 0.31
## 5779 0.00 0.31 0.00 0.31
## 5780 0.00 0.00 0.02 0.31
## 5781 0.05 0.00 0.02 0.31
## 5782 0.00 0.00 0.02 0.31
## 5783 0.12 0.00 0.02 0.31
## 5784 0.05 0.00 0.01 0.31
## 5785 0.00 0.29 0.02 0.31
## 5786 0.00 0.00 0.02 0.31
## 5787 0.13 0.00 0.04 0.31
## 5788 0.06 0.00 0.01 0.31
## 5789 0.00 0.31 0.00 0.31
## 5790 0.12 0.00 0.05 0.31
## 5791 0.17 0.00 0.03 0.31
## 5792 0.12 0.00 0.02 0.31
## 5793 0.12 0.00 0.04 0.31
## 5794 0.00 0.00 0.02 0.31
## 5795 0.07 0.04 0.03 0.31
## 5796 0.12 0.00 0.04 0.31
## 5797 0.12 0.00 0.02 0.31
## 5798 0.12 0.00 0.04 0.31
## 5800 0.00 0.31 0.00 0.31
## 5801 0.02 0.00 0.00 0.31
## 5802 0.12 0.00 0.04 0.31
## 5803 0.12 0.00 0.02 0.31
## 5804 0.05 0.14 0.04 0.31
## 5805 0.01 0.10 0.02 0.31
## 5806 0.04 0.00 0.02 0.31
## 5807 0.00 0.00 0.02 0.31
## 5808 0.06 0.00 0.02 0.31
## 5809 0.12 0.00 0.02 0.31
## 5810 0.06 0.00 0.03 0.31
## 5811 0.13 0.01 0.08 0.31
## 5812 0.07 0.00 0.01 0.31
## 5813 0.12 0.00 0.02 0.31
## 5814 0.00 0.30 0.01 0.31
## 5815 0.12 0.00 0.02 0.31
## 5816 0.12 0.00 0.04 0.31
## 5817 0.00 0.31 0.00 0.31
## 5818 0.00 0.31 0.00 0.31
## 5819 0.12 0.00 0.04 0.31
## 5820 0.10 0.00 0.03 0.31
## 5821 0.01 0.00 0.02 0.30
## 5822 0.08 0.07 0.02 0.30
## 5823 0.08 0.00 0.01 0.30
## 5824 0.00 0.00 0.02 0.30
## 5825 0.07 0.00 0.01 0.30
## 5826 0.08 0.00 0.01 0.30
## 5827 0.12 0.06 0.05 0.30
## 5828 0.13 0.00 0.03 0.30
## 5829 0.00 0.30 0.00 0.30
## 5830 0.00 0.30 0.00 0.30
## 5831 0.12 0.00 0.02 0.30
## 5832 0.00 0.30 0.00 0.30
## 5833 0.04 0.00 0.02 0.30
## 5834 0.08 0.00 0.01 0.30
## 5835 0.12 0.00 0.02 0.30
## 5836 0.00 0.30 0.00 0.30
## 5837 0.03 0.00 0.03 0.30
## 5838 0.04 0.01 0.03 0.30
## 5840 0.12 0.00 0.07 0.30
## 5841 0.00 0.08 0.02 0.30
## 5842 0.25 0.00 0.05 0.30
## 5843 0.03 0.21 0.02 0.30
## 5844 0.12 0.00 0.04 0.30
## 5845 0.04 0.00 0.02 0.30
## 5846 0.06 0.00 0.01 0.30
## 5847 0.08 0.00 0.01 0.30
## 5848 0.12 0.00 0.04 0.30
## 5849 0.10 0.00 0.03 0.30
## 5850 0.00 0.00 0.02 0.30
## 5851 0.00 0.30 0.00 0.30
## 5852 0.09 0.00 0.03 0.30
## 5853 0.08 0.00 0.01 0.30
## 5854 0.12 0.00 0.04 0.30
## 5855 0.00 0.30 0.00 0.30
## 5856 0.00 0.30 0.01 0.30
## 5857 0.00 0.30 0.00 0.30
## 5858 0.11 0.00 0.02 0.30
## 5859 0.16 0.00 0.08 0.30
## 5860 0.12 0.00 0.04 0.30
## 5861 0.23 0.00 0.06 0.30
## 5863 0.00 0.30 0.00 0.30
## 5864 0.02 0.00 0.02 0.30
## 5865 0.03 0.00 0.02 0.30
## 5866 0.00 0.00 0.02 0.30
## 5867 0.00 0.30 0.00 0.30
## 5868 0.00 0.19 0.02 0.30
## 5869 0.00 0.30 0.00 0.30
## 5870 0.24 0.00 0.05 0.30
## 5872 0.07 0.07 0.02 0.30
## 5873 0.13 0.00 0.05 0.30
## 5874 0.00 0.00 0.02 0.30
## 5875 0.06 0.06 0.02 0.30
## 5876 0.01 0.00 0.02 0.30
## 5877 0.11 0.06 0.04 0.30
## 5878 0.05 0.17 0.03 0.30
## 5879 0.02 0.20 0.01 0.30
## 5880 0.04 0.19 0.01 0.30
## 5881 0.00 0.30 0.00 0.30
## 5882 0.00 0.30 0.00 0.30
## 5883 0.16 0.05 0.04 0.30
## 5884 0.11 0.00 0.04 0.30
## 5885 0.00 0.08 0.01 0.30
## 5886 0.06 0.00 0.00 0.30
## 5887 0.06 0.00 0.00 0.30
## 5888 0.00 0.30 0.00 0.30
## 5889 0.08 0.00 0.01 0.30
## 5890 0.12 0.00 0.03 0.30
## 5891 0.04 0.00 0.02 0.30
## 5892 0.08 0.00 0.05 0.30
## 5893 0.00 0.28 0.02 0.30
## 5894 0.00 0.30 0.00 0.30
## 5895 0.11 0.00 0.04 0.30
## 5896 0.08 0.00 0.01 0.30
## 5897 0.00 0.30 0.00 0.30
## 5898 0.03 0.05 0.02 0.30
## 5899 0.03 0.11 0.03 0.30
## 5900 0.11 0.00 0.02 0.30
## 5901 0.23 0.00 0.05 0.30
## 5903 0.11 0.00 0.04 0.30
## 5904 0.07 0.10 0.03 0.30
## 5905 0.00 0.30 0.00 0.30
## 5906 0.04 0.00 0.02 0.30
## 5907 0.12 0.00 0.03 0.30
## 5908 0.02 0.14 0.01 0.30
## 5909 0.00 0.30 0.00 0.30
## 5910 0.05 0.15 0.02 0.30
## 5911 0.02 0.00 0.02 0.30
## 5912 0.27 0.00 0.03 0.30
## 5913 0.00 0.00 0.02 0.30
## 5915 0.19 0.00 0.03 0.30
## 5916 0.11 0.00 0.04 0.30
## 5917 0.00 0.00 0.03 0.30
## 5918 0.01 0.00 0.02 0.30
## 5919 0.07 0.00 0.02 0.30
## 5920 0.24 0.00 0.05 0.30
## 5921 0.00 0.30 0.00 0.30
## 5922 0.00 0.30 0.00 0.30
## 5923 0.07 0.14 0.02 0.30
## 5924 0.13 0.00 0.05 0.30
## 5925 0.11 0.00 0.04 0.30
## 5926 0.00 0.00 0.02 0.30
## 5927 0.00 0.30 0.00 0.30
## 5928 0.14 0.00 0.03 0.30
## 5929 0.01 0.00 0.27 0.30
## 5930 0.00 0.30 0.00 0.30
## 5931 0.09 0.00 0.03 0.30
## 5932 0.00 0.29 0.01 0.30
## 5933 0.00 0.10 0.02 0.30
## 5934 0.00 0.00 0.00 0.30
## 5935 0.00 0.30 0.00 0.30
## 5936 0.10 0.01 0.05 0.30
## 5937 0.08 0.00 0.01 0.30
## 5938 0.08 0.00 0.01 0.30
## 5939 0.07 0.00 0.04 0.30
## 5940 0.11 0.00 0.02 0.30
## 5941 0.10 0.00 0.03 0.30
## 5942 0.00 0.02 0.02 0.30
## 5943 0.00 0.30 0.00 0.30
## 5944 0.06 0.00 0.01 0.30
## 5945 0.00 0.30 0.00 0.30
## 5946 0.11 0.00 0.04 0.30
## 5947 0.06 0.00 0.01 0.30
## 5948 0.01 0.12 0.01 0.30
## 5949 0.14 0.00 0.03 0.30
## 5950 0.26 0.00 0.01 0.30
## 5951 0.06 0.00 0.02 0.30
## 5952 0.03 0.00 0.02 0.30
## 5953 0.06 0.00 0.01 0.30
## 5954 0.13 0.00 0.03 0.30
## 5955 0.06 0.00 0.01 0.30
## 5956 0.00 0.00 0.02 0.29
## 5957 0.02 0.00 0.00 0.29
## 5958 0.00 0.00 0.02 0.29
## 5959 0.11 0.00 0.04 0.29
## 5960 0.01 0.00 0.03 0.29
## 5961 0.07 0.11 0.03 0.29
## 5962 0.06 0.00 0.02 0.29
## 5963 0.14 0.00 0.03 0.29
## 5964 0.10 0.04 0.02 0.29
## 5965 0.01 0.00 0.02 0.29
## 5966 0.01 0.00 0.03 0.29
## 5967 0.21 0.00 0.04 0.29
## 5968 0.10 0.00 0.03 0.29
## 5969 0.08 0.00 0.01 0.29
## 5970 0.00 0.29 0.01 0.29
## 5971 0.02 0.00 0.03 0.29
## 5972 0.12 0.12 0.04 0.29
## 5973 0.00 0.29 0.00 0.29
## 5974 0.09 0.00 0.03 0.29
## 5975 0.00 0.04 0.02 0.29
## 5976 0.06 0.00 0.01 0.29
## 5977 0.16 0.02 0.05 0.29
## 5978 0.08 0.07 0.03 0.29
## 5979 0.11 0.00 0.02 0.29
## 5980 0.02 0.25 0.01 0.29
## 5981 0.07 0.00 0.03 0.29
## 5982 0.00 0.29 0.00 0.29
## 5983 0.03 0.00 0.02 0.29
## 5984 0.10 0.17 0.02 0.29
## 5985 0.03 0.00 0.15 0.29
## 5986 0.14 0.01 0.05 0.29
## 5987 0.06 0.00 0.01 0.29
## 5988 0.11 0.00 0.04 0.29
## 5989 0.22 0.05 0.00 0.29
## 5990 0.11 0.00 0.06 0.29
## 5991 0.02 0.22 0.02 0.29
## 5992 0.00 0.27 0.02 0.29
## 5993 0.16 0.00 0.05 0.29
## 5994 0.00 0.00 0.02 0.29
## 5995 0.12 0.00 0.03 0.29
## 5996 0.00 0.29 0.00 0.29
## 5997 0.00 0.14 0.01 0.29
## 5998 0.11 0.00 0.02 0.29
## 5999 0.00 0.27 0.02 0.29
## 6000 0.10 0.03 0.03 0.29
## 6001 0.10 0.00 0.02 0.29
## 6002 0.11 0.00 0.04 0.29
## 6003 0.00 0.29 0.00 0.29
## 6004 0.03 0.00 0.02 0.29
## 6005 0.13 0.01 0.03 0.29
## 6006 0.00 0.28 0.01 0.29
## 6007 0.05 0.03 0.03 0.29
## 6008 0.02 0.00 0.00 0.29
## 6009 0.00 0.00 0.02 0.29
## 6010 0.06 0.00 0.01 0.29
## 6011 0.04 0.00 0.02 0.29
## 6012 0.08 0.00 0.02 0.29
## 6013 0.05 0.15 0.03 0.29
## 6014 0.00 0.28 0.01 0.29
## 6015 0.12 0.00 0.05 0.29
## 6016 0.11 0.00 0.03 0.29
## 6017 0.11 0.00 0.04 0.29
## 6018 0.13 0.00 0.03 0.29
## 6019 0.11 0.00 0.04 0.29
## 6020 0.01 0.10 0.04 0.29
## 6021 0.20 0.00 0.03 0.29
## 6022 0.02 0.00 0.00 0.29
## 6023 0.00 0.29 0.00 0.29
## 6024 0.06 0.00 0.00 0.29
## 6025 0.06 0.00 0.00 0.29
## 6026 0.06 0.00 0.00 0.29
## 6027 0.06 0.00 0.00 0.29
## 6028 0.05 0.02 0.00 0.29
## 6029 0.06 0.00 0.00 0.29
## 6030 0.06 0.00 0.00 0.29
## 6031 0.06 0.00 0.00 0.29
## 6032 0.03 0.14 0.02 0.29
## 6033 0.23 0.00 0.06 0.29
## 6034 0.25 0.00 0.04 0.29
## 6035 0.08 0.00 0.01 0.29
## 6036 0.11 0.00 0.04 0.29
## 6037 0.04 0.00 0.02 0.29
## 6038 0.11 0.00 0.04 0.29
## 6039 0.07 0.05 0.02 0.29
## 6040 0.06 0.00 0.01 0.29
## 6041 0.10 0.00 0.02 0.29
## 6042 0.09 0.00 0.02 0.29
## 6044 0.09 0.00 0.03 0.29
## 6045 0.00 0.29 0.00 0.29
## 6046 0.06 0.00 0.01 0.29
## 6047 0.00 0.27 0.02 0.29
## 6048 0.06 0.00 0.01 0.29
## 6049 0.15 0.01 0.03 0.29
## 6050 0.09 0.19 0.01 0.29
## 6051 0.06 0.00 0.01 0.29
## 6052 0.11 0.00 0.02 0.29
## 6053 0.13 0.00 0.03 0.29
## 6054 0.00 0.29 0.00 0.29
## 6055 0.17 0.00 0.03 0.29
## 6056 0.00 0.00 0.02 0.29
## 6057 0.00 0.00 0.02 0.29
## 6058 0.11 0.00 0.04 0.29
## 6059 0.00 0.29 0.00 0.29
## 6060 0.05 0.15 0.02 0.29
## 6061 0.05 0.16 0.02 0.29
## 6062 0.00 0.00 0.02 0.29
## 6063 0.10 0.01 0.02 0.29
## 6064 0.00 0.10 0.02 0.29
## 6065 0.12 0.00 0.05 0.29
## 6066 0.00 0.00 0.02 0.29
## 6067 0.15 0.00 0.02 0.29
## 6068 0.01 0.00 0.02 0.29
## 6069 0.11 0.00 0.02 0.29
## 6070 0.00 0.00 0.02 0.29
## 6071 0.00 0.29 0.00 0.29
## 6072 0.15 0.00 0.03 0.29
## 6073 0.11 0.00 0.04 0.29
## 6074 0.00 0.14 0.02 0.29
## 6075 0.11 0.00 0.02 0.29
## 6076 0.00 0.29 0.00 0.29
## 6077 0.02 0.21 0.02 0.29
## 6078 0.11 0.00 0.04 0.29
## 6079 0.00 0.29 0.00 0.29
## 6080 0.11 0.00 0.04 0.29
## 6081 0.00 0.00 0.02 0.29
## 6082 0.11 0.00 0.02 0.29
## 6083 0.12 0.00 0.03 0.29
## 6084 0.00 0.00 0.02 0.29
## 6085 0.00 0.29 0.00 0.29
## 6086 0.00 0.27 0.02 0.29
## 6087 0.00 0.00 0.02 0.29
## 6088 0.12 0.00 0.02 0.29
## 6089 0.00 0.29 0.00 0.29
## 6090 0.00 0.29 0.00 0.29
## 6091 0.07 0.08 0.03 0.29
## 6092 0.12 0.00 0.05 0.29
## 6093 0.06 0.00 0.01 0.29
## 6094 0.00 0.22 0.01 0.29
## 6095 0.00 0.00 0.02 0.29
## 6096 0.06 0.00 0.01 0.29
## 6097 0.11 0.00 0.02 0.29
## 6098 0.00 0.00 0.02 0.29
## 6099 0.00 0.29 0.00 0.29
## 6100 0.00 0.00 0.02 0.29
## 6101 0.08 0.00 0.01 0.29
## 6102 0.03 0.17 0.01 0.29
## 6103 0.10 0.00 0.05 0.29
## 6104 0.18 0.00 0.03 0.29
## 6105 0.00 0.00 0.02 0.28
## 6106 0.21 0.00 0.04 0.28
## 6107 0.14 0.00 0.03 0.28
## 6108 0.11 0.00 0.04 0.28
## 6109 0.11 0.00 0.04 0.28
## 6110 0.06 0.05 0.02 0.28
## 6111 0.11 0.00 0.02 0.28
## 6112 0.00 0.28 0.00 0.28
## 6113 0.08 0.00 0.01 0.28
## 6114 0.08 0.00 0.01 0.28
## 6115 0.00 0.00 0.02 0.28
## 6116 0.00 0.28 0.00 0.28
## 6117 0.01 0.00 0.02 0.28
## 6118 0.00 0.28 0.00 0.28
## 6119 0.11 0.00 0.02 0.28
## 6120 0.11 0.00 0.02 0.28
## 6121 0.06 0.00 0.01 0.28
## 6122 0.10 0.00 0.03 0.28
## 6123 0.07 0.10 0.02 0.28
## 6124 0.02 0.00 0.02 0.28
## 6125 0.08 0.07 0.04 0.28
## 6127 0.06 0.00 0.01 0.28
## 6128 0.08 0.00 0.01 0.28
## 6129 0.08 0.00 0.01 0.28
## 6130 0.11 0.00 0.04 0.28
## 6131 0.07 0.00 0.04 0.28
## 6132 0.00 0.28 0.00 0.28
## 6133 0.06 0.00 0.01 0.28
## 6134 0.00 0.28 0.00 0.28
## 6135 0.08 0.00 0.01 0.28
## 6136 0.17 0.09 0.02 0.28
## 6137 0.16 0.09 0.03 0.28
## 6138 0.00 0.01 0.02 0.28
## 6139 0.06 0.00 0.01 0.28
## 6140 0.00 0.28 0.00 0.28
## 6141 0.01 0.00 0.02 0.28
## 6142 0.11 0.00 0.03 0.28
## 6143 0.08 0.00 0.01 0.28
## 6144 0.02 0.00 0.02 0.28
## 6145 0.00 0.28 0.01 0.28
## 6146 0.02 0.00 0.00 0.28
## 6147 0.11 0.00 0.04 0.28
## 6148 0.01 0.00 0.00 0.28
## 6149 0.10 0.00 0.03 0.28
## 6150 0.12 0.00 0.02 0.28
## 6151 0.11 0.00 0.02 0.28
## 6152 0.12 0.02 0.05 0.28
## 6153 0.11 0.00 0.04 0.28
## 6155 0.06 0.00 0.01 0.28
## 6156 0.00 0.28 0.00 0.28
## 6157 0.02 0.12 0.01 0.28
## 6158 0.06 0.00 0.03 0.28
## 6159 0.07 0.00 0.01 0.28
## 6160 0.06 0.00 0.05 0.28
## 6161 0.00 0.28 0.00 0.28
## 6162 0.00 0.28 0.00 0.28
## 6163 0.00 0.28 0.00 0.28
## 6164 0.11 0.00 0.04 0.28
## 6165 0.00 0.28 0.00 0.28
## 6166 0.00 0.28 0.00 0.28
## 6167 0.02 0.00 0.14 0.28
## 6168 0.07 0.00 0.01 0.28
## 6169 0.00 0.00 0.02 0.28
## 6170 0.23 0.00 0.05 0.28
## 6171 0.11 0.00 0.04 0.28
## 6172 0.00 0.00 0.02 0.28
## 6173 0.11 0.01 0.05 0.28
## 6174 0.11 0.00 0.04 0.28
## 6175 0.06 0.00 0.01 0.28
## 6176 0.14 0.00 0.05 0.28
## 6177 0.11 0.00 0.04 0.28
## 6178 0.00 0.00 0.02 0.28
## 6179 0.00 0.00 0.02 0.28
## 6180 0.07 0.00 0.01 0.28
## 6181 0.10 0.03 0.03 0.28
## 6182 0.12 0.00 0.02 0.28
## 6183 0.00 0.00 0.02 0.28
## 6184 0.10 0.00 0.03 0.28
## 6185 0.08 0.00 0.02 0.28
## 6186 0.11 0.00 0.04 0.28
## 6187 0.03 0.03 0.02 0.28
## 6188 0.07 0.00 0.01 0.28
## 6189 0.06 0.10 0.02 0.28
## 6190 0.11 0.00 0.04 0.28
## 6191 0.12 0.01 0.03 0.28
## 6192 0.11 0.00 0.04 0.28
## 6193 0.01 0.23 0.01 0.28
## 6194 0.06 0.00 0.01 0.28
## 6195 0.09 0.04 0.04 0.28
## 6197 0.11 0.00 0.02 0.28
## 6198 0.07 0.00 0.01 0.28
## 6199 0.00 0.28 0.00 0.28
## 6200 0.11 0.00 0.05 0.28
## 6201 0.06 0.00 0.01 0.28
## 6202 0.06 0.00 0.01 0.28
## 6203 0.02 0.00 0.02 0.28
## 6204 0.00 0.28 0.00 0.28
## 6205 0.13 0.00 0.03 0.28
## 6206 0.21 0.03 0.03 0.28
## 6207 0.11 0.00 0.04 0.28
## 6208 0.22 0.00 0.05 0.28
## 6209 0.11 0.00 0.04 0.28
## 6210 0.11 0.00 0.04 0.28
## 6211 0.03 0.12 0.04 0.28
## 6213 0.01 0.00 0.02 0.28
## 6214 0.11 0.00 0.04 0.28
## 6215 0.01 0.00 0.02 0.28
## 6216 0.02 0.00 0.03 0.28
## 6217 0.04 0.17 0.01 0.28
## 6218 0.00 0.28 0.00 0.28
## 6219 0.04 0.17 0.02 0.28
## 6220 0.00 0.00 0.02 0.28
## 6221 0.11 0.00 0.02 0.28
## 6222 0.09 0.00 0.04 0.28
## 6223 0.00 0.28 0.00 0.28
## 6224 0.06 0.00 0.01 0.28
## 6225 0.10 0.00 0.03 0.28
## 6226 0.01 0.00 0.16 0.28
## 6227 0.00 0.28 0.00 0.28
## 6228 0.11 0.00 0.02 0.28
## 6229 0.00 0.00 0.02 0.28
## 6230 0.00 0.28 0.00 0.28
## 6231 0.11 0.00 0.04 0.28
## 6232 0.00 0.27 0.01 0.28
## 6233 0.00 0.28 0.00 0.28
## 6234 0.00 0.26 0.02 0.28
## 6235 0.01 0.00 0.02 0.28
## 6236 0.16 0.00 0.03 0.28
## 6237 0.06 0.00 0.01 0.28
## 6238 0.00 0.00 0.02 0.28
## 6239 0.00 0.00 0.02 0.28
## 6240 0.10 0.02 0.04 0.28
## 6241 0.10 0.00 0.02 0.28
## 6242 0.11 0.00 0.04 0.28
## 6243 0.06 0.00 0.01 0.28
## 6244 0.11 0.00 0.04 0.28
## 6245 0.11 0.00 0.04 0.28
## 6246 0.07 0.19 0.01 0.28
## 6247 0.04 0.00 0.02 0.28
## 6248 0.09 0.00 0.02 0.28
## 6249 0.00 0.27 0.01 0.28
## 6250 0.11 0.00 0.04 0.28
## 6251 0.07 0.00 0.00 0.28
## 6252 0.03 0.00 0.03 0.28
## 6253 0.19 0.00 0.05 0.28
## 6254 0.00 0.28 0.00 0.28
## 6255 0.04 0.15 0.02 0.28
## 6256 0.00 0.28 0.00 0.28
## 6257 0.00 0.28 0.00 0.28
## 6258 0.00 0.00 0.02 0.28
## 6259 0.07 0.18 0.03 0.28
## 6260 0.10 0.00 0.05 0.28
## 6261 0.00 0.28 0.00 0.28
## 6262 0.00 0.20 0.01 0.27
## 6263 0.11 0.00 0.04 0.27
## 6264 0.00 0.27 0.00 0.27
## 6265 0.10 0.00 0.04 0.27
## 6266 0.02 0.00 0.00 0.27
## 6267 0.20 0.00 0.02 0.27
## 6268 0.00 0.00 0.02 0.27
## 6269 0.06 0.00 0.01 0.27
## 6270 0.06 0.00 0.03 0.27
## 6271 0.00 0.26 0.02 0.27
## 6272 0.06 0.00 0.01 0.27
## 6274 0.07 0.00 0.00 0.27
## 6275 0.00 0.26 0.02 0.27
## 6276 0.06 0.11 0.02 0.27
## 6277 0.07 0.00 0.00 0.27
## 6278 0.11 0.00 0.03 0.27
## 6279 0.01 0.00 0.02 0.27
## 6280 0.00 0.27 0.00 0.27
## 6281 0.10 0.00 0.02 0.27
## 6282 0.06 0.00 0.01 0.27
## 6283 0.10 0.00 0.03 0.27
## 6285 0.00 0.00 0.02 0.27
## 6286 0.01 0.00 0.17 0.27
## 6287 0.01 0.15 0.01 0.27
## 6288 0.10 0.00 0.02 0.27
## 6289 0.02 0.22 0.02 0.27
## 6290 0.10 0.00 0.02 0.27
## 6291 0.10 0.00 0.02 0.27
## 6292 0.12 0.02 0.04 0.27
## 6293 0.12 0.00 0.03 0.27
## 6294 0.00 0.19 0.01 0.27
## 6295 0.03 0.11 0.01 0.27
## 6296 0.00 0.10 0.01 0.27
## 6297 0.01 0.00 0.00 0.27
## 6298 0.17 0.00 0.09 0.27
## 6299 0.16 0.00 0.02 0.27
## 6300 0.10 0.00 0.03 0.27
## 6301 0.10 0.00 0.02 0.27
## 6302 0.00 0.27 0.00 0.27
## 6303 0.00 0.27 0.00 0.27
## 6304 0.10 0.00 0.02 0.27
## 6305 0.10 0.00 0.03 0.27
## 6306 0.05 0.00 0.01 0.27
## 6307 0.00 0.27 0.00 0.27
## 6308 0.10 0.00 0.02 0.27
## 6309 0.00 0.27 0.00 0.27
## 6310 0.07 0.12 0.01 0.27
## 6311 0.10 0.00 0.03 0.27
## 6312 0.07 0.00 0.00 0.27
## 6313 0.10 0.00 0.03 0.27
## 6314 0.04 0.00 0.04 0.27
## 6316 0.01 0.00 0.02 0.27
## 6318 0.02 0.00 0.00 0.27
## 6319 0.01 0.00 0.14 0.27
## 6321 0.16 0.00 0.05 0.27
## 6322 0.08 0.00 0.01 0.27
## 6323 0.00 0.27 0.00 0.27
## 6324 0.10 0.00 0.03 0.27
## 6325 0.07 0.00 0.00 0.27
## 6326 0.08 0.06 0.04 0.27
## 6327 0.05 0.00 0.01 0.27
## 6328 0.15 0.00 0.03 0.27
## 6329 0.05 0.00 0.01 0.27
## 6330 0.00 0.27 0.00 0.27
## 6331 0.00 0.26 0.01 0.27
## 6332 0.07 0.00 0.00 0.27
## 6333 0.00 0.27 0.00 0.27
## 6334 0.10 0.00 0.03 0.27
## 6335 0.14 0.00 0.05 0.27
## 6336 0.06 0.00 0.01 0.27
## 6337 0.01 0.00 0.02 0.27
## 6338 0.10 0.00 0.03 0.27
## 6339 0.04 0.00 0.03 0.27
## 6340 0.06 0.00 0.01 0.27
## 6341 0.00 0.00 0.02 0.27
## 6342 0.13 0.00 0.04 0.27
## 6343 0.02 0.00 0.00 0.27
## 6344 0.00 0.27 0.00 0.27
## 6345 0.02 0.00 0.00 0.27
## 6346 0.08 0.00 0.01 0.27
## 6347 0.05 0.00 0.00 0.27
## 6348 0.11 0.00 0.03 0.27
## 6349 0.10 0.00 0.03 0.27
## 6350 0.00 0.27 0.00 0.27
## 6351 0.01 0.25 0.01 0.27
## 6352 0.10 0.00 0.03 0.27
## 6353 0.12 0.00 0.03 0.27
## 6354 0.19 0.00 0.04 0.27
## 6355 0.10 0.00 0.03 0.27
## 6356 0.06 0.00 0.01 0.27
## 6357 0.07 0.00 0.00 0.27
## 6358 0.05 0.14 0.02 0.27
## 6359 0.12 0.00 0.02 0.27
## 6360 0.04 0.00 0.00 0.27
## 6361 0.00 0.00 0.02 0.27
## 6362 0.00 0.16 0.01 0.27
## 6363 0.12 0.00 0.02 0.27
## 6364 0.00 0.27 0.00 0.27
## 6365 0.03 0.00 0.03 0.27
## 6366 0.11 0.02 0.02 0.27
## 6367 0.00 0.00 0.02 0.27
## 6368 0.00 0.00 0.02 0.27
## 6369 0.00 0.27 0.00 0.27
## 6370 0.00 0.12 0.01 0.27
## 6371 0.00 0.26 0.01 0.27
## 6372 0.10 0.00 0.03 0.27
## 6373 0.05 0.00 0.01 0.27
## 6374 0.08 0.00 0.02 0.27
## 6375 0.06 0.00 0.01 0.27
## 6376 0.09 0.00 0.03 0.27
## 6377 0.10 0.00 0.02 0.27
## 6378 0.00 0.00 0.02 0.27
## 6379 0.00 0.00 0.02 0.27
## 6380 0.00 0.27 0.00 0.27
## 6381 0.21 0.01 0.04 0.27
## 6382 0.07 0.00 0.00 0.27
## 6383 0.00 0.00 0.02 0.27
## 6384 0.02 0.00 0.02 0.27
## 6385 0.03 0.00 0.02 0.27
## 6386 0.01 0.00 0.02 0.27
## 6387 0.10 0.00 0.02 0.27
## 6388 0.10 0.00 0.03 0.27
## 6389 0.11 0.00 0.08 0.27
## 6390 0.00 0.25 0.02 0.27
## 6391 0.00 0.27 0.00 0.27
## 6392 0.05 0.00 0.01 0.27
## 6393 0.00 0.00 0.02 0.27
## 6394 0.09 0.00 0.02 0.27
## 6395 0.08 0.00 0.00 0.27
## 6396 0.00 0.27 0.00 0.27
## 6397 0.00 0.00 0.02 0.27
## 6398 0.10 0.00 0.03 0.27
## 6399 0.00 0.00 0.02 0.27
## 6400 0.10 0.00 0.02 0.27
## 6401 0.06 0.00 0.02 0.27
## 6403 0.00 0.00 0.02 0.27
## 6404 0.10 0.00 0.02 0.27
## 6405 0.06 0.00 0.01 0.27
## 6406 0.00 0.00 0.02 0.27
## 6407 0.14 0.00 0.04 0.27
## 6408 0.09 0.00 0.02 0.27
## 6409 0.05 0.00 0.02 0.27
## 6410 0.00 0.00 0.02 0.27
## 6411 0.04 0.14 0.02 0.27
## 6412 0.11 0.00 0.05 0.27
## 6413 0.10 0.00 0.02 0.27
## 6414 0.00 0.27 0.00 0.27
## 6415 0.00 0.00 0.02 0.27
## 6416 0.10 0.00 0.03 0.27
## 6417 0.10 0.00 0.03 0.27
## 6418 0.06 0.04 0.04 0.27
## 6419 0.00 0.00 0.02 0.27
## 6420 0.02 0.00 0.02 0.27
## 6421 0.10 0.00 0.03 0.27
## 6422 0.00 0.00 0.02 0.27
## 6423 0.07 0.11 0.03 0.27
## 6424 0.00 0.00 0.02 0.27
## 6425 0.00 0.27 0.00 0.27
## 6426 0.07 0.00 0.00 0.27
## 6427 0.09 0.00 0.02 0.27
## 6428 0.05 0.16 0.02 0.27
## 6429 0.00 0.00 0.02 0.27
## 6430 0.00 0.00 0.02 0.27
## 6431 0.00 0.00 0.02 0.27
## 6432 0.08 0.00 0.02 0.27
## 6433 0.10 0.00 0.03 0.27
## 6434 0.10 0.00 0.03 0.27
## 6435 0.04 0.14 0.02 0.27
## 6436 0.06 0.00 0.02 0.27
## 6437 0.04 0.09 0.03 0.27
## 6438 0.07 0.00 0.00 0.27
## 6439 0.06 0.00 0.01 0.27
## 6440 0.00 0.25 0.02 0.27
## 6441 0.00 0.01 0.02 0.26
## 6442 0.09 0.03 0.03 0.26
## 6443 0.00 0.00 0.02 0.26
## 6444 0.00 0.00 0.02 0.26
## 6445 0.07 0.00 0.00 0.26
## 6446 0.18 0.00 0.02 0.26
## 6447 0.01 0.00 0.02 0.26
## 6448 0.02 0.00 0.02 0.26
## 6449 0.04 0.00 0.02 0.26
## 6450 0.00 0.26 0.00 0.26
## 6451 0.00 0.26 0.00 0.26
## 6452 0.03 0.00 0.02 0.26
## 6453 0.00 0.26 0.00 0.26
## 6454 0.02 0.00 0.02 0.26
## 6455 0.10 0.00 0.03 0.26
## 6456 0.05 0.04 0.01 0.26
## 6457 0.00 0.25 0.02 0.26
## 6458 0.00 0.00 0.02 0.26
## 6459 0.06 0.11 0.02 0.26
## 6460 0.07 0.00 0.06 0.26
## 6461 0.00 0.26 0.00 0.26
## 6462 0.03 0.14 0.01 0.26
## 6463 0.10 0.00 0.02 0.26
## 6464 0.10 0.00 0.03 0.26
## 6465 0.10 0.00 0.03 0.26
## 6466 0.19 0.00 0.02 0.26
## 6467 0.18 0.00 0.04 0.26
## 6468 0.10 0.00 0.02 0.26
## 6469 0.00 0.26 0.00 0.26
## 6470 0.00 0.26 0.00 0.26
## 6471 0.10 0.00 0.03 0.26
## 6472 0.07 0.17 0.02 0.26
## 6473 0.07 0.00 0.00 0.26
## 6474 0.00 0.26 0.00 0.26
## 6475 0.06 0.00 0.04 0.26
## 6476 0.16 0.00 0.05 0.26
## 6477 0.02 0.00 0.16 0.26
## 6478 0.00 0.26 0.00 0.26
## 6479 0.00 0.00 0.02 0.26
## 6480 0.00 0.00 0.02 0.26
## 6481 0.00 0.26 0.00 0.26
## 6482 0.10 0.00 0.03 0.26
## 6483 0.03 0.00 0.02 0.26
## 6484 0.08 0.05 0.03 0.26
## 6485 0.00 0.00 0.02 0.26
## 6486 0.00 0.26 0.00 0.26
## 6487 0.07 0.00 0.00 0.26
## 6488 0.00 0.26 0.00 0.26
## 6489 0.00 0.00 0.00 0.26
## 6490 0.01 0.25 0.00 0.26
## 6491 0.07 0.00 0.00 0.26
## 6492 0.00 0.26 0.01 0.26
## 6493 0.07 0.00 0.00 0.26
## 6494 0.10 0.01 0.05 0.26
## 6495 0.10 0.00 0.02 0.26
## 6496 0.06 0.05 0.02 0.26
## 6498 0.00 0.00 0.02 0.26
## 6499 0.05 0.00 0.01 0.26
## 6500 0.10 0.00 0.03 0.26
## 6501 0.00 0.26 0.00 0.26
## 6502 0.00 0.00 0.02 0.26
## 6503 0.00 0.00 0.02 0.26
## 6504 0.09 0.00 0.02 0.26
## 6505 0.24 0.00 0.02 0.26
## 6506 0.20 0.00 0.05 0.26
## 6507 0.00 0.26 0.00 0.26
## 6508 0.00 0.00 0.02 0.26
## 6509 0.10 0.00 0.02 0.26
## 6510 0.05 0.07 0.01 0.26
## 6511 0.00 0.25 0.01 0.26
## 6512 0.00 0.25 0.01 0.26
## 6513 0.00 0.00 0.02 0.26
## 6514 0.10 0.00 0.03 0.26
## 6515 0.05 0.00 0.03 0.26
## 6516 0.07 0.00 0.02 0.26
## 6517 0.01 0.14 0.01 0.26
## 6518 0.03 0.18 0.02 0.26
## 6519 0.00 0.26 0.00 0.26
## 6520 0.04 0.01 0.03 0.26
## 6521 0.00 0.26 0.00 0.26
## 6522 0.00 0.26 0.00 0.26
## 6523 0.05 0.00 0.00 0.26
## 6524 0.05 0.00 0.00 0.26
## 6525 0.05 0.00 0.00 0.26
## 6526 0.05 0.00 0.00 0.26
## 6527 0.10 0.00 0.03 0.26
## 6528 0.05 0.14 0.02 0.26
## 6529 0.10 0.00 0.03 0.26
## 6530 0.07 0.00 0.00 0.26
## 6531 0.00 0.10 0.03 0.26
## 6532 0.00 0.26 0.00 0.26
## 6533 0.10 0.00 0.06 0.26
## 6534 0.07 0.00 0.02 0.26
## 6535 0.06 0.00 0.01 0.26
## 6536 0.05 0.00 0.01 0.26
## 6537 0.14 0.00 0.02 0.26
## 6538 0.01 0.00 0.00 0.26
## 6539 0.01 0.00 0.13 0.26
## 6540 0.00 0.26 0.00 0.26
## 6541 0.03 0.00 0.03 0.26
## 6542 0.09 0.00 0.03 0.26
## 6543 0.06 0.00 0.01 0.26
## 6544 0.15 0.00 0.06 0.26
## 6545 0.08 0.00 0.02 0.26
## 6546 0.08 0.00 0.02 0.26
## 6547 0.10 0.00 0.02 0.26
## 6548 0.10 0.00 0.03 0.26
## 6549 0.05 0.00 0.01 0.26
## 6550 0.00 0.25 0.00 0.26
## 6551 0.00 0.00 0.02 0.26
## 6552 0.01 0.11 0.01 0.26
## 6553 0.00 0.26 0.00 0.26
## 6554 0.15 0.00 0.02 0.26
## 6555 0.04 0.11 0.01 0.26
## 6556 0.00 0.00 0.02 0.26
## 6557 0.03 0.00 0.02 0.26
## 6558 0.00 0.00 0.02 0.26
## 6559 0.00 0.26 0.00 0.26
## 6560 0.07 0.00 0.00 0.26
## 6561 0.00 0.26 0.00 0.26
## 6562 0.07 0.00 0.02 0.26
## 6563 0.07 0.00 0.00 0.26
## 6564 0.06 0.00 0.01 0.26
## 6565 0.15 0.00 0.08 0.26
## 6566 0.10 0.00 0.03 0.26
## 6567 0.10 0.00 0.02 0.26
## 6568 0.15 0.00 0.03 0.26
## 6569 0.00 0.26 0.00 0.26
## 6570 0.06 0.00 0.02 0.26
## 6571 0.11 0.00 0.05 0.26
## 6572 0.10 0.00 0.03 0.26
## 6573 0.03 0.06 0.02 0.26
## 6574 0.00 0.00 0.02 0.26
## 6575 0.06 0.00 0.01 0.26
## 6576 0.00 0.24 0.02 0.26
## 6577 0.00 0.26 0.00 0.26
## 6578 0.08 0.02 0.04 0.26
## 6579 0.05 0.00 0.01 0.26
## 6580 0.01 0.00 0.02 0.26
## 6581 0.07 0.00 0.00 0.26
## 6582 0.05 0.13 0.02 0.26
## 6583 0.00 0.26 0.00 0.26
## 6584 0.01 0.00 0.00 0.26
## 6585 0.01 0.00 0.02 0.26
## 6586 0.00 0.26 0.00 0.26
## 6587 0.00 0.26 0.00 0.26
## 6588 0.07 0.00 0.00 0.26
## 6589 0.11 0.10 0.01 0.26
## 6590 0.00 0.00 0.02 0.26
## 6591 0.05 0.00 0.01 0.26
## 6592 0.06 0.00 0.01 0.26
## 6593 0.21 0.00 0.05 0.26
## 6594 0.10 0.00 0.03 0.26
## 6595 0.21 0.00 0.04 0.26
## 6596 0.10 0.00 0.02 0.26
## 6597 0.13 0.00 0.03 0.26
## 6598 0.10 0.00 0.03 0.26
## 6599 0.25 0.00 0.00 0.26
## 6600 0.00 0.25 0.01 0.26
## 6601 0.06 0.04 0.00 0.26
## 6602 0.00 0.02 0.02 0.26
## 6603 0.10 0.00 0.03 0.26
## 6604 0.01 0.00 0.02 0.26
## 6605 0.00 0.26 0.00 0.26
## 6606 0.06 0.00 0.01 0.26
## 6607 0.05 0.00 0.01 0.26
## 6608 0.07 0.00 0.00 0.25
## 6609 0.05 0.00 0.01 0.25
## 6610 0.00 0.24 0.02 0.25
## 6611 0.06 0.00 0.03 0.25
## 6612 0.00 0.25 0.00 0.25
## 6613 0.01 0.00 0.02 0.25
## 6614 0.10 0.00 0.03 0.25
## 6615 0.01 0.00 0.02 0.25
## 6616 0.00 0.00 0.02 0.25
## 6617 0.10 0.00 0.02 0.25
## 6618 0.15 0.00 0.06 0.25
## 6619 0.12 0.00 0.04 0.25
## 6620 0.01 0.00 0.08 0.25
## 6621 0.04 0.06 0.01 0.25
## 6622 0.00 0.00 0.02 0.25
## 6623 0.10 0.00 0.03 0.25
## 6624 0.00 0.25 0.00 0.25
## 6625 0.10 0.00 0.04 0.25
## 6626 0.04 0.06 0.02 0.25
## 6627 0.09 0.03 0.02 0.25
## 6628 0.07 0.00 0.00 0.25
## 6629 0.00 0.00 0.02 0.25
## 6630 0.05 0.00 0.01 0.25
## 6631 0.04 0.10 0.03 0.25
## 6632 0.00 0.25 0.00 0.25
## 6633 0.00 0.25 0.00 0.25
## 6634 0.11 0.00 0.04 0.25
## 6635 0.05 0.00 0.01 0.25
## 6636 0.10 0.00 0.03 0.25
## 6637 0.05 0.00 0.01 0.25
## 6638 0.02 0.00 0.03 0.25
## 6639 0.10 0.00 0.02 0.25
## 6640 0.07 0.00 0.00 0.25
## 6641 0.00 0.25 0.00 0.25
## 6642 0.00 0.24 0.02 0.25
## 6643 0.05 0.00 0.01 0.25
## 6644 0.10 0.00 0.02 0.25
## 6645 0.01 0.00 0.02 0.25
## 6646 0.04 0.00 0.01 0.25
## 6647 0.10 0.00 0.02 0.25
## 6649 0.07 0.00 0.00 0.25
## 6650 0.02 0.00 0.02 0.25
## 6651 0.09 0.00 0.02 0.25
## 6652 0.07 0.00 0.02 0.25
## 6653 0.07 0.00 0.03 0.25
## 6654 0.09 0.02 0.04 0.25
## 6655 0.10 0.00 0.03 0.25
## 6656 0.10 0.00 0.02 0.25
## 6657 0.14 0.00 0.02 0.25
## 6658 0.10 0.00 0.02 0.25
## 6659 0.01 0.00 0.02 0.25
## 6660 0.00 0.25 0.00 0.25
## 6661 0.10 0.00 0.04 0.25
## 6662 0.23 0.00 0.03 0.25
## 6663 0.05 0.00 0.01 0.25
## 6664 0.04 0.10 0.01 0.25
## 6665 0.05 0.00 0.01 0.25
## 6666 0.01 0.00 0.02 0.25
## 6667 0.05 0.00 0.01 0.25
## 6668 0.07 0.00 0.00 0.25
## 6669 0.00 0.00 0.00 0.25
## 6670 0.00 0.25 0.00 0.25
## 6671 0.10 0.00 0.03 0.25
## 6672 0.05 0.00 0.02 0.25
## 6673 0.13 0.00 0.06 0.25
## 6674 0.00 0.23 0.02 0.25
## 6675 0.02 0.00 0.02 0.25
## 6676 0.07 0.00 0.00 0.25
## 6677 0.05 0.00 0.01 0.25
## 6678 0.05 0.00 0.01 0.25
## 6679 0.09 0.00 0.02 0.25
## 6680 0.08 0.00 0.01 0.25
## 6681 0.00 0.00 0.02 0.25
## 6682 0.00 0.25 0.00 0.25
## 6683 0.02 0.00 0.02 0.25
## 6684 0.08 0.00 0.02 0.25
## 6685 0.04 0.05 0.00 0.25
## 6686 0.02 0.00 0.00 0.25
## 6687 0.05 0.00 0.00 0.25
## 6688 0.05 0.00 0.00 0.25
## 6689 0.05 0.00 0.00 0.25
## 6690 0.13 0.00 0.01 0.25
## 6691 0.05 0.00 0.00 0.25
## 6692 0.02 0.00 0.00 0.25
## 6693 0.05 0.00 0.00 0.25
## 6694 0.14 0.00 0.04 0.25
## 6695 0.21 0.00 0.04 0.25
## 6696 0.10 0.00 0.03 0.25
## 6697 0.05 0.00 0.01 0.25
## 6698 0.10 0.00 0.03 0.25
## 6699 0.00 0.23 0.02 0.25
## 6700 0.05 0.00 0.01 0.25
## 6701 0.09 0.00 0.02 0.25
## 6702 0.07 0.00 0.02 0.25
## 6703 0.10 0.00 0.03 0.25
## 6704 0.01 0.24 0.00 0.25
## 6705 0.00 0.25 0.00 0.25
## 6706 0.13 0.00 0.04 0.25
## 6707 0.00 0.25 0.00 0.25
## 6708 0.17 0.00 0.04 0.25
## 6709 0.05 0.00 0.02 0.25
## 6710 0.04 0.00 0.04 0.25
## 6711 0.02 0.10 0.01 0.25
## 6712 0.01 0.12 0.02 0.25
## 6713 0.03 0.18 0.01 0.25
## 6714 0.03 0.00 0.02 0.25
## 6715 0.09 0.00 0.02 0.25
## 6716 0.03 0.00 0.02 0.25
## 6717 0.07 0.00 0.00 0.25
## 6718 0.00 0.24 0.01 0.25
## 6719 0.08 0.00 0.03 0.25
## 6720 0.09 0.00 0.02 0.25
## 6721 0.04 0.00 0.02 0.25
## 6722 0.00 0.25 0.00 0.25
## 6723 0.05 0.03 0.02 0.25
## 6724 0.09 0.00 0.04 0.25
## 6725 0.00 0.25 0.00 0.25
## 6726 0.11 0.00 0.02 0.25
## 6727 0.09 0.00 0.03 0.25
## 6728 0.06 0.00 0.02 0.25
## 6729 0.01 0.00 0.00 0.25
## 6730 0.05 0.00 0.01 0.25
## 6731 0.09 0.00 0.02 0.25
## 6732 0.13 0.00 0.05 0.25
## 6733 0.01 0.03 0.02 0.25
## 6734 0.09 0.00 0.02 0.25
## 6735 0.00 0.00 0.02 0.25
## 6736 0.01 0.00 0.02 0.25
## 6737 0.09 0.00 0.03 0.25
## 6738 0.01 0.03 0.02 0.25
## 6739 0.09 0.00 0.03 0.25
## 6740 0.05 0.00 0.01 0.25
## 6741 0.09 0.00 0.03 0.25
## 6742 0.09 0.00 0.02 0.25
## 6743 0.04 0.00 0.03 0.25
## 6744 0.22 0.00 0.01 0.25
## 6745 0.09 0.00 0.02 0.25
## 6746 0.16 0.00 0.03 0.25
## 6747 0.00 0.25 0.00 0.25
## 6748 0.12 0.00 0.05 0.25
## 6749 0.04 0.00 0.03 0.25
## 6750 0.16 0.00 0.03 0.25
## 6751 0.09 0.00 0.02 0.25
## 6752 0.03 0.15 0.02 0.25
## 6753 0.05 0.00 0.01 0.25
## 6754 0.11 0.00 0.02 0.25
## 6755 0.09 0.00 0.03 0.25
## 6756 0.00 0.23 0.02 0.25
## 6757 0.01 0.00 0.02 0.25
## 6758 0.07 0.00 0.00 0.25
## 6759 0.00 0.00 0.02 0.25
## 6760 0.05 0.00 0.01 0.25
## 6761 0.07 0.00 0.00 0.25
## 6762 0.14 0.00 0.08 0.25
## 6763 0.01 0.00 0.02 0.25
## 6764 0.05 0.00 0.01 0.25
## 6765 0.19 0.00 0.02 0.25
## 6766 0.14 0.00 0.03 0.25
## 6767 0.04 0.10 0.01 0.25
## 6768 0.03 0.12 0.01 0.25
## 6769 0.09 0.00 0.03 0.25
## 6770 0.10 0.00 0.02 0.25
## 6771 0.09 0.00 0.03 0.24
## 6772 0.00 0.24 0.00 0.24
## 6773 0.09 0.00 0.03 0.24
## 6774 0.07 0.00 0.02 0.24
## 6775 0.06 0.00 0.00 0.24
## 6776 0.00 0.23 0.02 0.24
## 6777 0.01 0.00 0.02 0.24
## 6779 0.10 0.00 0.02 0.24
## 6780 0.16 0.00 0.05 0.24
## 6781 0.00 0.12 0.01 0.24
## 6782 0.00 0.00 0.02 0.24
## 6783 0.02 0.00 0.02 0.24
## 6784 0.00 0.24 0.00 0.24
## 6785 0.09 0.00 0.02 0.24
## 6786 0.10 0.00 0.02 0.24
## 6787 0.03 0.16 0.02 0.24
## 6788 0.09 0.00 0.02 0.24
## 6789 0.00 0.00 0.02 0.24
## 6790 0.09 0.00 0.02 0.24
## 6791 0.06 0.00 0.02 0.24
## 6792 0.07 0.00 0.02 0.24
## 6793 0.00 0.00 0.02 0.24
## 6794 0.03 0.06 0.05 0.24
## 6795 0.10 0.00 0.03 0.24
## 6796 0.00 0.16 0.00 0.24
## 6797 0.02 0.00 0.02 0.24
## 6798 0.09 0.00 0.03 0.24
## 6799 0.00 0.23 0.02 0.24
## 6800 0.09 0.00 0.03 0.24
## 6801 0.06 0.08 0.01 0.24
## 6802 0.00 0.00 0.02 0.24
## 6803 0.05 0.00 0.01 0.24
## 6804 0.00 0.23 0.02 0.24
## 6805 0.09 0.00 0.03 0.24
## 6806 0.00 0.00 0.02 0.24
## 6808 0.08 0.02 0.03 0.24
## 6809 0.00 0.24 0.00 0.24
## 6810 0.12 0.00 0.02 0.24
## 6811 0.09 0.00 0.03 0.24
## 6812 0.01 0.12 0.01 0.24
## 6813 0.05 0.00 0.01 0.24
## 6814 0.04 0.05 0.01 0.24
## 6815 0.06 0.00 0.00 0.24
## 6816 0.03 0.16 0.02 0.24
## 6817 0.09 0.00 0.02 0.24
## 6818 0.13 0.00 0.05 0.24
## 6819 0.09 0.00 0.02 0.24
## 6820 0.05 0.00 0.01 0.24
## 6821 0.00 0.18 0.01 0.24
## 6822 0.01 0.00 0.02 0.24
## 6823 0.07 0.00 0.02 0.24
## 6824 0.02 0.00 0.02 0.24
## 6825 0.01 0.00 0.02 0.24
## 6826 0.15 0.00 0.02 0.24
## 6827 0.12 0.00 0.02 0.24
## 6828 0.00 0.00 0.02 0.24
## 6829 0.00 0.18 0.01 0.24
## 6830 0.02 0.00 0.02 0.24
## 6831 0.05 0.00 0.01 0.24
## 6832 0.05 0.00 0.02 0.24
## 6834 0.09 0.00 0.03 0.24
## 6835 0.05 0.01 0.04 0.24
## 6836 0.05 0.00 0.01 0.24
## 6837 0.09 0.00 0.05 0.24
## 6838 0.19 0.00 0.05 0.24
## 6839 0.05 0.00 0.01 0.24
## 6840 0.01 0.05 0.02 0.24
## 6841 0.00 0.00 0.02 0.24
## 6842 0.00 0.24 0.00 0.24
## 6843 0.00 0.24 0.00 0.24
## 6844 0.05 0.00 0.01 0.24
## 6845 0.06 0.00 0.02 0.24
## 6846 0.21 0.00 0.01 0.24
## 6847 0.00 0.24 0.00 0.24
## 6848 0.05 0.00 0.01 0.24
## 6849 0.00 0.06 0.01 0.24
## 6850 0.06 0.00 0.00 0.24
## 6851 0.05 0.00 0.02 0.24
## 6852 0.05 0.00 0.01 0.24
## 6853 0.00 0.00 0.02 0.24
## 6854 0.11 0.00 0.04 0.24
## 6855 0.00 0.24 0.00 0.24
## 6856 0.06 0.00 0.00 0.24
## 6857 0.09 0.00 0.03 0.24
## 6858 0.00 0.00 0.02 0.24
## 6859 0.09 0.00 0.03 0.24
## 6860 0.00 0.07 0.01 0.24
## 6861 0.05 0.00 0.01 0.24
## 6862 0.00 0.01 0.02 0.24
## 6863 0.02 0.00 0.02 0.24
## 6864 0.00 0.24 0.00 0.24
## 6865 0.03 0.00 0.03 0.24
## 6866 0.03 0.00 0.02 0.24
## 6867 0.01 0.00 0.00 0.24
## 6868 0.05 0.00 0.00 0.24
## 6869 0.05 0.00 0.00 0.24
## 6870 0.05 0.00 0.00 0.24
## 6871 0.05 0.00 0.00 0.24
## 6872 0.05 0.00 0.00 0.24
## 6873 0.05 0.00 0.00 0.24
## 6874 0.02 0.00 0.02 0.24
## 6875 0.09 0.00 0.03 0.24
## 6876 0.00 0.24 0.00 0.24
## 6877 0.10 0.00 0.02 0.24
## 6878 0.05 0.00 0.01 0.24
## 6879 0.09 0.00 0.02 0.24
## 6880 0.05 0.00 0.01 0.24
## 6881 0.23 0.00 0.01 0.24
## 6882 0.00 0.00 0.02 0.24
## 6883 0.06 0.00 0.00 0.24
## 6884 0.00 0.00 0.02 0.24
## 6885 0.00 0.00 0.02 0.24
## 6886 0.08 0.00 0.02 0.24
## 6887 0.00 0.23 0.01 0.24
## 6888 0.09 0.00 0.02 0.24
## 6889 0.00 0.24 0.00 0.24
## 6890 0.06 0.00 0.03 0.24
## 6891 0.13 0.00 0.02 0.24
## 6892 0.07 0.06 0.03 0.24
## 6893 0.05 0.00 0.01 0.24
## 6894 0.09 0.00 0.03 0.24
## 6895 0.14 0.00 0.02 0.24
## 6896 0.04 0.00 0.02 0.24
## 6897 0.01 0.00 0.00 0.24
## 6898 0.00 0.24 0.00 0.24
## 6899 0.05 0.00 0.02 0.24
## 6900 0.06 0.00 0.02 0.24
## 6901 0.08 0.06 0.02 0.24
## 6902 0.05 0.00 0.01 0.24
## 6903 0.09 0.00 0.02 0.24
## 6904 0.00 0.03 0.02 0.24
## 6905 0.14 0.00 0.03 0.24
## 6906 0.06 0.00 0.00 0.24
## 6907 0.06 0.00 0.00 0.24
## 6908 0.03 0.00 0.02 0.24
## 6909 0.24 0.00 0.00 0.24
## 6910 0.06 0.01 0.02 0.24
## 6911 0.10 0.00 0.02 0.24
## 6912 0.02 0.04 0.02 0.24
## 6913 0.09 0.00 0.03 0.24
## 6914 0.09 0.00 0.02 0.24
## 6915 0.09 0.00 0.03 0.24
## 6916 0.07 0.00 0.05 0.24
## 6917 0.00 0.00 0.02 0.24
## 6918 0.18 0.00 0.05 0.24
## 6919 0.14 0.01 0.05 0.24
## 6921 0.10 0.00 0.02 0.24
## 6922 0.06 0.11 0.01 0.24
## 6923 0.09 0.00 0.02 0.24
## 6924 0.02 0.04 0.04 0.24
## 6925 0.06 0.00 0.02 0.24
## 6926 0.09 0.00 0.02 0.24
## 6928 0.05 0.00 0.02 0.24
## 6929 0.10 0.00 0.05 0.24
## 6930 0.11 0.00 0.03 0.24
## 6931 0.21 0.00 0.02 0.24
## 6932 0.09 0.00 0.02 0.24
## 6933 0.05 0.00 0.02 0.24
## 6934 0.01 0.13 0.01 0.24
## 6935 0.05 0.00 0.01 0.24
## 6936 0.06 0.00 0.00 0.24
## 6937 0.00 0.24 0.00 0.24
## 6939 0.09 0.00 0.02 0.24
## 6940 0.01 0.00 0.00 0.24
## 6941 0.01 0.00 0.00 0.24
## 6942 0.10 0.00 0.02 0.24
## 6943 0.05 0.00 0.02 0.24
## 6944 0.12 0.00 0.02 0.24
## 6945 0.00 0.13 0.01 0.24
## 6946 0.00 0.00 0.01 0.24
## 6947 0.06 0.00 0.04 0.24
## 6948 0.01 0.04 0.02 0.24
## 6949 0.09 0.01 0.04 0.24
## 6950 0.07 0.01 0.02 0.24
## 6951 0.06 0.00 0.02 0.24
## 6952 0.09 0.00 0.03 0.24
## 6953 0.08 0.00 0.04 0.23
## 6954 0.05 0.00 0.02 0.23
## 6955 0.03 0.00 0.02 0.23
## 6956 0.09 0.00 0.02 0.23
## 6957 0.00 0.00 0.02 0.23
## 6958 0.09 0.00 0.03 0.23
## 6959 0.09 0.00 0.03 0.23
## 6960 0.06 0.00 0.02 0.23
## 6961 0.00 0.23 0.00 0.23
## 6962 0.01 0.12 0.01 0.23
## 6963 0.00 0.23 0.00 0.23
## 6964 0.09 0.00 0.02 0.23
## 6965 0.21 0.00 0.02 0.23
## 6966 0.22 0.00 0.02 0.23
## 6968 0.00 0.00 0.02 0.23
## 6970 0.00 0.23 0.01 0.23
## 6971 0.05 0.00 0.01 0.23
## 6972 0.05 0.00 0.01 0.23
## 6973 0.11 0.00 0.05 0.23
## 6974 0.04 0.00 0.02 0.23
## 6975 0.05 0.00 0.01 0.23
## 6976 0.05 0.00 0.02 0.23
## 6977 0.09 0.11 0.03 0.23
## 6978 0.00 0.23 0.00 0.23
## 6979 0.01 0.06 0.01 0.23
## 6980 0.10 0.01 0.02 0.23
## 6981 0.05 0.00 0.02 0.23
## 6982 0.02 0.05 0.02 0.23
## 6983 0.00 0.00 0.02 0.23
## 6984 0.03 0.00 0.03 0.23
## 6985 0.00 0.23 0.00 0.23
## 6986 0.02 0.08 0.00 0.23
## 6987 0.06 0.00 0.04 0.23
## 6988 0.13 0.00 0.02 0.23
## 6989 0.02 0.00 0.02 0.23
## 6990 0.13 0.00 0.03 0.23
## 6991 0.05 0.00 0.01 0.23
## 6992 0.19 0.00 0.05 0.23
## 6993 0.09 0.00 0.03 0.23
## 6994 0.05 0.00 0.01 0.23
## 6995 0.00 0.23 0.00 0.23
## 6996 0.00 0.23 0.00 0.23
## 6997 0.07 0.00 0.03 0.23
## 6998 0.06 0.00 0.04 0.23
## 6999 0.09 0.00 0.03 0.23
## 7000 0.00 0.00 0.02 0.23
## 7001 0.00 0.00 0.02 0.23
## 7002 0.09 0.00 0.03 0.23
## 7003 0.00 0.23 0.00 0.23
## 7004 0.01 0.00 0.02 0.23
## 7005 0.00 0.23 0.00 0.23
## 7006 0.01 0.00 0.00 0.23
## 7007 0.01 0.00 0.02 0.23
## 7008 0.10 0.00 0.04 0.23
## 7009 0.05 0.00 0.01 0.23
## 7010 0.05 0.00 0.01 0.23
## 7011 0.02 0.00 0.02 0.23
## 7012 0.00 0.00 0.02 0.23
## 7013 0.10 0.00 0.02 0.23
## 7014 0.09 0.00 0.03 0.23
## 7015 0.00 0.23 0.00 0.23
## 7016 0.01 0.00 0.06 0.23
## 7017 0.05 0.00 0.01 0.23
## 7018 0.06 0.00 0.03 0.23
## 7019 0.09 0.00 0.03 0.23
## 7020 0.05 0.00 0.02 0.23
## 7021 0.09 0.00 0.02 0.23
## 7022 0.00 0.23 0.00 0.23
## 7023 0.00 0.23 0.00 0.23
## 7024 0.05 0.00 0.01 0.23
## 7025 0.00 0.00 0.02 0.23
## 7026 0.11 0.00 0.02 0.23
## 7027 0.02 0.00 0.02 0.23
## 7028 0.01 0.00 0.02 0.23
## 7029 0.02 0.00 0.02 0.23
## 7030 0.01 0.00 0.02 0.23
## 7031 0.09 0.00 0.02 0.23
## 7032 0.09 0.00 0.02 0.23
## 7033 0.00 0.00 0.02 0.23
## 7034 0.06 0.00 0.00 0.23
## 7035 0.16 0.00 0.07 0.23
## 7037 0.09 0.00 0.02 0.23
## 7038 0.12 0.09 0.02 0.23
## 7039 0.03 0.18 0.01 0.23
## 7040 0.06 0.02 0.02 0.23
## 7041 0.08 0.00 0.02 0.23
## 7042 0.00 0.00 0.01 0.23
## 7043 0.06 0.00 0.00 0.23
## 7044 0.06 0.00 0.02 0.23
## 7045 0.05 0.00 0.03 0.23
## 7046 0.00 0.23 0.00 0.23
## 7047 0.09 0.00 0.02 0.23
## 7048 0.00 0.00 0.02 0.23
## 7049 0.13 0.00 0.02 0.23
## 7050 0.09 0.00 0.03 0.23
## 7051 0.22 0.00 0.01 0.23
## 7052 0.05 0.00 0.01 0.23
## 7053 0.07 0.00 0.03 0.23
## 7054 0.12 0.00 0.03 0.23
## 7055 0.09 0.00 0.03 0.23
## 7056 0.00 0.00 0.02 0.23
## 7057 0.06 0.00 0.00 0.23
## 7058 0.04 0.00 0.04 0.23
## 7059 0.02 0.00 0.02 0.23
## 7060 0.19 0.00 0.04 0.23
## 7061 0.00 0.23 0.00 0.23
## 7062 0.02 0.00 0.02 0.23
## 7063 0.01 0.00 0.02 0.23
## 7064 0.00 0.23 0.00 0.23
## 7065 0.01 0.00 0.02 0.23
## 7066 0.00 0.23 0.00 0.23
## 7067 0.00 0.23 0.00 0.23
## 7068 0.00 0.23 0.00 0.23
## 7069 0.09 0.00 0.03 0.23
## 7070 0.06 0.00 0.02 0.23
## 7071 0.00 0.13 0.01 0.23
## 7072 0.09 0.00 0.03 0.23
## 7073 0.14 0.00 0.07 0.23
## 7074 0.00 0.00 0.01 0.23
## 7075 0.00 0.23 0.00 0.23
## 7076 0.09 0.00 0.01 0.23
## 7077 0.06 0.00 0.00 0.23
## 7078 0.00 0.00 0.02 0.23
## 7079 0.00 0.23 0.00 0.23
## 7080 0.00 0.23 0.00 0.23
## 7081 0.01 0.07 0.01 0.23
## 7082 0.09 0.00 0.03 0.23
## 7083 0.06 0.00 0.00 0.23
## 7084 0.00 0.00 0.02 0.23
## 7085 0.00 0.23 0.00 0.23
## 7086 0.05 0.00 0.01 0.23
## 7087 0.00 0.23 0.00 0.23
## 7088 0.05 0.00 0.01 0.23
## 7089 0.10 0.03 0.02 0.23
## 7090 0.09 0.00 0.03 0.23
## 7091 0.05 0.10 0.02 0.23
## 7092 0.09 0.00 0.01 0.23
## 7093 0.00 0.23 0.00 0.23
## 7094 0.09 0.00 0.03 0.23
## 7095 0.00 0.23 0.00 0.23
## 7096 0.09 0.00 0.01 0.23
## 7097 0.00 0.21 0.01 0.23
## 7098 0.05 0.00 0.01 0.23
## 7099 0.09 0.00 0.03 0.23
## 7100 0.09 0.00 0.03 0.23
## 7101 0.03 0.00 0.02 0.23
## 7102 0.03 0.00 0.02 0.23
## 7103 0.04 0.12 0.01 0.23
## 7104 0.00 0.00 0.02 0.23
## 7105 0.04 0.12 0.01 0.23
## 7106 0.05 0.00 0.01 0.23
## 7107 0.00 0.12 0.01 0.23
## 7108 0.09 0.00 0.03 0.23
## 7109 0.01 0.04 0.02 0.23
## 7110 0.01 0.00 0.02 0.23
## 7111 0.00 0.00 0.02 0.23
## 7112 0.00 0.00 0.01 0.23
## 7113 0.09 0.00 0.03 0.23
## 7114 0.01 0.00 0.02 0.23
## 7115 0.09 0.00 0.03 0.23
## 7116 0.00 0.00 0.02 0.23
## 7117 0.09 0.00 0.03 0.23
## 7118 0.10 0.00 0.04 0.23
## 7119 0.07 0.00 0.02 0.23
## 7120 0.00 0.00 0.02 0.23
## 7121 0.00 0.23 0.00 0.23
## 7122 0.09 0.00 0.03 0.23
## 7123 0.00 0.00 0.01 0.23
## 7124 0.00 0.21 0.01 0.23
## 7125 0.05 0.09 0.03 0.23
## 7126 0.00 0.23 0.00 0.23
## 7127 0.09 0.00 0.03 0.23
## 7128 0.09 0.00 0.01 0.23
## 7129 0.09 0.00 0.03 0.23
## 7130 0.00 0.00 0.02 0.23
## 7131 0.00 0.23 0.00 0.23
## 7132 0.00 0.00 0.02 0.23
## 7133 0.00 0.00 0.02 0.23
## 7134 0.09 0.00 0.03 0.23
## 7135 0.09 0.00 0.03 0.22
## 7136 0.01 0.00 0.02 0.22
## 7137 0.01 0.00 0.02 0.22
## 7138 0.00 0.22 0.00 0.22
## 7139 0.00 0.00 0.12 0.22
## 7140 0.03 0.00 0.02 0.22
## 7141 0.05 0.00 0.01 0.22
## 7142 0.00 0.22 0.00 0.22
## 7143 0.09 0.00 0.03 0.22
## 7144 0.04 0.05 0.02 0.22
## 7145 0.06 0.00 0.00 0.22
## 7146 0.09 0.00 0.02 0.22
## 7147 0.00 0.22 0.00 0.22
## 7148 0.04 0.00 0.01 0.22
## 7149 0.01 0.00 0.00 0.22
## 7150 0.01 0.00 0.00 0.22
## 7151 0.01 0.00 0.00 0.22
## 7152 0.00 0.08 0.01 0.22
## 7153 0.03 0.00 0.02 0.22
## 7154 0.00 0.22 0.00 0.22
## 7155 0.06 0.00 0.03 0.22
## 7156 0.00 0.22 0.00 0.22
## 7157 0.00 0.00 0.01 0.22
## 7158 0.05 0.00 0.01 0.22
## 7159 0.09 0.00 0.03 0.22
## 7160 0.09 0.00 0.03 0.22
## 7161 0.00 0.22 0.00 0.22
## 7162 0.07 0.00 0.02 0.22
## 7163 0.00 0.00 0.01 0.22
## 7164 0.06 0.00 0.04 0.22
## 7165 0.00 0.22 0.00 0.22
## 7166 0.04 0.00 0.01 0.22
## 7167 0.01 0.00 0.02 0.22
## 7168 0.00 0.00 0.21 0.22
## 7169 0.00 0.00 0.02 0.22
## 7170 0.00 0.22 0.00 0.22
## 7171 0.04 0.06 0.00 0.22
## 7172 0.00 0.11 0.01 0.22
## 7173 0.09 0.00 0.03 0.22
## 7174 0.04 0.00 0.01 0.22
## 7175 0.06 0.00 0.00 0.22
## 7176 0.06 0.00 0.00 0.22
## 7177 0.00 0.00 0.02 0.22
## 7178 0.13 0.00 0.04 0.22
## 7179 0.00 0.07 0.01 0.22
## 7180 0.02 0.00 0.02 0.22
## 7181 0.08 0.01 0.04 0.22
## 7183 0.04 0.10 0.02 0.22
## 7184 0.07 0.00 0.02 0.22
## 7185 0.01 0.00 0.00 0.22
## 7186 0.00 0.22 0.00 0.22
## 7187 0.08 0.00 0.01 0.22
## 7188 0.02 0.00 0.02 0.22
## 7189 0.08 0.00 0.01 0.22
## 7190 0.01 0.00 0.02 0.22
## 7191 0.02 0.17 0.01 0.22
## 7192 0.00 0.00 0.02 0.22
## 7193 0.06 0.08 0.02 0.22
## 7194 0.00 0.00 0.02 0.22
## 7195 0.00 0.22 0.00 0.22
## 7196 0.07 0.00 0.02 0.22
## 7197 0.01 0.00 0.01 0.22
## 7198 0.00 0.00 0.02 0.22
## 7199 0.06 0.00 0.00 0.22
## 7200 0.13 0.00 0.03 0.22
## 7201 0.10 0.00 0.04 0.22
## 7202 0.12 0.00 0.07 0.22
## 7203 0.13 0.02 0.04 0.22
## 7204 0.02 0.00 0.01 0.22
## 7205 0.01 0.00 0.02 0.22
## 7206 0.01 0.03 0.02 0.22
## 7207 0.08 0.00 0.01 0.22
## 7208 0.08 0.00 0.02 0.22
## 7209 0.06 0.00 0.00 0.22
## 7210 0.08 0.00 0.05 0.22
## 7211 0.04 0.12 0.02 0.22
## 7212 0.08 0.00 0.02 0.22
## 7213 0.10 0.00 0.04 0.22
## 7215 0.06 0.00 0.00 0.22
## 7216 0.00 0.00 0.02 0.22
## 7217 0.09 0.00 0.04 0.22
## 7218 0.06 0.00 0.00 0.22
## 7219 0.10 0.00 0.02 0.22
## 7220 0.05 0.00 0.01 0.22
## 7221 0.00 0.22 0.00 0.22
## 7222 0.04 0.00 0.01 0.22
## 7223 0.09 0.00 0.02 0.22
## 7224 0.04 0.00 0.00 0.22
## 7225 0.03 0.05 0.00 0.22
## 7226 0.00 0.22 0.00 0.22
## 7227 0.04 0.00 0.00 0.22
## 7228 0.04 0.00 0.00 0.22
## 7229 0.00 0.22 0.00 0.22
## 7230 0.03 0.00 0.02 0.22
## 7231 0.04 0.00 0.01 0.22
## 7232 0.00 0.00 0.02 0.22
## 7233 0.00 0.00 0.01 0.22
## 7234 0.08 0.00 0.03 0.22
## 7235 0.18 0.00 0.01 0.22
## 7236 0.08 0.00 0.01 0.22
## 7237 0.00 0.17 0.00 0.22
## 7238 0.00 0.00 0.02 0.22
## 7239 0.02 0.03 0.02 0.22
## 7240 0.05 0.00 0.01 0.22
## 7241 0.09 0.00 0.02 0.22
## 7242 0.08 0.00 0.01 0.22
## 7243 0.03 0.00 0.02 0.22
## 7244 0.05 0.00 0.01 0.22
## 7245 0.07 0.00 0.02 0.22
## 7246 0.03 0.12 0.01 0.22
## 7247 0.00 0.22 0.00 0.22
## 7248 0.04 0.00 0.01 0.22
## 7249 0.08 0.00 0.03 0.22
## 7250 0.08 0.00 0.03 0.22
## 7251 0.00 0.22 0.00 0.22
## 7252 0.01 0.00 0.02 0.22
## 7253 0.06 0.07 0.01 0.22
## 7254 0.09 0.00 0.02 0.22
## 7255 0.08 0.00 0.04 0.22
## 7256 0.00 0.22 0.00 0.22
## 7257 0.04 0.00 0.01 0.22
## 7258 0.00 0.00 0.01 0.22
## 7259 0.08 0.00 0.04 0.22
## 7260 0.00 0.00 0.02 0.22
## 7261 0.01 0.00 0.10 0.22
## 7262 0.08 0.00 0.03 0.22
## 7263 0.00 0.22 0.00 0.22
## 7264 0.00 0.00 0.02 0.22
## 7265 0.01 0.00 0.02 0.22
## 7266 0.07 0.00 0.03 0.22
## 7267 0.08 0.00 0.03 0.22
## 7268 0.19 0.00 0.02 0.22
## 7269 0.04 0.06 0.01 0.22
## 7270 0.08 0.00 0.03 0.22
## 7271 0.06 0.00 0.00 0.22
## 7272 0.02 0.06 0.01 0.22
## 7273 0.00 0.00 0.02 0.22
## 7274 0.06 0.00 0.00 0.22
## 7275 0.00 0.13 0.01 0.22
## 7276 0.00 0.22 0.00 0.22
## 7277 0.08 0.00 0.03 0.22
## 7278 0.00 0.00 0.02 0.22
## 7279 0.00 0.22 0.00 0.22
## 7280 0.04 0.00 0.01 0.22
## 7281 0.10 0.00 0.04 0.22
## 7282 0.08 0.00 0.01 0.22
## 7283 0.00 0.22 0.00 0.22
## 7284 0.06 0.00 0.00 0.22
## 7285 0.00 0.00 0.02 0.22
## 7286 0.00 0.22 0.00 0.22
## 7287 0.08 0.00 0.01 0.22
## 7288 0.08 0.00 0.01 0.22
## 7289 0.06 0.06 0.03 0.22
## 7290 0.01 0.00 0.02 0.22
## 7291 0.05 0.01 0.02 0.22
## 7292 0.13 0.00 0.04 0.22
## 7293 0.05 0.00 0.03 0.22
## 7294 0.04 0.00 0.01 0.22
## 7295 0.00 0.22 0.00 0.22
## 7296 0.06 0.00 0.00 0.22
## 7297 0.20 0.00 0.01 0.22
## 7298 0.06 0.00 0.00 0.22
## 7299 0.04 0.00 0.01 0.22
## 7300 0.13 0.00 0.02 0.22
## 7301 0.01 0.00 0.02 0.22
## 7302 0.00 0.22 0.00 0.22
## 7303 0.07 0.00 0.03 0.22
## 7304 0.07 0.13 0.02 0.22
## 7305 0.08 0.00 0.03 0.22
## 7306 0.03 0.04 0.01 0.22
## 7307 0.19 0.00 0.02 0.22
## 7308 0.00 0.22 0.00 0.22
## 7309 0.02 0.02 0.02 0.22
## 7310 0.13 0.03 0.03 0.22
## 7311 0.04 0.05 0.01 0.22
## 7312 0.10 0.00 0.02 0.22
## 7313 0.08 0.00 0.01 0.21
## 7314 0.08 0.00 0.03 0.21
## 7315 0.00 0.08 0.01 0.21
## 7316 0.08 0.00 0.01 0.21
## 7317 0.03 0.06 0.03 0.21
## 7318 0.00 0.00 0.02 0.21
## 7320 0.08 0.00 0.03 0.21
## 7321 0.08 0.00 0.01 0.21
## 7322 0.16 0.00 0.05 0.21
## 7323 0.04 0.00 0.01 0.21
## 7324 0.08 0.00 0.03 0.21
## 7325 0.00 0.00 0.02 0.21
## 7326 0.08 0.00 0.03 0.21
## 7327 0.00 0.21 0.00 0.21
## 7328 0.04 0.00 0.02 0.21
## 7329 0.00 0.11 0.01 0.21
## 7330 0.00 0.21 0.00 0.21
## 7331 0.00 0.21 0.00 0.21
## 7332 0.02 0.15 0.01 0.21
## 7333 0.00 0.21 0.00 0.21
## 7334 0.19 0.00 0.03 0.21
## 7335 0.00 0.00 0.02 0.21
## 7336 0.08 0.03 0.02 0.21
## 7337 0.02 0.08 0.03 0.21
## 7338 0.08 0.00 0.03 0.21
## 7339 0.00 0.00 0.02 0.21
## 7340 0.07 0.00 0.02 0.21
## 7341 0.02 0.00 0.01 0.21
## 7342 0.04 0.00 0.01 0.21
## 7343 0.08 0.00 0.01 0.21
## 7344 0.07 0.00 0.04 0.21
## 7345 0.08 0.00 0.04 0.21
## 7346 0.08 0.00 0.03 0.21
## 7347 0.00 0.21 0.00 0.21
## 7348 0.08 0.00 0.03 0.21
## 7349 0.00 0.00 0.02 0.21
## 7350 0.00 0.21 0.00 0.21
## 7351 0.06 0.00 0.00 0.21
## 7353 0.05 0.00 0.01 0.21
## 7354 0.00 0.21 0.00 0.21
## 7355 0.08 0.00 0.03 0.21
## 7356 0.01 0.00 0.02 0.21
## 7357 0.07 0.00 0.03 0.21
## 7358 0.01 0.00 0.02 0.21
## 7359 0.05 0.00 0.01 0.21
## 7360 0.06 0.00 0.02 0.21
## 7361 0.07 0.00 0.02 0.21
## 7362 0.00 0.00 0.02 0.21
## 7363 0.05 0.00 0.01 0.21
## 7364 0.05 0.00 0.01 0.21
## 7365 0.08 0.00 0.03 0.21
## 7366 0.12 0.00 0.02 0.21
## 7367 0.08 0.00 0.03 0.21
## 7368 0.00 0.00 0.02 0.21
## 7369 0.11 0.01 0.04 0.21
## 7372 0.01 0.00 0.00 0.21
## 7373 0.18 0.00 0.04 0.21
## 7374 0.03 0.07 0.01 0.21
## 7375 0.08 0.00 0.02 0.21
## 7376 0.03 0.00 0.01 0.21
## 7377 0.07 0.00 0.03 0.21
## 7378 0.01 0.00 0.02 0.21
## 7379 0.08 0.00 0.03 0.21
## 7380 0.08 0.00 0.03 0.21
## 7381 0.08 0.00 0.03 0.21
## 7382 0.00 0.21 0.01 0.21
## 7384 0.00 0.20 0.01 0.21
## 7385 0.10 0.01 0.04 0.21
## 7386 0.00 0.21 0.00 0.21
## 7387 0.07 0.00 0.02 0.21
## 7388 0.03 0.08 0.01 0.21
## 7389 0.02 0.00 0.02 0.21
## 7390 0.01 0.00 0.02 0.21
## 7391 0.05 0.08 0.02 0.21
## 7392 0.08 0.00 0.01 0.21
## 7393 0.05 0.00 0.02 0.21
## 7394 0.05 0.00 0.01 0.21
## 7395 0.05 0.00 0.02 0.21
## 7396 0.01 0.00 0.02 0.21
## 7397 0.00 0.00 0.02 0.21
## 7398 0.00 0.21 0.00 0.21
## 7399 0.08 0.00 0.03 0.21
## 7400 0.04 0.00 0.01 0.21
## 7401 0.00 0.00 0.01 0.21
## 7402 0.00 0.00 0.01 0.21
## 7403 0.00 0.13 0.01 0.21
## 7404 0.08 0.00 0.03 0.21
## 7405 0.08 0.00 0.01 0.21
## 7406 0.07 0.03 0.02 0.21
## 7408 0.05 0.00 0.01 0.21
## 7409 0.04 0.00 0.02 0.21
## 7410 0.00 0.00 0.02 0.21
## 7411 0.00 0.00 0.02 0.21
## 7412 0.04 0.00 0.00 0.21
## 7413 0.04 0.00 0.00 0.21
## 7414 0.04 0.00 0.00 0.21
## 7415 0.04 0.00 0.00 0.21
## 7416 0.04 0.00 0.00 0.21
## 7417 0.04 0.00 0.00 0.21
## 7418 0.07 0.00 0.02 0.21
## 7419 0.00 0.00 0.01 0.21
## 7420 0.00 0.20 0.01 0.21
## 7421 0.14 0.00 0.01 0.21
## 7422 0.00 0.21 0.00 0.21
## 7423 0.04 0.00 0.01 0.21
## 7425 0.08 0.00 0.01 0.21
## 7426 0.08 0.00 0.01 0.21
## 7427 0.00 0.20 0.01 0.21
## 7428 0.00 0.20 0.01 0.21
## 7429 0.00 0.01 0.01 0.21
## 7430 0.05 0.02 0.02 0.21
## 7431 0.08 0.00 0.03 0.21
## 7432 0.04 0.00 0.01 0.21
## 7433 0.08 0.00 0.03 0.21
## 7434 0.08 0.00 0.03 0.21
## 7435 0.00 0.10 0.01 0.21
## 7436 0.04 0.00 0.01 0.21
## 7437 0.04 0.00 0.02 0.21
## 7438 0.00 0.21 0.00 0.21
## 7439 0.06 0.00 0.00 0.21
## 7440 0.04 0.07 0.01 0.21
## 7441 0.00 0.21 0.00 0.21
## 7442 0.04 0.03 0.01 0.21
## 7443 0.04 0.00 0.01 0.21
## 7444 0.07 0.00 0.02 0.21
## 7445 0.04 0.00 0.01 0.21
## 7446 0.01 0.00 0.01 0.21
## 7447 0.08 0.00 0.01 0.21
## 7448 0.08 0.00 0.03 0.21
## 7449 0.08 0.00 0.03 0.21
## 7450 0.00 0.00 0.02 0.21
## 7451 0.00 0.21 0.00 0.21
## 7452 0.08 0.00 0.01 0.21
## 7453 0.13 0.00 0.05 0.21
## 7454 0.12 0.00 0.05 0.21
## 7455 0.00 0.00 0.02 0.21
## 7456 0.00 0.00 0.01 0.21
## 7457 0.00 0.00 0.01 0.21
## 7458 0.00 0.21 0.00 0.21
## 7459 0.00 0.00 0.01 0.21
## 7460 0.08 0.00 0.03 0.21
## 7461 0.08 0.00 0.02 0.21
## 7462 0.00 0.00 0.02 0.21
## 7463 0.04 0.00 0.01 0.21
## 7464 0.07 0.00 0.03 0.21
## 7465 0.00 0.21 0.00 0.21
## 7466 0.00 0.00 0.02 0.21
## 7467 0.00 0.00 0.02 0.21
## 7468 0.00 0.19 0.01 0.21
## 7469 0.08 0.00 0.03 0.21
## 7470 0.00 0.21 0.00 0.21
## 7471 0.05 0.00 0.00 0.21
## 7472 0.00 0.21 0.00 0.21
## 7473 0.00 0.00 0.01 0.21
## 7474 0.03 0.08 0.00 0.21
## 7475 0.00 0.06 0.01 0.21
## 7476 0.04 0.00 0.01 0.21
## 7477 0.00 0.00 0.02 0.21
## 7478 0.03 0.12 0.01 0.21
## 7479 0.06 0.00 0.02 0.21
## 7480 0.04 0.00 0.01 0.21
## 7481 0.04 0.00 0.01 0.21
## 7482 0.00 0.21 0.00 0.21
## 7483 0.03 0.06 0.02 0.21
## 7484 0.08 0.00 0.02 0.21
## 7485 0.04 0.00 0.02 0.21
## 7486 0.00 0.21 0.00 0.21
## 7487 0.10 0.04 0.01 0.21
## 7488 0.08 0.00 0.01 0.21
## 7489 0.02 0.00 0.02 0.21
## 7490 0.04 0.00 0.01 0.21
## 7491 0.10 0.01 0.04 0.21
## 7492 0.00 0.21 0.00 0.21
## 7493 0.04 0.00 0.01 0.21
## 7494 0.05 0.00 0.00 0.21
## 7495 0.07 0.00 0.03 0.21
## 7496 0.00 0.00 0.02 0.20
## 7497 0.04 0.00 0.02 0.20
## 7498 0.06 0.11 0.02 0.20
## 7499 0.00 0.20 0.00 0.20
## 7500 0.00 0.00 0.01 0.20
## 7501 0.05 0.00 0.00 0.20
## 7502 0.00 0.00 0.01 0.20
## 7503 0.01 0.00 0.02 0.20
## 7504 0.05 0.00 0.00 0.20
## 7505 0.07 0.00 0.02 0.20
## 7506 0.00 0.20 0.00 0.20
## 7507 0.00 0.00 0.02 0.20
## 7508 0.00 0.00 0.01 0.20
## 7509 0.11 0.00 0.02 0.20
## 7510 0.02 0.00 0.02 0.20
## 7511 0.08 0.00 0.03 0.20
## 7512 0.03 0.00 0.01 0.20
## 7513 0.00 0.20 0.00 0.20
## 7514 0.08 0.00 0.03 0.20
## 7515 0.04 0.00 0.01 0.20
## 7516 0.02 0.00 0.02 0.20
## 7517 0.00 0.20 0.00 0.20
## 7518 0.08 0.00 0.02 0.20
## 7519 0.04 0.00 0.02 0.20
## 7520 0.00 0.20 0.00 0.20
## 7521 0.02 0.00 0.19 0.20
## 7522 0.09 0.00 0.03 0.20
## 7523 0.05 0.07 0.02 0.20
## 7524 0.04 0.00 0.01 0.20
## 7525 0.03 0.00 0.02 0.20
## 7526 0.00 0.14 0.01 0.20
## 7527 0.00 0.20 0.00 0.20
## 7528 0.04 0.02 0.01 0.20
## 7529 0.02 0.01 0.02 0.20
## 7530 0.17 0.00 0.03 0.20
## 7531 0.04 0.00 0.01 0.20
## 7532 0.00 0.20 0.00 0.20
## 7533 0.09 0.00 0.03 0.20
## 7534 0.05 0.00 0.00 0.20
## 7535 0.08 0.00 0.03 0.20
## 7536 0.00 0.20 0.00 0.20
## 7537 0.00 0.20 0.00 0.20
## 7538 0.05 0.09 0.02 0.20
## 7539 0.05 0.08 0.02 0.20
## 7540 0.19 0.00 0.01 0.20
## 7541 0.08 0.00 0.03 0.20
## 7542 0.08 0.00 0.03 0.20
## 7543 0.00 0.20 0.00 0.20
## 7544 0.05 0.10 0.02 0.20
## 7545 0.08 0.05 0.01 0.20
## 7546 0.20 0.00 0.00 0.20
## 7547 0.02 0.00 0.01 0.20
## 7548 0.00 0.00 0.02 0.20
## 7549 0.05 0.00 0.02 0.20
## 7550 0.19 0.00 0.01 0.20
## 7551 0.08 0.00 0.03 0.20
## 7552 0.04 0.00 0.01 0.20
## 7553 0.00 0.20 0.00 0.20
## 7554 0.00 0.20 0.00 0.20
## 7555 0.04 0.00 0.01 0.20
## 7556 0.03 0.03 0.02 0.20
## 7557 0.02 0.00 0.02 0.20
## 7558 0.04 0.08 0.02 0.20
## 7559 0.08 0.00 0.03 0.20
## 7560 0.03 0.00 0.02 0.20
## 7561 0.00 0.20 0.01 0.20
## 7562 0.08 0.00 0.02 0.20
## 7563 0.05 0.00 0.00 0.20
## 7564 0.07 0.02 0.02 0.20
## 7565 0.10 0.00 0.02 0.20
## 7566 0.15 0.00 0.05 0.20
## 7567 0.08 0.00 0.03 0.20
## 7568 0.02 0.00 0.01 0.20
## 7569 0.00 0.20 0.00 0.20
## 7570 0.03 0.16 0.01 0.20
## 7571 0.01 0.00 0.02 0.20
## 7572 0.05 0.00 0.00 0.20
## 7573 0.07 0.00 0.03 0.20
## 7574 0.00 0.00 0.02 0.20
## 7575 0.04 0.00 0.01 0.20
## 7576 0.04 0.00 0.04 0.20
## 7577 0.00 0.20 0.00 0.20
## 7578 0.06 0.00 0.02 0.20
## 7579 0.00 0.20 0.00 0.20
## 7580 0.04 0.00 0.01 0.20
## 7581 0.05 0.00 0.00 0.20
## 7582 0.00 0.20 0.00 0.20
## 7583 0.04 0.00 0.01 0.20
## 7584 0.00 0.20 0.00 0.20
## 7585 0.00 0.00 0.01 0.20
## 7586 0.04 0.00 0.01 0.20
## 7587 0.00 0.18 0.00 0.20
## 7588 0.08 0.00 0.03 0.20
## 7589 0.05 0.00 0.00 0.20
## 7590 0.04 0.09 0.01 0.20
## 7591 0.02 0.07 0.01 0.20
## 7592 0.08 0.00 0.03 0.20
## 7593 0.00 0.00 0.01 0.20
## 7594 0.00 0.00 0.01 0.20
## 7595 0.00 0.00 0.01 0.20
## 7596 0.07 0.02 0.02 0.20
## 7597 0.08 0.00 0.02 0.20
## 7598 0.08 0.00 0.01 0.20
## 7599 0.00 0.00 0.02 0.20
## 7600 0.05 0.00 0.03 0.20
## 7601 0.08 0.00 0.03 0.20
## 7602 0.04 0.01 0.02 0.20
## 7603 0.04 0.00 0.01 0.20
## 7604 0.08 0.00 0.01 0.20
## 7605 0.00 0.20 0.00 0.20
## 7606 0.04 0.04 0.02 0.20
## 7607 0.11 0.00 0.02 0.20
## 7608 0.09 0.00 0.02 0.20
## 7609 0.08 0.00 0.02 0.20
## 7610 0.04 0.00 0.01 0.20
## 7611 0.06 0.00 0.02 0.20
## 7612 0.12 0.00 0.02 0.20
## 7613 0.08 0.00 0.03 0.20
## 7614 0.04 0.00 0.01 0.20
## 7615 0.04 0.00 0.00 0.20
## 7617 0.13 0.00 0.01 0.20
## 7618 0.02 0.05 0.00 0.20
## 7619 0.04 0.00 0.00 0.20
## 7620 0.04 0.00 0.00 0.20
## 7621 0.04 0.00 0.00 0.20
## 7622 0.04 0.00 0.00 0.20
## 7623 0.04 0.00 0.00 0.20
## 7624 0.00 0.20 0.00 0.20
## 7625 0.04 0.00 0.00 0.20
## 7626 0.00 0.00 0.02 0.20
## 7627 0.04 0.00 0.01 0.20
## 7628 0.00 0.20 0.00 0.20
## 7629 0.04 0.00 0.02 0.20
## 7630 0.00 0.03 0.01 0.20
## 7631 0.03 0.00 0.02 0.20
## 7632 0.00 0.00 0.02 0.20
## 7633 0.08 0.00 0.03 0.20
## 7634 0.00 0.20 0.00 0.20
## 7635 0.05 0.00 0.00 0.20
## 7636 0.08 0.00 0.03 0.20
## 7637 0.02 0.10 0.01 0.20
## 7638 0.00 0.19 0.01 0.20
## 7639 0.04 0.00 0.01 0.20
## 7640 0.17 0.00 0.03 0.20
## 7641 0.09 0.00 0.04 0.20
## 7642 0.10 0.00 0.03 0.20
## 7643 0.08 0.00 0.03 0.20
## 7644 0.04 0.00 0.01 0.20
## 7645 0.00 0.20 0.00 0.20
## 7646 0.02 0.02 0.02 0.20
## 7647 0.04 0.00 0.01 0.20
## 7648 0.00 0.20 0.00 0.20
## 7650 0.00 0.20 0.00 0.20
## 7651 0.04 0.00 0.02 0.20
## 7652 0.11 0.01 0.03 0.20
## 7653 0.05 0.00 0.02 0.20
## 7654 0.08 0.00 0.03 0.20
## 7655 0.00 0.20 0.00 0.20
## 7656 0.01 0.16 0.01 0.20
## 7657 0.00 0.00 0.01 0.20
## 7658 0.06 0.00 0.02 0.20
## 7659 0.13 0.00 0.02 0.20
## 7660 0.04 0.00 0.01 0.20
## 7661 0.04 0.00 0.01 0.20
## 7662 0.00 0.20 0.00 0.20
## 7663 0.08 0.00 0.03 0.20
## 7664 0.20 0.00 0.00 0.20
## 7665 0.01 0.00 0.01 0.20
## 7666 0.08 0.05 0.03 0.20
## 7667 0.02 0.07 0.01 0.20
## 7668 0.08 0.00 0.03 0.20
## 7669 0.00 0.00 0.01 0.20
## 7670 0.04 0.00 0.01 0.20
## 7671 0.00 0.00 0.01 0.20
## 7672 0.00 0.20 0.00 0.20
## 7673 0.00 0.20 0.00 0.20
## 7674 0.04 0.00 0.01 0.20
## 7675 0.00 0.01 0.01 0.20
## 7676 0.06 0.00 0.02 0.20
## 7677 0.01 0.00 0.02 0.20
## 7678 0.00 0.20 0.00 0.20
## 7679 0.08 0.00 0.03 0.20
## 7680 0.00 0.00 0.01 0.20
## 7681 0.01 0.00 0.02 0.20
## 7682 0.07 0.00 0.01 0.20
## 7683 0.10 0.00 0.02 0.20
## 7684 0.01 0.00 0.02 0.20
## 7685 0.04 0.00 0.01 0.20
## 7686 0.00 0.09 0.01 0.20
## 7687 0.09 0.00 0.02 0.20
## 7688 0.08 0.00 0.03 0.20
## 7689 0.00 0.20 0.00 0.20
## 7690 0.00 0.00 0.01 0.20
## 7691 0.08 0.03 0.01 0.20
## 7692 0.00 0.00 0.01 0.20
## 7693 0.08 0.00 0.03 0.20
## 7694 0.00 0.00 0.01 0.20
## 7695 0.00 0.00 0.01 0.20
## 7696 0.05 0.00 0.00 0.20
## 7697 0.08 0.00 0.03 0.20
## 7698 0.00 0.20 0.00 0.20
## 7699 0.00 0.11 0.01 0.20
## 7700 0.00 0.20 0.00 0.20
## 7701 0.00 0.18 0.01 0.20
## 7702 0.00 0.00 0.01 0.20
## 7703 0.02 0.00 0.02 0.20
## 7704 0.05 0.00 0.00 0.20
## 7705 0.05 0.00 0.00 0.20
## 7706 0.01 0.00 0.02 0.20
## 7707 0.04 0.00 0.01 0.20
## 7708 0.04 0.00 0.01 0.20
## 7709 0.07 0.00 0.01 0.20
## 7710 0.05 0.00 0.00 0.20
## 7711 0.13 0.00 0.02 0.20
## 7712 0.03 0.00 0.02 0.20
## 7713 0.00 0.20 0.00 0.20
## 7714 0.00 0.20 0.00 0.20
## 7715 0.04 0.00 0.01 0.20
## 7716 0.00 0.00 0.02 0.20
## 7717 0.04 0.00 0.01 0.20
## 7718 0.05 0.00 0.01 0.20
## 7719 0.00 0.20 0.00 0.20
## 7720 0.03 0.00 0.01 0.20
## 7722 0.00 0.05 0.02 0.20
## 7723 0.07 0.00 0.03 0.20
## 7724 0.00 0.03 0.01 0.20
## 7725 0.00 0.00 0.01 0.20
## 7726 0.07 0.00 0.03 0.20
## 7727 0.17 0.00 0.03 0.20
## 7728 0.00 0.00 0.01 0.20
## 7729 0.03 0.08 0.02 0.20
## 7730 0.12 0.00 0.03 0.20
## 7731 0.07 0.00 0.02 0.20
## 7732 0.05 0.05 0.02 0.20
## 7733 0.07 0.00 0.02 0.20
## 7734 0.05 0.00 0.00 0.20
## 7735 0.00 0.02 0.01 0.19
## 7736 0.13 0.00 0.04 0.19
## 7737 0.00 0.00 0.01 0.19
## 7738 0.00 0.00 0.01 0.19
## 7739 0.12 0.00 0.03 0.19
## 7740 0.04 0.00 0.01 0.19
## 7741 0.07 0.00 0.02 0.19
## 7742 0.05 0.00 0.00 0.19
## 7743 0.06 0.04 0.02 0.19
## 7744 0.03 0.00 0.02 0.19
## 7745 0.11 0.00 0.02 0.19
## 7746 0.00 0.18 0.01 0.19
## 7747 0.06 0.01 0.02 0.19
## 7748 0.08 0.00 0.04 0.19
## 7749 0.09 0.00 0.02 0.19
## 7750 0.07 0.00 0.03 0.19
## 7751 0.04 0.00 0.02 0.19
## 7752 0.07 0.00 0.02 0.19
## 7753 0.00 0.06 0.01 0.19
## 7754 0.00 0.00 0.01 0.19
## 7755 0.00 0.19 0.00 0.19
## 7756 0.03 0.08 0.01 0.19
## 7757 0.00 0.00 0.01 0.19
## 7758 0.00 0.19 0.00 0.19
## 7759 0.05 0.00 0.00 0.19
## 7760 0.01 0.00 0.01 0.19
## 7761 0.00 0.19 0.00 0.19
## 7762 0.17 0.00 0.02 0.19
## 7763 0.04 0.00 0.01 0.19
## 7765 0.02 0.00 0.02 0.19
## 7766 0.05 0.00 0.00 0.19
## 7767 0.00 0.19 0.00 0.19
## 7768 0.00 0.18 0.01 0.19
## 7769 0.13 0.00 0.01 0.19
## 7770 0.00 0.19 0.00 0.19
## 7771 0.04 0.04 0.01 0.19
## 7772 0.09 0.02 0.03 0.19
## 7773 0.04 0.00 0.01 0.19
## 7774 0.07 0.00 0.02 0.19
## 7775 0.06 0.00 0.03 0.19
## 7776 0.04 0.00 0.01 0.19
## 7777 0.00 0.00 0.01 0.19
## 7778 0.07 0.00 0.02 0.19
## 7779 0.02 0.05 0.01 0.19
## 7780 0.01 0.00 0.02 0.19
## 7781 0.01 0.00 0.01 0.19
## 7782 0.03 0.00 0.03 0.19
## 7783 0.00 0.19 0.00 0.19
## 7784 0.16 0.00 0.02 0.19
## 7785 0.00 0.19 0.00 0.19
## 7786 0.11 0.00 0.01 0.19
## 7787 0.11 0.00 0.02 0.19
## 7788 0.00 0.19 0.00 0.19
## 7789 0.01 0.00 0.01 0.19
## 7790 0.07 0.00 0.02 0.19
## 7791 0.00 0.19 0.00 0.19
## 7792 0.03 0.01 0.03 0.19
## 7793 0.02 0.00 0.02 0.19
## 7794 0.00 0.00 0.01 0.19
## 7795 0.00 0.19 0.00 0.19
## 7796 0.07 0.00 0.01 0.19
## 7797 0.00 0.04 0.02 0.19
## 7798 0.07 0.00 0.01 0.19
## 7799 0.15 0.00 0.04 0.19
## 7800 0.02 0.02 0.01 0.19
## 7801 0.06 0.01 0.03 0.19
## 7802 0.04 0.00 0.01 0.19
## 7803 0.09 0.00 0.02 0.19
## 7804 0.00 0.00 0.01 0.19
## 7805 0.10 0.00 0.03 0.19
## 7806 0.02 0.00 0.02 0.19
## 7807 0.00 0.00 0.01 0.19
## 7808 0.02 0.00 0.01 0.19
## 7809 0.01 0.00 0.01 0.19
## 7810 0.07 0.00 0.02 0.19
## 7811 0.07 0.00 0.02 0.19
## 7812 0.04 0.00 0.01 0.19
## 7813 0.00 0.19 0.00 0.19
## 7814 0.00 0.00 0.01 0.19
## 7815 0.03 0.00 0.01 0.19
## 7816 0.07 0.00 0.02 0.19
## 7817 0.00 0.19 0.00 0.19
## 7818 0.01 0.00 0.01 0.19
## 7819 0.07 0.00 0.02 0.19
## 7820 0.00 0.00 0.01 0.19
## 7821 0.02 0.00 0.01 0.19
## 7822 0.07 0.00 0.02 0.19
## 7823 0.05 0.00 0.00 0.19
## 7824 0.00 0.19 0.00 0.19
## 7825 0.00 0.19 0.00 0.19
## 7826 0.07 0.00 0.02 0.19
## 7827 0.13 0.00 0.03 0.19
## 7828 0.07 0.00 0.01 0.19
## 7829 0.00 0.18 0.01 0.19
## 7830 0.00 0.19 0.00 0.19
## 7831 0.07 0.02 0.02 0.19
## 7832 0.07 0.00 0.04 0.19
## 7833 0.07 0.00 0.02 0.19
## 7834 0.02 0.10 0.01 0.19
## 7835 0.03 0.00 0.01 0.19
## 7836 0.09 0.00 0.02 0.19
## 7837 0.01 0.16 0.00 0.19
## 7838 0.00 0.19 0.00 0.19
## 7839 0.07 0.00 0.02 0.19
## 7840 0.07 0.00 0.02 0.19
## 7841 0.07 0.00 0.01 0.19
## 7842 0.03 0.00 0.01 0.19
## 7843 0.07 0.00 0.02 0.19
## 7844 0.00 0.00 0.01 0.19
## 7845 0.03 0.00 0.02 0.19
## 7846 0.00 0.19 0.00 0.19
## 7847 0.05 0.00 0.00 0.19
## 7848 0.04 0.00 0.01 0.19
## 7849 0.00 0.19 0.00 0.19
## 7850 0.05 0.00 0.02 0.19
## 7851 0.07 0.00 0.02 0.19
## 7852 0.11 0.00 0.03 0.19
## 7853 0.00 0.00 0.01 0.19
## 7854 0.05 0.00 0.00 0.19
## 7855 0.04 0.00 0.01 0.19
## 7856 0.09 0.00 0.04 0.19
## 7857 0.03 0.00 0.01 0.19
## 7858 0.00 0.19 0.00 0.19
## 7859 0.02 0.06 0.03 0.19
## 7860 0.04 0.00 0.00 0.19
## 7861 0.04 0.00 0.00 0.19
## 7862 0.04 0.00 0.00 0.19
## 7863 0.00 0.16 0.03 0.19
## 7864 0.00 0.19 0.00 0.19
## 7865 0.04 0.00 0.00 0.19
## 7866 0.04 0.00 0.00 0.19
## 7867 0.00 0.19 0.00 0.19
## 7868 0.00 0.00 0.01 0.19
## 7869 0.00 0.19 0.00 0.19
## 7870 0.00 0.00 0.01 0.19
## 7871 0.04 0.00 0.01 0.19
## 7872 0.04 0.00 0.01 0.19
## 7873 0.06 0.00 0.02 0.19
## 7874 0.07 0.00 0.02 0.19
## 7875 0.07 0.00 0.02 0.19
## 7876 0.05 0.00 0.00 0.19
## 7877 0.00 0.19 0.00 0.19
## 7878 0.07 0.00 0.01 0.19
## 7879 0.06 0.01 0.02 0.19
## 7880 0.00 0.00 0.01 0.19
## 7881 0.00 0.19 0.00 0.19
## 7882 0.05 0.07 0.02 0.19
## 7883 0.00 0.00 0.01 0.19
## 7884 0.07 0.00 0.02 0.19
## 7885 0.05 0.00 0.00 0.19
## 7886 0.07 0.00 0.02 0.19
## 7887 0.01 0.12 0.01 0.19
## 7888 0.00 0.06 0.01 0.19
## 7889 0.00 0.19 0.00 0.19
## 7890 0.06 0.00 0.03 0.19
## 7891 0.05 0.00 0.03 0.19
## 7892 0.04 0.00 0.01 0.19
## 7893 0.16 0.00 0.03 0.19
## 7894 0.05 0.00 0.03 0.19
## 7895 0.03 0.00 0.01 0.19
## 7896 0.07 0.00 0.02 0.19
## 7897 0.07 0.00 0.02 0.19
## 7898 0.00 0.19 0.00 0.19
## 7899 0.07 0.00 0.02 0.19
## 7900 0.00 0.19 0.00 0.19
## 7901 0.07 0.00 0.02 0.19
## 7902 0.18 0.00 0.01 0.19
## 7903 0.12 0.00 0.02 0.19
## 7904 0.04 0.00 0.01 0.19
## 7905 0.01 0.00 0.00 0.19
## 7906 0.00 0.00 0.01 0.19
## 7907 0.00 0.00 0.01 0.19
## 7908 0.00 0.18 0.01 0.19
## 7910 0.07 0.00 0.01 0.19
## 7911 0.00 0.19 0.00 0.19
## 7912 0.00 0.18 0.01 0.19
## 7913 0.04 0.00 0.01 0.19
## 7914 0.00 0.00 0.01 0.19
## 7915 0.00 0.19 0.00 0.19
## 7916 0.00 0.19 0.00 0.19
## 7917 0.01 0.02 0.01 0.19
## 7918 0.00 0.19 0.00 0.19
## 7919 0.00 0.00 0.08 0.19
## 7920 0.05 0.00 0.02 0.19
## 7921 0.07 0.00 0.01 0.19
## 7922 0.08 0.00 0.02 0.19
## 7923 0.01 0.00 0.01 0.19
## 7924 0.16 0.00 0.02 0.19
## 7925 0.00 0.19 0.00 0.19
## 7926 0.07 0.00 0.02 0.19
## 7927 0.01 0.00 0.01 0.19
## 7928 0.00 0.19 0.00 0.19
## 7929 0.07 0.00 0.02 0.19
## 7930 0.00 0.19 0.00 0.19
## 7931 0.15 0.00 0.04 0.19
## 7932 0.00 0.19 0.00 0.19
## 7933 0.00 0.19 0.00 0.19
## 7934 0.16 0.00 0.02 0.19
## 7935 0.00 0.00 0.01 0.19
## 7936 0.17 0.00 0.02 0.19
## 7937 0.00 0.19 0.00 0.19
## 7938 0.05 0.00 0.02 0.19
## 7939 0.16 0.00 0.03 0.19
## 7940 0.00 0.00 0.01 0.19
## 7941 0.00 0.19 0.00 0.19
## 7942 0.00 0.11 0.01 0.19
## 7943 0.00 0.00 0.01 0.19
## 7944 0.05 0.00 0.00 0.19
## 7945 0.05 0.03 0.01 0.19
## 7946 0.00 0.19 0.00 0.19
## 7948 0.07 0.00 0.01 0.19
## 7949 0.00 0.00 0.01 0.19
## 7950 0.13 0.00 0.03 0.19
## 7951 0.00 0.19 0.00 0.19
## 7952 0.00 0.19 0.00 0.19
## 7953 0.00 0.19 0.00 0.19
## 7954 0.05 0.00 0.00 0.19
## 7955 0.07 0.00 0.02 0.19
## 7956 0.00 0.19 0.00 0.19
## 7957 0.05 0.00 0.00 0.19
## 7958 0.07 0.00 0.01 0.19
## 7959 0.00 0.06 0.01 0.19
## 7960 0.07 0.00 0.02 0.19
## 7961 0.00 0.00 0.01 0.19
## 7962 0.07 0.00 0.02 0.19
## 7963 0.00 0.19 0.00 0.19
## 7964 0.07 0.00 0.02 0.19
## 7965 0.05 0.00 0.00 0.19
## 7966 0.11 0.00 0.02 0.19
## 7967 0.03 0.03 0.01 0.19
## 7968 0.07 0.00 0.02 0.19
## 7969 0.02 0.00 0.01 0.19
## 7970 0.00 0.19 0.00 0.19
## 7971 0.00 0.19 0.00 0.19
## 7972 0.04 0.00 0.01 0.19
## 7973 0.00 0.00 0.02 0.19
## 7974 0.00 0.19 0.00 0.19
## 7975 0.04 0.00 0.01 0.19
## 7976 0.03 0.00 0.00 0.19
## 7977 0.00 0.19 0.00 0.19
## 7978 0.03 0.00 0.00 0.19
## 7979 0.07 0.01 0.01 0.19
## 7980 0.00 0.00 0.01 0.19
## 7981 0.00 0.00 0.01 0.19
## 7982 0.07 0.00 0.02 0.19
## 7983 0.00 0.19 0.00 0.19
## 7984 0.07 0.00 0.02 0.19
## 7985 0.00 0.11 0.01 0.19
## 7986 0.05 0.00 0.01 0.19
## 7987 0.02 0.00 0.01 0.19
## 7988 0.04 0.00 0.01 0.19
## 7989 0.00 0.00 0.01 0.19
## 7990 0.07 0.00 0.02 0.19
## 7991 0.03 0.00 0.01 0.19
## 7992 0.00 0.00 0.01 0.19
## 7993 0.04 0.00 0.03 0.19
## 7994 0.07 0.00 0.01 0.19
## 7995 0.00 0.19 0.00 0.19
## 7996 0.09 0.00 0.03 0.19
## 7997 0.11 0.00 0.03 0.18
## 7998 0.00 0.00 0.01 0.18
## 7999 0.07 0.00 0.02 0.18
## 8000 0.11 0.00 0.02 0.18
## 8001 0.06 0.00 0.02 0.18
## 8002 0.00 0.00 0.01 0.18
## 8003 0.09 0.00 0.02 0.18
## 8004 0.07 0.00 0.02 0.18
## 8005 0.05 0.00 0.00 0.18
## 8006 0.04 0.00 0.01 0.18
## 8007 0.00 0.00 0.01 0.18
## 8008 0.07 0.00 0.02 0.18
## 8009 0.04 0.00 0.01 0.18
## 8010 0.11 0.00 0.04 0.18
## 8011 0.04 0.00 0.01 0.18
## 8012 0.00 0.00 0.02 0.18
## 8013 0.07 0.00 0.02 0.18
## 8014 0.02 0.07 0.02 0.18
## 8015 0.01 0.00 0.01 0.18
## 8016 0.07 0.00 0.01 0.18
## 8017 0.00 0.00 0.01 0.18
## 8018 0.00 0.01 0.03 0.18
## 8019 0.04 0.00 0.01 0.18
## 8020 0.00 0.18 0.00 0.18
## 8021 0.03 0.11 0.01 0.18
## 8022 0.07 0.00 0.02 0.18
## 8023 0.02 0.00 0.01 0.18
## 8024 0.04 0.00 0.01 0.18
## 8025 0.02 0.05 0.01 0.18
## 8026 0.07 0.03 0.02 0.18
## 8027 0.00 0.18 0.00 0.18
## 8028 0.10 0.00 0.01 0.18
## 8029 0.00 0.18 0.00 0.18
## 8030 0.03 0.11 0.01 0.18
## 8031 0.06 0.00 0.02 0.18
## 8032 0.11 0.00 0.02 0.18
## 8033 0.07 0.00 0.01 0.18
## 8034 0.14 0.00 0.04 0.18
## 8035 0.05 0.00 0.00 0.18
## 8036 0.00 0.00 0.01 0.18
## 8037 0.01 0.00 0.02 0.18
## 8038 0.00 0.18 0.00 0.18
## 8039 0.07 0.00 0.02 0.18
## 8040 0.08 0.00 0.02 0.18
## 8041 0.15 0.00 0.04 0.18
## 8042 0.09 0.00 0.01 0.18
## 8043 0.04 0.00 0.01 0.18
## 8044 0.04 0.00 0.01 0.18
## 8046 0.04 0.00 0.01 0.18
## 8047 0.07 0.00 0.01 0.18
## 8048 0.04 0.00 0.02 0.18
## 8049 0.07 0.00 0.02 0.18
## 8050 0.00 0.18 0.00 0.18
## 8051 0.00 0.18 0.00 0.18
## 8052 0.00 0.17 0.01 0.18
## 8053 0.07 0.00 0.02 0.18
## 8054 0.09 0.00 0.02 0.18
## 8055 0.05 0.00 0.00 0.18
## 8056 0.00 0.00 0.18 0.18
## 8057 0.10 0.00 0.03 0.18
## 8058 0.01 0.05 0.01 0.18
## 8059 0.00 0.18 0.00 0.18
## 8060 0.06 0.01 0.02 0.18
## 8061 0.00 0.00 0.05 0.18
## 8062 0.00 0.18 0.00 0.18
## 8063 0.02 0.00 0.01 0.18
## 8064 0.08 0.01 0.01 0.18
## 8065 0.04 0.00 0.00 0.18
## 8066 0.00 0.00 0.01 0.18
## 8067 0.16 0.00 0.02 0.18
## 8068 0.01 0.13 0.00 0.18
## 8069 0.01 0.00 0.01 0.18
## 8070 0.04 0.00 0.01 0.18
## 8071 0.16 0.00 0.02 0.18
## 8072 0.06 0.03 0.02 0.18
## 8073 0.12 0.00 0.02 0.18
## 8074 0.04 0.00 0.00 0.18
## 8075 0.03 0.05 0.03 0.18
## 8076 0.06 0.00 0.02 0.18
## 8077 0.00 0.18 0.00 0.18
## 8078 0.05 0.00 0.00 0.18
## 8079 0.00 0.18 0.00 0.18
## 8080 0.00 0.00 0.01 0.18
## 8081 0.03 0.00 0.01 0.18
## 8082 0.00 0.07 0.02 0.18
## 8083 0.00 0.18 0.00 0.18
## 8084 0.06 0.00 0.02 0.18
## 8085 0.00 0.07 0.03 0.18
## 8086 0.00 0.18 0.00 0.18
## 8088 0.03 0.07 0.02 0.18
## 8089 0.04 0.00 0.01 0.18
## 8090 0.07 0.00 0.01 0.18
## 8091 0.00 0.00 0.01 0.18
## 8092 0.07 0.00 0.02 0.18
## 8093 0.07 0.00 0.02 0.18
## 8094 0.00 0.17 0.01 0.18
## 8095 0.14 0.00 0.04 0.18
## 8096 0.12 0.00 0.02 0.18
## 8097 0.04 0.00 0.01 0.18
## 8098 0.04 0.00 0.01 0.18
## 8099 0.04 0.00 0.00 0.18
## 8100 0.04 0.00 0.00 0.18
## 8101 0.00 0.18 0.00 0.18
## 8102 0.00 0.07 0.02 0.18
## 8103 0.04 0.00 0.00 0.18
## 8104 0.00 0.18 0.00 0.18
## 8105 0.04 0.00 0.02 0.18
## 8106 0.04 0.00 0.01 0.18
## 8107 0.10 0.00 0.03 0.18
## 8108 0.02 0.00 0.01 0.18
## 8109 0.15 0.00 0.02 0.18
## 8110 0.05 0.00 0.00 0.18
## 8111 0.02 0.00 0.02 0.18
## 8112 0.00 0.18 0.00 0.18
## 8113 0.07 0.00 0.02 0.18
## 8114 0.04 0.00 0.01 0.18
## 8115 0.06 0.00 0.02 0.18
## 8116 0.03 0.00 0.01 0.18
## 8117 0.08 0.00 0.03 0.18
## 8118 0.08 0.00 0.02 0.18
## 8119 0.00 0.18 0.00 0.18
## 8120 0.04 0.00 0.00 0.18
## 8121 0.00 0.00 0.01 0.18
## 8122 0.04 0.00 0.01 0.18
## 8123 0.16 0.00 0.02 0.18
## 8124 0.00 0.00 0.01 0.18
## 8125 0.00 0.18 0.00 0.18
## 8126 0.07 0.00 0.02 0.18
## 8127 0.07 0.00 0.01 0.18
## 8128 0.10 0.00 0.03 0.18
## 8129 0.05 0.00 0.00 0.18
## 8130 0.06 0.00 0.02 0.18
## 8131 0.09 0.00 0.03 0.18
## 8132 0.05 0.00 0.00 0.18
## 8133 0.07 0.00 0.02 0.18
## 8134 0.04 0.02 0.01 0.18
## 8135 0.13 0.00 0.01 0.18
## 8136 0.04 0.00 0.01 0.18
## 8137 0.00 0.00 0.01 0.18
## 8138 0.07 0.00 0.02 0.18
## 8139 0.10 0.00 0.01 0.18
## 8140 0.00 0.00 0.01 0.18
## 8141 0.02 0.10 0.01 0.18
## 8142 0.08 0.00 0.02 0.18
## 8143 0.04 0.00 0.00 0.18
## 8144 0.03 0.02 0.03 0.18
## 8145 0.09 0.00 0.02 0.18
## 8146 0.07 0.00 0.01 0.18
## 8147 0.00 0.18 0.00 0.18
## 8148 0.07 0.00 0.02 0.18
## 8149 0.00 0.00 0.01 0.18
## 8150 0.04 0.00 0.00 0.18
## 8151 0.00 0.00 0.01 0.18
## 8152 0.07 0.00 0.01 0.18
## 8153 0.07 0.00 0.02 0.18
## 8154 0.02 0.01 0.01 0.18
## 8155 0.07 0.00 0.01 0.18
## 8156 0.00 0.18 0.00 0.18
## 8157 0.07 0.00 0.02 0.18
## 8159 0.04 0.08 0.02 0.18
## 8160 0.04 0.00 0.00 0.18
## 8161 0.04 0.08 0.01 0.18
## 8162 0.04 0.00 0.05 0.18
## 8163 0.05 0.00 0.00 0.18
## 8164 0.00 0.00 0.01 0.18
## 8165 0.03 0.10 0.01 0.18
## 8166 0.02 0.00 0.01 0.18
## 8167 0.00 0.18 0.00 0.18
## 8169 0.00 0.18 0.00 0.18
## 8170 0.04 0.00 0.01 0.18
## 8171 0.05 0.00 0.00 0.18
## 8172 0.05 0.00 0.00 0.18
## 8173 0.00 0.18 0.00 0.18
## 8174 0.00 0.18 0.00 0.18
## 8175 0.00 0.18 0.00 0.18
## 8176 0.07 0.00 0.02 0.18
## 8177 0.09 0.00 0.02 0.18
## 8178 0.07 0.00 0.02 0.18
## 8179 0.00 0.00 0.01 0.18
## 8180 0.07 0.00 0.02 0.18
## 8181 0.05 0.00 0.01 0.18
## 8182 0.04 0.00 0.01 0.18
## 8183 0.00 0.00 0.01 0.18
## 8184 0.05 0.00 0.00 0.18
## 8185 0.00 0.00 0.01 0.18
## 8186 0.00 0.00 0.01 0.18
## 8187 0.13 0.00 0.03 0.18
## 8188 0.07 0.00 0.01 0.18
## 8189 0.07 0.00 0.01 0.18
## 8190 0.00 0.00 0.01 0.18
## 8191 0.13 0.00 0.01 0.18
## 8192 0.00 0.00 0.01 0.18
## 8193 0.05 0.00 0.00 0.18
## 8194 0.04 0.00 0.01 0.18
## 8195 0.05 0.00 0.00 0.18
## 8196 0.00 0.18 0.00 0.18
## 8197 0.00 0.18 0.00 0.18
## 8198 0.04 0.00 0.01 0.18
## 8199 0.04 0.00 0.01 0.18
## 8200 0.00 0.00 0.01 0.18
## 8201 0.03 0.00 0.02 0.18
## 8202 0.04 0.00 0.01 0.18
## 8203 0.02 0.00 0.01 0.18
## 8204 0.02 0.00 0.01 0.18
## 8206 0.02 0.01 0.01 0.18
## 8207 0.02 0.07 0.02 0.17
## 8208 0.07 0.00 0.02 0.17
## 8209 0.04 0.00 0.02 0.17
## 8210 0.16 0.00 0.02 0.17
## 8211 0.07 0.00 0.02 0.17
## 8212 0.00 0.00 0.01 0.17
## 8213 0.07 0.00 0.02 0.17
## 8214 0.02 0.00 0.02 0.17
## 8215 0.08 0.08 0.01 0.17
## 8216 0.00 0.17 0.00 0.17
## 8217 0.05 0.00 0.03 0.17
## 8218 0.14 0.00 0.04 0.17
## 8219 0.09 0.00 0.02 0.17
## 8220 0.07 0.00 0.01 0.17
## 8221 0.10 0.00 0.04 0.17
## 8222 0.00 0.17 0.00 0.17
## 8223 0.07 0.00 0.02 0.17
## 8225 0.02 0.06 0.03 0.17
## 8226 0.05 0.00 0.00 0.17
## 8227 0.04 0.00 0.02 0.17
## 8228 0.07 0.00 0.02 0.17
## 8229 0.03 0.00 0.00 0.17
## 8230 0.07 0.00 0.02 0.17
## 8231 0.03 0.00 0.00 0.17
## 8232 0.02 0.00 0.02 0.17
## 8233 0.04 0.00 0.03 0.17
## 8234 0.05 0.00 0.02 0.17
## 8235 0.00 0.00 0.01 0.17
## 8236 0.07 0.00 0.01 0.17
## 8237 0.02 0.06 0.01 0.17
## 8238 0.05 0.00 0.00 0.17
## 8239 0.00 0.17 0.00 0.17
## 8240 0.00 0.00 0.01 0.17
## 8241 0.03 0.00 0.00 0.17
## 8242 0.00 0.00 0.01 0.17
## 8243 0.00 0.17 0.00 0.17
## 8244 0.07 0.00 0.02 0.17
## 8245 0.07 0.01 0.03 0.17
## 8246 0.00 0.17 0.00 0.17
## 8247 0.03 0.00 0.00 0.17
## 8248 0.04 0.00 0.01 0.17
## 8249 0.00 0.16 0.01 0.17
## 8250 0.08 0.00 0.02 0.17
## 8251 0.00 0.00 0.01 0.17
## 8252 0.07 0.00 0.01 0.17
## 8253 0.00 0.00 0.01 0.17
## 8254 0.00 0.00 0.01 0.17
## 8255 0.00 0.17 0.00 0.17
## 8256 0.07 0.00 0.02 0.17
## 8257 0.03 0.00 0.02 0.17
## 8258 0.00 0.00 0.01 0.17
## 8259 0.00 0.00 0.01 0.17
## 8260 0.00 0.17 0.00 0.17
## 8261 0.03 0.00 0.00 0.17
## 8262 0.08 0.00 0.02 0.17
## 8263 0.01 0.00 0.01 0.17
## 8264 0.01 0.00 0.01 0.17
## 8265 0.03 0.00 0.00 0.17
## 8266 0.04 0.00 0.01 0.17
## 8267 0.06 0.00 0.03 0.17
## 8268 0.00 0.17 0.00 0.17
## 8269 0.07 0.00 0.02 0.17
## 8270 0.05 0.00 0.00 0.17
## 8271 0.07 0.00 0.02 0.17
## 8272 0.04 0.00 0.01 0.17
## 8273 0.07 0.00 0.02 0.17
## 8274 0.03 0.00 0.00 0.17
## 8275 0.03 0.00 0.01 0.17
## 8276 0.07 0.00 0.01 0.17
## 8277 0.00 0.17 0.00 0.17
## 8278 0.00 0.17 0.00 0.17
## 8279 0.00 0.17 0.00 0.17
## 8280 0.00 0.00 0.01 0.17
## 8281 0.04 0.04 0.03 0.17
## 8282 0.00 0.16 0.01 0.17
## 8283 0.00 0.16 0.01 0.17
## 8284 0.01 0.00 0.01 0.17
## 8285 0.04 0.00 0.01 0.17
## 8286 0.04 0.00 0.01 0.17
## 8287 0.08 0.00 0.04 0.17
## 8288 0.07 0.00 0.02 0.17
## 8289 0.07 0.00 0.02 0.17
## 8290 0.05 0.00 0.00 0.17
## 8291 0.00 0.00 0.01 0.17
## 8292 0.07 0.00 0.02 0.17
## 8293 0.07 0.00 0.02 0.17
## 8294 0.00 0.14 0.00 0.17
## 8295 0.12 0.00 0.03 0.17
## 8296 0.04 0.00 0.01 0.17
## 8297 0.07 0.00 0.02 0.17
## 8298 0.00 0.16 0.01 0.17
## 8299 0.04 0.00 0.02 0.17
## 8300 0.01 0.00 0.01 0.17
## 8301 0.07 0.04 0.01 0.17
## 8302 0.00 0.16 0.01 0.17
## 8303 0.07 0.00 0.02 0.17
## 8304 0.00 0.17 0.00 0.17
## 8305 0.00 0.17 0.00 0.17
## 8306 0.00 0.00 0.01 0.17
## 8307 0.00 0.17 0.00 0.17
## 8308 0.03 0.00 0.00 0.17
## 8309 0.05 0.00 0.00 0.17
## 8310 0.00 0.17 0.00 0.17
## 8311 0.00 0.00 0.01 0.17
## 8312 0.00 0.00 0.01 0.17
## 8313 0.07 0.00 0.03 0.17
## 8315 0.04 0.00 0.01 0.17
## 8316 0.12 0.00 0.01 0.17
## 8317 0.02 0.00 0.02 0.17
## 8318 0.03 0.14 0.00 0.17
## 8319 0.00 0.17 0.00 0.17
## 8320 0.04 0.07 0.01 0.17
## 8321 0.00 0.00 0.01 0.17
## 8322 0.00 0.00 0.01 0.17
## 8323 0.12 0.00 0.02 0.17
## 8324 0.04 0.00 0.01 0.17
## 8325 0.15 0.00 0.02 0.17
## 8326 0.00 0.00 0.01 0.17
## 8327 0.03 0.00 0.01 0.17
## 8328 0.05 0.00 0.00 0.17
## 8329 0.07 0.00 0.02 0.17
## 8330 0.06 0.00 0.01 0.17
## 8331 0.05 0.00 0.00 0.17
## 8332 0.00 0.00 0.01 0.17
## 8333 0.00 0.00 0.01 0.17
## 8334 0.02 0.00 0.01 0.17
## 8336 0.09 0.00 0.02 0.17
## 8337 0.00 0.17 0.00 0.17
## 8338 0.03 0.00 0.00 0.17
## 8339 0.01 0.11 0.00 0.17
## 8340 0.05 0.00 0.00 0.17
## 8341 0.04 0.00 0.01 0.17
## 8342 0.05 0.00 0.00 0.17
## 8343 0.01 0.00 0.01 0.17
## 8344 0.05 0.00 0.00 0.17
## 8345 0.03 0.06 0.02 0.17
## 8346 0.06 0.00 0.02 0.17
## 8347 0.00 0.17 0.00 0.17
## 8348 0.06 0.00 0.02 0.17
## 8349 0.00 0.17 0.00 0.17
## 8350 0.04 0.00 0.00 0.17
## 8351 0.12 0.00 0.03 0.17
## 8352 0.00 0.17 0.00 0.17
## 8353 0.02 0.12 0.01 0.17
## 8354 0.00 0.00 0.01 0.17
## 8355 0.04 0.00 0.03 0.17
## 8356 0.04 0.00 0.01 0.17
## 8357 0.00 0.00 0.01 0.17
## 8358 0.00 0.17 0.00 0.17
## 8359 0.00 0.16 0.00 0.17
## 8360 0.00 0.00 0.01 0.17
## 8361 0.04 0.06 0.01 0.17
## 8362 0.06 0.00 0.01 0.17
## 8363 0.06 0.00 0.02 0.17
## 8364 0.01 0.00 0.01 0.17
## 8365 0.06 0.00 0.02 0.17
## 8366 0.03 0.00 0.01 0.17
## 8367 0.00 0.00 0.01 0.17
## 8368 0.06 0.00 0.02 0.17
## 8369 0.04 0.00 0.00 0.17
## 8370 0.07 0.00 0.02 0.17
## 8371 0.02 0.03 0.01 0.17
## 8372 0.00 0.17 0.00 0.17
## 8373 0.06 0.00 0.02 0.17
## 8374 0.06 0.00 0.01 0.17
## 8375 0.03 0.09 0.01 0.17
## 8376 0.06 0.00 0.01 0.17
## 8378 0.12 0.03 0.02 0.17
## 8379 0.03 0.00 0.00 0.17
## 8380 0.00 0.00 0.01 0.17
## 8381 0.05 0.00 0.01 0.17
## 8382 0.04 0.00 0.00 0.17
## 8383 0.00 0.17 0.00 0.17
## 8384 0.03 0.00 0.00 0.17
## 8385 0.00 0.16 0.01 0.17
## 8386 0.06 0.00 0.02 0.17
## 8387 0.04 0.00 0.01 0.17
## 8388 0.06 0.00 0.01 0.17
## 8389 0.06 0.00 0.01 0.17
## 8390 0.03 0.00 0.01 0.17
## 8391 0.04 0.00 0.01 0.17
## 8392 0.00 0.17 0.00 0.17
## 8393 0.06 0.00 0.01 0.17
## 8394 0.01 0.00 0.01 0.17
## 8395 0.06 0.02 0.02 0.17
## 8396 0.06 0.00 0.02 0.17
## 8397 0.02 0.12 0.00 0.17
## 8398 0.01 0.12 0.01 0.17
## 8399 0.06 0.00 0.01 0.17
## 8400 0.00 0.00 0.01 0.17
## 8401 0.00 0.17 0.00 0.17
## 8402 0.03 0.00 0.00 0.17
## 8403 0.16 0.00 0.01 0.17
## 8404 0.01 0.00 0.02 0.17
## 8405 0.00 0.17 0.00 0.17
## 8406 0.00 0.17 0.00 0.17
## 8407 0.07 0.00 0.02 0.17
## 8408 0.00 0.16 0.01 0.17
## 8409 0.06 0.00 0.02 0.17
## 8410 0.04 0.05 0.02 0.17
## 8411 0.02 0.00 0.02 0.17
## 8412 0.04 0.00 0.01 0.17
## 8413 0.01 0.05 0.01 0.17
## 8414 0.04 0.00 0.01 0.17
## 8415 0.07 0.02 0.02 0.17
## 8416 0.00 0.17 0.00 0.17
## 8417 0.02 0.04 0.00 0.17
## 8418 0.13 0.00 0.04 0.17
## 8419 0.03 0.00 0.01 0.17
## 8420 0.04 0.00 0.00 0.17
## 8421 0.04 0.00 0.00 0.17
## 8422 0.00 0.17 0.00 0.17
## 8423 0.00 0.00 0.01 0.17
## 8424 0.01 0.00 0.01 0.17
## 8425 0.00 0.17 0.00 0.17
## 8426 0.11 0.00 0.02 0.17
## 8427 0.00 0.17 0.00 0.17
## 8428 0.00 0.17 0.00 0.17
## 8429 0.07 0.00 0.01 0.17
## 8430 0.04 0.00 0.01 0.17
## 8431 0.00 0.17 0.00 0.17
## 8432 0.00 0.00 0.02 0.17
## 8433 0.01 0.00 0.01 0.17
## 8434 0.04 0.00 0.02 0.17
## 8435 0.06 0.00 0.02 0.17
## 8436 0.03 0.00 0.00 0.17
## 8437 0.04 0.00 0.01 0.17
## 8438 0.04 0.00 0.00 0.17
## 8439 0.02 0.03 0.01 0.17
## 8441 0.06 0.00 0.02 0.17
## 8442 0.01 0.00 0.01 0.17
## 8443 0.00 0.17 0.00 0.17
## 8444 0.07 0.00 0.02 0.17
## 8445 0.00 0.17 0.00 0.17
## 8446 0.04 0.00 0.01 0.17
## 8447 0.00 0.17 0.00 0.17
## 8448 0.00 0.17 0.00 0.17
## 8449 0.00 0.08 0.02 0.17
## 8450 0.00 0.17 0.00 0.17
## 8451 0.00 0.15 0.00 0.17
## 8452 0.13 0.00 0.03 0.17
## 8453 0.02 0.02 0.01 0.17
## 8454 0.04 0.00 0.01 0.17
## 8455 0.04 0.08 0.01 0.17
## 8456 0.00 0.00 0.01 0.17
## 8457 0.01 0.00 0.02 0.17
## 8458 0.01 0.00 0.00 0.17
## 8459 0.01 0.00 0.00 0.17
## 8460 0.01 0.00 0.00 0.17
## 8461 0.00 0.16 0.00 0.17
## 8462 0.02 0.00 0.01 0.16
## 8463 0.03 0.06 0.02 0.16
## 8464 0.06 0.00 0.02 0.16
## 8465 0.00 0.16 0.00 0.16
## 8466 0.02 0.00 0.01 0.16
## 8467 0.00 0.00 0.03 0.16
## 8468 0.00 0.16 0.00 0.16
## 8469 0.06 0.00 0.02 0.16
## 8470 0.00 0.16 0.00 0.16
## 8471 0.06 0.00 0.02 0.16
## 8472 0.00 0.00 0.00 0.16
## 8473 0.04 0.00 0.00 0.16
## 8474 0.04 0.06 0.02 0.16
## 8475 0.00 0.00 0.01 0.16
## 8476 0.01 0.00 0.01 0.16
## 8477 0.06 0.00 0.01 0.16
## 8478 0.06 0.00 0.02 0.16
## 8479 0.02 0.00 0.02 0.16
## 8480 0.02 0.00 0.02 0.16
## 8481 0.08 0.00 0.02 0.16
## 8482 0.03 0.00 0.01 0.16
## 8483 0.06 0.00 0.02 0.16
## 8484 0.03 0.00 0.02 0.16
## 8485 0.00 0.03 0.01 0.16
## 8486 0.05 0.03 0.01 0.16
## 8487 0.06 0.00 0.02 0.16
## 8488 0.04 0.00 0.01 0.16
## 8489 0.05 0.03 0.02 0.16
## 8490 0.00 0.02 0.01 0.16
## 8491 0.00 0.16 0.00 0.16
## 8492 0.06 0.00 0.02 0.16
## 8493 0.14 0.00 0.02 0.16
## 8494 0.03 0.00 0.00 0.16
## 8495 0.00 0.04 0.01 0.16
## 8496 0.06 0.00 0.02 0.16
## 8497 0.00 0.15 0.01 0.16
## 8498 0.04 0.00 0.00 0.16
## 8499 0.06 0.00 0.02 0.16
## 8500 0.03 0.11 0.01 0.16
## 8501 0.04 0.00 0.00 0.16
## 8502 0.00 0.00 0.01 0.16
## 8503 0.01 0.00 0.01 0.16
## 8504 0.10 0.00 0.00 0.16
## 8505 0.04 0.00 0.01 0.16
## 8506 0.04 0.00 0.01 0.16
## 8507 0.06 0.00 0.02 0.16
## 8508 0.05 0.03 0.01 0.16
## 8509 0.00 0.00 0.01 0.16
## 8510 0.00 0.00 0.01 0.16
## 8511 0.00 0.16 0.00 0.16
## 8512 0.04 0.00 0.00 0.16
## 8513 0.00 0.16 0.00 0.16
## 8514 0.03 0.03 0.01 0.16
## 8515 0.06 0.00 0.01 0.16
## 8516 0.01 0.00 0.02 0.16
## 8517 0.04 0.00 0.00 0.16
## 8518 0.00 0.15 0.01 0.16
## 8519 0.03 0.00 0.00 0.16
## 8520 0.03 0.00 0.00 0.16
## 8521 0.00 0.16 0.00 0.16
## 8522 0.00 0.15 0.01 0.16
## 8523 0.06 0.00 0.01 0.16
## 8524 0.03 0.00 0.01 0.16
## 8525 0.02 0.00 0.02 0.16
## 8526 0.06 0.00 0.02 0.16
## 8527 0.00 0.00 0.01 0.16
## 8528 0.10 0.00 0.01 0.16
## 8529 0.04 0.03 0.02 0.16
## 8530 0.00 0.16 0.00 0.16
## 8531 0.00 0.16 0.00 0.16
## 8532 0.03 0.00 0.00 0.16
## 8533 0.03 0.00 0.01 0.16
## 8534 0.00 0.00 0.01 0.16
## 8535 0.02 0.00 0.01 0.16
## 8536 0.00 0.00 0.01 0.16
## 8537 0.03 0.00 0.01 0.16
## 8538 0.06 0.00 0.02 0.16
## 8539 0.06 0.00 0.02 0.16
## 8540 0.01 0.00 0.01 0.16
## 8541 0.00 0.00 0.01 0.16
## 8542 0.00 0.16 0.00 0.16
## 8543 0.06 0.00 0.02 0.16
## 8544 0.06 0.00 0.02 0.16
## 8545 0.02 0.00 0.02 0.16
## 8546 0.00 0.01 0.01 0.16
## 8547 0.06 0.00 0.02 0.16
## 8548 0.00 0.16 0.00 0.16
## 8549 0.00 0.00 0.01 0.16
## 8550 0.03 0.00 0.01 0.16
## 8551 0.06 0.00 0.02 0.16
## 8552 0.03 0.00 0.00 0.16
## 8553 0.00 0.16 0.00 0.16
## 8555 0.00 0.00 0.01 0.16
## 8556 0.03 0.00 0.00 0.16
## 8557 0.02 0.00 0.01 0.16
## 8558 0.00 0.00 0.01 0.16
## 8559 0.00 0.16 0.00 0.16
## 8560 0.00 0.16 0.00 0.16
## 8561 0.06 0.00 0.02 0.16
## 8562 0.00 0.00 0.01 0.16
## 8563 0.04 0.00 0.00 0.16
## 8564 0.06 0.00 0.02 0.16
## 8565 0.00 0.16 0.00 0.16
## 8566 0.01 0.00 0.01 0.16
## 8567 0.06 0.00 0.02 0.16
## 8568 0.00 0.00 0.01 0.16
## 8569 0.03 0.00 0.00 0.16
## 8570 0.00 0.00 0.01 0.16
## 8571 0.01 0.03 0.01 0.16
## 8572 0.14 0.00 0.02 0.16
## 8573 0.07 0.00 0.01 0.16
## 8574 0.00 0.00 0.01 0.16
## 8575 0.00 0.00 0.01 0.16
## 8576 0.00 0.16 0.00 0.16
## 8577 0.00 0.00 0.01 0.16
## 8578 0.00 0.16 0.00 0.16
## 8579 0.05 0.00 0.02 0.16
## 8580 0.04 0.00 0.00 0.16
## 8581 0.00 0.15 0.01 0.16
## 8582 0.03 0.00 0.00 0.16
## 8583 0.03 0.00 0.00 0.16
## 8584 0.03 0.00 0.00 0.16
## 8585 0.00 0.12 0.04 0.16
## 8586 0.03 0.00 0.00 0.16
## 8587 0.03 0.00 0.00 0.16
## 8588 0.03 0.00 0.00 0.16
## 8589 0.03 0.00 0.00 0.16
## 8590 0.03 0.00 0.00 0.16
## 8591 0.03 0.00 0.00 0.16
## 8592 0.03 0.00 0.00 0.16
## 8593 0.00 0.12 0.04 0.16
## 8594 0.00 0.03 0.01 0.16
## 8595 0.15 0.00 0.01 0.16
## 8596 0.02 0.08 0.01 0.16
## 8597 0.00 0.16 0.00 0.16
## 8598 0.03 0.03 0.02 0.16
## 8599 0.15 0.00 0.01 0.16
## 8600 0.00 0.16 0.00 0.16
## 8601 0.06 0.00 0.02 0.16
## 8602 0.04 0.00 0.01 0.16
## 8603 0.00 0.16 0.00 0.16
## 8604 0.03 0.00 0.01 0.16
## 8605 0.01 0.00 0.01 0.16
## 8606 0.00 0.00 0.01 0.16
## 8607 0.00 0.00 0.01 0.16
## 8608 0.06 0.00 0.03 0.16
## 8609 0.01 0.00 0.01 0.16
## 8610 0.01 0.11 0.00 0.16
## 8611 0.10 0.02 0.04 0.16
## 8612 0.00 0.00 0.01 0.16
## 8613 0.05 0.02 0.03 0.16
## 8614 0.07 0.00 0.01 0.16
## 8615 0.06 0.00 0.02 0.16
## 8616 0.00 0.00 0.00 0.16
## 8617 0.07 0.00 0.02 0.16
## 8618 0.00 0.16 0.00 0.16
## 8619 0.05 0.00 0.01 0.16
## 8620 0.00 0.00 0.01 0.16
## 8622 0.02 0.00 0.01 0.16
## 8623 0.01 0.00 0.01 0.16
## 8624 0.06 0.00 0.02 0.16
## 8625 0.00 0.00 0.01 0.16
## 8626 0.06 0.00 0.01 0.16
## 8627 0.00 0.00 0.01 0.16
## 8628 0.05 0.00 0.01 0.16
## 8629 0.06 0.00 0.01 0.16
## 8630 0.00 0.00 0.01 0.16
## 8631 0.02 0.00 0.01 0.16
## 8632 0.14 0.00 0.02 0.16
## 8633 0.00 0.09 0.01 0.16
## 8634 0.00 0.15 0.01 0.16
## 8635 0.00 0.16 0.00 0.16
## 8636 0.03 0.00 0.01 0.16
## 8637 0.02 0.02 0.01 0.16
## 8638 0.09 0.00 0.04 0.16
## 8639 0.03 0.04 0.00 0.16
## 8640 0.00 0.16 0.00 0.16
## 8641 0.03 0.00 0.02 0.16
## 8642 0.04 0.00 0.00 0.16
## 8643 0.00 0.15 0.01 0.16
## 8644 0.01 0.00 0.01 0.16
## 8645 0.00 0.15 0.00 0.16
## 8646 0.01 0.00 0.01 0.16
## 8647 0.07 0.00 0.01 0.16
## 8648 0.00 0.00 0.01 0.16
## 8649 0.04 0.00 0.01 0.16
## 8650 0.00 0.00 0.01 0.16
## 8651 0.00 0.16 0.00 0.16
## 8652 0.00 0.00 0.01 0.16
## 8653 0.13 0.00 0.03 0.16
## 8654 0.00 0.00 0.01 0.16
## 8655 0.09 0.00 0.03 0.16
## 8656 0.04 0.00 0.00 0.16
## 8657 0.03 0.08 0.01 0.16
## 8658 0.00 0.16 0.00 0.16
## 8659 0.00 0.15 0.01 0.16
## 8660 0.00 0.00 0.01 0.16
## 8661 0.06 0.00 0.01 0.16
## 8662 0.04 0.00 0.01 0.16
## 8663 0.01 0.13 0.01 0.16
## 8664 0.06 0.00 0.02 0.16
## 8665 0.00 0.01 0.01 0.16
## 8666 0.03 0.00 0.02 0.16
## 8667 0.00 0.00 0.01 0.16
## 8668 0.00 0.15 0.01 0.16
## 8669 0.00 0.16 0.00 0.16
## 8670 0.03 0.00 0.00 0.16
## 8671 0.01 0.00 0.01 0.16
## 8672 0.04 0.00 0.01 0.16
## 8673 0.00 0.00 0.01 0.16
## 8674 0.00 0.04 0.02 0.16
## 8675 0.00 0.00 0.01 0.16
## 8676 0.01 0.00 0.01 0.16
## 8677 0.00 0.12 0.00 0.16
## 8678 0.13 0.00 0.03 0.16
## 8679 0.00 0.16 0.00 0.16
## 8680 0.04 0.00 0.01 0.16
## 8681 0.00 0.00 0.01 0.16
## 8682 0.02 0.00 0.01 0.16
## 8683 0.04 0.00 0.00 0.16
## 8684 0.03 0.00 0.01 0.16
## 8685 0.06 0.00 0.01 0.16
## 8686 0.02 0.03 0.01 0.16
## 8687 0.03 0.00 0.00 0.16
## 8688 0.05 0.04 0.02 0.16
## 8689 0.03 0.00 0.01 0.16
## 8690 0.00 0.16 0.00 0.16
## 8691 0.00 0.00 0.01 0.16
## 8692 0.06 0.00 0.02 0.16
## 8693 0.06 0.00 0.01 0.16
## 8694 0.00 0.16 0.00 0.16
## 8695 0.01 0.00 0.01 0.16
## 8696 0.00 0.00 0.01 0.16
## 8697 0.00 0.16 0.00 0.16
## 8698 0.06 0.00 0.01 0.16
## 8699 0.10 0.00 0.03 0.16
## 8700 0.06 0.00 0.02 0.16
## 8701 0.00 0.16 0.00 0.16
## 8702 0.00 0.00 0.01 0.16
## 8703 0.00 0.00 0.01 0.16
## 8704 0.06 0.00 0.02 0.16
## 8705 0.00 0.16 0.00 0.16
## 8706 0.00 0.00 0.01 0.16
## 8707 0.02 0.06 0.01 0.16
## 8709 0.04 0.00 0.00 0.16
## 8710 0.01 0.00 0.01 0.16
## 8711 0.07 0.00 0.02 0.16
## 8712 0.06 0.00 0.01 0.16
## 8713 0.06 0.00 0.01 0.16
## 8714 0.09 0.00 0.02 0.16
## 8715 0.01 0.00 0.01 0.16
## 8716 0.04 0.00 0.00 0.16
## 8717 0.06 0.00 0.01 0.15
## 8718 0.01 0.12 0.01 0.15
## 8719 0.06 0.00 0.01 0.15
## 8720 0.02 0.00 0.01 0.15
## 8721 0.00 0.00 0.01 0.15
## 8722 0.04 0.00 0.00 0.15
## 8723 0.00 0.14 0.01 0.15
## 8724 0.02 0.01 0.01 0.15
## 8725 0.06 0.00 0.02 0.15
## 8726 0.08 0.00 0.03 0.15
## 8727 0.04 0.00 0.01 0.15
## 8728 0.06 0.00 0.02 0.15
## 8729 0.02 0.00 0.01 0.15
## 8730 0.07 0.00 0.02 0.15
## 8731 0.05 0.00 0.02 0.15
## 8732 0.00 0.00 0.01 0.15
## 8733 0.06 0.00 0.02 0.15
## 8734 0.01 0.00 0.01 0.15
## 8735 0.00 0.00 0.01 0.15
## 8736 0.01 0.01 0.01 0.15
## 8737 0.03 0.00 0.00 0.15
## 8738 0.06 0.00 0.02 0.15
## 8739 0.00 0.00 0.01 0.15
## 8740 0.00 0.15 0.00 0.15
## 8741 0.06 0.00 0.02 0.15
## 8742 0.03 0.00 0.01 0.15
## 8743 0.03 0.00 0.01 0.15
## 8744 0.01 0.00 0.01 0.15
## 8745 0.06 0.00 0.03 0.15
## 8746 0.03 0.00 0.00 0.15
## 8747 0.13 0.00 0.03 0.15
## 8748 0.02 0.00 0.01 0.15
## 8749 0.03 0.00 0.00 0.15
## 8750 0.03 0.00 0.00 0.15
## 8751 0.03 0.00 0.00 0.15
## 8752 0.01 0.00 0.02 0.15
## 8753 0.14 0.00 0.02 0.15
## 8754 0.06 0.01 0.01 0.15
## 8755 0.06 0.00 0.02 0.15
## 8756 0.01 0.00 0.01 0.15
## 8757 0.06 0.00 0.01 0.15
## 8758 0.01 0.00 0.00 0.15
## 8759 0.01 0.00 0.00 0.15
## 8760 0.00 0.15 0.00 0.15
## 8762 0.00 0.15 0.00 0.15
## 8763 0.09 0.00 0.02 0.15
## 8764 0.03 0.00 0.01 0.15
## 8765 0.02 0.00 0.01 0.15
## 8766 0.06 0.02 0.02 0.15
## 8767 0.01 0.00 0.01 0.15
## 8768 0.03 0.00 0.01 0.15
## 8769 0.07 0.00 0.01 0.15
## 8770 0.03 0.00 0.01 0.15
## 8771 0.04 0.00 0.00 0.15
## 8772 0.00 0.00 0.01 0.15
## 8773 0.03 0.00 0.00 0.15
## 8774 0.06 0.00 0.01 0.15
## 8775 0.00 0.04 0.01 0.15
## 8776 0.01 0.02 0.01 0.15
## 8777 0.06 0.00 0.02 0.15
## 8778 0.06 0.00 0.02 0.15
## 8779 0.06 0.00 0.02 0.15
## 8780 0.01 0.05 0.01 0.15
## 8781 0.00 0.00 0.01 0.15
## 8782 0.03 0.00 0.00 0.15
## 8783 0.01 0.00 0.01 0.15
## 8784 0.00 0.15 0.00 0.15
## 8785 0.01 0.00 0.01 0.15
## 8786 0.00 0.15 0.00 0.15
## 8787 0.03 0.00 0.02 0.15
## 8788 0.00 0.00 0.01 0.15
## 8789 0.02 0.00 0.01 0.15
## 8790 0.00 0.15 0.00 0.15
## 8791 0.02 0.06 0.01 0.15
## 8792 0.03 0.00 0.00 0.15
## 8793 0.01 0.00 0.01 0.15
## 8794 0.06 0.00 0.02 0.15
## 8795 0.02 0.00 0.08 0.15
## 8796 0.14 0.00 0.01 0.15
## 8797 0.00 0.00 0.01 0.15
## 8798 0.04 0.05 0.01 0.15
## 8799 0.04 0.00 0.00 0.15
## 8800 0.00 0.15 0.00 0.15
## 8801 0.00 0.00 0.01 0.15
## 8802 0.02 0.04 0.01 0.15
## 8803 0.06 0.00 0.01 0.15
## 8804 0.00 0.00 0.01 0.15
## 8805 0.06 0.00 0.02 0.15
## 8806 0.02 0.00 0.02 0.15
## 8807 0.01 0.00 0.01 0.15
## 8808 0.03 0.00 0.01 0.15
## 8809 0.00 0.15 0.00 0.15
## 8810 0.00 0.15 0.00 0.15
## 8811 0.00 0.15 0.00 0.15
## 8812 0.00 0.15 0.00 0.15
## 8813 0.04 0.00 0.00 0.15
## 8814 0.00 0.00 0.01 0.15
## 8815 0.03 0.00 0.00 0.15
## 8816 0.03 0.00 0.01 0.15
## 8817 0.03 0.00 0.01 0.15
## 8818 0.00 0.14 0.01 0.15
## 8819 0.03 0.00 0.00 0.15
## 8820 0.00 0.00 0.01 0.15
## 8821 0.04 0.00 0.01 0.15
## 8822 0.02 0.00 0.02 0.15
## 8823 0.08 0.00 0.02 0.15
## 8824 0.05 0.00 0.01 0.15
## 8825 0.03 0.00 0.00 0.15
## 8826 0.00 0.00 0.01 0.15
## 8827 0.06 0.00 0.01 0.15
## 8828 0.00 0.00 0.01 0.15
## 8829 0.03 0.00 0.01 0.15
## 8830 0.00 0.01 0.01 0.15
## 8831 0.00 0.15 0.00 0.15
## 8832 0.03 0.00 0.01 0.15
## 8833 0.06 0.00 0.02 0.15
## 8834 0.00 0.04 0.02 0.15
## 8835 0.00 0.15 0.00 0.15
## 8836 0.06 0.00 0.02 0.15
## 8837 0.04 0.05 0.01 0.15
## 8838 0.01 0.00 0.01 0.15
## 8839 0.00 0.00 0.01 0.15
## 8840 0.06 0.00 0.02 0.15
## 8841 0.06 0.00 0.02 0.15
## 8842 0.00 0.00 0.01 0.15
## 8843 0.06 0.00 0.02 0.15
## 8844 0.09 0.04 0.02 0.15
## 8845 0.13 0.00 0.02 0.15
## 8846 0.07 0.03 0.01 0.15
## 8847 0.00 0.15 0.00 0.15
## 8848 0.03 0.00 0.01 0.15
## 8849 0.04 0.00 0.00 0.15
## 8850 0.06 0.00 0.02 0.15
## 8851 0.00 0.13 0.01 0.15
## 8852 0.03 0.00 0.00 0.15
## 8853 0.00 0.15 0.00 0.15
## 8854 0.04 0.00 0.03 0.15
## 8855 0.00 0.15 0.00 0.15
## 8856 0.04 0.09 0.02 0.15
## 8857 0.00 0.10 0.01 0.15
## 8858 0.04 0.00 0.00 0.15
## 8859 0.06 0.00 0.02 0.15
## 8860 0.06 0.00 0.02 0.15
## 8861 0.05 0.00 0.02 0.15
## 8862 0.00 0.15 0.00 0.15
## 8863 0.00 0.09 0.06 0.15
## 8864 0.03 0.00 0.00 0.15
## 8865 0.03 0.00 0.00 0.15
## 8866 0.00 0.15 0.00 0.15
## 8867 0.03 0.00 0.00 0.15
## 8868 0.00 0.00 0.01 0.15
## 8869 0.00 0.00 0.01 0.15
## 8870 0.06 0.00 0.01 0.15
## 8871 0.03 0.00 0.01 0.15
## 8872 0.03 0.00 0.01 0.15
## 8873 0.03 0.08 0.02 0.15
## 8874 0.01 0.00 0.01 0.15
## 8875 0.08 0.00 0.02 0.15
## 8876 0.00 0.15 0.00 0.15
## 8877 0.00 0.00 0.01 0.15
## 8878 0.03 0.00 0.01 0.15
## 8879 0.00 0.00 0.01 0.15
## 8880 0.02 0.00 0.01 0.15
## 8881 0.03 0.00 0.01 0.15
## 8882 0.00 0.15 0.00 0.15
## 8883 0.06 0.00 0.02 0.15
## 8884 0.03 0.00 0.00 0.15
## 8885 0.00 0.00 0.01 0.15
## 8886 0.01 0.00 0.01 0.15
## 8887 0.00 0.00 0.01 0.15
## 8888 0.06 0.00 0.01 0.15
## 8889 0.04 0.00 0.00 0.15
## 8890 0.03 0.00 0.01 0.15
## 8891 0.00 0.14 0.01 0.15
## 8892 0.00 0.00 0.01 0.15
## 8893 0.04 0.00 0.01 0.15
## 8894 0.00 0.15 0.00 0.15
## 8895 0.06 0.00 0.02 0.15
## 8896 0.03 0.00 0.00 0.15
## 8897 0.04 0.00 0.00 0.15
## 8898 0.01 0.07 0.01 0.15
## 8899 0.03 0.00 0.00 0.15
## 8901 0.06 0.00 0.01 0.15
## 8902 0.00 0.00 0.01 0.15
## 8903 0.04 0.00 0.00 0.15
## 8904 0.00 0.00 0.01 0.15
## 8905 0.00 0.15 0.00 0.15
## 8906 0.00 0.00 0.01 0.15
## 8907 0.05 0.04 0.02 0.15
## 8908 0.00 0.00 0.01 0.15
## 8909 0.00 0.15 0.00 0.15
## 8910 0.00 0.15 0.00 0.15
## 8911 0.00 0.15 0.00 0.15
## 8912 0.00 0.14 0.01 0.15
## 8913 0.00 0.00 0.01 0.15
## 8914 0.00 0.15 0.00 0.15
## 8915 0.01 0.00 0.01 0.15
## 8916 0.00 0.00 0.01 0.15
## 8917 0.00 0.15 0.00 0.15
## 8918 0.06 0.00 0.02 0.15
## 8919 0.03 0.00 0.01 0.15
## 8920 0.06 0.00 0.02 0.15
## 8921 0.03 0.00 0.00 0.15
## 8922 0.03 0.00 0.00 0.15
## 8923 0.00 0.15 0.00 0.15
## 8924 0.00 0.00 0.01 0.15
## 8925 0.04 0.00 0.01 0.15
## 8926 0.00 0.01 0.03 0.15
## 8927 0.02 0.05 0.02 0.15
## 8928 0.03 0.00 0.01 0.15
## 8929 0.11 0.00 0.03 0.15
## 8931 0.01 0.00 0.01 0.15
## 8932 0.06 0.00 0.01 0.15
## 8933 0.00 0.01 0.01 0.15
## 8934 0.00 0.00 0.01 0.15
## 8935 0.02 0.00 0.01 0.15
## 8936 0.03 0.00 0.00 0.15
## 8937 0.06 0.00 0.01 0.15
## 8938 0.00 0.15 0.00 0.15
## 8939 0.08 0.01 0.03 0.15
## 8940 0.06 0.00 0.01 0.15
## 8941 0.00 0.14 0.01 0.15
## 8942 0.06 0.00 0.01 0.15
## 8943 0.03 0.00 0.01 0.15
## 8944 0.00 0.15 0.00 0.15
## 8945 0.00 0.00 0.00 0.15
## 8946 0.00 0.03 0.03 0.15
## 8947 0.00 0.15 0.00 0.15
## 8948 0.06 0.00 0.01 0.15
## 8949 0.03 0.00 0.01 0.15
## 8950 0.00 0.15 0.00 0.15
## 8951 0.00 0.14 0.00 0.15
## 8952 0.08 0.00 0.01 0.15
## 8953 0.04 0.00 0.01 0.15
## 8954 0.04 0.00 0.00 0.15
## 8955 0.08 0.00 0.01 0.15
## 8956 0.06 0.00 0.01 0.15
## 8957 0.00 0.00 0.01 0.15
## 8958 0.03 0.00 0.01 0.15
## 8959 0.00 0.14 0.01 0.15
## 8960 0.00 0.15 0.00 0.15
## 8961 0.13 0.00 0.01 0.15
## 8962 0.00 0.00 0.01 0.15
## 8963 0.00 0.15 0.00 0.15
## 8964 0.04 0.00 0.01 0.15
## 8965 0.02 0.00 0.01 0.15
## 8966 0.00 0.00 0.01 0.15
## 8967 0.06 0.00 0.01 0.15
## 8968 0.04 0.00 0.00 0.15
## 8969 0.03 0.00 0.00 0.15
## 8970 0.06 0.00 0.01 0.15
## 8971 0.02 0.00 0.01 0.15
## 8972 0.03 0.00 0.01 0.15
## 8973 0.00 0.00 0.01 0.15
## 8974 0.00 0.15 0.00 0.15
## 8975 0.06 0.00 0.02 0.15
## 8976 0.00 0.15 0.00 0.15
## 8977 0.00 0.00 0.01 0.15
## 8978 0.06 0.00 0.02 0.15
## 8979 0.06 0.00 0.01 0.15
## 8980 0.00 0.00 0.01 0.15
## 8981 0.00 0.15 0.00 0.15
## 8982 0.04 0.00 0.00 0.15
## 8983 0.04 0.00 0.00 0.15
## 8984 0.00 0.00 0.01 0.15
## 8985 0.00 0.15 0.00 0.15
## 8986 0.00 0.00 0.01 0.15
## 8987 0.03 0.00 0.01 0.15
## 8988 0.00 0.14 0.01 0.15
## 8989 0.03 0.05 0.02 0.15
## 8990 0.13 0.00 0.02 0.15
## 8991 0.04 0.00 0.00 0.15
## 8992 0.00 0.01 0.01 0.15
## 8993 0.03 0.00 0.00 0.15
## 8994 0.00 0.14 0.00 0.14
## 8995 0.03 0.00 0.01 0.14
## 8996 0.00 0.04 0.01 0.14
## 8997 0.06 0.00 0.02 0.14
## 8998 0.01 0.00 0.02 0.14
## 8999 0.06 0.00 0.02 0.14
## 9000 0.06 0.00 0.02 0.14
## 9001 0.00 0.13 0.00 0.14
## 9002 0.03 0.07 0.02 0.14
## 9003 0.00 0.14 0.00 0.14
## 9004 0.03 0.00 0.01 0.14
## 9005 0.00 0.14 0.00 0.14
## 9006 0.00 0.00 0.01 0.14
## 9007 0.05 0.00 0.01 0.14
## 9008 0.00 0.14 0.00 0.14
## 9009 0.03 0.00 0.01 0.14
## 9010 0.03 0.02 0.03 0.14
## 9011 0.05 0.00 0.01 0.14
## 9012 0.06 0.00 0.02 0.14
## 9013 0.06 0.00 0.02 0.14
## 9014 0.00 0.14 0.00 0.14
## 9015 0.00 0.14 0.00 0.14
## 9016 0.04 0.00 0.00 0.14
## 9017 0.06 0.00 0.02 0.14
## 9018 0.05 0.00 0.01 0.14
## 9019 0.05 0.00 0.01 0.14
## 9020 0.00 0.00 0.01 0.14
## 9021 0.00 0.00 0.01 0.14
## 9022 0.02 0.00 0.01 0.14
## 9023 0.00 0.14 0.00 0.14
## 9024 0.06 0.00 0.02 0.14
## 9025 0.00 0.00 0.01 0.14
## 9026 0.03 0.00 0.00 0.14
## 9027 0.00 0.00 0.03 0.14
## 9028 0.05 0.00 0.02 0.14
## 9029 0.00 0.14 0.00 0.14
## 9030 0.00 0.14 0.00 0.14
## 9031 0.03 0.00 0.01 0.14
## 9032 0.05 0.00 0.01 0.14
## 9033 0.05 0.00 0.01 0.14
## 9034 0.04 0.00 0.00 0.14
## 9035 0.02 0.00 0.02 0.14
## 9036 0.12 0.00 0.02 0.14
## 9037 0.00 0.00 0.01 0.14
## 9038 0.11 0.00 0.03 0.14
## 9039 0.05 0.00 0.01 0.14
## 9040 0.04 0.00 0.01 0.14
## 9041 0.00 0.00 0.01 0.14
## 9042 0.05 0.00 0.02 0.14
## 9043 0.01 0.00 0.01 0.14
## 9044 0.05 0.00 0.02 0.14
## 9045 0.05 0.00 0.02 0.14
## 9046 0.03 0.01 0.01 0.14
## 9047 0.12 0.00 0.03 0.14
## 9048 0.05 0.00 0.01 0.14
## 9049 0.00 0.14 0.00 0.14
## 9050 0.02 0.00 0.01 0.14
## 9051 0.00 0.14 0.00 0.14
## 9052 0.04 0.00 0.00 0.14
## 9053 0.00 0.14 0.00 0.14
## 9054 0.05 0.00 0.02 0.14
## 9055 0.00 0.00 0.01 0.14
## 9056 0.10 0.00 0.02 0.14
## 9057 0.08 0.00 0.02 0.14
## 9058 0.00 0.13 0.01 0.14
## 9059 0.00 0.13 0.01 0.14
## 9060 0.00 0.00 0.01 0.14
## 9061 0.03 0.00 0.00 0.14
## 9062 0.03 0.01 0.01 0.14
## 9063 0.11 0.00 0.03 0.14
## 9064 0.00 0.00 0.01 0.14
## 9065 0.00 0.06 0.01 0.14
## 9066 0.00 0.04 0.01 0.14
## 9067 0.10 0.00 0.03 0.14
## 9068 0.00 0.14 0.00 0.14
## 9069 0.05 0.00 0.02 0.14
## 9070 0.01 0.00 0.01 0.14
## 9071 0.00 0.14 0.00 0.14
## 9072 0.00 0.14 0.00 0.14
## 9073 0.05 0.00 0.02 0.14
## 9074 0.00 0.00 0.01 0.14
## 9075 0.00 0.14 0.00 0.14
## 9076 0.03 0.00 0.01 0.14
## 9077 0.10 0.00 0.02 0.14
## 9078 0.03 0.00 0.01 0.14
## 9079 0.03 0.00 0.01 0.14
## 9080 0.00 0.08 0.01 0.14
## 9081 0.03 0.00 0.01 0.14
## 9083 0.00 0.11 0.00 0.14
## 9084 0.00 0.00 0.01 0.14
## 9085 0.00 0.00 0.01 0.14
## 9086 0.04 0.00 0.00 0.14
## 9087 0.00 0.14 0.00 0.14
## 9088 0.03 0.03 0.02 0.14
## 9089 0.05 0.00 0.01 0.14
## 9090 0.05 0.00 0.02 0.14
## 9091 0.00 0.06 0.01 0.14
## 9092 0.03 0.00 0.01 0.14
## 9093 0.00 0.14 0.00 0.14
## 9094 0.00 0.14 0.00 0.14
## 9095 0.03 0.00 0.01 0.14
## 9096 0.00 0.13 0.01 0.14
## 9097 0.01 0.13 0.00 0.14
## 9098 0.01 0.11 0.01 0.14
## 9099 0.05 0.00 0.02 0.14
## 9100 0.00 0.00 0.01 0.14
## 9101 0.04 0.00 0.00 0.14
## 9102 0.00 0.04 0.01 0.14
## 9103 0.03 0.00 0.01 0.14
## 9104 0.00 0.14 0.00 0.14
## 9105 0.05 0.00 0.02 0.14
## 9106 0.05 0.00 0.02 0.14
## 9107 0.01 0.00 0.00 0.14
## 9108 0.00 0.14 0.00 0.14
## 9109 0.11 0.00 0.03 0.14
## 9110 0.02 0.00 0.01 0.14
## 9111 0.04 0.00 0.00 0.14
## 9112 0.05 0.00 0.02 0.14
## 9113 0.05 0.00 0.01 0.14
## 9114 0.00 0.05 0.01 0.14
## 9115 0.00 0.00 0.01 0.14
## 9116 0.03 0.00 0.01 0.14
## 9117 0.00 0.00 0.01 0.14
## 9118 0.06 0.00 0.02 0.14
## 9119 0.00 0.00 0.01 0.14
## 9120 0.03 0.00 0.00 0.14
## 9121 0.03 0.00 0.00 0.14
## 9122 0.05 0.00 0.02 0.14
## 9123 0.05 0.00 0.01 0.14
## 9124 0.00 0.14 0.00 0.14
## 9125 0.05 0.00 0.01 0.14
## 9126 0.00 0.13 0.01 0.14
## 9127 0.12 0.00 0.02 0.14
## 9128 0.00 0.00 0.01 0.14
## 9129 0.05 0.00 0.02 0.14
## 9130 0.00 0.14 0.00 0.14
## 9131 0.05 0.00 0.01 0.14
## 9132 0.05 0.00 0.02 0.14
## 9133 0.02 0.00 0.01 0.14
## 9134 0.00 0.13 0.01 0.14
## 9135 0.03 0.00 0.01 0.14
## 9136 0.00 0.14 0.00 0.14
## 9137 0.11 0.00 0.01 0.14
## 9138 0.05 0.00 0.02 0.14
## 9139 0.02 0.00 0.02 0.14
## 9140 0.02 0.02 0.01 0.14
## 9141 0.05 0.00 0.02 0.14
## 9142 0.05 0.00 0.02 0.14
## 9143 0.00 0.14 0.00 0.14
## 9144 0.02 0.00 0.01 0.14
## 9145 0.07 0.00 0.01 0.14
## 9146 0.10 0.00 0.04 0.14
## 9147 0.05 0.00 0.01 0.14
## 9148 0.11 0.00 0.03 0.14
## 9149 0.05 0.00 0.01 0.14
## 9150 0.00 0.00 0.01 0.14
## 9151 0.00 0.13 0.00 0.14
## 9153 0.03 0.00 0.00 0.14
## 9154 0.03 0.00 0.00 0.14
## 9155 0.03 0.00 0.00 0.14
## 9156 0.03 0.00 0.00 0.14
## 9157 0.05 0.00 0.01 0.14
## 9158 0.01 0.00 0.02 0.14
## 9159 0.00 0.14 0.00 0.14
## 9160 0.00 0.00 0.01 0.14
## 9161 0.05 0.00 0.02 0.14
## 9162 0.12 0.00 0.02 0.14
## 9163 0.01 0.10 0.01 0.14
## 9164 0.03 0.00 0.00 0.14
## 9165 0.00 0.14 0.00 0.14
## 9166 0.00 0.00 0.01 0.14
## 9167 0.05 0.00 0.01 0.14
## 9168 0.05 0.00 0.02 0.14
## 9169 0.03 0.00 0.01 0.14
## 9170 0.05 0.00 0.01 0.14
## 9171 0.00 0.14 0.00 0.14
## 9173 0.00 0.00 0.01 0.14
## 9174 0.01 0.00 0.01 0.14
## 9175 0.00 0.14 0.00 0.14
## 9176 0.03 0.00 0.00 0.14
## 9177 0.01 0.00 0.01 0.14
## 9178 0.01 0.00 0.01 0.14
## 9179 0.05 0.00 0.02 0.14
## 9180 0.05 0.00 0.01 0.14
## 9181 0.04 0.00 0.00 0.14
## 9182 0.00 0.14 0.00 0.14
## 9183 0.01 0.01 0.01 0.14
## 9184 0.12 0.00 0.02 0.14
## 9185 0.00 0.14 0.00 0.14
## 9186 0.05 0.00 0.01 0.14
## 9187 0.04 0.00 0.00 0.14
## 9188 0.00 0.14 0.00 0.14
## 9189 0.03 0.00 0.01 0.14
## 9190 0.03 0.00 0.01 0.14
## 9191 0.05 0.00 0.01 0.14
## 9192 0.00 0.14 0.00 0.14
## 9193 0.03 0.03 0.00 0.14
## 9194 0.02 0.00 0.01 0.14
## 9195 0.02 0.00 0.01 0.14
## 9196 0.03 0.00 0.00 0.14
## 9197 0.00 0.14 0.00 0.14
## 9198 0.05 0.00 0.01 0.14
## 9199 0.00 0.00 0.01 0.14
## 9200 0.03 0.00 0.01 0.14
## 9201 0.03 0.00 0.01 0.14
## 9202 0.00 0.00 0.01 0.14
## 9203 0.05 0.00 0.01 0.14
## 9204 0.04 0.00 0.01 0.14
## 9205 0.03 0.00 0.00 0.14
## 9206 0.00 0.00 0.01 0.14
## 9207 0.03 0.00 0.01 0.14
## 9208 0.05 0.00 0.01 0.14
## 9209 0.03 0.00 0.01 0.14
## 9210 0.00 0.14 0.00 0.14
## 9211 0.06 0.00 0.03 0.14
## 9212 0.00 0.14 0.00 0.14
## 9213 0.00 0.00 0.01 0.14
## 9214 0.03 0.00 0.01 0.14
## 9215 0.00 0.00 0.01 0.14
## 9216 0.05 0.00 0.01 0.14
## 9217 0.00 0.00 0.01 0.14
## 9218 0.04 0.00 0.00 0.14
## 9219 0.01 0.08 0.00 0.14
## 9220 0.00 0.00 0.01 0.14
## 9221 0.00 0.14 0.00 0.14
## 9222 0.00 0.13 0.01 0.14
## 9223 0.00 0.06 0.01 0.14
## 9224 0.00 0.14 0.00 0.14
## 9225 0.00 0.14 0.00 0.14
## 9226 0.01 0.13 0.00 0.14
## 9227 0.04 0.00 0.01 0.14
## 9228 0.01 0.00 0.01 0.14
## 9229 0.04 0.10 0.00 0.14
## 9230 0.00 0.00 0.01 0.14
## 9231 0.13 0.00 0.01 0.14
## 9232 0.10 0.00 0.04 0.14
## 9233 0.00 0.13 0.00 0.14
## 9234 0.03 0.00 0.00 0.14
## 9235 0.03 0.00 0.00 0.14
## [ reached 'max' / getOption("max.print") -- omitted 7211 rows ]
cat("Filas después de na.omit():", nrow(df_sin_na), "\n\n")
## Filas después de na.omit(): 16301
# Método 2: complete.cases() - Más control
df_completo <- data.vg[complete.cases(data.vg), ]
print("Con complete.cases():")
## [1] "Con complete.cases():"
print(df_completo)
## Rank
## 1 1
## 2 2
## 3 3
## 4 4
## 5 5
## 6 6
## 7 7
## 8 8
## 9 9
## 10 10
## 11 11
## 12 12
## 13 13
## 14 14
## 15 15
## 16 16
## 17 17
## 18 18
## 19 19
## 20 20
## 21 21
## 22 22
## 23 23
## 24 24
## 25 25
## 26 26
## 27 27
## 28 28
## 29 29
## 30 30
## 31 31
## 32 32
## 33 33
## 34 34
## 35 35
## 36 36
## 37 37
## 38 38
## 39 39
## 40 40
## 41 41
## 42 42
## 43 43
## 44 44
## 45 45
## 46 46
## 47 47
## 48 48
## 49 49
## 50 50
## 51 51
## 52 52
## 53 53
## 54 54
## 55 55
## 56 56
## 57 57
## 58 58
## 59 59
## 60 60
## 61 61
## 62 62
## 63 63
## 64 64
## 65 65
## 66 66
## 67 67
## 68 68
## 69 69
## 70 70
## 71 71
## 72 72
## 73 73
## 74 74
## 75 75
## 76 76
## 77 77
## 78 78
## 79 79
## 80 80
## 81 81
## 82 82
## 83 83
## 84 84
## 85 85
## 86 86
## 87 87
## 88 88
## 89 89
## 90 90
## 91 91
## 92 92
## 93 93
## 94 94
## 95 95
## 96 96
## 97 97
## 98 98
## 99 99
## 100 100
## 101 101
## 102 102
## 103 103
## 104 104
## 105 105
## 106 106
## 107 107
## 108 108
## 109 109
## 110 110
## 111 111
## 112 112
## 113 113
## 114 114
## 115 115
## 116 116
## 117 117
## 118 118
## 119 119
## 120 120
## 121 121
## 122 122
## 123 123
## 124 124
## 125 125
## 126 126
## 127 127
## 128 128
## 129 129
## 130 130
## 131 131
## 132 132
## 133 133
## 134 134
## 135 135
## 136 136
## 137 137
## 138 138
## 139 139
## 140 140
## 141 141
## 142 142
## 143 143
## 144 144
## 145 145
## 146 146
## 147 147
## 148 148
## 149 149
## 150 150
## 151 151
## 152 152
## 153 153
## 154 154
## 155 155
## 156 156
## 157 157
## 158 158
## 159 159
## 160 160
## 161 161
## 162 162
## 163 163
## 164 164
## 165 165
## 166 166
## 167 167
## 168 168
## 169 169
## 170 170
## 171 171
## 172 172
## 173 173
## 174 174
## 175 175
## 176 176
## 177 177
## 178 178
## 179 179
## 181 181
## 182 182
## 183 183
## 184 184
## 185 185
## 186 186
## 187 187
## 188 188
## 189 189
## 190 190
## 191 191
## 192 192
## 193 193
## 194 194
## 195 195
## 196 196
## 197 197
## 198 198
## 199 199
## 200 200
## 201 201
## 202 202
## 203 203
## 204 204
## 205 205
## 206 206
## 207 207
## 208 208
## 209 209
## 210 210
## 211 211
## 212 212
## 213 213
## 214 214
## 215 215
## 216 216
## 217 217
## 218 218
## 219 219
## 220 220
## 221 221
## 222 222
## 223 223
## 224 224
## 225 225
## 226 226
## 227 227
## 228 228
## 229 229
## 230 230
## 231 231
## 232 232
## 233 233
## 234 234
## 235 235
## 236 236
## 237 237
## 238 238
## 239 239
## 240 240
## 241 241
## 242 242
## 243 243
## 244 244
## 245 245
## 246 246
## 247 247
## 248 248
## 249 249
## 250 250
## 251 251
## 252 252
## 253 253
## 254 254
## 255 255
## 256 256
## 257 257
## 258 258
## 259 259
## 260 260
## 261 261
## 262 262
## 263 263
## 264 264
## 265 265
## 266 266
## 267 267
## 268 268
## 269 269
## 270 270
## 271 271
## 272 272
## 273 273
## 274 274
## 275 275
## 276 276
## 277 277
## 278 278
## 279 279
## 280 280
## 281 281
## 282 282
## 283 283
## 284 284
## 285 285
## 286 286
## 287 287
## 288 288
## 289 289
## 290 290
## 291 291
## 292 292
## 293 293
## 294 294
## 295 295
## 296 296
## 297 297
## 298 298
## 299 299
## 300 300
## 301 301
## 302 302
## 303 303
## 304 304
## 305 305
## 306 306
## 307 307
## 308 308
## 309 309
## 310 310
## 311 311
## 312 312
## 313 313
## 314 314
## 315 315
## 316 316
## 317 317
## 318 318
## 319 319
## 320 320
## 321 321
## 322 322
## 323 323
## 324 324
## 325 325
## 326 326
## 327 327
## 328 328
## 329 329
## 330 330
## 331 331
## 332 332
## 333 333
## 334 334
## 335 335
## 336 336
## 337 337
## 338 338
## 339 339
## 340 340
## 341 341
## 342 342
## 343 343
## 344 344
## 345 345
## 346 346
## 347 347
## 348 348
## 349 349
## 350 350
## 351 351
## 352 352
## 353 353
## 354 354
## 355 355
## 356 356
## 357 357
## 358 358
## 359 359
## 360 360
## 361 361
## 362 362
## 363 363
## 364 364
## 365 365
## 366 366
## 367 367
## 368 368
## 369 369
## 370 370
## 371 371
## 372 372
## 373 373
## 374 374
## 375 375
## 376 376
## 377 377
## 379 379
## 380 380
## 381 381
## 382 382
## 383 383
## 384 384
## 385 385
## 386 386
## 387 387
## 388 388
## 389 389
## 390 390
## 391 391
## 392 392
## 393 393
## 394 394
## 395 395
## 396 396
## 397 397
## 398 398
## 399 399
## 400 400
## 401 401
## 402 402
## 403 403
## 404 404
## 405 405
## 406 406
## 407 407
## 408 408
## 409 409
## 410 410
## 411 411
## 412 412
## 413 413
## 414 414
## 415 415
## 416 416
## 417 417
## 418 418
## 419 419
## 420 420
## 421 421
## 422 422
## 423 423
## 424 424
## 425 425
## 426 426
## 427 427
## 428 428
## 429 429
## 430 430
## 431 431
## 433 433
## 434 434
## 435 435
## 436 436
## 437 437
## 438 438
## 439 439
## 440 440
## 441 441
## 442 442
## 443 443
## 444 444
## 445 445
## 446 446
## 447 447
## 448 448
## 449 449
## 450 450
## 451 451
## 452 452
## 453 453
## 454 454
## 455 455
## 456 456
## 457 457
## 458 458
## 459 459
## 460 460
## 461 461
## 462 462
## 463 463
## 464 464
## 465 465
## 466 466
## 467 467
## 468 468
## 469 469
## 470 470
## 472 472
## 473 473
## 474 474
## 475 475
## 476 476
## 477 477
## 478 478
## 479 479
## 480 480
## 481 481
## 482 482
## 483 483
## 484 484
## 485 485
## 486 486
## 487 487
## 488 488
## 489 489
## 490 490
## 491 491
## 492 492
## 493 493
## 494 494
## 495 495
## 496 496
## 497 497
## 498 498
## 499 499
## 500 500
## 501 501
## 502 502
## 503 503
## 504 504
## 505 505
## 506 506
## 507 507
## 508 508
## 509 509
## 510 510
## 511 511
## 512 512
## 513 513
## 514 514
## 515 515
## 516 516
## 517 517
## 518 518
## 519 519
## 520 520
## 521 521
## 522 522
## 523 523
## 524 524
## 525 525
## 526 526
## 527 527
## 528 528
## 529 529
## 530 530
## 531 531
## 532 532
## 533 533
## 534 534
## 535 535
## 536 536
## 537 537
## 538 538
## 539 539
## 540 540
## 541 541
## 542 542
## 543 543
## 544 544
## 545 545
## 546 546
## 547 547
## 548 548
## 549 549
## 550 550
## 551 551
## 552 552
## 553 553
## 554 554
## 555 555
## 556 556
## 557 557
## 558 558
## 559 559
## 560 560
## 561 561
## 562 562
## 563 563
## 564 564
## 565 565
## 566 566
## 567 567
## 568 568
## 569 569
## 570 570
## 571 571
## 572 572
## 573 573
## 574 574
## 575 575
## 576 576
## 577 577
## 578 578
## 579 579
## 580 580
## 581 581
## 582 582
## 583 583
## 584 584
## 585 585
## 586 586
## 587 587
## 588 588
## 589 589
## 590 590
## 591 591
## 592 592
## 593 593
## 594 594
## 595 595
## 596 596
## 597 597
## 598 598
## 599 599
## 600 600
## 601 601
## 602 602
## 603 603
## 604 604
## 605 605
## 606 606
## 607 607
## 609 609
## 610 610
## 611 611
## 612 612
## 613 613
## 614 614
## 615 615
## 616 616
## 617 617
## 618 618
## 619 619
## 620 620
## 621 621
## 622 622
## 623 623
## 624 624
## 626 626
## 627 627
## 628 628
## 629 629
## 630 630
## 631 631
## 632 632
## 633 633
## 634 634
## 635 635
## 636 636
## 637 637
## 638 638
## 639 639
## 640 640
## 641 641
## 642 642
## 643 643
## 644 644
## 645 645
## 646 646
## 647 647
## 648 648
## 649 649
## 651 651
## 652 652
## 654 655
## 655 656
## 656 657
## 657 658
## 658 659
## 659 660
## 660 661
## 661 662
## 662 663
## 663 664
## 664 665
## 665 666
## 666 667
## 667 668
## 668 669
## 669 670
## 670 671
## 671 672
## 672 673
## 673 674
## 674 675
## 675 676
## 676 677
## 677 678
## 678 679
## 679 680
## 680 681
## 681 682
## 682 683
## 683 684
## 684 685
## 685 686
## 686 687
## 687 688
## 688 689
## 689 690
## 690 691
## 691 692
## 692 693
## 693 694
## 694 695
## 695 696
## 696 697
## 697 698
## 698 699
## 699 700
## 700 701
## 701 702
## 702 703
## 703 704
## 704 705
## 705 706
## 706 707
## 707 708
## 708 709
## 709 710
## 710 711
## 711 712
## 713 714
## 714 715
## 715 716
## 716 717
## 717 718
## 718 719
## 719 720
## 720 721
## 721 722
## 722 723
## 723 724
## 724 725
## 725 726
## 726 727
## 727 728
## 728 729
## 729 730
## 730 731
## 731 732
## 732 733
## 733 734
## 734 735
## 735 736
## 736 737
## 737 738
## 738 739
## 739 740
## 740 741
## 741 742
## 742 743
## 743 744
## 744 745
## 745 746
## 746 747
## 747 748
## 748 749
## 749 750
## 750 751
## 751 752
## 752 753
## 753 754
## 754 755
## 755 756
## 756 757
## 757 758
## 758 759
## 759 760
## 760 761
## 761 762
## 762 763
## 763 764
## 764 765
## 765 766
## 766 767
## 767 768
## 768 769
## 769 770
## 770 771
## 771 772
## 772 773
## 773 774
## 774 775
## 775 776
## 776 777
## 777 778
## 778 779
## 779 780
## 780 781
## 781 782
## 782 783
## 784 785
## 785 786
## 786 787
## 787 788
## 788 789
## 789 790
## 790 791
## 791 792
## 792 793
## 793 794
## 794 795
## 795 796
## 796 797
## 797 798
## 798 799
## 799 800
## 800 801
## 801 802
## 802 803
## 803 804
## 804 805
## 805 806
## 806 807
## 807 808
## 808 809
## 809 810
## 810 811
## 811 812
## 812 813
## 813 814
## 814 815
## 815 816
## 816 817
## 817 818
## 818 819
## 819 820
## 820 821
## 821 822
## 822 823
## 823 824
## 824 825
## 825 826
## 826 827
## 827 828
## 828 829
## 829 830
## 830 831
## 831 832
## 832 833
## 833 834
## 834 835
## 835 836
## 836 837
## 837 838
## 838 839
## 839 840
## 840 841
## 841 842
## 842 843
## 843 844
## 844 845
## 845 846
## 846 847
## 847 848
## 848 849
## 849 850
## 850 851
## 851 852
## 852 853
## 853 854
## 854 855
## 855 856
## 856 857
## 857 858
## 858 859
## 859 860
## 860 861
## 861 862
## 862 863
## 863 864
## 864 865
## 865 866
## 866 867
## 867 868
## 868 869
## 869 870
## 870 871
## 871 872
## 872 873
## 873 874
## 874 875
## 875 876
## 876 877
## 877 878
## 878 879
## 879 880
## 880 881
## 881 882
## 882 883
## 883 884
## 884 885
## 885 886
## 886 887
## 887 888
## 888 889
## 889 890
## 890 891
## 891 892
## 892 893
## 893 894
## 894 895
## 895 896
## 896 897
## 897 898
## 898 899
## 899 900
## 900 901
## 901 902
## 902 903
## 903 904
## 904 905
## 905 906
## 906 907
## 907 908
## 908 909
## 909 910
## 910 911
## 911 912
## 912 913
## 913 914
## 914 915
## 915 916
## 916 917
## 917 918
## 918 919
## 919 920
## 920 921
## 921 922
## 922 923
## 923 924
## 924 925
## 925 926
## 926 927
## 927 928
## 928 929
## 929 930
## 930 931
## 931 932
## 932 933
## 933 934
## 934 935
## 935 936
## 936 937
## 937 938
## 938 939
## 939 940
## 940 941
## 941 942
## 942 943
## 943 944
## 944 945
## 945 946
## 946 947
## 947 948
## 948 949
## 949 950
## 950 951
## 951 952
## 952 953
## 953 954
## 954 955
## 955 956
## 956 957
## 957 958
## 958 959
## 959 960
## 960 961
## 961 962
## 962 963
## 963 964
## 964 965
## 965 966
## 966 967
## 967 968
## 968 969
## 969 970
## 970 971
## 971 972
## 972 973
## 973 974
## 974 975
## 975 976
## 976 977
## 977 978
## 978 979
## 979 980
## 980 981
## 981 982
## 982 983
## 983 984
## 984 985
## 985 986
## 986 987
## 987 988
## 988 989
## 989 990
## 990 991
## 991 992
## 992 993
## 993 994
## 994 995
## 995 996
## 996 997
## 997 998
## 998 999
## 999 1000
## 1000 1001
## 1001 1002
## 1002 1003
## 1003 1004
## 1004 1005
## 1005 1006
## 1006 1007
## 1007 1008
## 1008 1009
## 1009 1010
## 1010 1011
## 1011 1012
## 1012 1013
## 1013 1014
## 1014 1015
## 1015 1016
## 1016 1017
## 1017 1018
## 1018 1019
## 1019 1020
## 1020 1021
## 1021 1022
## 1022 1023
## 1023 1024
## 1024 1025
## 1025 1026
## 1026 1027
## 1027 1028
## 1028 1029
## 1029 1030
## 1030 1031
## 1031 1032
## 1032 1033
## 1033 1034
## 1034 1035
## 1035 1036
## 1036 1037
## 1037 1038
## 1038 1039
## 1039 1040
## 1040 1041
## 1041 1042
## 1042 1043
## 1043 1044
## 1044 1045
## 1045 1046
## 1046 1047
## 1047 1048
## 1048 1049
## 1049 1050
## 1050 1051
## 1051 1052
## 1052 1053
## 1053 1054
## 1054 1055
## 1055 1056
## 1056 1057
## 1057 1058
## 1058 1059
## 1059 1060
## 1060 1061
## 1061 1062
## 1062 1063
## 1063 1064
## 1064 1065
## 1065 1066
## 1066 1067
## 1067 1068
## 1068 1069
## 1069 1070
## 1070 1071
## 1071 1072
## 1072 1073
## 1073 1074
## 1074 1075
## 1075 1076
## 1076 1077
## 1077 1078
## 1078 1079
## 1079 1080
## 1080 1081
## 1081 1082
## 1082 1083
## 1083 1084
## 1084 1085
## 1085 1086
## 1086 1087
## 1087 1088
## 1088 1089
## 1089 1090
## 1090 1091
## 1091 1092
## 1092 1093
## 1093 1094
## 1094 1095
## 1095 1096
## 1096 1097
## 1097 1098
## 1098 1099
## 1099 1100
## 1100 1101
## 1101 1102
## 1102 1103
## 1103 1104
## 1104 1105
## 1105 1106
## 1106 1107
## 1107 1108
## 1108 1109
## 1109 1110
## 1110 1111
## 1111 1112
## 1112 1113
## 1113 1114
## 1114 1115
## 1115 1116
## 1116 1117
## 1117 1118
## 1118 1119
## 1119 1120
## 1120 1121
## 1121 1122
## 1122 1123
## 1123 1124
## 1124 1125
## 1125 1126
## 1126 1127
## 1128 1129
## 1129 1130
## 1130 1131
## 1131 1132
## 1132 1133
## 1133 1134
## 1135 1136
## 1136 1137
## 1137 1138
## 1138 1139
## 1139 1140
## 1140 1141
## 1141 1142
## 1142 1143
## 1143 1144
## 1144 1145
## 1145 1146
## 1146 1147
## 1147 1148
## 1148 1149
## 1149 1150
## 1150 1151
## 1151 1152
## 1152 1153
## 1153 1154
## 1154 1155
## 1155 1156
## 1156 1157
## 1157 1158
## 1158 1159
## 1159 1160
## 1160 1161
## 1161 1162
## 1162 1163
## 1163 1164
## 1164 1165
## 1165 1166
## 1166 1167
## 1167 1168
## 1168 1169
## 1169 1170
## 1170 1171
## 1171 1172
## 1172 1173
## 1173 1174
## 1174 1175
## 1175 1176
## 1176 1177
## 1177 1178
## 1178 1179
## 1179 1180
## 1180 1181
## 1181 1182
## 1182 1183
## 1183 1184
## 1184 1185
## 1185 1186
## 1186 1187
## 1187 1188
## 1188 1189
## 1189 1190
## 1190 1191
## 1191 1192
## 1192 1193
## 1193 1194
## 1194 1195
## 1195 1196
## 1196 1197
## 1197 1198
## 1198 1199
## 1199 1200
## 1200 1201
## 1201 1202
## 1202 1203
## 1203 1204
## 1204 1205
## 1205 1206
## 1206 1207
## 1207 1208
## 1208 1209
## 1209 1210
## 1210 1211
## 1211 1212
## 1212 1213
## 1213 1214
## 1214 1215
## 1215 1216
## 1216 1217
## 1217 1218
## 1218 1219
## 1219 1220
## 1220 1221
## 1221 1222
## 1222 1223
## 1223 1224
## 1224 1225
## 1225 1226
## 1226 1227
## 1227 1228
## 1228 1229
## 1229 1230
## 1230 1231
## 1231 1232
## 1232 1233
## 1233 1234
## 1234 1235
## 1235 1236
## 1236 1237
## 1237 1238
## 1238 1239
## 1239 1240
## 1240 1241
## 1241 1242
## 1242 1243
## 1243 1244
## 1244 1245
## 1245 1246
## 1246 1247
## 1247 1248
## 1248 1249
## 1249 1250
## 1250 1251
## 1251 1252
## 1252 1253
## 1253 1254
## 1254 1255
## 1255 1256
## 1256 1257
## 1257 1258
## 1258 1259
## 1259 1260
## 1260 1261
## 1261 1262
## 1262 1263
## 1263 1264
## 1264 1265
## 1265 1266
## 1266 1267
## 1267 1268
## 1268 1269
## 1269 1270
## 1270 1271
## 1271 1272
## 1272 1273
## 1273 1274
## 1274 1275
## 1275 1276
## 1276 1277
## 1277 1278
## 1278 1279
## 1279 1280
## 1280 1281
## 1281 1282
## 1282 1283
## 1283 1284
## 1284 1285
## 1285 1286
## 1286 1287
## 1287 1288
## 1288 1289
## 1289 1290
## 1290 1291
## 1291 1292
## 1292 1293
## 1293 1294
## 1294 1295
## 1295 1296
## 1296 1297
## 1297 1298
## 1298 1299
## 1299 1300
## 1300 1301
## 1301 1302
## 1302 1303
## 1303 1304
## 1305 1306
## 1306 1307
## 1307 1308
## 1308 1309
## 1309 1310
## 1310 1311
## 1311 1312
## 1312 1313
## 1313 1314
## 1314 1315
## 1315 1316
## 1316 1317
## 1317 1318
## 1318 1319
## 1319 1320
## 1320 1321
## 1321 1322
## 1322 1323
## 1323 1324
## 1324 1325
## 1325 1326
## 1326 1327
## 1327 1328
## 1328 1329
## 1329 1330
## 1330 1331
## 1331 1332
## 1332 1333
## 1333 1334
## 1334 1335
## 1335 1336
## 1336 1337
## 1337 1338
## 1338 1339
## 1339 1340
## 1340 1341
## 1341 1342
## 1342 1343
## 1343 1344
## 1344 1345
## 1345 1346
## 1346 1347
## 1347 1348
## 1348 1349
## 1349 1350
## 1350 1351
## 1351 1352
## 1352 1353
## 1353 1354
## 1354 1355
## 1355 1356
## 1356 1357
## 1357 1358
## 1358 1359
## 1359 1360
## 1360 1361
## 1361 1362
## 1362 1363
## 1363 1364
## 1364 1365
## 1365 1366
## 1366 1367
## 1367 1368
## 1368 1369
## 1369 1370
## 1370 1371
## 1371 1372
## 1372 1373
## 1373 1374
## 1374 1375
## 1375 1376
## 1376 1377
## 1377 1378
## 1378 1379
## 1379 1380
## 1380 1381
## 1381 1382
## 1382 1383
## 1383 1384
## 1384 1385
## 1385 1386
## 1386 1387
## 1387 1388
## 1388 1389
## 1389 1390
## 1390 1391
## 1391 1392
## 1392 1393
## 1393 1394
## 1394 1395
## 1395 1396
## 1396 1397
## 1397 1398
## 1398 1399
## 1399 1400
## 1400 1401
## 1401 1402
## 1402 1403
## 1403 1404
## 1404 1405
## 1405 1406
## 1406 1407
## 1407 1408
## 1408 1409
## 1409 1410
## 1410 1411
## 1411 1412
## 1412 1413
## 1413 1414
## 1414 1415
## 1415 1416
## 1416 1417
## 1417 1418
## 1418 1419
## 1419 1420
## 1420 1421
## 1421 1422
## 1422 1423
## 1423 1424
## 1424 1425
## 1425 1426
## 1426 1427
## 1427 1428
## 1428 1429
## 1429 1430
## 1430 1431
## 1431 1432
## 1432 1433
## 1433 1434
## 1435 1436
## 1436 1437
## 1437 1438
## 1438 1439
## 1439 1440
## 1440 1441
## 1441 1442
## 1442 1443
## 1443 1444
## 1444 1445
## 1445 1446
## 1446 1447
## 1447 1448
## 1448 1449
## 1449 1450
## 1450 1451
## 1451 1452
## 1452 1453
## 1453 1454
## 1454 1455
## 1455 1456
## 1456 1457
## 1457 1458
## 1458 1459
## 1459 1460
## 1460 1461
## 1461 1462
## 1462 1463
## 1463 1464
## 1464 1465
## 1465 1466
## 1466 1467
## 1467 1468
## 1468 1469
## 1469 1470
## 1470 1471
## 1471 1472
## 1472 1473
## 1473 1474
## 1474 1475
## 1475 1476
## 1476 1477
## 1477 1478
## 1478 1479
## 1479 1480
## 1480 1481
## 1481 1482
## 1482 1483
## 1483 1484
## 1484 1485
## 1485 1486
## 1486 1487
## 1487 1488
## 1488 1489
## 1489 1490
## 1490 1491
## 1491 1492
## 1492 1493
## 1493 1494
## 1494 1495
## 1495 1496
## 1496 1497
## 1497 1498
## 1498 1499
## 1500 1501
## 1501 1502
## 1502 1503
## 1503 1504
## 1504 1505
## 1505 1506
## 1506 1507
## 1507 1508
## 1508 1509
## 1509 1510
## 1510 1511
## 1511 1512
## 1512 1513
## 1513 1514
## 1515 1516
## 1516 1517
## 1517 1518
## 1518 1519
## 1519 1520
## 1520 1521
## 1521 1522
## 1522 1523
## 1523 1524
## 1524 1525
## 1525 1526
## 1526 1527
## 1527 1528
## 1528 1529
## 1529 1530
## 1530 1531
## 1531 1532
## 1532 1533
## 1533 1534
## 1534 1535
## 1535 1536
## 1536 1537
## 1537 1538
## 1538 1539
## 1539 1540
## 1540 1541
## 1541 1542
## 1542 1543
## 1543 1544
## 1544 1545
## 1545 1546
## 1546 1547
## 1547 1548
## 1548 1549
## 1549 1550
## 1550 1551
## 1551 1552
## 1552 1553
## 1553 1554
## 1554 1555
## 1555 1556
## 1556 1557
## 1557 1558
## 1558 1559
## 1559 1560
## 1560 1561
## 1561 1562
## 1562 1563
## 1563 1564
## 1564 1565
## 1565 1566
## 1566 1567
## 1567 1568
## 1568 1569
## 1569 1570
## 1570 1571
## 1571 1572
## 1572 1573
## 1573 1574
## 1574 1575
## 1575 1576
## 1576 1577
## 1577 1578
## 1578 1579
## 1579 1580
## 1580 1581
## 1581 1582
## 1582 1583
## 1583 1584
## 1584 1585
## 1585 1586
## 1587 1588
## 1588 1589
## 1589 1590
## 1590 1591
## 1591 1592
## 1592 1593
## 1593 1594
## 1594 1595
## 1595 1596
## 1596 1597
## 1597 1598
## 1598 1599
## 1599 1600
## 1600 1601
## 1601 1602
## 1602 1603
## 1603 1604
## 1604 1605
## 1605 1606
## 1606 1607
## 1607 1608
## 1608 1609
## 1609 1610
## 1610 1611
## 1611 1612
## 1612 1613
## 1613 1614
## 1614 1615
## 1615 1616
## 1616 1617
## 1617 1618
## 1618 1619
## 1619 1620
## 1620 1621
## 1621 1622
## 1622 1623
## 1623 1624
## 1624 1625
## 1625 1626
## 1626 1627
## 1627 1628
## 1628 1629
## 1629 1630
## 1630 1631
## 1631 1632
## 1632 1633
## 1633 1634
## 1634 1635
## 1635 1636
## 1636 1637
## 1637 1638
## 1638 1639
## 1639 1640
## 1640 1641
## 1641 1642
## 1642 1643
## 1643 1644
## 1644 1645
## 1645 1646
## 1646 1647
## 1647 1648
## 1648 1649
## 1649 1650
## 1651 1652
## 1652 1653
## 1653 1654
## 1654 1655
## 1655 1656
## 1656 1657
## 1657 1658
## 1658 1659
## 1659 1660
## 1660 1661
## 1661 1662
## 1662 1663
## 1663 1664
## 1664 1665
## 1665 1666
## 1666 1667
## 1667 1668
## 1668 1669
## 1669 1670
## 1670 1671
## 1671 1672
## 1672 1673
## 1673 1674
## 1674 1675
## 1675 1676
## 1676 1677
## 1677 1678
## 1678 1679
## 1679 1680
## 1680 1681
## 1681 1682
## 1682 1683
## 1683 1684
## 1684 1685
## 1685 1686
## 1686 1687
## 1687 1688
## 1688 1689
## 1689 1690
## 1690 1691
## 1691 1692
## 1692 1693
## 1693 1694
## 1694 1695
## 1695 1696
## 1696 1697
## 1697 1698
## 1699 1700
## 1700 1701
## 1701 1702
## 1702 1703
## 1703 1704
## 1704 1705
## 1705 1706
## 1706 1707
## 1707 1708
## 1708 1709
## 1709 1710
## 1710 1711
## 1711 1712
## 1712 1713
## 1713 1714
## 1714 1715
## 1715 1716
## 1716 1717
## 1717 1718
## 1718 1719
## 1719 1720
## 1720 1721
## 1721 1722
## 1722 1723
## 1723 1724
## 1724 1725
## 1725 1726
## 1726 1727
## 1727 1728
## 1728 1729
## 1729 1730
## 1730 1731
## 1731 1732
## 1732 1733
## 1733 1734
## 1734 1735
## 1735 1736
## 1736 1737
## 1737 1738
## 1738 1739
## 1739 1740
## 1740 1741
## 1741 1742
## 1742 1743
## 1743 1744
## 1744 1745
## 1745 1746
## 1746 1747
## 1747 1748
## 1748 1749
## 1749 1750
## 1750 1751
## 1751 1752
## 1752 1753
## 1753 1754
## 1754 1755
## 1755 1756
## 1756 1757
## 1757 1758
## 1758 1759
## 1759 1760
## 1760 1761
## 1761 1762
## 1762 1763
## 1763 1764
## 1764 1765
## 1765 1766
## 1766 1767
## 1767 1768
## 1768 1769
## 1769 1770
## 1770 1771
## 1771 1772
## 1772 1773
## 1773 1774
## 1774 1775
## 1775 1776
## 1776 1777
## 1777 1778
## 1778 1779
## 1779 1780
## 1780 1781
## 1781 1782
## 1782 1783
## 1783 1784
## 1784 1785
## 1785 1786
## 1786 1787
## 1787 1788
## 1788 1789
## 1789 1790
## 1790 1791
## 1791 1792
## 1792 1793
## 1793 1794
## 1794 1795
## 1795 1796
## 1796 1797
## 1797 1798
## 1798 1799
## 1799 1800
## 1800 1801
## 1801 1802
## 1802 1803
## 1803 1804
## 1804 1805
## 1805 1806
## 1806 1807
## 1807 1808
## 1808 1809
## 1809 1810
## 1810 1811
## 1811 1812
## 1812 1813
## 1813 1814
## 1814 1815
## 1815 1816
## 1816 1817
## 1817 1818
## 1818 1819
## 1819 1820
## 1820 1821
## 1821 1822
## 1822 1823
## 1823 1824
## 1824 1825
## 1825 1826
## 1826 1827
## 1827 1828
## 1828 1829
## 1829 1830
## 1830 1831
## 1831 1832
## 1832 1833
## 1833 1834
## 1834 1835
## 1835 1836
## 1836 1837
## 1837 1838
## 1839 1840
## 1840 1841
## 1841 1842
## 1842 1843
## 1843 1844
## 1844 1845
## 1845 1846
## 1846 1847
## 1847 1848
## 1848 1849
## 1849 1850
## 1850 1851
## 1851 1852
## 1852 1853
## 1853 1854
## 1854 1855
## 1855 1856
## 1856 1857
## 1857 1858
## 1858 1859
## 1859 1860
## 1860 1861
## 1861 1862
## 1862 1863
## 1863 1864
## 1864 1865
## 1865 1866
## 1866 1867
## 1867 1868
## 1868 1869
## 1869 1870
## 1870 1871
## 1871 1872
## 1872 1873
## 1873 1874
## 1874 1875
## 1875 1876
## 1876 1877
## 1877 1878
## 1878 1879
## 1879 1880
## 1880 1881
## 1881 1882
## 1882 1883
## 1883 1884
## 1884 1885
## 1885 1886
## 1886 1887
## 1887 1888
## 1888 1889
## 1889 1890
## 1890 1891
## 1891 1892
## 1892 1893
## 1893 1894
## 1894 1895
## 1895 1896
## 1896 1897
## 1897 1898
## 1898 1899
## 1899 1900
## 1900 1901
## 1901 1902
## 1902 1903
## 1903 1904
## 1904 1905
## 1905 1906
## 1906 1907
## 1907 1908
## 1908 1909
## 1909 1910
## 1910 1911
## 1911 1912
## 1912 1913
## 1913 1914
## 1914 1915
## 1915 1916
## 1916 1917
## 1917 1918
## 1918 1919
## 1919 1920
## 1920 1921
## 1921 1922
## 1922 1923
## 1923 1924
## 1924 1925
## 1925 1926
## 1926 1927
## 1927 1928
## 1928 1929
## 1929 1930
## 1930 1931
## 1931 1932
## 1932 1933
## 1933 1934
## 1934 1935
## 1935 1936
## 1936 1937
## 1937 1938
## 1938 1939
## 1939 1940
## 1940 1941
## 1941 1942
## 1942 1943
## 1943 1944
## 1944 1945
## 1945 1946
## 1946 1947
## 1947 1948
## 1948 1949
## 1949 1950
## 1950 1951
## 1951 1952
## 1952 1953
## 1953 1954
## 1954 1955
## 1955 1956
## 1956 1957
## 1957 1958
## 1958 1959
## 1959 1960
## 1960 1961
## 1961 1962
## 1962 1963
## 1963 1964
## 1964 1965
## 1965 1966
## 1966 1967
## 1967 1968
## 1968 1969
## 1969 1970
## 1970 1971
## 1971 1972
## 1972 1973
## 1973 1974
## 1974 1975
## 1975 1976
## 1976 1977
## 1977 1978
## 1978 1979
## 1979 1980
## 1980 1981
## 1981 1982
## 1982 1983
## 1983 1984
## 1984 1985
## 1985 1986
## 1986 1987
## 1987 1988
## 1988 1989
## 1989 1990
## 1990 1991
## 1992 1993
## 1993 1994
## 1994 1995
## 1995 1996
## 1996 1997
## 1997 1998
## 1998 1999
## 1999 2000
## 2000 2001
## 2001 2002
## 2002 2003
## 2003 2004
## 2004 2005
## 2005 2006
## 2006 2007
## 2007 2008
## 2008 2009
## 2009 2010
## 2010 2011
## 2011 2012
## 2012 2013
## 2013 2014
## 2014 2015
## 2015 2016
## 2016 2017
## 2017 2018
## 2018 2019
## 2019 2020
## 2021 2022
## 2022 2023
## 2023 2024
## 2024 2025
## 2025 2026
## 2026 2027
## 2027 2028
## 2028 2029
## 2029 2030
## 2030 2031
## 2031 2032
## 2032 2033
## 2033 2034
## 2034 2035
## 2035 2036
## 2036 2037
## 2037 2038
## 2038 2039
## 2039 2040
## 2040 2041
## 2041 2042
## 2042 2043
## 2043 2044
## 2044 2045
## 2045 2046
## 2046 2047
## 2047 2048
## 2048 2049
## 2049 2050
## 2050 2051
## 2051 2052
## 2052 2053
## 2053 2054
## 2054 2055
## 2055 2056
## 2056 2057
## 2057 2058
## 2058 2059
## 2059 2060
## 2060 2061
## 2061 2062
## 2062 2063
## 2063 2064
## 2064 2065
## 2065 2066
## 2066 2067
## 2067 2068
## 2068 2069
## 2069 2070
## 2070 2071
## 2071 2072
## 2072 2073
## 2073 2074
## 2074 2075
## 2075 2076
## 2076 2077
## 2077 2078
## 2078 2079
## 2079 2080
## 2080 2081
## 2081 2082
## 2082 2083
## 2083 2084
## 2084 2085
## 2085 2086
## 2086 2087
## 2088 2089
## 2089 2090
## 2090 2091
## 2091 2092
## 2092 2093
## 2093 2094
## 2094 2095
## 2095 2096
## 2096 2097
## 2097 2098
## 2098 2099
## 2099 2100
## 2100 2101
## 2101 2102
## 2102 2103
## 2103 2104
## 2104 2105
## 2105 2106
## 2106 2107
## 2107 2108
## 2108 2109
## 2109 2110
## 2110 2111
## 2111 2112
## 2112 2113
## 2113 2114
## 2116 2117
## 2117 2118
## 2118 2119
## 2119 2120
## 2120 2121
## 2121 2122
## 2122 2123
## 2123 2124
## 2124 2125
## 2125 2126
## 2126 2127
## 2127 2128
## 2128 2129
## 2129 2130
## 2130 2131
## 2131 2132
## 2132 2133
## 2133 2134
## 2134 2135
## 2136 2137
## 2137 2138
## 2138 2139
## 2139 2140
## 2140 2141
## 2141 2142
## 2142 2143
## 2143 2144
## 2144 2145
## 2145 2146
## 2147 2148
## 2148 2149
## 2149 2150
## 2150 2151
## 2151 2152
## 2152 2153
## 2153 2154
## 2154 2155
## 2155 2156
## 2156 2157
## 2157 2158
## 2158 2159
## 2159 2160
## 2160 2161
## 2161 2162
## 2162 2163
## 2163 2164
## 2164 2165
## 2165 2166
## 2166 2167
## 2167 2168
## 2168 2169
## 2169 2170
## 2170 2171
## 2171 2172
## 2172 2173
## 2173 2174
## 2175 2176
## 2176 2177
## 2177 2178
## 2178 2179
## 2179 2180
## 2180 2181
## 2181 2182
## 2182 2183
## 2183 2184
## 2184 2185
## 2185 2186
## 2186 2187
## 2187 2188
## 2188 2189
## 2189 2190
## 2190 2191
## 2191 2192
## 2192 2193
## 2193 2194
## 2194 2195
## 2195 2196
## 2196 2197
## 2197 2198
## 2198 2199
## 2199 2200
## 2200 2201
## 2201 2202
## 2202 2203
## 2203 2204
## 2204 2205
## 2205 2206
## 2206 2207
## 2207 2208
## 2208 2209
## 2209 2210
## 2210 2211
## 2211 2212
## 2212 2213
## 2213 2214
## 2214 2215
## 2215 2216
## 2216 2217
## 2217 2218
## 2218 2219
## 2219 2220
## 2220 2221
## 2221 2222
## 2222 2223
## 2223 2224
## 2224 2225
## 2225 2226
## 2226 2227
## 2227 2228
## 2228 2229
## 2229 2230
## 2230 2231
## 2231 2232
## 2232 2233
## 2233 2234
## 2234 2235
## 2235 2236
## 2236 2237
## 2237 2238
## 2238 2239
## 2239 2240
## 2240 2241
## 2241 2242
## 2242 2243
## 2243 2244
## 2244 2245
## 2245 2246
## 2246 2247
## 2247 2248
## 2248 2249
## 2249 2250
## 2250 2251
## 2251 2252
## 2252 2253
## 2253 2254
## 2254 2255
## 2255 2256
## 2256 2257
## 2257 2258
## 2258 2259
## 2259 2260
## 2260 2261
## 2261 2262
## 2262 2263
## 2263 2264
## 2264 2265
## 2265 2266
## 2266 2267
## 2267 2268
## 2268 2269
## 2269 2270
## 2270 2271
## 2271 2272
## 2272 2273
## 2273 2274
## 2274 2275
## 2275 2276
## 2276 2277
## 2277 2278
## 2278 2279
## 2279 2280
## 2280 2281
## 2281 2282
## 2282 2283
## 2283 2284
## 2284 2285
## 2285 2286
## 2286 2287
## 2288 2289
## 2289 2290
## 2290 2291
## 2291 2292
## 2292 2293
## 2293 2294
## 2294 2295
## 2295 2296
## 2297 2298
## 2298 2299
## 2299 2300
## 2300 2301
## 2301 2302
## 2302 2303
## 2303 2304
## 2304 2305
## 2305 2306
## 2306 2307
## 2307 2308
## 2308 2309
## 2309 2310
## 2310 2311
## 2311 2312
## 2312 2313
## 2313 2314
## 2314 2315
## 2315 2316
## 2316 2317
## 2317 2318
## 2318 2319
## 2319 2320
## 2320 2321
## 2321 2322
## 2322 2323
## 2323 2324
## 2324 2325
## 2325 2326
## 2326 2327
## 2327 2328
## 2328 2329
## 2329 2330
## 2330 2331
## 2331 2332
## 2332 2333
## 2333 2334
## 2334 2335
## 2335 2336
## 2336 2337
## 2337 2338
## 2338 2339
## 2339 2340
## 2340 2341
## 2341 2342
## 2342 2343
## 2343 2344
## 2344 2345
## 2345 2346
## 2346 2347
## 2347 2348
## 2348 2349
## 2349 2350
## 2350 2351
## 2351 2352
## 2352 2353
## 2353 2354
## 2354 2355
## 2355 2356
## 2356 2357
## 2357 2358
## 2358 2359
## 2359 2360
## 2360 2361
## 2361 2362
## 2362 2363
## 2363 2364
## 2364 2365
## 2365 2366
## 2366 2367
## 2367 2368
## 2368 2369
## 2369 2370
## 2370 2371
## 2371 2372
## 2372 2373
## 2373 2374
## 2374 2375
## 2375 2376
## 2376 2377
## 2377 2378
## 2378 2379
## 2379 2380
## 2380 2381
## 2381 2382
## 2382 2383
## 2383 2384
## 2384 2385
## 2385 2386
## 2386 2387
## 2387 2388
## 2388 2389
## 2389 2390
## 2390 2391
## 2391 2392
## 2392 2393
## 2393 2394
## 2394 2395
## 2395 2396
## 2396 2397
## 2397 2398
## 2398 2399
## 2399 2400
## 2400 2401
## 2401 2402
## 2402 2403
## 2403 2404
## 2404 2405
## 2405 2406
## 2406 2407
## 2407 2408
## 2408 2409
## 2409 2410
## 2410 2411
## 2411 2412
## 2412 2413
## 2413 2414
## 2414 2415
## 2415 2416
## 2417 2418
## 2418 2419
## 2419 2420
## 2420 2421
## 2421 2422
## 2422 2423
## 2424 2425
## 2425 2426
## 2426 2427
## 2427 2428
## 2428 2429
## 2429 2430
## 2430 2431
## 2431 2432
## 2432 2433
## 2433 2434
## 2434 2435
## 2435 2436
## 2436 2437
## 2437 2438
## 2438 2439
## 2439 2440
## 2440 2441
## 2441 2442
## 2442 2443
## 2443 2444
## 2444 2445
## 2445 2446
## 2446 2447
## 2447 2448
## 2448 2449
## 2449 2450
## 2450 2451
## 2451 2452
## 2452 2453
## 2453 2454
## 2454 2455
## 2455 2456
## 2456 2457
## 2457 2458
## 2458 2459
## 2459 2460
## 2460 2461
## 2461 2462
## 2462 2463
## 2463 2464
## 2464 2465
## 2465 2466
## 2466 2467
## 2467 2468
## 2468 2469
## 2469 2470
## 2470 2471
## 2471 2472
## 2472 2473
## 2473 2474
## 2474 2475
## 2475 2476
## 2476 2477
## 2477 2478
## 2478 2479
## 2479 2480
## 2480 2481
## 2481 2482
## 2482 2483
## 2483 2484
## 2484 2485
## 2486 2487
## 2487 2488
## 2488 2489
## 2489 2490
## 2490 2491
## 2491 2492
## 2492 2493
## 2493 2494
## 2494 2495
## 2495 2496
## 2496 2497
## 2497 2498
## 2499 2500
## 2500 2501
## 2501 2502
## 2502 2503
## 2503 2504
## 2504 2505
## 2505 2506
## 2506 2507
## 2507 2508
## 2508 2509
## 2509 2510
## 2510 2511
## 2511 2512
## 2512 2513
## 2513 2514
## 2514 2515
## 2515 2516
## 2516 2517
## 2517 2518
## 2518 2519
## 2519 2520
## 2520 2521
## 2521 2522
## 2522 2523
## 2523 2524
## 2524 2525
## 2525 2526
## 2526 2527
## 2527 2528
## 2528 2529
## 2530 2531
## 2531 2532
## 2532 2533
## 2533 2534
## 2534 2535
## 2535 2536
## 2536 2537
## 2537 2538
## 2538 2539
## 2539 2540
## 2540 2541
## 2541 2542
## 2542 2543
## 2543 2544
## 2544 2545
## 2545 2546
## 2546 2547
## 2547 2548
## 2548 2549
## 2549 2550
## 2550 2551
## 2551 2552
## 2552 2553
## 2553 2554
## 2554 2555
## 2555 2556
## 2556 2557
## 2557 2558
## 2558 2559
## 2559 2560
## 2560 2561
## 2561 2562
## 2562 2563
## 2563 2564
## 2564 2565
## 2565 2566
## 2566 2567
## 2567 2568
## 2568 2569
## 2569 2570
## 2570 2571
## 2571 2572
## 2572 2573
## 2573 2574
## 2574 2575
## 2575 2576
## 2576 2577
## 2577 2578
## 2578 2579
## 2579 2580
## 2580 2581
## 2581 2582
## 2582 2583
## 2583 2584
## 2584 2585
## 2585 2586
## 2586 2587
## 2588 2589
## 2589 2590
## 2590 2591
## 2591 2592
## 2592 2593
## 2593 2594
## 2594 2595
## 2595 2596
## 2596 2597
## 2597 2598
## 2598 2599
## 2599 2600
## 2600 2601
## 2601 2602
## 2602 2603
## 2603 2604
## 2604 2605
## 2605 2606
## 2606 2607
## 2607 2608
## 2608 2609
## 2609 2610
## 2610 2611
## 2611 2612
## 2612 2613
## 2613 2614
## 2614 2615
## 2615 2616
## 2616 2617
## 2617 2618
## 2618 2619
## 2619 2620
## 2620 2621
## 2621 2622
## 2622 2623
## 2623 2624
## 2624 2625
## 2625 2626
## 2626 2627
## 2627 2628
## 2628 2629
## 2629 2630
## 2630 2631
## 2631 2632
## 2632 2633
## 2633 2634
## 2634 2635
## 2635 2636
## 2636 2637
## 2637 2638
## 2638 2639
## 2639 2640
## 2640 2641
## 2641 2642
## 2642 2643
## 2643 2644
## 2644 2645
## 2645 2646
## 2646 2647
## 2647 2648
## 2648 2649
## 2649 2650
## 2650 2651
## 2651 2652
## 2652 2653
## 2653 2654
## 2654 2655
## 2655 2656
## 2656 2657
## 2657 2658
## 2658 2659
## 2659 2660
## 2660 2661
## 2661 2662
## 2662 2663
## 2663 2664
## 2664 2665
## 2665 2666
## 2666 2667
## 2667 2668
## 2668 2669
## 2669 2670
## 2670 2671
## 2671 2672
## 2672 2673
## 2673 2674
## 2674 2675
## 2675 2676
## 2676 2677
## 2677 2678
## 2678 2679
## 2679 2680
## 2680 2681
## 2681 2682
## 2682 2683
## 2683 2684
## 2684 2685
## 2685 2686
## 2686 2687
## 2687 2688
## 2688 2689
## 2689 2690
## 2690 2691
## 2691 2692
## 2692 2693
## 2693 2694
## 2694 2695
## 2695 2696
## 2696 2697
## 2697 2698
## 2698 2699
## 2699 2700
## 2700 2701
## 2701 2702
## 2702 2703
## 2703 2704
## 2704 2705
## 2705 2706
## 2706 2707
## 2707 2708
## 2708 2709
## 2709 2710
## 2710 2711
## 2711 2712
## 2712 2713
## 2713 2714
## 2714 2715
## 2715 2716
## 2716 2717
## 2717 2718
## 2718 2719
## 2719 2720
## 2720 2721
## 2721 2722
## 2722 2723
## 2723 2724
## 2724 2725
## 2725 2726
## 2726 2727
## 2727 2728
## 2728 2729
## 2729 2730
## 2730 2731
## 2731 2732
## 2732 2733
## 2733 2734
## 2734 2735
## 2735 2736
## 2736 2737
## 2737 2738
## 2738 2739
## 2739 2740
## 2740 2741
## 2741 2742
## 2742 2743
## 2743 2744
## 2744 2745
## 2745 2746
## 2746 2747
## 2747 2748
## 2748 2749
## 2749 2750
## 2750 2751
## 2751 2752
## 2752 2753
## 2753 2754
## 2754 2755
## 2755 2756
## 2756 2757
## 2757 2758
## 2758 2759
## 2759 2760
## 2760 2761
## 2761 2762
## 2762 2763
## 2763 2764
## 2764 2765
## 2765 2766
## 2766 2767
## 2767 2768
## 2768 2769
## 2769 2770
## 2770 2771
## 2771 2772
## 2772 2773
## 2773 2774
## 2774 2775
## 2775 2776
## 2776 2777
## 2778 2779
## 2779 2780
## 2780 2781
## 2781 2782
## 2782 2783
## 2783 2784
## 2784 2785
## 2785 2786
## 2786 2787
## 2788 2789
## 2789 2790
## 2790 2791
## 2791 2792
## 2792 2793
## 2793 2794
## 2794 2795
## 2795 2796
## 2796 2797
## 2797 2798
## 2798 2799
## 2799 2800
## 2800 2801
## 2801 2802
## 2802 2803
## 2803 2804
## 2804 2805
## 2805 2806
## 2806 2807
## 2807 2808
## 2808 2809
## 2809 2810
## 2810 2811
## 2811 2812
## 2812 2813
## 2813 2814
## 2814 2815
## 2815 2816
## 2816 2817
## 2817 2818
## 2818 2819
## 2819 2820
## 2820 2821
## 2821 2822
## 2822 2823
## 2823 2824
## 2824 2825
## 2825 2826
## 2826 2827
## 2827 2828
## 2828 2829
## 2829 2830
## 2830 2831
## 2831 2832
## 2832 2833
## 2833 2834
## 2834 2835
## 2835 2836
## 2836 2837
## 2837 2838
## 2838 2839
## 2840 2841
## 2841 2842
## 2842 2843
## 2843 2844
## 2844 2845
## 2845 2846
## 2846 2847
## 2847 2848
## 2848 2849
## 2849 2850
## 2850 2851
## 2851 2852
## 2852 2853
## 2853 2854
## 2854 2855
## 2855 2856
## 2856 2857
## 2857 2858
## 2858 2859
## 2859 2860
## 2860 2861
## 2861 2862
## 2862 2863
## 2863 2864
## 2864 2865
## 2865 2866
## 2866 2867
## 2867 2868
## 2868 2869
## 2869 2870
## 2870 2871
## 2871 2872
## 2872 2873
## 2873 2874
## 2874 2875
## 2875 2876
## 2876 2877
## 2877 2878
## 2878 2879
## 2879 2880
## 2880 2881
## 2881 2882
## 2882 2883
## 2883 2884
## 2884 2885
## 2885 2886
## 2886 2887
## 2887 2888
## 2888 2889
## 2889 2890
## 2890 2891
## 2891 2892
## 2892 2893
## 2893 2894
## 2894 2895
## 2895 2896
## 2896 2897
## 2897 2898
## 2898 2899
## 2899 2900
## 2900 2901
## 2901 2902
## 2902 2903
## 2903 2904
## 2904 2905
## 2905 2906
## 2906 2907
## 2907 2908
## 2908 2909
## 2909 2910
## 2910 2911
## 2911 2912
## 2912 2913
## 2913 2914
## 2914 2915
## 2915 2916
## 2916 2917
## 2917 2918
## 2918 2919
## 2919 2920
## 2920 2921
## 2921 2922
## 2922 2923
## 2923 2924
## 2924 2925
## 2925 2926
## 2926 2927
## 2927 2928
## 2928 2929
## 2929 2930
## 2930 2931
## 2931 2932
## 2932 2933
## 2933 2934
## 2934 2935
## 2935 2936
## 2936 2937
## 2937 2938
## 2938 2939
## 2939 2940
## 2940 2941
## 2941 2942
## 2942 2943
## 2943 2944
## 2944 2945
## 2945 2946
## 2946 2947
## 2947 2948
## 2949 2950
## 2950 2951
## 2951 2952
## 2952 2953
## 2953 2954
## 2954 2955
## 2955 2956
## 2956 2957
## 2957 2958
## 2958 2959
## 2959 2960
## 2960 2961
## 2961 2962
## 2962 2963
## 2963 2964
## 2964 2965
## 2965 2966
## 2966 2967
## 2967 2968
## 2968 2969
## 2969 2970
## 2970 2971
## 2971 2972
## 2972 2973
## 2973 2974
## 2974 2975
## 2975 2976
## 2976 2977
## 2977 2978
## 2978 2979
## 2979 2980
## 2980 2981
## 2981 2982
## 2982 2983
## 2983 2984
## 2984 2985
## 2985 2986
## 2986 2987
## 2987 2988
## 2988 2989
## 2989 2990
## 2990 2991
## 2991 2992
## 2992 2993
## 2993 2994
## 2994 2995
## 2995 2996
## 2996 2997
## 2997 2998
## 2998 2999
## 2999 3000
## 3000 3001
## 3001 3002
## 3002 3003
## 3003 3004
## 3004 3005
## 3005 3006
## 3006 3007
## 3007 3008
## 3008 3009
## 3009 3010
## 3010 3011
## 3011 3012
## 3012 3013
## 3013 3014
## 3014 3015
## 3015 3016
## 3016 3017
## 3017 3018
## 3018 3019
## 3019 3020
## 3020 3021
## 3021 3022
## 3022 3023
## 3023 3024
## 3024 3025
## 3025 3026
## 3026 3027
## 3027 3028
## 3028 3029
## 3029 3030
## 3030 3031
## 3031 3032
## 3032 3033
## 3033 3034
## 3034 3035
## 3035 3036
## 3036 3037
## 3037 3038
## 3038 3039
## 3039 3040
## 3040 3041
## 3041 3042
## 3042 3043
## 3043 3044
## 3044 3045
## 3045 3046
## 3046 3047
## 3047 3048
## 3048 3049
## 3049 3050
## 3051 3052
## 3052 3053
## 3053 3054
## 3054 3055
## 3055 3056
## 3056 3057
## 3057 3058
## 3058 3059
## 3059 3060
## 3060 3061
## 3061 3062
## 3062 3063
## 3063 3064
## 3064 3065
## 3065 3066
## 3066 3067
## 3067 3068
## 3068 3069
## 3069 3070
## 3070 3071
## 3071 3072
## 3072 3073
## 3073 3074
## 3074 3075
## 3075 3076
## 3076 3077
## 3077 3078
## 3078 3079
## 3079 3080
## 3080 3081
## 3081 3082
## 3082 3083
## 3083 3084
## 3084 3085
## 3085 3086
## 3086 3087
## 3087 3088
## 3088 3089
## 3089 3090
## 3090 3091
## 3091 3092
## 3092 3093
## 3093 3094
## 3094 3095
## 3095 3096
## 3096 3097
## 3097 3098
## 3098 3099
## 3099 3100
## 3100 3101
## 3101 3102
## 3102 3103
## 3103 3104
## 3104 3105
## 3105 3106
## 3106 3107
## 3107 3108
## 3108 3109
## 3109 3110
## 3110 3111
## 3111 3112
## 3112 3113
## 3113 3114
## 3114 3115
## 3115 3116
## 3116 3117
## 3117 3118
## 3118 3119
## 3119 3120
## 3120 3121
## 3121 3122
## 3122 3123
## 3123 3124
## 3124 3125
## 3125 3126
## 3126 3127
## 3127 3128
## 3128 3129
## 3129 3130
## 3130 3131
## 3131 3132
## 3132 3133
## 3133 3134
## 3134 3135
## 3135 3136
## 3136 3137
## 3137 3138
## 3138 3139
## 3139 3140
## 3140 3141
## 3141 3142
## 3143 3144
## 3144 3145
## 3145 3146
## 3146 3147
## 3147 3148
## 3148 3149
## 3149 3150
## 3150 3151
## 3151 3152
## 3152 3153
## 3153 3154
## 3154 3155
## 3155 3156
## 3156 3157
## 3157 3158
## 3158 3159
## 3159 3160
## 3160 3161
## 3161 3162
## 3162 3163
## 3163 3164
## 3164 3165
## 3165 3166
## 3166 3167
## 3167 3168
## 3168 3169
## 3169 3170
## 3170 3171
## 3171 3172
## 3172 3173
## 3173 3174
## 3174 3175
## 3175 3176
## 3176 3177
## 3177 3178
## 3178 3179
## 3179 3180
## 3180 3181
## 3181 3182
## 3182 3183
## 3183 3184
## 3184 3185
## 3185 3186
## 3186 3187
## 3187 3188
## 3188 3189
## 3189 3190
## 3190 3191
## 3191 3192
## 3192 3193
## 3193 3194
## 3194 3195
## 3196 3197
## 3197 3198
## 3198 3199
## 3199 3200
## 3200 3201
## 3201 3202
## 3202 3203
## 3203 3204
## 3204 3205
## 3205 3206
## 3206 3207
## 3207 3208
## 3208 3209
## 3209 3210
## 3210 3211
## 3211 3212
## 3212 3213
## 3213 3214
## 3214 3215
## 3215 3216
## 3216 3217
## 3217 3218
## 3219 3220
## 3220 3221
## 3221 3222
## 3222 3223
## 3223 3224
## 3224 3225
## 3225 3226
## 3226 3227
## 3227 3228
## 3228 3229
## 3229 3230
## 3230 3231
## 3231 3232
## 3232 3233
## 3233 3234
## 3234 3235
## 3235 3236
## 3236 3237
## 3237 3238
## 3238 3239
## 3240 3241
## 3241 3242
## 3242 3243
## 3243 3244
## 3244 3245
## 3245 3246
## 3246 3247
## 3247 3248
## 3248 3249
## 3249 3250
## 3250 3251
## 3251 3252
## 3252 3253
## 3253 3254
## 3254 3255
## 3255 3256
## 3256 3257
## 3257 3258
## 3258 3259
## 3259 3260
## 3260 3261
## 3261 3262
## 3262 3263
## 3263 3264
## 3264 3265
## 3265 3266
## 3266 3267
## 3267 3268
## 3268 3269
## 3269 3270
## 3270 3271
## 3271 3272
## 3272 3273
## 3273 3274
## 3274 3275
## 3275 3276
## 3276 3277
## 3277 3278
## 3278 3279
## 3279 3280
## 3280 3281
## 3281 3282
## 3282 3283
## 3283 3284
## 3284 3285
## 3285 3286
## 3286 3287
## 3287 3288
## 3288 3289
## 3289 3290
## 3290 3291
## 3291 3292
## 3292 3293
## 3293 3294
## 3294 3295
## 3295 3296
## 3296 3297
## 3297 3298
## 3298 3299
## 3299 3300
## 3300 3301
## 3301 3302
## 3302 3303
## 3303 3304
## 3304 3305
## 3305 3306
## 3306 3307
## 3307 3308
## 3308 3309
## 3309 3310
## 3310 3311
## 3311 3312
## 3312 3313
## 3313 3314
## 3314 3315
## 3315 3316
## 3316 3317
## 3317 3318
## 3318 3319
## 3319 3320
## 3320 3321
## 3321 3322
## 3322 3323
## 3323 3324
## 3324 3325
## 3325 3326
## 3326 3327
## 3327 3328
## 3328 3329
## 3329 3330
## 3330 3331
## 3331 3332
## 3332 3333
## 3333 3334
## 3334 3335
## 3335 3336
## 3336 3337
## 3337 3338
## 3338 3339
## 3339 3340
## 3340 3341
## 3341 3342
## 3342 3343
## 3343 3344
## 3344 3345
## 3345 3346
## 3346 3347
## 3348 3349
## 3349 3350
## 3350 3351
## 3351 3352
## 3352 3353
## 3353 3354
## 3354 3355
## 3355 3356
## 3356 3357
## 3357 3358
## 3358 3359
## 3359 3360
## 3360 3361
## 3361 3362
## 3362 3363
## 3363 3364
## 3364 3365
## 3365 3366
## 3366 3367
## 3367 3368
## 3368 3369
## 3369 3370
## 3370 3371
## 3371 3372
## 3372 3373
## 3373 3374
## 3374 3375
## 3375 3376
## 3376 3377
## 3377 3378
## 3378 3379
## 3379 3380
## 3380 3381
## 3381 3382
## 3382 3383
## 3383 3384
## 3384 3385
## 3385 3386
## 3386 3387
## 3387 3388
## 3388 3389
## 3389 3390
## 3390 3391
## 3391 3392
## 3392 3393
## 3393 3394
## 3394 3395
## 3395 3396
## 3396 3397
## 3397 3398
## 3398 3399
## 3399 3400
## 3400 3401
## 3401 3402
## 3402 3403
## 3403 3404
## 3404 3405
## 3405 3406
## 3406 3407
## 3407 3408
## 3408 3409
## 3409 3410
## 3410 3411
## 3411 3412
## 3412 3413
## 3413 3414
## 3414 3415
## 3415 3416
## 3416 3417
## 3417 3418
## 3418 3419
## 3419 3420
## 3420 3421
## 3421 3422
## 3423 3424
## 3424 3425
## 3425 3426
## 3426 3427
## 3427 3428
## 3428 3429
## 3429 3430
## 3430 3431
## 3431 3432
## 3432 3433
## 3433 3434
## 3434 3435
## 3435 3436
## 3436 3437
## 3437 3438
## 3438 3439
## 3439 3440
## 3440 3441
## 3441 3442
## 3442 3443
## 3443 3444
## 3444 3445
## 3445 3446
## 3446 3447
## 3447 3448
## 3448 3449
## 3449 3450
## 3450 3451
## 3451 3452
## 3452 3453
## 3453 3454
## 3454 3455
## 3455 3456
## 3456 3457
## 3457 3458
## 3458 3459
## 3459 3460
## 3460 3461
## 3461 3462
## 3462 3463
## 3463 3464
## 3464 3465
## 3465 3466
## 3466 3467
## 3467 3468
## 3468 3469
## 3470 3471
## 3471 3472
## 3472 3473
## 3473 3474
## 3474 3475
## 3475 3476
## 3476 3477
## 3477 3478
## 3478 3479
## 3479 3480
## 3480 3481
## 3481 3482
## 3482 3483
## 3483 3484
## 3484 3485
## 3485 3486
## 3486 3487
## 3487 3488
## 3488 3489
## 3489 3490
## 3490 3491
## 3491 3492
## 3492 3493
## 3493 3494
## 3494 3495
## 3495 3496
## 3496 3497
## 3497 3498
## 3498 3499
## 3499 3500
## 3500 3501
## 3501 3502
## 3503 3504
## 3504 3505
## 3505 3506
## 3506 3507
## 3507 3508
## 3508 3509
## 3509 3510
## 3510 3511
## 3511 3512
## 3512 3513
## 3513 3514
## 3514 3515
## 3515 3516
## 3516 3517
## 3517 3518
## 3518 3519
## 3519 3520
## 3520 3521
## 3521 3522
## 3522 3523
## 3523 3524
## 3524 3525
## 3525 3526
## 3526 3527
## 3527 3528
## 3528 3529
## 3529 3530
## 3530 3531
## 3531 3532
## 3532 3533
## 3533 3534
## 3534 3535
## 3535 3536
## 3536 3537
## 3537 3538
## 3538 3539
## 3539 3540
## 3540 3541
## 3541 3542
## 3542 3543
## 3543 3544
## 3544 3545
## 3545 3546
## 3546 3547
## 3547 3548
## 3548 3549
## 3549 3550
## 3550 3551
## 3551 3552
## 3552 3553
## 3553 3554
## 3554 3555
## 3555 3556
## 3556 3557
## 3557 3558
## 3558 3559
## 3559 3560
## 3560 3561
## 3561 3562
## 3562 3563
## 3563 3564
## 3564 3565
## 3565 3566
## 3566 3567
## 3567 3568
## 3568 3569
## 3569 3570
## 3570 3571
## 3571 3572
## 3572 3573
## 3573 3574
## 3574 3575
## 3575 3576
## 3576 3577
## 3577 3578
## 3578 3579
## 3579 3580
## 3580 3581
## 3581 3582
## 3582 3583
## 3583 3584
## 3584 3585
## 3585 3586
## 3586 3587
## 3587 3588
## 3588 3589
## 3589 3590
## 3590 3591
## 3591 3592
## 3592 3593
## 3593 3594
## 3594 3595
## 3595 3596
## 3596 3597
## 3597 3598
## 3598 3599
## 3599 3600
## 3600 3601
## 3601 3602
## 3602 3603
## 3603 3604
## 3604 3605
## 3605 3606
## 3606 3607
## 3607 3608
## 3608 3609
## 3609 3610
## 3610 3611
## 3611 3612
## 3612 3613
## 3613 3614
## 3614 3615
## 3615 3616
## 3616 3617
## 3617 3618
## 3618 3619
## 3619 3620
## 3620 3621
## 3621 3622
## 3622 3623
## 3623 3624
## 3624 3625
## 3625 3626
## 3626 3627
## 3627 3628
## 3628 3629
## 3629 3630
## 3630 3631
## 3631 3632
## 3632 3633
## 3633 3634
## 3634 3635
## 3635 3636
## 3636 3637
## 3637 3638
## 3638 3639
## 3639 3640
## 3640 3641
## 3641 3642
## 3642 3643
## 3643 3644
## 3644 3645
## 3645 3646
## 3646 3647
## 3647 3648
## 3648 3649
## 3649 3650
## 3650 3651
## 3651 3652
## 3652 3653
## 3653 3654
## 3654 3655
## 3655 3656
## 3656 3657
## 3657 3658
## 3658 3659
## 3659 3660
## 3660 3661
## 3661 3662
## 3662 3663
## 3663 3664
## 3664 3665
## 3665 3666
## 3666 3667
## 3667 3668
## 3668 3669
## 3669 3670
## 3670 3671
## 3671 3672
## 3672 3673
## 3673 3674
## 3674 3675
## 3675 3676
## 3676 3677
## 3677 3678
## 3678 3679
## 3679 3680
## 3680 3681
## 3681 3682
## 3682 3683
## 3683 3684
## 3684 3685
## 3685 3686
## 3686 3687
## 3687 3688
## 3688 3689
## 3689 3690
## 3690 3691
## 3691 3692
## 3692 3693
## 3693 3694
## 3694 3695
## 3695 3696
## 3696 3697
## 3697 3698
## 3698 3699
## 3699 3700
## 3700 3701
## 3701 3702
## 3702 3703
## 3703 3704
## 3704 3705
## 3705 3706
## 3706 3707
## 3707 3708
## 3708 3709
## 3709 3710
## 3710 3711
## 3711 3712
## 3712 3713
## 3713 3714
## 3714 3715
## 3715 3716
## 3717 3718
## 3718 3719
## 3719 3720
## 3720 3721
## 3721 3722
## 3722 3723
## 3723 3724
## 3724 3725
## 3725 3726
## 3726 3727
## 3727 3728
## 3728 3729
## 3729 3730
## 3730 3731
## 3731 3732
## 3732 3733
## 3733 3734
## 3734 3735
## 3735 3736
## 3736 3737
## 3737 3738
## 3738 3739
## 3739 3740
## 3740 3741
## 3741 3742
## 3742 3743
## 3743 3744
## 3744 3745
## 3745 3746
## 3746 3747
## 3747 3748
## 3748 3749
## 3749 3750
## 3750 3751
## 3751 3752
## 3752 3753
## 3753 3754
## 3755 3756
## 3756 3757
## 3757 3758
## 3758 3759
## 3759 3760
## 3760 3761
## 3761 3762
## 3762 3763
## 3763 3764
## 3764 3765
## 3765 3766
## 3766 3767
## 3767 3768
## 3768 3769
## 3769 3770
## 3770 3771
## 3771 3772
## 3772 3773
## 3773 3774
## 3774 3775
## 3775 3776
## 3776 3777
## 3777 3778
## 3778 3779
## 3779 3780
## 3780 3781
## 3781 3782
## 3782 3783
## 3783 3784
## 3784 3785
## 3785 3786
## 3786 3787
## 3787 3788
## 3788 3789
## 3789 3790
## 3790 3791
## 3791 3792
## 3792 3793
## 3793 3794
## 3794 3795
## 3795 3796
## 3796 3797
## 3797 3798
## 3798 3799
## 3799 3800
## 3800 3801
## 3801 3802
## 3802 3803
## 3803 3804
## 3804 3805
## 3805 3806
## 3806 3807
## 3807 3808
## 3808 3809
## 3809 3810
## 3810 3811
## 3811 3812
## 3812 3813
## 3813 3814
## 3814 3815
## 3815 3816
## 3816 3817
## 3817 3818
## 3818 3819
## 3819 3820
## 3820 3821
## 3821 3822
## 3822 3823
## 3823 3824
## 3824 3825
## 3825 3826
## 3826 3827
## 3827 3828
## 3828 3829
## 3829 3830
## 3830 3831
## 3831 3832
## 3832 3833
## 3833 3834
## 3834 3835
## 3835 3836
## 3836 3837
## 3837 3838
## 3838 3839
## 3839 3840
## 3840 3841
## 3841 3842
## 3842 3843
## 3843 3844
## 3844 3845
## 3845 3846
## 3846 3847
## 3847 3848
## 3848 3849
## 3849 3850
## 3850 3851
## 3851 3852
## 3852 3853
## 3853 3854
## 3854 3855
## 3855 3856
## 3856 3857
## 3857 3858
## 3858 3859
## 3859 3860
## 3860 3861
## 3861 3862
## 3862 3863
## 3863 3864
## 3864 3865
## 3865 3866
## 3866 3867
## 3867 3868
## 3868 3869
## 3869 3870
## 3870 3871
## 3871 3872
## 3872 3873
## 3873 3874
## 3874 3875
## 3875 3876
## 3876 3877
## 3877 3878
## 3878 3879
## 3879 3880
## 3880 3881
## 3882 3883
## 3883 3884
## 3884 3885
## 3885 3886
## 3886 3887
## 3887 3888
## 3888 3889
## 3889 3890
## 3890 3891
## 3891 3892
## 3892 3893
## 3893 3894
## 3894 3895
## 3895 3896
## 3896 3897
## 3897 3898
## 3898 3899
## 3899 3900
## 3900 3901
## 3901 3902
## 3902 3903
## 3903 3904
## 3904 3905
## 3905 3906
## 3906 3907
## 3907 3908
## 3908 3909
## 3909 3910
## 3910 3911
## 3911 3912
## 3912 3913
## 3913 3914
## 3914 3915
## 3915 3916
## 3916 3917
## 3917 3918
## 3918 3919
## 3919 3920
## 3920 3921
## 3921 3922
## 3922 3923
## 3923 3924
## 3924 3925
## 3925 3926
## 3926 3927
## 3927 3928
## 3928 3929
## 3929 3930
## 3930 3931
## 3931 3932
## 3932 3933
## 3933 3934
## 3934 3935
## 3935 3936
## 3936 3937
## 3937 3938
## 3938 3939
## 3939 3940
## 3940 3941
## 3941 3942
## 3942 3943
## 3943 3944
## 3944 3945
## 3945 3946
## 3946 3947
## 3947 3948
## 3948 3949
## 3949 3950
## 3950 3951
## 3951 3952
## 3952 3953
## 3954 3955
## 3955 3956
## 3956 3957
## 3957 3958
## 3958 3959
## 3959 3960
## 3960 3961
## 3961 3962
## 3962 3963
## 3963 3964
## 3964 3965
## 3965 3966
## 3966 3967
## 3967 3968
## 3968 3969
## 3969 3970
## 3970 3971
## 3971 3972
## 3972 3973
## 3973 3974
## 3974 3975
## 3975 3976
## 3976 3977
## 3977 3978
## 3978 3979
## 3979 3980
## 3980 3981
## 3981 3982
## 3982 3983
## 3983 3984
## 3984 3985
## 3985 3986
## 3986 3987
## 3987 3988
## 3988 3989
## 3989 3990
## 3990 3991
## 3991 3992
## 3992 3993
## 3993 3994
## 3994 3995
## 3995 3996
## 3996 3997
## 3997 3998
## 3998 3999
## 3999 4000
## 4000 4001
## 4001 4002
## 4002 4003
## 4003 4004
## 4004 4005
## 4005 4006
## 4006 4007
## 4007 4008
## 4008 4009
## 4009 4010
## 4010 4011
## 4011 4012
## 4012 4013
## 4013 4014
## 4014 4015
## 4015 4016
## 4016 4017
## 4017 4018
## 4018 4019
## 4019 4020
## 4020 4021
## 4021 4022
## 4022 4023
## 4023 4024
## 4024 4025
## 4025 4026
## 4026 4027
## 4027 4028
## 4028 4029
## 4029 4030
## 4030 4031
## 4031 4032
## 4032 4033
## 4033 4034
## 4034 4035
## 4035 4036
## 4036 4037
## 4037 4038
## 4038 4039
## 4039 4040
## 4040 4041
## 4041 4042
## 4042 4043
## 4043 4044
## 4044 4045
## 4045 4046
## 4046 4047
## 4047 4048
## 4048 4049
## 4049 4050
## 4050 4051
## 4051 4052
## 4052 4053
## 4053 4054
## 4054 4055
## 4055 4056
## 4056 4057
## 4057 4058
## 4058 4059
## 4059 4060
## 4060 4061
## 4061 4062
## 4062 4063
## 4063 4064
## 4064 4065
## 4065 4066
## 4066 4067
## 4067 4068
## 4068 4069
## 4069 4070
## 4070 4071
## 4071 4072
## 4072 4073
## 4073 4074
## 4074 4075
## 4075 4076
## 4076 4077
## 4077 4078
## 4078 4079
## 4079 4080
## 4080 4081
## 4081 4082
## 4082 4083
## 4083 4084
## 4084 4085
## 4085 4086
## 4086 4087
## 4087 4088
## 4088 4089
## 4089 4090
## 4090 4091
## 4091 4092
## 4092 4093
## 4093 4094
## 4094 4095
## 4095 4096
## 4096 4097
## 4097 4098
## 4098 4099
## 4099 4100
## 4100 4101
## 4101 4102
## 4102 4103
## 4103 4104
## 4104 4105
## 4105 4106
## 4106 4107
## 4107 4108
## 4108 4109
## 4109 4110
## 4110 4111
## 4111 4112
## 4112 4113
## 4113 4114
## 4114 4115
## 4115 4116
## 4116 4117
## 4117 4118
## 4118 4119
## 4119 4120
## 4120 4121
## 4121 4122
## 4122 4123
## 4123 4124
## 4124 4125
## 4125 4126
## 4126 4127
## 4127 4128
## 4128 4129
## 4129 4130
## 4130 4131
## 4131 4132
## 4132 4133
## 4133 4134
## 4134 4135
## 4135 4136
## 4136 4137
## 4137 4138
## 4138 4139
## 4139 4140
## 4140 4141
## 4141 4142
## 4142 4143
## 4143 4144
## 4144 4145
## 4145 4146
## 4147 4148
## 4148 4149
## 4149 4150
## 4150 4151
## 4151 4152
## 4153 4154
## 4154 4155
## 4155 4156
## 4156 4157
## 4157 4158
## 4158 4159
## 4159 4160
## 4160 4161
## 4161 4162
## 4162 4163
## 4163 4164
## 4164 4165
## 4165 4166
## 4166 4167
## 4167 4168
## 4168 4169
## 4169 4170
## 4170 4171
## 4171 4172
## 4172 4173
## 4173 4174
## 4174 4175
## 4175 4176
## 4176 4177
## 4177 4178
## 4178 4179
## 4179 4180
## 4180 4181
## 4181 4182
## 4182 4183
## 4183 4184
## 4184 4185
## 4185 4186
## 4186 4187
## 4187 4188
## 4188 4189
## 4189 4190
## 4190 4191
## 4191 4192
## 4192 4193
## 4193 4194
## 4194 4195
## 4195 4196
## 4196 4197
## 4197 4198
## 4198 4199
## 4199 4200
## 4201 4202
## 4202 4203
## 4203 4204
## 4204 4205
## 4205 4206
## 4206 4207
## 4207 4208
## 4208 4209
## 4209 4210
## 4210 4211
## 4211 4212
## 4212 4213
## 4213 4214
## 4214 4215
## 4215 4216
## 4216 4217
## 4217 4218
## 4218 4219
## 4219 4220
## 4220 4221
## 4221 4222
## 4222 4223
## 4223 4224
## 4224 4225
## 4225 4226
## 4226 4227
## 4227 4228
## 4228 4229
## 4229 4230
## 4230 4231
## 4231 4232
## 4232 4233
## 4234 4235
## 4235 4236
## 4236 4237
## 4237 4238
## 4238 4239
## 4239 4240
## 4240 4241
## 4241 4242
## 4242 4243
## 4243 4244
## 4244 4245
## 4245 4246
## 4246 4247
## 4247 4248
## 4248 4249
## 4249 4250
## 4250 4251
## 4251 4252
## 4252 4253
## 4253 4254
## 4254 4255
## 4255 4256
## 4256 4257
## 4257 4258
## 4258 4259
## 4259 4260
## 4260 4261
## 4261 4262
## 4262 4263
## 4263 4264
## 4264 4265
## 4265 4266
## 4266 4267
## 4267 4268
## 4268 4269
## 4269 4270
## 4270 4271
## 4271 4272
## 4272 4273
## 4273 4274
## 4274 4275
## 4275 4276
## 4276 4277
## 4277 4278
## 4278 4279
## 4279 4280
## 4280 4281
## 4281 4282
## 4282 4283
## 4283 4284
## 4284 4285
## 4285 4286
## 4286 4287
## 4287 4288
## 4288 4289
## 4289 4290
## 4290 4291
## 4291 4292
## 4292 4293
## 4293 4294
## 4294 4295
## 4295 4296
## 4296 4297
## 4297 4298
## 4298 4299
## 4299 4300
## 4300 4301
## 4301 4302
## 4302 4303
## 4303 4304
## 4304 4305
## 4305 4306
## 4306 4307
## 4307 4308
## 4308 4309
## 4309 4310
## 4310 4311
## 4311 4312
## 4312 4313
## 4313 4314
## 4314 4315
## 4315 4316
## 4316 4317
## 4317 4318
## 4318 4319
## 4319 4320
## 4320 4321
## 4321 4322
## 4322 4323
## 4323 4324
## 4324 4325
## 4325 4326
## 4326 4327
## 4327 4328
## 4328 4329
## 4329 4330
## 4330 4331
## 4332 4333
## 4333 4334
## 4334 4335
## 4335 4336
## 4336 4337
## 4337 4338
## 4338 4339
## 4339 4340
## 4340 4341
## 4341 4342
## 4342 4343
## 4343 4344
## 4344 4345
## 4345 4346
## 4346 4347
## 4347 4348
## 4348 4349
## 4349 4350
## 4350 4351
## 4351 4352
## 4352 4353
## 4353 4354
## 4354 4355
## 4355 4356
## 4356 4357
## 4357 4358
## 4358 4359
## 4359 4360
## 4360 4361
## 4361 4362
## 4362 4363
## 4363 4364
## 4364 4365
## 4365 4366
## 4366 4367
## 4367 4368
## 4368 4369
## 4369 4370
## 4370 4371
## 4371 4372
## 4372 4373
## 4373 4374
## 4374 4375
## 4375 4376
## 4376 4377
## 4377 4378
## 4378 4379
## 4380 4381
## 4382 4383
## 4383 4384
## 4384 4385
## 4385 4386
## 4386 4387
## 4387 4388
## 4388 4389
## 4389 4390
## 4390 4391
## 4391 4392
## 4392 4393
## 4393 4394
## 4394 4395
## 4395 4396
## 4396 4397
## 4397 4398
## 4398 4399
## 4399 4400
## 4400 4401
## 4401 4402
## 4402 4403
## 4403 4404
## 4404 4405
## 4405 4406
## 4406 4407
## 4407 4408
## 4408 4409
## 4409 4410
## 4410 4411
## 4411 4412
## 4412 4413
## 4413 4414
## 4414 4415
## 4415 4416
## 4416 4417
## 4417 4418
## 4418 4419
## 4419 4420
## 4420 4421
## 4421 4422
## 4422 4423
## 4423 4424
## 4424 4425
## 4425 4426
## 4426 4427
## 4427 4428
## 4428 4429
## 4429 4430
## 4430 4431
## 4431 4432
## 4432 4433
## 4433 4434
## 4434 4435
## 4435 4436
## 4436 4437
## 4437 4438
## 4438 4439
## 4439 4440
## 4440 4441
## 4441 4442
## 4442 4443
## 4443 4444
## 4444 4445
## 4445 4446
## 4446 4447
## 4447 4448
## 4448 4449
## 4449 4450
## 4450 4451
## 4451 4452
## 4452 4453
## 4453 4454
## 4454 4455
## 4455 4456
## 4456 4457
## 4457 4458
## 4458 4459
## 4459 4460
## 4460 4461
## 4461 4462
## 4462 4463
## 4463 4464
## 4464 4465
## 4465 4466
## 4466 4467
## 4467 4468
## 4468 4469
## 4469 4470
## 4471 4472
## 4472 4473
## 4474 4475
## 4475 4476
## 4476 4477
## 4477 4478
## 4478 4479
## 4479 4480
## 4480 4481
## 4481 4482
## 4482 4483
## 4483 4484
## 4484 4485
## 4485 4486
## 4486 4487
## 4487 4488
## 4488 4489
## 4489 4490
## 4490 4491
## 4491 4492
## 4492 4493
## 4493 4494
## 4494 4495
## 4495 4496
## 4496 4497
## 4497 4498
## 4498 4499
## 4499 4500
## 4500 4501
## 4501 4502
## 4502 4503
## 4503 4504
## 4504 4505
## 4505 4506
## 4506 4507
## 4507 4508
## 4508 4509
## 4509 4510
## 4510 4511
## 4511 4512
## 4512 4513
## 4513 4514
## 4514 4515
## 4515 4516
## 4516 4517
## 4517 4518
## 4518 4519
## 4519 4520
## 4520 4521
## 4521 4522
## 4522 4523
## 4523 4524
## 4524 4525
## 4525 4526
## 4526 4527
## 4527 4528
## 4528 4529
## 4529 4530
## 4530 4531
## 4531 4532
## 4532 4533
## 4533 4534
## 4534 4535
## 4535 4536
## 4536 4537
## 4538 4539
## 4539 4540
## 4540 4541
## 4541 4542
## 4542 4543
## 4543 4544
## 4544 4545
## 4545 4546
## 4546 4547
## 4547 4548
## 4548 4549
## 4549 4550
## 4550 4551
## 4551 4552
## 4552 4553
## 4553 4554
## 4554 4555
## 4555 4556
## 4556 4557
## 4557 4558
## 4558 4559
## 4559 4560
## 4560 4561
## 4561 4562
## 4562 4563
## 4563 4564
## 4564 4565
## 4565 4566
## 4566 4567
## 4567 4568
## 4568 4569
## 4569 4570
## 4570 4571
## 4571 4572
## 4572 4573
## 4573 4574
## 4574 4575
## 4575 4576
## 4576 4577
## 4577 4578
## 4578 4579
## 4579 4580
## 4580 4581
## 4581 4582
## 4582 4583
## 4583 4584
## 4584 4585
## 4585 4586
## 4586 4587
## 4587 4588
## 4588 4589
## 4589 4590
## 4590 4591
## 4591 4592
## 4592 4593
## 4593 4594
## 4594 4595
## 4595 4596
## 4596 4597
## 4597 4598
## 4598 4599
## 4599 4600
## 4600 4601
## 4601 4602
## 4602 4603
## 4603 4604
## 4604 4605
## 4605 4606
## 4606 4607
## 4607 4608
## 4608 4609
## 4609 4610
## 4610 4611
## 4611 4612
## 4612 4613
## 4613 4614
## 4614 4615
## 4615 4616
## 4616 4617
## 4617 4618
## 4618 4619
## 4619 4620
## 4620 4621
## 4621 4622
## 4622 4623
## 4623 4624
## 4624 4625
## 4625 4626
## 4626 4627
## 4627 4628
## 4628 4629
## 4629 4630
## 4630 4631
## 4631 4632
## 4632 4633
## 4633 4634
## 4634 4635
## 4635 4636
## 4636 4637
## 4637 4638
## 4638 4639
## 4639 4640
## 4640 4641
## 4641 4642
## 4642 4643
## 4643 4644
## 4644 4645
## 4645 4646
## 4646 4647
## 4647 4648
## 4648 4649
## 4649 4650
## 4650 4651
## 4651 4652
## 4652 4653
## 4653 4654
## 4654 4655
## 4655 4656
## 4656 4657
## 4657 4658
## 4658 4659
## 4659 4660
## 4660 4661
## 4661 4662
## 4662 4663
## 4663 4664
## 4664 4665
## 4665 4666
## 4666 4667
## 4667 4668
## 4668 4669
## 4669 4670
## 4670 4671
## 4671 4672
## 4672 4673
## 4673 4674
## 4674 4675
## 4675 4676
## 4676 4677
## 4677 4678
## 4678 4679
## 4679 4680
## 4680 4681
## 4681 4682
## 4682 4683
## 4683 4684
## 4685 4686
## 4686 4687
## 4687 4688
## 4688 4689
## 4689 4690
## 4690 4691
## 4691 4692
## 4692 4693
## 4693 4694
## 4694 4695
## 4695 4696
## 4696 4697
## 4697 4698
## 4698 4699
## 4699 4700
## 4700 4701
## 4701 4702
## 4702 4703
## 4703 4704
## 4704 4705
## 4705 4706
## 4706 4707
## 4707 4708
## 4708 4709
## 4709 4710
## 4710 4711
## 4711 4712
## 4712 4713
## 4713 4714
## 4714 4715
## 4715 4716
## 4716 4717
## 4717 4718
## 4718 4719
## 4719 4720
## 4720 4721
## 4721 4722
## 4722 4723
## 4723 4724
## 4724 4725
## 4725 4726
## 4726 4727
## 4727 4728
## 4728 4729
## 4729 4730
## 4730 4731
## 4731 4732
## 4732 4733
## 4733 4734
## 4734 4735
## 4735 4736
## 4736 4737
## 4737 4738
## 4738 4739
## 4739 4740
## 4740 4741
## 4741 4742
## 4742 4743
## 4743 4744
## 4744 4745
## 4745 4746
## 4746 4747
## 4747 4748
## 4748 4749
## 4749 4750
## 4750 4751
## 4751 4752
## 4752 4753
## 4753 4754
## 4754 4755
## 4755 4756
## 4756 4757
## 4757 4758
## 4758 4759
## 4759 4760
## 4760 4761
## 4761 4762
## 4762 4763
## 4763 4764
## 4764 4765
## 4765 4766
## 4766 4767
## 4767 4768
## 4768 4769
## 4769 4770
## 4770 4771
## 4771 4772
## 4772 4773
## 4773 4774
## 4774 4775
## 4775 4776
## 4776 4777
## 4777 4778
## 4778 4779
## 4779 4780
## 4780 4781
## 4781 4782
## 4782 4783
## 4783 4784
## 4784 4785
## 4785 4786
## 4786 4787
## 4787 4788
## 4788 4789
## 4789 4790
## 4790 4791
## 4791 4792
## 4793 4794
## 4794 4795
## 4795 4796
## 4796 4797
## 4797 4798
## 4799 4800
## 4800 4801
## 4801 4802
## 4802 4803
## 4803 4804
## 4804 4805
## 4805 4806
## 4806 4807
## 4807 4808
## 4808 4809
## 4809 4810
## 4810 4811
## 4811 4812
## 4812 4813
## 4813 4814
## 4814 4815
## 4815 4816
## 4816 4817
## 4817 4818
## 4818 4819
## 4819 4820
## 4820 4821
## 4821 4822
## 4822 4823
## 4823 4824
## 4824 4825
## 4825 4826
## 4826 4827
## 4827 4828
## 4828 4829
## 4829 4830
## 4830 4831
## 4831 4832
## 4832 4833
## 4833 4834
## 4834 4835
## 4835 4836
## 4836 4837
## 4837 4838
## 4838 4839
## 4839 4840
## 4840 4841
## 4841 4842
## 4842 4843
## 4843 4844
## 4844 4845
## 4845 4846
## 4846 4847
## 4847 4848
## 4848 4849
## 4849 4850
## 4850 4851
## 4851 4852
## 4852 4853
## 4853 4854
## 4854 4855
## 4855 4856
## 4856 4857
## 4857 4858
## 4858 4859
## 4860 4861
## 4861 4862
## 4862 4863
## 4863 4864
## 4864 4865
## 4865 4866
## 4867 4868
## 4868 4869
## 4869 4870
## 4870 4871
## 4871 4872
## 4872 4873
## 4873 4874
## 4874 4875
## 4875 4876
## 4876 4877
## 4877 4878
## 4878 4879
## 4879 4880
## 4880 4881
## 4881 4882
## 4882 4883
## 4883 4884
## 4884 4885
## 4885 4886
## 4886 4887
## 4887 4888
## 4888 4889
## 4889 4890
## 4890 4891
## 4891 4892
## 4892 4893
## 4893 4894
## 4894 4895
## 4895 4896
## 4896 4897
## 4897 4898
## 4898 4899
## 4899 4900
## 4900 4901
## 4901 4902
## 4902 4903
## 4903 4904
## 4904 4905
## 4905 4906
## 4906 4907
## 4907 4908
## 4908 4909
## 4909 4910
## 4910 4911
## 4911 4912
## 4912 4913
## 4913 4914
## 4914 4915
## 4915 4916
## 4916 4917
## 4917 4918
## 4918 4919
## 4919 4920
## 4920 4921
## 4921 4922
## 4922 4923
## 4923 4924
## 4924 4925
## 4925 4926
## 4926 4927
## 4927 4928
## 4928 4929
## 4929 4930
## 4930 4931
## 4931 4932
## 4932 4933
## 4933 4934
## 4934 4935
## 4936 4937
## 4937 4938
## 4938 4939
## 4939 4940
## 4940 4941
## 4941 4942
## 4942 4943
## 4943 4944
## 4944 4945
## 4945 4946
## 4946 4947
## 4947 4948
## 4948 4949
## 4949 4950
## 4950 4951
## 4951 4952
## 4952 4953
## 4953 4954
## 4954 4955
## 4955 4956
## 4956 4957
## 4957 4958
## 4958 4959
## 4959 4960
## 4960 4961
## 4961 4962
## 4962 4963
## 4963 4964
## 4964 4965
## 4965 4966
## 4966 4967
## 4967 4968
## 4968 4969
## 4969 4970
## 4970 4971
## 4971 4972
## 4972 4973
## 4973 4974
## 4974 4975
## 4975 4976
## 4976 4977
## 4977 4978
## 4978 4979
## 4979 4980
## 4980 4981
## 4981 4982
## 4982 4983
## 4983 4984
## 4984 4985
## 4985 4986
## 4986 4987
## 4987 4988
## 4988 4989
## 4989 4990
## 4990 4991
## 4991 4992
## 4992 4993
## 4993 4994
## 4994 4995
## 4995 4996
## 4996 4997
## 4997 4998
## 4998 4999
## 4999 5000
## 5000 5001
## 5001 5002
## 5002 5003
## 5003 5004
## 5004 5005
## 5005 5006
## 5006 5007
## 5007 5008
## 5008 5009
## 5009 5010
## 5010 5011
## 5011 5012
## 5012 5013
## 5013 5014
## 5014 5015
## 5015 5016
## 5016 5017
## 5017 5018
## 5018 5019
## 5019 5020
## 5020 5021
## 5021 5022
## 5022 5023
## 5023 5024
## 5024 5025
## 5025 5026
## 5026 5027
## 5027 5028
## 5028 5029
## 5029 5030
## 5030 5031
## 5031 5032
## 5032 5033
## 5033 5034
## 5034 5035
## 5035 5036
## 5036 5037
## 5037 5038
## 5038 5039
## 5039 5040
## 5040 5041
## 5041 5042
## 5042 5043
## 5043 5044
## 5044 5045
## 5045 5046
## 5046 5047
## 5047 5048
## 5048 5049
## 5049 5050
## 5050 5051
## 5051 5052
## 5052 5053
## 5053 5054
## 5054 5055
## 5055 5056
## 5056 5057
## 5057 5058
## 5058 5059
## 5059 5060
## 5060 5061
## 5061 5062
## 5063 5064
## 5064 5065
## 5065 5066
## 5066 5067
## 5067 5068
## 5068 5069
## 5069 5070
## 5070 5071
## 5071 5072
## 5072 5073
## 5073 5074
## 5074 5075
## 5075 5076
## 5076 5077
## 5077 5078
## 5078 5079
## 5080 5081
## 5081 5082
## 5082 5083
## 5083 5084
## 5084 5085
## 5085 5086
## 5086 5087
## 5087 5088
## 5088 5089
## 5089 5090
## 5090 5091
## 5091 5092
## 5092 5093
## 5093 5094
## 5094 5095
## 5095 5096
## 5096 5097
## 5097 5098
## 5098 5099
## 5099 5100
## 5100 5101
## 5101 5102
## 5102 5103
## 5103 5104
## 5104 5105
## 5105 5106
## 5106 5107
## 5107 5108
## 5108 5109
## 5109 5110
## 5110 5111
## 5111 5112
## 5112 5113
## 5113 5114
## 5114 5115
## 5115 5116
## 5116 5117
## 5117 5118
## 5118 5119
## 5119 5120
## 5120 5121
## 5121 5122
## 5122 5123
## 5123 5124
## 5124 5125
## 5125 5126
## 5126 5127
## 5127 5128
## 5128 5129
## 5129 5130
## 5130 5131
## 5131 5132
## 5132 5133
## 5133 5134
## 5134 5135
## 5135 5136
## 5136 5137
## 5137 5138
## 5138 5139
## 5139 5140
## 5140 5141
## 5141 5142
## 5142 5143
## 5143 5144
## 5144 5145
## 5145 5146
## 5146 5147
## 5147 5148
## 5148 5149
## 5149 5150
## 5150 5151
## 5151 5152
## 5152 5153
## 5153 5154
## 5154 5155
## 5155 5156
## 5156 5157
## 5157 5158
## 5158 5159
## 5159 5160
## 5160 5161
## 5161 5162
## 5162 5163
## 5164 5165
## 5165 5166
## 5166 5167
## 5167 5168
## 5168 5169
## 5169 5170
## 5170 5171
## 5171 5172
## 5173 5174
## 5174 5175
## 5175 5176
## 5176 5177
## 5177 5178
## 5178 5179
## 5179 5180
## 5180 5181
## 5181 5182
## 5182 5183
## 5183 5184
## 5184 5185
## 5185 5186
## 5186 5187
## 5187 5188
## 5188 5189
## 5189 5190
## 5190 5191
## 5191 5192
## 5192 5193
## 5193 5194
## 5194 5195
## 5195 5196
## 5198 5199
## 5199 5200
## 5200 5201
## 5201 5202
## 5202 5203
## 5203 5204
## 5204 5205
## 5205 5206
## 5206 5207
## 5207 5208
## 5208 5209
## 5209 5210
## 5210 5211
## 5211 5212
## 5212 5213
## 5213 5214
## 5214 5215
## 5215 5216
## 5216 5217
## 5217 5218
## 5218 5219
## 5219 5220
## 5220 5221
## 5221 5222
## 5222 5223
## 5223 5224
## 5224 5225
## 5225 5226
## 5226 5227
## 5227 5228
## 5228 5229
## 5229 5230
## 5230 5231
## 5231 5232
## 5232 5233
## 5233 5234
## 5234 5235
## 5235 5236
## 5236 5237
## 5237 5238
## 5238 5239
## 5239 5240
## 5240 5241
## 5242 5243
## 5243 5244
## 5244 5245
## 5245 5246
## 5246 5247
## 5247 5248
## 5248 5249
## 5249 5250
## 5250 5251
## 5251 5252
## 5252 5253
## 5253 5254
## 5254 5255
## 5255 5256
## 5256 5257
## 5257 5258
## 5258 5259
## 5259 5260
## 5260 5261
## 5261 5262
## 5262 5263
## 5263 5264
## 5264 5265
## 5265 5266
## 5266 5267
## 5267 5268
## 5268 5269
## 5269 5270
## 5270 5271
## 5271 5272
## 5272 5273
## 5273 5274
## 5274 5275
## 5275 5276
## 5276 5277
## 5277 5278
## 5278 5279
## 5279 5280
## 5280 5281
## 5281 5282
## 5282 5283
## 5283 5284
## 5284 5285
## 5285 5286
## 5286 5287
## 5287 5288
## 5288 5289
## 5289 5290
## 5290 5291
## 5291 5292
## 5292 5293
## 5293 5294
## 5294 5295
## 5295 5296
## 5296 5297
## 5297 5298
## 5298 5299
## 5299 5300
## 5300 5301
## 5301 5302
## 5302 5303
## 5304 5305
## 5305 5306
## 5306 5307
## 5307 5308
## 5308 5309
## 5309 5310
## 5310 5311
## 5311 5312
## 5312 5313
## 5313 5314
## 5314 5315
## 5315 5316
## 5316 5317
## 5317 5318
## 5318 5319
## 5319 5320
## 5320 5321
## 5321 5322
## 5322 5323
## 5323 5324
## 5324 5325
## 5325 5326
## 5326 5327
## 5327 5328
## 5328 5329
## 5329 5330
## 5330 5331
## 5331 5332
## 5332 5333
## 5333 5334
## 5334 5335
## 5335 5336
## 5336 5337
## 5337 5338
## 5338 5339
## 5339 5340
## 5340 5341
## 5341 5342
## 5342 5343
## 5343 5344
## 5344 5345
## 5345 5346
## 5346 5347
## 5347 5348
## 5348 5349
## 5349 5350
## 5350 5351
## 5351 5352
## 5352 5353
## 5353 5354
## 5354 5355
## 5355 5356
## 5356 5357
## 5357 5358
## 5358 5359
## 5359 5360
## 5360 5361
## 5361 5362
## 5362 5363
## 5363 5364
## 5364 5365
## 5365 5366
## 5366 5367
## 5367 5368
## 5368 5369
## 5369 5370
## 5370 5371
## 5371 5372
## 5372 5373
## 5373 5374
## 5374 5375
## 5375 5376
## 5376 5377
## 5377 5378
## 5378 5379
## 5379 5380
## 5380 5381
## 5381 5382
## 5382 5383
## 5383 5384
## 5384 5385
## 5385 5386
## 5386 5387
## 5387 5388
## 5388 5389
## 5389 5390
## 5390 5391
## 5391 5392
## 5392 5393
## 5393 5394
## 5394 5395
## 5395 5396
## 5396 5397
## 5397 5398
## 5398 5399
## 5399 5400
## 5400 5401
## 5401 5402
## 5402 5403
## 5403 5404
## 5404 5405
## 5405 5406
## 5406 5407
## 5407 5408
## 5408 5409
## 5409 5410
## 5410 5411
## 5411 5412
## 5412 5413
## 5413 5414
## 5414 5415
## 5415 5416
## 5416 5417
## 5417 5418
## 5418 5419
## 5419 5420
## 5420 5421
## 5421 5422
## 5422 5423
## 5423 5424
## 5424 5425
## 5425 5426
## 5426 5427
## 5427 5428
## 5428 5429
## 5429 5430
## 5430 5431
## 5431 5432
## 5432 5433
## 5433 5434
## 5434 5435
## 5435 5436
## 5436 5437
## 5437 5438
## 5438 5439
## 5439 5440
## 5440 5441
## 5441 5442
## 5442 5443
## 5443 5444
## 5444 5445
## 5445 5446
## 5446 5447
## 5447 5448
## 5448 5449
## 5449 5450
## 5450 5451
## 5451 5452
## 5452 5453
## 5453 5454
## 5454 5455
## 5455 5456
## 5456 5457
## 5457 5458
## 5458 5459
## 5459 5460
## 5460 5461
## 5461 5462
## 5462 5463
## 5463 5464
## 5464 5465
## 5465 5466
## 5466 5467
## 5467 5468
## 5468 5469
## 5469 5470
## 5470 5471
## 5471 5472
## 5472 5473
## 5473 5474
## 5474 5475
## 5475 5476
## 5476 5477
## 5477 5478
## 5478 5479
## 5479 5480
## 5480 5481
## 5481 5482
## 5482 5483
## 5483 5484
## 5484 5485
## 5485 5486
## 5486 5487
## 5487 5488
## 5488 5489
## 5489 5490
## 5490 5491
## 5491 5492
## 5492 5493
## 5493 5494
## 5494 5495
## 5495 5496
## 5496 5497
## 5497 5498
## 5498 5499
## 5499 5500
## 5500 5501
## 5501 5502
## 5502 5503
## 5503 5504
## 5504 5505
## 5505 5506
## 5506 5507
## 5507 5508
## 5508 5509
## 5510 5511
## 5511 5512
## 5512 5513
## 5513 5514
## 5514 5515
## 5515 5516
## 5516 5517
## 5517 5518
## 5518 5519
## 5519 5520
## 5520 5521
## 5521 5522
## 5522 5523
## 5523 5524
## 5524 5525
## 5525 5526
## 5526 5527
## 5527 5528
## 5528 5529
## 5529 5530
## 5530 5531
## 5531 5532
## 5532 5533
## 5533 5534
## 5534 5535
## 5535 5536
## 5536 5537
## 5537 5538
## 5538 5539
## 5539 5540
## 5540 5541
## 5541 5542
## 5542 5543
## 5543 5544
## 5544 5545
## 5545 5546
## 5546 5547
## 5547 5548
## 5548 5549
## 5549 5550
## 5550 5551
## 5551 5552
## 5552 5553
## 5553 5554
## 5554 5555
## 5555 5556
## 5556 5557
## 5557 5558
## 5558 5559
## 5559 5560
## 5560 5561
## 5561 5562
## 5562 5563
## 5563 5564
## 5564 5565
## 5565 5566
## 5566 5567
## 5567 5568
## 5568 5569
## 5569 5570
## 5570 5571
## 5571 5572
## 5572 5573
## 5573 5574
## 5574 5575
## 5575 5576
## 5576 5577
## 5577 5578
## 5578 5579
## 5579 5580
## 5580 5581
## 5581 5582
## 5582 5583
## 5583 5584
## 5584 5585
## 5585 5586
## 5586 5587
## 5587 5588
## 5588 5589
## 5589 5590
## 5590 5591
## 5591 5592
## 5592 5593
## 5593 5594
## 5594 5595
## 5595 5596
## 5596 5597
## 5597 5598
## 5598 5599
## 5599 5600
## 5600 5601
## 5601 5602
## 5602 5603
## 5603 5604
## 5604 5605
## 5605 5606
## 5606 5607
## 5607 5608
## 5608 5609
## 5609 5610
## 5610 5611
## 5611 5612
## 5612 5613
## 5613 5614
## 5614 5615
## 5615 5616
## 5616 5617
## 5617 5618
## 5618 5619
## 5620 5621
## 5621 5622
## 5622 5623
## 5623 5624
## 5624 5625
## 5625 5626
## 5627 5628
## 5628 5629
## 5629 5630
## 5630 5631
## 5631 5632
## 5632 5633
## 5633 5634
## 5634 5635
## 5635 5636
## 5636 5637
## 5637 5638
## 5638 5639
## 5639 5640
## 5640 5641
## 5641 5642
## 5642 5643
## 5643 5644
## 5644 5645
## 5645 5646
## 5646 5647
## 5647 5648
## 5648 5649
## 5649 5650
## 5650 5651
## 5651 5652
## 5652 5653
## 5653 5654
## 5654 5655
## 5655 5656
## 5656 5657
## 5657 5658
## 5659 5660
## 5660 5661
## 5661 5662
## 5662 5663
## 5663 5664
## 5664 5665
## 5665 5666
## 5666 5667
## 5667 5668
## 5668 5669
## 5669 5670
## 5671 5672
## 5672 5673
## 5673 5674
## 5674 5675
## 5675 5676
## 5676 5677
## 5677 5678
## 5678 5679
## 5679 5680
## 5680 5681
## 5681 5682
## 5682 5683
## 5683 5684
## 5684 5685
## 5685 5686
## 5686 5687
## 5687 5688
## 5688 5689
## 5689 5690
## 5690 5691
## 5691 5692
## 5692 5693
## 5693 5694
## 5694 5695
## 5695 5696
## 5696 5697
## 5697 5698
## 5698 5699
## 5699 5700
## 5700 5701
## 5701 5702
## 5702 5703
## 5703 5704
## 5704 5705
## 5705 5706
## 5706 5707
## 5707 5708
## 5708 5709
## 5709 5710
## 5710 5711
## 5711 5712
## 5712 5713
## 5713 5714
## 5714 5715
## 5715 5716
## 5716 5717
## 5717 5718
## 5718 5719
## 5719 5720
## 5720 5721
## 5721 5722
## 5722 5723
## 5723 5724
## 5724 5725
## 5725 5726
## 5726 5727
## 5727 5728
## 5728 5729
## 5729 5730
## 5730 5731
## 5731 5732
## 5732 5733
## 5733 5734
## 5734 5735
## 5735 5736
## 5736 5737
## 5737 5738
## 5738 5739
## 5739 5740
## 5740 5741
## 5741 5742
## 5742 5743
## 5743 5744
## 5744 5745
## 5745 5746
## 5746 5747
## 5747 5748
## 5748 5749
## 5749 5750
## 5750 5751
## 5751 5752
## 5752 5753
## 5753 5754
## 5754 5755
## 5755 5756
## 5756 5757
## 5757 5758
## 5758 5759
## 5759 5760
## 5760 5761
## 5761 5762
## 5762 5763
## 5763 5764
## 5764 5765
## 5765 5766
## 5766 5767
## 5767 5768
## 5768 5769
## 5769 5770
## 5771 5772
## 5772 5773
## 5773 5774
## 5774 5775
## 5775 5776
## 5776 5777
## 5777 5778
## 5778 5779
## 5779 5780
## 5780 5781
## 5781 5782
## 5782 5783
## 5783 5784
## 5784 5785
## 5785 5786
## 5786 5787
## 5787 5788
## 5788 5789
## 5789 5790
## 5790 5791
## 5791 5792
## 5792 5793
## 5793 5794
## 5794 5795
## 5795 5796
## 5796 5797
## 5797 5798
## 5798 5799
## 5800 5801
## 5801 5802
## 5802 5803
## 5803 5804
## 5804 5805
## 5805 5806
## 5806 5807
## 5807 5808
## 5808 5809
## 5809 5810
## 5810 5811
## 5811 5812
## 5812 5813
## 5813 5814
## 5814 5815
## 5815 5816
## 5816 5817
## 5817 5818
## 5818 5819
## 5819 5820
## 5820 5821
## 5821 5822
## 5822 5823
## 5823 5824
## 5824 5825
## 5825 5826
## 5826 5827
## 5827 5828
## 5828 5829
## 5829 5830
## 5830 5831
## 5831 5832
## 5832 5833
## 5833 5834
## 5834 5835
## 5835 5836
## 5836 5837
## 5837 5838
## 5838 5839
## 5840 5841
## 5841 5842
## 5842 5843
## 5843 5844
## 5844 5845
## 5845 5846
## 5846 5847
## 5847 5848
## 5848 5849
## 5849 5850
## 5850 5851
## 5851 5852
## 5852 5853
## 5853 5854
## 5854 5855
## 5855 5856
## 5856 5857
## 5857 5858
## 5858 5859
## 5859 5860
## 5860 5861
## 5861 5862
## 5863 5864
## 5864 5865
## 5865 5866
## 5866 5867
## 5867 5868
## 5868 5869
## 5869 5870
## 5870 5871
## 5872 5873
## 5873 5874
## 5874 5875
## 5875 5876
## 5876 5877
## 5877 5878
## 5878 5879
## 5879 5880
## 5880 5881
## 5881 5882
## 5882 5883
## 5883 5884
## 5884 5885
## 5885 5886
## 5886 5887
## 5887 5888
## 5888 5889
## 5889 5890
## 5890 5891
## 5891 5892
## 5892 5893
## 5893 5894
## 5894 5895
## 5895 5896
## 5896 5897
## 5897 5898
## 5898 5899
## 5899 5900
## 5900 5901
## 5901 5902
## 5903 5904
## 5904 5905
## 5905 5906
## 5906 5907
## 5907 5908
## 5908 5909
## 5909 5910
## 5910 5911
## 5911 5912
## 5912 5913
## 5913 5914
## 5915 5916
## 5916 5917
## 5917 5918
## 5918 5919
## 5919 5920
## 5920 5921
## 5921 5922
## 5922 5923
## 5923 5924
## 5924 5925
## 5925 5926
## 5926 5927
## 5927 5928
## 5928 5929
## 5929 5930
## 5930 5931
## 5931 5932
## 5932 5933
## 5933 5934
## 5934 5935
## 5935 5936
## 5936 5937
## 5937 5938
## 5938 5939
## 5939 5940
## 5940 5941
## 5941 5942
## 5942 5943
## 5943 5944
## 5944 5945
## 5945 5946
## 5946 5947
## 5947 5948
## 5948 5949
## 5949 5950
## 5950 5951
## 5951 5952
## 5952 5953
## 5953 5954
## 5954 5955
## 5955 5956
## 5956 5957
## 5957 5958
## 5958 5959
## 5959 5960
## 5960 5961
## 5961 5962
## 5962 5963
## 5963 5964
## 5964 5965
## 5965 5966
## 5966 5967
## 5967 5968
## 5968 5969
## 5969 5970
## 5970 5971
## 5971 5972
## 5972 5973
## 5973 5974
## 5974 5975
## 5975 5976
## 5976 5977
## 5977 5978
## 5978 5979
## 5979 5980
## 5980 5981
## 5981 5982
## 5982 5983
## 5983 5984
## 5984 5985
## 5985 5986
## 5986 5987
## 5987 5988
## 5988 5989
## 5989 5990
## 5990 5991
## 5991 5992
## 5992 5993
## 5993 5994
## 5994 5995
## 5995 5996
## 5996 5997
## 5997 5998
## 5998 5999
## 5999 6000
## 6000 6001
## 6001 6002
## 6002 6003
## 6003 6004
## 6004 6005
## 6005 6006
## 6006 6007
## 6007 6008
## 6008 6009
## 6009 6010
## 6010 6011
## 6011 6012
## 6012 6013
## 6013 6014
## 6014 6015
## 6015 6016
## 6016 6017
## 6017 6018
## 6018 6019
## 6019 6020
## 6020 6021
## 6021 6022
## 6022 6023
## 6023 6024
## 6024 6025
## 6025 6026
## 6026 6027
## 6027 6028
## 6028 6029
## 6029 6030
## 6030 6031
## 6031 6032
## 6032 6033
## 6033 6034
## 6034 6035
## 6035 6036
## 6036 6037
## 6037 6038
## 6038 6039
## 6039 6040
## 6040 6041
## 6041 6042
## 6042 6043
## 6044 6045
## 6045 6046
## 6046 6047
## 6047 6048
## 6048 6049
## 6049 6050
## 6050 6051
## 6051 6052
## 6052 6053
## 6053 6054
## 6054 6055
## 6055 6056
## 6056 6057
## 6057 6058
## 6058 6059
## 6059 6060
## 6060 6061
## 6061 6062
## 6062 6063
## 6063 6064
## 6064 6065
## 6065 6066
## 6066 6067
## 6067 6068
## 6068 6069
## 6069 6070
## 6070 6071
## 6071 6072
## 6072 6073
## 6073 6074
## 6074 6075
## 6075 6076
## 6076 6077
## 6077 6078
## 6078 6079
## 6079 6080
## 6080 6081
## 6081 6082
## 6082 6083
## 6083 6084
## 6084 6085
## 6085 6086
## 6086 6087
## 6087 6088
## 6088 6089
## 6089 6090
## 6090 6091
## 6091 6092
## 6092 6093
## 6093 6094
## 6094 6095
## 6095 6096
## 6096 6097
## 6097 6098
## 6098 6099
## 6099 6100
## 6100 6101
## 6101 6102
## 6102 6103
## 6103 6104
## 6104 6105
## 6105 6106
## 6106 6107
## 6107 6108
## 6108 6109
## 6109 6110
## 6110 6111
## 6111 6112
## 6112 6113
## 6113 6114
## 6114 6115
## 6115 6116
## 6116 6117
## 6117 6118
## 6118 6119
## 6119 6120
## 6120 6121
## 6121 6122
## 6122 6123
## 6123 6124
## 6124 6125
## 6125 6126
## 6127 6128
## 6128 6129
## 6129 6130
## 6130 6131
## 6131 6132
## 6132 6133
## 6133 6134
## 6134 6135
## 6135 6136
## 6136 6137
## 6137 6138
## 6138 6139
## 6139 6140
## 6140 6141
## 6141 6142
## 6142 6143
## 6143 6144
## 6144 6145
## 6145 6146
## 6146 6147
## 6147 6148
## 6148 6149
## 6149 6150
## 6150 6151
## 6151 6152
## 6152 6153
## 6153 6154
## 6155 6156
## 6156 6157
## 6157 6158
## 6158 6159
## 6159 6160
## 6160 6161
## 6161 6162
## 6162 6163
## 6163 6164
## 6164 6165
## 6165 6166
## 6166 6167
## 6167 6168
## 6168 6169
## 6169 6170
## 6170 6171
## 6171 6172
## 6172 6173
## 6173 6174
## 6174 6175
## 6175 6176
## 6176 6177
## 6177 6178
## 6178 6179
## 6179 6180
## 6180 6181
## 6181 6182
## 6182 6183
## 6183 6184
## 6184 6185
## 6185 6186
## 6186 6187
## 6187 6188
## 6188 6189
## 6189 6190
## 6190 6191
## 6191 6192
## 6192 6193
## 6193 6194
## 6194 6195
## 6195 6196
## 6197 6198
## 6198 6199
## 6199 6200
## 6200 6201
## 6201 6202
## 6202 6203
## 6203 6204
## 6204 6205
## 6205 6206
## 6206 6207
## 6207 6208
## 6208 6209
## 6209 6210
## 6210 6211
## 6211 6212
## 6213 6214
## 6214 6215
## 6215 6216
## 6216 6217
## 6217 6218
## 6218 6219
## 6219 6220
## 6220 6221
## 6221 6222
## 6222 6223
## 6223 6224
## 6224 6225
## 6225 6226
## 6226 6227
## 6227 6228
## 6228 6229
## 6229 6230
## 6230 6231
## 6231 6232
## 6232 6233
## 6233 6234
## 6234 6235
## 6235 6236
## 6236 6237
## 6237 6238
## 6238 6239
## 6239 6240
## 6240 6241
## 6241 6242
## 6242 6243
## 6243 6244
## 6244 6245
## 6245 6246
## 6246 6247
## 6247 6248
## 6248 6249
## 6249 6250
## 6250 6251
## 6251 6252
## 6252 6253
## 6253 6254
## 6254 6255
## 6255 6256
## 6256 6257
## 6257 6258
## 6258 6259
## 6259 6260
## 6260 6261
## 6261 6262
## 6262 6263
## 6263 6264
## 6264 6265
## 6265 6266
## 6266 6267
## 6267 6268
## 6268 6269
## 6269 6270
## 6270 6271
## 6271 6272
## 6272 6273
## 6274 6275
## 6275 6276
## 6276 6277
## 6277 6278
## 6278 6279
## 6279 6280
## 6280 6281
## 6281 6282
## 6282 6283
## 6283 6284
## 6285 6286
## 6286 6287
## 6287 6288
## 6288 6289
## 6289 6290
## 6290 6291
## 6291 6292
## 6292 6293
## 6293 6294
## 6294 6295
## 6295 6296
## 6296 6297
## 6297 6298
## 6298 6299
## 6299 6300
## 6300 6301
## 6301 6302
## 6302 6303
## 6303 6304
## 6304 6305
## 6305 6306
## 6306 6307
## 6307 6308
## 6308 6309
## 6309 6310
## 6310 6311
## 6311 6312
## 6312 6313
## 6313 6314
## 6314 6315
## 6316 6317
## 6318 6319
## 6319 6320
## 6321 6322
## 6322 6323
## 6323 6324
## 6324 6325
## 6325 6326
## 6326 6327
## 6327 6328
## 6328 6329
## 6329 6330
## 6330 6331
## 6331 6332
## 6332 6333
## 6333 6334
## 6334 6335
## 6335 6336
## 6336 6337
## 6337 6338
## 6338 6339
## 6339 6340
## 6340 6341
## 6341 6342
## 6342 6343
## 6343 6344
## 6344 6345
## 6345 6346
## 6346 6347
## 6347 6348
## 6348 6349
## 6349 6350
## 6350 6351
## 6351 6352
## 6352 6353
## 6353 6354
## 6354 6355
## 6355 6356
## 6356 6357
## 6357 6358
## 6358 6359
## 6359 6360
## 6360 6361
## 6361 6362
## 6362 6363
## 6363 6364
## 6364 6365
## 6365 6366
## 6366 6367
## 6367 6368
## 6368 6369
## 6369 6370
## 6370 6371
## 6371 6372
## 6372 6373
## 6373 6374
## 6374 6375
## 6375 6376
## 6376 6377
## 6377 6378
## 6378 6379
## 6379 6380
## 6380 6381
## 6381 6382
## 6382 6383
## 6383 6384
## 6384 6385
## 6385 6386
## 6386 6387
## 6387 6388
## 6388 6389
## 6389 6390
## 6390 6391
## 6391 6392
## 6392 6393
## 6393 6394
## 6394 6395
## 6395 6396
## 6396 6397
## 6397 6398
## 6398 6399
## 6399 6400
## 6400 6401
## 6401 6402
## 6403 6404
## 6404 6405
## 6405 6406
## 6406 6407
## 6407 6408
## 6408 6409
## 6409 6410
## 6410 6411
## 6411 6412
## 6412 6413
## 6413 6414
## 6414 6415
## 6415 6416
## 6416 6417
## 6417 6418
## 6418 6419
## 6419 6420
## 6420 6421
## 6421 6422
## 6422 6423
## 6423 6424
## 6424 6425
## 6425 6426
## 6426 6427
## 6427 6428
## 6428 6429
## 6429 6430
## 6430 6431
## 6431 6432
## 6432 6433
## 6433 6434
## 6434 6435
## 6435 6436
## 6436 6437
## 6437 6438
## 6438 6439
## 6439 6440
## 6440 6441
## 6441 6442
## 6442 6443
## 6443 6444
## 6444 6445
## 6445 6446
## 6446 6447
## 6447 6448
## 6448 6449
## 6449 6450
## 6450 6451
## 6451 6452
## 6452 6453
## 6453 6454
## 6454 6455
## 6455 6456
## 6456 6457
## 6457 6458
## 6458 6459
## 6459 6460
## 6460 6461
## 6461 6462
## 6462 6463
## 6463 6464
## 6464 6465
## 6465 6466
## 6466 6467
## 6467 6468
## 6468 6469
## 6469 6470
## 6470 6471
## 6471 6472
## 6472 6473
## 6473 6474
## 6474 6475
## 6475 6476
## 6476 6477
## 6477 6478
## 6478 6479
## 6479 6480
## 6480 6481
## 6481 6482
## 6482 6483
## 6483 6484
## 6484 6485
## 6485 6486
## 6486 6487
## 6487 6488
## 6488 6489
## 6489 6490
## 6490 6491
## 6491 6492
## 6492 6493
## 6493 6494
## 6494 6495
## 6495 6496
## 6496 6497
## 6498 6499
## 6499 6500
## 6500 6501
## 6501 6502
## 6502 6503
## 6503 6504
## 6504 6505
## 6505 6506
## 6506 6507
## 6507 6508
## 6508 6509
## 6509 6510
## 6510 6511
## 6511 6512
## 6512 6513
## 6513 6514
## 6514 6515
## 6515 6516
## 6516 6517
## 6517 6518
## 6518 6519
## 6519 6520
## 6520 6521
## 6521 6522
## 6522 6523
## 6523 6524
## 6524 6525
## 6525 6526
## 6526 6527
## 6527 6528
## 6528 6529
## 6529 6530
## 6530 6531
## 6531 6532
## 6532 6533
## 6533 6534
## 6534 6535
## 6535 6536
## 6536 6537
## 6537 6538
## 6538 6539
## 6539 6540
## 6540 6541
## 6541 6542
## 6542 6543
## 6543 6544
## 6544 6545
## 6545 6546
## 6546 6547
## 6547 6548
## 6548 6549
## 6549 6550
## 6550 6551
## 6551 6552
## 6552 6553
## 6553 6554
## 6554 6555
## 6555 6556
## 6556 6557
## 6557 6558
## 6558 6559
## 6559 6560
## 6560 6561
## 6561 6562
## 6562 6563
## 6563 6564
## 6564 6565
## 6565 6566
## 6566 6567
## 6567 6568
## 6568 6569
## 6569 6570
## 6570 6571
## 6571 6572
## 6572 6573
## 6573 6574
## 6574 6575
## 6575 6576
## 6576 6577
## 6577 6578
## 6578 6579
## 6579 6580
## 6580 6581
## 6581 6582
## 6582 6583
## 6583 6584
## 6584 6585
## 6585 6586
## 6586 6587
## 6587 6588
## 6588 6589
## 6589 6590
## 6590 6591
## 6591 6592
## 6592 6593
## 6593 6594
## 6594 6595
## 6595 6596
## 6596 6597
## 6597 6598
## 6598 6599
## 6599 6600
## 6600 6601
## 6601 6602
## 6602 6603
## 6603 6604
## 6604 6605
## 6605 6606
## 6606 6607
## 6607 6608
## 6608 6609
## 6609 6610
## 6610 6611
## 6611 6612
## 6612 6613
## 6613 6614
## 6614 6615
## 6615 6616
## 6616 6617
## 6617 6618
## 6618 6619
## 6619 6620
## 6620 6621
## 6621 6622
## 6622 6623
## 6623 6624
## 6624 6625
## 6625 6626
## 6626 6627
## 6627 6628
## 6628 6629
## 6629 6630
## 6630 6631
## 6631 6632
## 6632 6633
## 6633 6634
## 6634 6635
## 6635 6636
## 6636 6637
## 6637 6638
## 6638 6639
## 6639 6640
## 6640 6641
## 6641 6642
## 6642 6643
## 6643 6644
## 6644 6645
## 6645 6646
## 6646 6647
## 6647 6648
## 6649 6650
## 6650 6651
## 6651 6652
## 6652 6653
## 6653 6654
## 6654 6655
## 6655 6656
## 6656 6657
## 6657 6658
## 6658 6659
## 6659 6660
## 6660 6661
## 6661 6662
## 6662 6663
## 6663 6664
## 6664 6665
## 6665 6666
## 6666 6667
## 6667 6668
## 6668 6669
## 6669 6670
## 6670 6671
## 6671 6672
## 6672 6673
## 6673 6674
## 6674 6675
## 6675 6676
## 6676 6677
## 6677 6678
## 6678 6679
## 6679 6680
## 6680 6681
## 6681 6682
## 6682 6683
## 6683 6684
## 6684 6685
## 6685 6686
## 6686 6687
## 6687 6688
## 6688 6689
## 6689 6690
## 6690 6691
## 6691 6692
## 6692 6693
## 6693 6694
## 6694 6695
## 6695 6696
## 6696 6697
## 6697 6698
## 6698 6699
## 6699 6700
## 6700 6701
## 6701 6702
## 6702 6703
## 6703 6704
## 6704 6705
## 6705 6706
## 6706 6707
## 6707 6708
## 6708 6709
## 6709 6710
## 6710 6711
## 6711 6712
## 6712 6713
## 6713 6714
## 6714 6715
## 6715 6716
## 6716 6717
## 6717 6718
## 6718 6719
## 6719 6720
## 6720 6721
## 6721 6722
## 6722 6723
## 6723 6724
## 6724 6725
## 6725 6726
## 6726 6727
## 6727 6728
## 6728 6729
## 6729 6730
## 6730 6731
## 6731 6732
## 6732 6733
## 6733 6734
## 6734 6735
## 6735 6736
## 6736 6737
## 6737 6738
## 6738 6739
## 6739 6740
## 6740 6741
## 6741 6742
## 6742 6743
## 6743 6744
## 6744 6745
## 6745 6746
## 6746 6747
## 6747 6748
## 6748 6749
## 6749 6750
## 6750 6751
## 6751 6752
## 6752 6753
## 6753 6754
## 6754 6755
## 6755 6756
## 6756 6757
## 6757 6758
## 6758 6759
## 6759 6760
## 6760 6761
## 6761 6762
## 6762 6763
## 6763 6764
## 6764 6765
## 6765 6766
## 6766 6767
## 6767 6768
## 6768 6769
## 6769 6770
## 6770 6771
## 6771 6772
## 6772 6773
## 6773 6774
## 6774 6775
## 6775 6776
## 6776 6777
## 6777 6778
## 6779 6780
## 6780 6781
## 6781 6782
## 6782 6783
## 6783 6784
## 6784 6785
## 6785 6786
## 6786 6787
## 6787 6788
## 6788 6789
## 6789 6790
## 6790 6791
## 6791 6792
## 6792 6793
## 6793 6794
## 6794 6795
## 6795 6796
## 6796 6797
## 6797 6798
## 6798 6799
## 6799 6800
## 6800 6801
## 6801 6802
## 6802 6803
## 6803 6804
## 6804 6805
## 6805 6806
## 6806 6807
## 6808 6809
## 6809 6810
## 6810 6811
## 6811 6812
## 6812 6813
## 6813 6814
## 6814 6815
## 6815 6816
## 6816 6817
## 6817 6818
## 6818 6819
## 6819 6820
## 6820 6821
## 6821 6822
## 6822 6823
## 6823 6824
## 6824 6825
## 6825 6826
## 6826 6827
## 6827 6828
## 6828 6829
## 6829 6830
## 6830 6831
## 6831 6832
## 6832 6833
## 6834 6835
## 6835 6836
## 6836 6837
## 6837 6838
## 6838 6839
## 6839 6840
## 6840 6841
## 6841 6842
## 6842 6843
## 6843 6844
## 6844 6845
## 6845 6846
## 6846 6847
## 6847 6848
## 6848 6849
## 6849 6850
## 6850 6851
## 6851 6852
## 6852 6853
## 6853 6854
## 6854 6855
## 6855 6856
## 6856 6857
## 6857 6858
## 6858 6859
## 6859 6860
## 6860 6861
## 6861 6862
## 6862 6863
## 6863 6864
## 6864 6865
## 6865 6866
## 6866 6867
## 6867 6868
## 6868 6869
## 6869 6870
## 6870 6871
## 6871 6872
## 6872 6873
## 6873 6874
## 6874 6875
## 6875 6876
## 6876 6877
## 6877 6878
## 6878 6879
## 6879 6880
## 6880 6881
## 6881 6882
## 6882 6883
## 6883 6884
## 6884 6885
## 6885 6886
## 6886 6887
## 6887 6888
## 6888 6889
## 6889 6890
## 6890 6891
## 6891 6892
## 6892 6893
## 6893 6894
## 6894 6895
## 6895 6896
## 6896 6897
## 6897 6898
## 6898 6899
## 6899 6900
## 6900 6901
## 6901 6902
## 6902 6903
## 6903 6904
## 6904 6905
## 6905 6906
## 6906 6907
## 6907 6908
## 6908 6909
## 6909 6910
## 6910 6911
## 6911 6912
## 6912 6913
## 6913 6914
## 6914 6915
## 6915 6916
## 6916 6917
## 6917 6918
## 6918 6919
## 6919 6920
## 6921 6922
## 6922 6923
## 6923 6924
## 6924 6925
## 6925 6926
## 6926 6927
## 6928 6929
## 6929 6930
## 6930 6931
## 6931 6932
## 6932 6933
## 6933 6934
## 6934 6935
## 6935 6936
## 6936 6937
## 6937 6938
## 6939 6940
## 6940 6941
## 6941 6942
## 6942 6943
## 6943 6944
## 6944 6945
## 6945 6946
## 6946 6947
## 6947 6948
## 6948 6949
## 6949 6950
## 6950 6951
## 6951 6952
## 6952 6953
## 6953 6954
## 6954 6955
## 6955 6956
## 6956 6957
## 6957 6958
## 6958 6959
## 6959 6960
## 6960 6961
## 6961 6962
## 6962 6963
## 6963 6964
## 6964 6965
## 6965 6966
## 6966 6967
## 6968 6969
## 6970 6971
## 6971 6972
## 6972 6973
## 6973 6974
## 6974 6975
## 6975 6976
## 6976 6977
## 6977 6978
## 6978 6979
## 6979 6980
## 6980 6981
## 6981 6982
## 6982 6983
## 6983 6984
## 6984 6985
## 6985 6986
## 6986 6987
## 6987 6988
## 6988 6989
## 6989 6990
## 6990 6991
## 6991 6992
## 6992 6993
## 6993 6994
## 6994 6995
## 6995 6996
## 6996 6997
## 6997 6998
## 6998 6999
## 6999 7000
## 7000 7001
## 7001 7002
## 7002 7003
## 7003 7004
## 7004 7005
## 7005 7006
## 7006 7007
## 7007 7008
## 7008 7009
## 7009 7010
## 7010 7011
## 7011 7012
## 7012 7013
## 7013 7014
## 7014 7015
## 7015 7016
## 7016 7017
## 7017 7018
## 7018 7019
## 7019 7020
## 7020 7021
## 7021 7022
## 7022 7023
## 7023 7024
## 7024 7025
## 7025 7026
## 7026 7027
## 7027 7028
## 7028 7029
## 7029 7030
## 7030 7031
## 7031 7032
## 7032 7033
## 7033 7034
## 7034 7035
## 7035 7036
## 7037 7038
## 7038 7039
## 7039 7040
## 7040 7041
## 7041 7042
## 7042 7043
## 7043 7044
## 7044 7045
## 7045 7046
## 7046 7047
## 7047 7048
## 7048 7049
## 7049 7050
## 7050 7051
## 7051 7052
## 7052 7053
## 7053 7054
## 7054 7055
## 7055 7056
## 7056 7057
## 7057 7058
## 7058 7059
## 7059 7060
## 7060 7061
## 7061 7062
## 7062 7063
## 7063 7064
## 7064 7065
## 7065 7066
## 7066 7067
## 7067 7068
## 7068 7069
## 7069 7070
## 7070 7071
## 7071 7072
## 7072 7073
## 7073 7074
## 7074 7075
## 7075 7076
## 7076 7077
## 7077 7078
## 7078 7079
## 7079 7080
## 7080 7081
## 7081 7082
## 7082 7083
## 7083 7084
## 7084 7085
## 7085 7086
## 7086 7087
## 7087 7088
## 7088 7089
## 7089 7090
## 7090 7091
## 7091 7092
## 7092 7093
## 7093 7094
## 7094 7095
## 7095 7096
## 7096 7097
## 7097 7098
## 7098 7099
## 7099 7100
## 7100 7101
## 7101 7102
## 7102 7103
## 7103 7104
## 7104 7105
## 7105 7106
## 7106 7107
## 7107 7108
## 7108 7109
## 7109 7110
## 7110 7111
## 7111 7112
## 7112 7113
## 7113 7114
## 7114 7115
## 7115 7116
## 7116 7117
## 7117 7118
## 7118 7119
## 7119 7120
## 7120 7121
## 7121 7122
## 7122 7123
## 7123 7124
## 7124 7125
## 7125 7126
## 7126 7127
## 7127 7128
## 7128 7129
## 7129 7130
## 7130 7131
## 7131 7132
## 7132 7133
## 7133 7134
## 7134 7135
## 7135 7136
## 7136 7137
## 7137 7138
## 7138 7139
## 7139 7140
## 7140 7141
## 7141 7142
## 7142 7143
## 7143 7144
## 7144 7145
## 7145 7146
## 7146 7147
## 7147 7148
## 7148 7149
## 7149 7150
## 7150 7151
## 7151 7152
## 7152 7153
## 7153 7154
## 7154 7155
## 7155 7156
## 7156 7157
## 7157 7158
## 7158 7159
## 7159 7160
## 7160 7161
## 7161 7162
## 7162 7163
## 7163 7164
## 7164 7165
## 7165 7166
## 7166 7167
## 7167 7168
## 7168 7169
## 7169 7170
## 7170 7171
## 7171 7172
## 7172 7173
## 7173 7174
## 7174 7175
## 7175 7176
## 7176 7177
## 7177 7178
## 7178 7179
## 7179 7180
## 7180 7181
## 7181 7182
## 7183 7184
## 7184 7185
## 7185 7186
## 7186 7187
## 7187 7188
## 7188 7189
## 7189 7190
## 7190 7191
## 7191 7192
## 7192 7193
## 7193 7194
## 7194 7195
## 7195 7196
## 7196 7197
## 7197 7198
## 7198 7199
## 7199 7200
## 7200 7201
## 7201 7202
## 7202 7203
## 7203 7204
## 7204 7205
## 7205 7206
## 7206 7207
## 7207 7208
## 7208 7209
## 7209 7210
## 7210 7211
## 7211 7212
## 7212 7213
## 7213 7214
## 7215 7216
## 7216 7217
## 7217 7218
## 7218 7219
## 7219 7220
## 7220 7221
## 7221 7222
## 7222 7223
## 7223 7224
## 7224 7225
## 7225 7226
## 7226 7227
## 7227 7228
## 7228 7229
## 7229 7230
## 7230 7231
## 7231 7232
## 7232 7233
## 7233 7234
## 7234 7235
## 7235 7236
## 7236 7237
## 7237 7238
## 7238 7239
## 7239 7240
## 7240 7241
## 7241 7242
## 7242 7243
## 7243 7244
## 7244 7245
## 7245 7246
## 7246 7247
## 7247 7248
## 7248 7249
## 7249 7250
## 7250 7251
## 7251 7252
## 7252 7253
## 7253 7254
## 7254 7255
## 7255 7256
## 7256 7257
## 7257 7258
## 7258 7259
## 7259 7260
## 7260 7261
## 7261 7262
## 7262 7263
## 7263 7264
## 7264 7265
## 7265 7266
## 7266 7267
## 7267 7268
## 7268 7269
## 7269 7270
## 7270 7271
## 7271 7272
## 7272 7273
## 7273 7274
## 7274 7275
## 7275 7276
## 7276 7277
## 7277 7278
## 7278 7279
## 7279 7280
## 7280 7281
## 7281 7282
## 7282 7283
## 7283 7284
## 7284 7285
## 7285 7286
## 7286 7287
## 7287 7288
## 7288 7289
## 7289 7290
## 7290 7291
## 7291 7292
## 7292 7293
## 7293 7294
## 7294 7295
## 7295 7296
## 7296 7297
## 7297 7298
## 7298 7299
## 7299 7300
## 7300 7301
## 7301 7302
## 7302 7303
## 7303 7304
## 7304 7305
## 7305 7306
## 7306 7307
## 7307 7308
## 7308 7309
## 7309 7310
## 7310 7311
## 7311 7312
## 7312 7313
## 7313 7314
## 7314 7315
## 7315 7316
## 7316 7317
## 7317 7318
## 7318 7319
## 7320 7321
## 7321 7322
## 7322 7323
## 7323 7324
## 7324 7325
## 7325 7326
## 7326 7327
## 7327 7328
## 7328 7329
## 7329 7330
## 7330 7331
## 7331 7332
## 7332 7333
## 7333 7334
## 7334 7335
## 7335 7336
## 7336 7337
## 7337 7338
## 7338 7339
## 7339 7340
## 7340 7341
## 7341 7342
## 7342 7343
## 7343 7344
## 7344 7345
## 7345 7346
## 7346 7347
## 7347 7348
## 7348 7349
## 7349 7350
## 7350 7351
## 7351 7352
## 7353 7354
## 7354 7355
## 7355 7356
## 7356 7357
## 7357 7358
## 7358 7359
## 7359 7360
## 7360 7361
## 7361 7362
## 7362 7363
## 7363 7364
## 7364 7365
## 7365 7366
## 7366 7367
## 7367 7368
## 7368 7369
## 7369 7370
## 7372 7373
## 7373 7374
## 7374 7375
## 7375 7376
## 7376 7377
## 7377 7378
## 7378 7379
## 7379 7380
## 7380 7381
## 7381 7382
## 7382 7383
## 7384 7385
## 7385 7386
## 7386 7387
## 7387 7388
## 7388 7389
## 7389 7390
## 7390 7391
## 7391 7392
## 7392 7393
## 7393 7394
## 7394 7395
## 7395 7396
## 7396 7397
## 7397 7398
## 7398 7399
## 7399 7400
## 7400 7401
## 7401 7402
## 7402 7403
## 7403 7404
## 7404 7405
## 7405 7406
## 7406 7407
## 7408 7409
## 7409 7410
## 7410 7411
## 7411 7412
## 7412 7413
## 7413 7414
## 7414 7415
## 7415 7416
## 7416 7417
## 7417 7418
## 7418 7419
## 7419 7420
## 7420 7421
## 7421 7422
## 7422 7423
## 7423 7424
## 7425 7426
## 7426 7427
## 7427 7428
## 7428 7429
## 7429 7430
## 7430 7431
## 7431 7432
## 7432 7433
## 7433 7434
## 7434 7435
## 7435 7436
## 7436 7437
## 7437 7438
## 7438 7439
## 7439 7440
## 7440 7441
## 7441 7442
## 7442 7443
## 7443 7444
## 7444 7445
## 7445 7446
## 7446 7447
## 7447 7448
## 7448 7449
## 7449 7450
## 7450 7451
## 7451 7452
## 7452 7453
## 7453 7454
## 7454 7455
## 7455 7456
## 7456 7457
## 7457 7458
## 7458 7459
## 7459 7460
## 7460 7461
## 7461 7462
## 7462 7463
## 7463 7464
## 7464 7465
## 7465 7466
## 7466 7467
## 7467 7468
## 7468 7469
## 7469 7470
## 7470 7471
## 7471 7472
## 7472 7473
## 7473 7474
## 7474 7475
## 7475 7476
## 7476 7477
## 7477 7478
## 7478 7479
## 7479 7480
## 7480 7481
## 7481 7482
## 7482 7483
## 7483 7484
## 7484 7485
## 7485 7486
## 7486 7487
## 7487 7488
## 7488 7489
## 7489 7490
## 7490 7491
## 7491 7492
## 7492 7493
## 7493 7494
## 7494 7495
## 7495 7496
## 7496 7497
## 7497 7498
## 7498 7499
## 7499 7500
## 7500 7501
## 7501 7502
## 7502 7503
## 7503 7504
## 7504 7505
## 7505 7506
## 7506 7507
## 7507 7508
## 7508 7509
## 7509 7510
## 7510 7511
## 7511 7512
## 7512 7513
## 7513 7514
## 7514 7515
## 7515 7516
## 7516 7517
## 7517 7518
## 7518 7519
## 7519 7520
## 7520 7521
## 7521 7522
## 7522 7523
## 7523 7524
## 7524 7525
## 7525 7526
## 7526 7527
## 7527 7528
## 7528 7529
## 7529 7530
## 7530 7531
## 7531 7532
## 7532 7533
## 7533 7534
## 7534 7535
## 7535 7536
## 7536 7537
## 7537 7538
## 7538 7539
## 7539 7540
## 7540 7541
## 7541 7542
## 7542 7543
## 7543 7544
## 7544 7545
## 7545 7546
## 7546 7547
## 7547 7548
## 7548 7549
## 7549 7550
## 7550 7551
## 7551 7552
## 7552 7553
## 7553 7554
## 7554 7555
## 7555 7556
## 7556 7557
## 7557 7558
## 7558 7559
## 7559 7560
## 7560 7561
## 7561 7562
## 7562 7563
## 7563 7564
## 7564 7565
## 7565 7566
## 7566 7567
## 7567 7568
## 7568 7569
## 7569 7570
## 7570 7571
## 7571 7572
## 7572 7573
## 7573 7574
## 7574 7575
## 7575 7576
## 7576 7577
## 7577 7578
## 7578 7579
## 7579 7580
## 7580 7581
## 7581 7582
## 7582 7583
## 7583 7584
## 7584 7585
## 7585 7586
## 7586 7587
## 7587 7588
## 7588 7589
## 7589 7590
## 7590 7591
## 7591 7592
## 7592 7593
## 7593 7594
## 7594 7595
## 7595 7596
## 7596 7597
## 7597 7598
## 7598 7599
## 7599 7600
## 7600 7601
## 7601 7602
## 7602 7603
## 7603 7604
## 7604 7605
## 7605 7606
## 7606 7607
## 7607 7608
## 7608 7609
## 7609 7610
## 7610 7611
## 7611 7612
## 7612 7613
## 7613 7614
## 7614 7615
## 7615 7616
## 7617 7618
## 7618 7619
## 7619 7620
## 7620 7621
## 7621 7622
## 7622 7623
## 7623 7624
## 7624 7625
## 7625 7626
## 7626 7627
## 7627 7628
## 7628 7629
## 7629 7630
## 7630 7631
## 7631 7632
## 7632 7633
## 7633 7634
## 7634 7635
## 7635 7636
## 7636 7637
## 7637 7638
## 7638 7639
## 7639 7640
## 7640 7641
## 7641 7642
## 7642 7643
## 7643 7644
## 7644 7645
## 7645 7646
## 7646 7647
## 7647 7648
## 7648 7649
## 7650 7651
## 7651 7652
## 7652 7653
## 7653 7654
## 7654 7655
## 7655 7656
## 7656 7657
## 7657 7658
## 7658 7659
## 7659 7660
## 7660 7661
## 7661 7662
## 7662 7663
## 7663 7664
## 7664 7665
## 7665 7666
## 7666 7667
## 7667 7668
## 7668 7669
## 7669 7670
## 7670 7671
## 7671 7672
## 7672 7673
## 7673 7674
## 7674 7675
## 7675 7676
## 7676 7677
## 7677 7678
## 7678 7679
## 7679 7680
## 7680 7681
## 7681 7682
## 7682 7683
## 7683 7684
## 7684 7685
## 7685 7686
## 7686 7687
## 7687 7688
## 7688 7689
## 7689 7690
## 7690 7691
## 7691 7692
## 7692 7693
## 7693 7694
## 7694 7695
## 7695 7696
## 7696 7697
## 7697 7698
## 7698 7699
## 7699 7700
## 7700 7701
## 7701 7702
## 7702 7703
## 7703 7704
## 7704 7705
## 7705 7706
## 7706 7707
## 7707 7708
## 7708 7709
## 7709 7710
## 7710 7711
## 7711 7712
## 7712 7713
## 7713 7714
## 7714 7715
## 7715 7716
## 7716 7717
## 7717 7718
## 7718 7719
## 7719 7720
## 7720 7721
## 7722 7723
## 7723 7724
## 7724 7725
## 7725 7726
## 7726 7727
## 7727 7728
## 7728 7729
## 7729 7730
## 7730 7731
## 7731 7732
## 7732 7733
## 7733 7734
## 7734 7735
## 7735 7736
## 7736 7737
## 7737 7738
## 7738 7739
## 7739 7740
## 7740 7741
## 7741 7742
## 7742 7743
## 7743 7744
## 7744 7745
## 7745 7746
## 7746 7747
## 7747 7748
## 7748 7749
## 7749 7750
## 7750 7751
## 7751 7752
## 7752 7753
## 7753 7754
## 7754 7755
## 7755 7756
## 7756 7757
## 7757 7758
## 7758 7759
## 7759 7760
## 7760 7761
## 7761 7762
## 7762 7763
## 7763 7764
## 7765 7766
## 7766 7767
## 7767 7768
## 7768 7769
## 7769 7770
## 7770 7771
## 7771 7772
## 7772 7773
## 7773 7774
## 7774 7775
## 7775 7776
## 7776 7777
## 7777 7778
## 7778 7779
## 7779 7780
## 7780 7781
## 7781 7782
## 7782 7783
## 7783 7784
## 7784 7785
## 7785 7786
## 7786 7787
## 7787 7788
## 7788 7789
## 7789 7790
## 7790 7791
## 7791 7792
## 7792 7793
## 7793 7794
## 7794 7795
## 7795 7796
## 7796 7797
## 7797 7798
## 7798 7799
## 7799 7800
## 7800 7801
## 7801 7802
## 7802 7803
## 7803 7804
## 7804 7805
## 7805 7806
## 7806 7807
## 7807 7808
## 7808 7809
## 7809 7810
## 7810 7811
## 7811 7812
## 7812 7813
## 7813 7814
## 7814 7815
## 7815 7816
## 7816 7817
## 7817 7818
## 7818 7819
## 7819 7820
## 7820 7821
## 7821 7822
## 7822 7823
## 7823 7824
## 7824 7825
## 7825 7826
## 7826 7827
## 7827 7828
## 7828 7829
## 7829 7830
## 7830 7831
## 7831 7832
## 7832 7833
## 7833 7834
## 7834 7835
## 7835 7836
## 7836 7837
## 7837 7838
## 7838 7839
## 7839 7840
## 7840 7841
## 7841 7842
## 7842 7843
## 7843 7844
## 7844 7845
## 7845 7846
## 7846 7847
## 7847 7848
## 7848 7849
## 7849 7850
## 7850 7851
## 7851 7852
## 7852 7853
## 7853 7854
## 7854 7855
## 7855 7856
## 7856 7857
## 7857 7858
## 7858 7859
## 7859 7860
## 7860 7861
## 7861 7862
## 7862 7863
## 7863 7864
## 7864 7865
## 7865 7866
## 7866 7867
## 7867 7868
## 7868 7869
## 7869 7870
## 7870 7871
## 7871 7872
## 7872 7873
## 7873 7874
## 7874 7875
## 7875 7876
## 7876 7877
## 7877 7878
## 7878 7879
## 7879 7880
## 7880 7881
## 7881 7882
## 7882 7883
## 7883 7884
## 7884 7885
## 7885 7886
## 7886 7887
## 7887 7888
## 7888 7889
## 7889 7890
## 7890 7891
## 7891 7892
## 7892 7893
## 7893 7894
## 7894 7895
## 7895 7896
## 7896 7897
## 7897 7898
## 7898 7899
## 7899 7900
## 7900 7901
## 7901 7902
## 7902 7903
## 7903 7904
## 7904 7905
## 7905 7906
## 7906 7907
## 7907 7908
## 7908 7909
## 7910 7911
## 7911 7912
## 7912 7913
## 7913 7914
## 7914 7915
## 7915 7916
## 7916 7917
## 7917 7918
## 7918 7919
## 7919 7920
## 7920 7921
## 7921 7922
## 7922 7923
## 7923 7924
## 7924 7925
## 7925 7926
## 7926 7927
## 7927 7928
## 7928 7929
## 7929 7930
## 7930 7931
## 7931 7932
## 7932 7933
## 7933 7934
## 7934 7935
## 7935 7936
## 7936 7937
## 7937 7938
## 7938 7939
## 7939 7940
## 7940 7941
## 7941 7942
## 7942 7943
## 7943 7944
## 7944 7945
## 7945 7946
## 7946 7947
## 7948 7949
## 7949 7950
## 7950 7951
## 7951 7952
## 7952 7953
## 7953 7954
## 7954 7955
## 7955 7956
## 7956 7957
## 7957 7958
## 7958 7959
## 7959 7960
## 7960 7961
## 7961 7962
## 7962 7963
## 7963 7964
## 7964 7965
## 7965 7966
## 7966 7967
## 7967 7968
## 7968 7969
## 7969 7970
## 7970 7971
## 7971 7972
## 7972 7973
## 7973 7974
## 7974 7975
## 7975 7976
## 7976 7977
## 7977 7978
## 7978 7979
## 7979 7980
## 7980 7981
## 7981 7982
## 7982 7983
## 7983 7984
## 7984 7985
## 7985 7986
## 7986 7987
## 7987 7988
## 7988 7989
## 7989 7990
## 7990 7991
## 7991 7992
## 7992 7993
## 7993 7994
## 7994 7995
## 7995 7996
## 7996 7997
## 7997 7998
## 7998 7999
## 7999 8000
## 8000 8001
## 8001 8002
## 8002 8003
## 8003 8004
## 8004 8005
## 8005 8006
## 8006 8007
## 8007 8008
## 8008 8009
## 8009 8010
## 8010 8011
## 8011 8012
## 8012 8013
## 8013 8014
## 8014 8015
## 8015 8016
## 8016 8017
## 8017 8018
## 8018 8019
## 8019 8020
## 8020 8021
## 8021 8022
## 8022 8023
## 8023 8024
## 8024 8025
## 8025 8026
## 8026 8027
## 8027 8028
## 8028 8029
## 8029 8030
## 8030 8031
## 8031 8032
## 8032 8033
## 8033 8034
## 8034 8035
## 8035 8036
## 8036 8037
## 8037 8038
## 8038 8039
## 8039 8040
## 8040 8041
## 8041 8042
## 8042 8043
## 8043 8044
## 8044 8045
## 8046 8047
## 8047 8048
## 8048 8049
## 8049 8050
## 8050 8051
## 8051 8052
## 8052 8053
## 8053 8054
## 8054 8055
## 8055 8056
## 8056 8057
## 8057 8058
## 8058 8059
## 8059 8060
## 8060 8061
## 8061 8062
## 8062 8063
## 8063 8064
## 8064 8065
## 8065 8066
## 8066 8067
## 8067 8068
## 8068 8069
## 8069 8070
## 8070 8071
## 8071 8072
## 8072 8073
## 8073 8074
## 8074 8075
## 8075 8076
## 8076 8077
## 8077 8078
## 8078 8079
## 8079 8080
## 8080 8081
## 8081 8082
## 8082 8083
## 8083 8084
## 8084 8085
## 8085 8086
## 8086 8087
## 8088 8089
## 8089 8090
## 8090 8091
## 8091 8092
## 8092 8093
## 8093 8094
## 8094 8095
## 8095 8096
## 8096 8097
## 8097 8098
## 8098 8099
## 8099 8100
## 8100 8101
## 8101 8102
## 8102 8103
## 8103 8104
## 8104 8105
## 8105 8106
## 8106 8107
## 8107 8108
## 8108 8109
## 8109 8110
## 8110 8111
## 8111 8112
## 8112 8113
## 8113 8114
## 8114 8115
## 8115 8116
## 8116 8117
## 8117 8118
## 8118 8119
## 8119 8120
## 8120 8121
## 8121 8122
## 8122 8123
## 8123 8124
## 8124 8125
## 8125 8126
## 8126 8127
## 8127 8128
## 8128 8129
## 8129 8130
## 8130 8131
## 8131 8132
## 8132 8133
## 8133 8134
## 8134 8135
## 8135 8136
## 8136 8137
## 8137 8138
## 8138 8139
## 8139 8140
## 8140 8141
## 8141 8142
## 8142 8143
## 8143 8144
## 8144 8145
## 8145 8146
## 8146 8147
## 8147 8148
## 8148 8149
## 8149 8150
## 8150 8151
## 8151 8152
## 8152 8153
## 8153 8154
## 8154 8155
## 8155 8156
## 8156 8157
## 8157 8158
## 8159 8160
## 8160 8161
## 8161 8162
## 8162 8163
## 8163 8164
## 8164 8165
## 8165 8166
## 8166 8167
## 8167 8168
## 8169 8170
## 8170 8171
## 8171 8172
## 8172 8173
## 8173 8174
## 8174 8175
## 8175 8176
## 8176 8177
## 8177 8178
## 8178 8179
## 8179 8180
## 8180 8181
## 8181 8182
## 8182 8183
## 8183 8184
## 8184 8185
## 8185 8186
## 8186 8187
## 8187 8188
## 8188 8189
## 8189 8190
## 8190 8191
## 8191 8192
## 8192 8193
## 8193 8194
## 8194 8195
## 8195 8196
## 8196 8197
## 8197 8198
## 8198 8199
## 8199 8200
## 8200 8201
## 8201 8202
## 8202 8203
## 8203 8204
## 8204 8205
## 8206 8207
## 8207 8208
## 8208 8209
## 8209 8210
## 8210 8211
## 8211 8212
## 8212 8213
## 8213 8214
## 8214 8215
## 8215 8216
## 8216 8217
## 8217 8218
## 8218 8219
## 8219 8220
## 8220 8221
## 8221 8222
## 8222 8223
## 8223 8224
## 8225 8226
## 8226 8227
## 8227 8228
## 8228 8229
## 8229 8230
## 8230 8231
## 8231 8232
## 8232 8233
## 8233 8234
## 8234 8235
## 8235 8236
## 8236 8237
## 8237 8238
## 8238 8239
## 8239 8240
## 8240 8241
## 8241 8242
## 8242 8243
## 8243 8244
## 8244 8245
## 8245 8246
## 8246 8247
## 8247 8248
## 8248 8249
## 8249 8250
## 8250 8251
## 8251 8252
## 8252 8253
## 8253 8254
## 8254 8255
## 8255 8256
## 8256 8257
## 8257 8258
## 8258 8259
## 8259 8260
## 8260 8261
## 8261 8262
## 8262 8263
## 8263 8264
## 8264 8265
## 8265 8266
## 8266 8267
## 8267 8268
## 8268 8269
## 8269 8270
## 8270 8271
## 8271 8272
## 8272 8273
## 8273 8274
## 8274 8275
## 8275 8276
## 8276 8277
## 8277 8278
## 8278 8279
## 8279 8280
## 8280 8281
## 8281 8282
## 8282 8283
## 8283 8284
## 8284 8285
## 8285 8286
## 8286 8287
## 8287 8288
## 8288 8289
## 8289 8290
## 8290 8291
## 8291 8292
## 8292 8293
## 8293 8294
## 8294 8295
## 8295 8296
## 8296 8297
## 8297 8298
## 8298 8299
## 8299 8300
## 8300 8301
## 8301 8302
## 8302 8303
## 8303 8304
## 8304 8305
## 8305 8306
## 8306 8307
## 8307 8308
## 8308 8309
## 8309 8310
## 8310 8311
## 8311 8312
## 8312 8313
## 8313 8314
## 8315 8316
## 8316 8317
## 8317 8318
## 8318 8319
## 8319 8320
## 8320 8321
## 8321 8322
## 8322 8323
## 8323 8324
## 8324 8325
## 8325 8326
## 8326 8327
## 8327 8328
## 8328 8329
## 8329 8330
## 8330 8331
## 8331 8332
## 8332 8333
## 8333 8334
## 8334 8335
## 8336 8337
## 8337 8338
## 8338 8339
## 8339 8340
## 8340 8341
## 8341 8342
## 8342 8343
## 8343 8344
## 8344 8345
## 8345 8346
## 8346 8347
## 8347 8348
## 8348 8349
## 8349 8350
## 8350 8351
## 8351 8352
## 8352 8353
## 8353 8354
## 8354 8355
## 8355 8356
## 8356 8357
## 8357 8358
## 8358 8359
## 8359 8360
## 8360 8361
## 8361 8362
## 8362 8363
## 8363 8364
## 8364 8365
## 8365 8366
## 8366 8367
## 8367 8368
## 8368 8369
## 8369 8370
## 8370 8371
## 8371 8372
## 8372 8373
## 8373 8374
## 8374 8375
## 8375 8376
## 8376 8377
## 8378 8379
## 8379 8380
## 8380 8381
## 8381 8382
## 8382 8383
## 8383 8384
## 8384 8385
## 8385 8386
## 8386 8387
## 8387 8388
## 8388 8389
## 8389 8390
## 8390 8391
## 8391 8392
## 8392 8393
## 8393 8394
## 8394 8395
## 8395 8396
## 8396 8397
## 8397 8398
## 8398 8399
## 8399 8400
## 8400 8401
## 8401 8402
## 8402 8403
## 8403 8404
## 8404 8405
## 8405 8406
## 8406 8407
## 8407 8408
## 8408 8409
## 8409 8410
## 8410 8411
## 8411 8412
## 8412 8413
## 8413 8414
## 8414 8415
## 8415 8416
## 8416 8417
## 8417 8418
## 8418 8419
## 8419 8420
## 8420 8421
## 8421 8422
## 8422 8423
## 8423 8424
## 8424 8425
## 8425 8426
## 8426 8427
## 8427 8428
## 8428 8429
## 8429 8430
## 8430 8431
## 8431 8432
## 8432 8433
## 8433 8434
## 8434 8435
## 8435 8436
## 8436 8437
## 8437 8438
## 8438 8439
## 8439 8440
## 8441 8442
## 8442 8443
## 8443 8444
## 8444 8445
## 8445 8446
## 8446 8447
## 8447 8448
## 8448 8449
## 8449 8450
## 8450 8451
## 8451 8452
## 8452 8453
## 8453 8454
## 8454 8455
## 8455 8456
## 8456 8457
## 8457 8458
## 8458 8459
## 8459 8460
## 8460 8461
## 8461 8462
## 8462 8463
## 8463 8464
## 8464 8465
## 8465 8466
## 8466 8467
## 8467 8468
## 8468 8469
## 8469 8470
## 8470 8471
## 8471 8472
## 8472 8473
## 8473 8474
## 8474 8475
## 8475 8476
## 8476 8477
## 8477 8478
## 8478 8479
## 8479 8480
## 8480 8481
## 8481 8482
## 8482 8483
## 8483 8484
## 8484 8485
## 8485 8486
## 8486 8487
## 8487 8488
## 8488 8489
## 8489 8490
## 8490 8491
## 8491 8492
## 8492 8493
## 8493 8494
## 8494 8495
## 8495 8496
## 8496 8497
## 8497 8498
## 8498 8499
## 8499 8500
## 8500 8501
## 8501 8502
## 8502 8503
## 8503 8504
## 8504 8505
## 8505 8506
## 8506 8507
## 8507 8508
## 8508 8509
## 8509 8510
## 8510 8511
## 8511 8512
## 8512 8513
## 8513 8514
## 8514 8515
## 8515 8516
## 8516 8517
## 8517 8518
## 8518 8519
## 8519 8520
## 8520 8521
## 8521 8522
## 8522 8523
## 8523 8524
## 8524 8525
## 8525 8526
## 8526 8527
## 8527 8528
## 8528 8529
## 8529 8530
## 8530 8531
## 8531 8532
## 8532 8533
## 8533 8534
## 8534 8535
## 8535 8536
## 8536 8537
## 8537 8538
## 8538 8539
## 8539 8540
## 8540 8541
## 8541 8542
## 8542 8543
## 8543 8544
## 8544 8545
## 8545 8546
## 8546 8547
## 8547 8548
## 8548 8549
## 8549 8550
## 8550 8551
## 8551 8552
## 8552 8553
## 8553 8554
## 8555 8556
## 8556 8557
## 8557 8558
## 8558 8559
## 8559 8560
## 8560 8561
## 8561 8562
## 8562 8563
## 8563 8564
## 8564 8565
## 8565 8566
## 8566 8567
## 8567 8568
## 8568 8569
## 8569 8570
## 8570 8571
## 8571 8572
## 8572 8573
## 8573 8574
## 8574 8575
## 8575 8576
## 8576 8577
## 8577 8578
## 8578 8579
## 8579 8580
## 8580 8581
## 8581 8582
## 8582 8583
## 8583 8584
## 8584 8585
## 8585 8586
## 8586 8587
## 8587 8588
## 8588 8589
## 8589 8590
## 8590 8591
## 8591 8592
## 8592 8593
## 8593 8594
## 8594 8595
## 8595 8596
## 8596 8597
## 8597 8598
## 8598 8599
## 8599 8600
## 8600 8601
## 8601 8602
## 8602 8603
## 8603 8604
## 8604 8605
## 8605 8606
## 8606 8607
## 8607 8608
## 8608 8609
## 8609 8610
## 8610 8611
## 8611 8612
## 8612 8613
## 8613 8614
## 8614 8615
## 8615 8616
## 8616 8617
## 8617 8618
## 8618 8619
## 8619 8620
## 8620 8621
## 8622 8623
## 8623 8624
## 8624 8625
## 8625 8626
## 8626 8627
## 8627 8628
## 8628 8629
## 8629 8630
## 8630 8631
## 8631 8632
## 8632 8633
## 8633 8634
## 8634 8635
## 8635 8636
## 8636 8637
## 8637 8638
## 8638 8639
## 8639 8640
## 8640 8641
## 8641 8642
## 8642 8643
## 8643 8644
## 8644 8645
## 8645 8646
## 8646 8647
## 8647 8648
## 8648 8649
## 8649 8650
## 8650 8651
## 8651 8652
## 8652 8653
## 8653 8654
## 8654 8655
## 8655 8656
## 8656 8657
## 8657 8658
## 8658 8659
## 8659 8660
## 8660 8661
## 8661 8662
## 8662 8663
## 8663 8664
## 8664 8665
## 8665 8666
## 8666 8667
## 8667 8668
## 8668 8669
## 8669 8670
## 8670 8671
## 8671 8672
## 8672 8673
## 8673 8674
## 8674 8675
## 8675 8676
## 8676 8677
## 8677 8678
## 8678 8679
## 8679 8680
## 8680 8681
## 8681 8682
## 8682 8683
## 8683 8684
## 8684 8685
## 8685 8686
## 8686 8687
## 8687 8688
## 8688 8689
## 8689 8690
## 8690 8691
## 8691 8692
## 8692 8693
## 8693 8694
## 8694 8695
## 8695 8696
## 8696 8697
## 8697 8698
## 8698 8699
## 8699 8700
## 8700 8701
## 8701 8702
## 8702 8703
## 8703 8704
## 8704 8705
## 8705 8706
## 8706 8707
## 8707 8708
## 8709 8710
## 8710 8711
## 8711 8712
## 8712 8713
## 8713 8714
## 8714 8715
## 8715 8716
## 8716 8717
## 8717 8718
## 8718 8719
## 8719 8720
## 8720 8721
## 8721 8722
## 8722 8723
## 8723 8724
## 8724 8725
## 8725 8726
## 8726 8727
## 8727 8728
## 8728 8729
## 8729 8730
## 8730 8731
## 8731 8732
## 8732 8733
## 8733 8734
## 8734 8735
## 8735 8736
## 8736 8737
## 8737 8738
## 8738 8739
## 8739 8740
## 8740 8741
## 8741 8742
## 8742 8743
## 8743 8744
## 8744 8745
## 8745 8746
## 8746 8747
## 8747 8748
## 8748 8749
## 8749 8750
## 8750 8751
## 8751 8752
## 8752 8753
## 8753 8754
## 8754 8755
## 8755 8756
## 8756 8757
## 8757 8758
## 8758 8759
## 8759 8760
## 8760 8761
## 8762 8763
## 8763 8764
## 8764 8765
## 8765 8766
## 8766 8767
## 8767 8768
## 8768 8769
## 8769 8770
## 8770 8771
## 8771 8772
## 8772 8773
## 8773 8774
## 8774 8775
## 8775 8776
## 8776 8777
## 8777 8778
## 8778 8779
## 8779 8780
## 8780 8781
## 8781 8782
## 8782 8783
## 8783 8784
## 8784 8785
## 8785 8786
## 8786 8787
## 8787 8788
## 8788 8789
## 8789 8790
## 8790 8791
## 8791 8792
## 8792 8793
## 8793 8794
## 8794 8795
## 8795 8796
## 8796 8797
## 8797 8798
## 8798 8799
## 8799 8800
## 8800 8801
## 8801 8802
## 8802 8803
## 8803 8804
## 8804 8805
## 8805 8806
## 8806 8807
## 8807 8808
## 8808 8809
## 8809 8810
## 8810 8811
## 8811 8812
## 8812 8813
## 8813 8814
## 8814 8815
## 8815 8816
## 8816 8817
## 8817 8818
## 8818 8819
## 8819 8820
## 8820 8821
## 8821 8822
## 8822 8823
## 8823 8824
## 8824 8825
## 8825 8826
## 8826 8827
## 8827 8828
## 8828 8829
## 8829 8830
## 8830 8831
## 8831 8832
## 8832 8833
## 8833 8834
## 8834 8835
## 8835 8836
## 8836 8837
## 8837 8838
## 8838 8839
## 8839 8840
## 8840 8841
## 8841 8842
## 8842 8843
## 8843 8844
## 8844 8845
## 8845 8846
## 8846 8847
## 8847 8848
## 8848 8849
## 8849 8850
## 8850 8851
## 8851 8852
## 8852 8853
## 8853 8854
## 8854 8855
## 8855 8856
## 8856 8857
## 8857 8858
## 8858 8859
## 8859 8860
## 8860 8861
## 8861 8862
## 8862 8863
## 8863 8864
## 8864 8865
## 8865 8866
## 8866 8867
## 8867 8868
## 8868 8869
## 8869 8870
## 8870 8871
## 8871 8872
## 8872 8873
## 8873 8874
## 8874 8875
## 8875 8876
## 8876 8877
## 8877 8878
## 8878 8879
## 8879 8880
## 8880 8881
## 8881 8882
## 8882 8883
## 8883 8884
## 8884 8885
## 8885 8886
## 8886 8887
## 8887 8888
## 8888 8889
## 8889 8890
## 8890 8891
## 8891 8892
## 8892 8893
## 8893 8894
## 8894 8895
## 8895 8896
## 8896 8897
## 8897 8898
## 8898 8899
## 8899 8900
## 8901 8902
## 8902 8903
## 8903 8904
## 8904 8905
## 8905 8906
## 8906 8907
## 8907 8908
## 8908 8909
## 8909 8910
## 8910 8911
## 8911 8912
## 8912 8913
## 8913 8914
## 8914 8915
## 8915 8916
## 8916 8917
## 8917 8918
## 8918 8919
## 8919 8920
## 8920 8921
## 8921 8922
## 8922 8923
## 8923 8924
## 8924 8925
## 8925 8926
## 8926 8927
## 8927 8928
## 8928 8929
## 8929 8930
## 8931 8932
## 8932 8933
## 8933 8934
## 8934 8935
## 8935 8936
## 8936 8937
## 8937 8938
## 8938 8939
## 8939 8940
## 8940 8941
## 8941 8942
## 8942 8943
## 8943 8944
## 8944 8945
## 8945 8946
## 8946 8947
## 8947 8948
## 8948 8949
## 8949 8950
## 8950 8951
## 8951 8952
## 8952 8953
## 8953 8954
## 8954 8955
## 8955 8956
## 8956 8957
## 8957 8958
## 8958 8959
## 8959 8960
## 8960 8961
## 8961 8962
## 8962 8963
## 8963 8964
## 8964 8965
## 8965 8966
## 8966 8967
## 8967 8968
## 8968 8969
## 8969 8970
## 8970 8971
## 8971 8972
## 8972 8973
## 8973 8974
## 8974 8975
## 8975 8976
## 8976 8977
## 8977 8978
## 8978 8979
## 8979 8980
## 8980 8981
## 8981 8982
## 8982 8983
## 8983 8984
## 8984 8985
## 8985 8986
## 8986 8987
## 8987 8988
## 8988 8989
## 8989 8990
## 8990 8991
## 8991 8992
## 8992 8993
## 8993 8994
## 8994 8995
## 8995 8996
## 8996 8997
## 8997 8998
## 8998 8999
## 8999 9000
## 9000 9001
## 9001 9002
## 9002 9003
## 9003 9004
## 9004 9005
## 9005 9006
## 9006 9007
## 9007 9008
## 9008 9009
## 9009 9010
## 9010 9011
## 9011 9012
## 9012 9013
## 9013 9014
## 9014 9015
## 9015 9016
## 9016 9017
## 9017 9018
## 9018 9019
## 9019 9020
## 9020 9021
## 9021 9022
## 9022 9023
## 9023 9024
## 9024 9025
## 9025 9026
## 9026 9027
## 9027 9028
## 9028 9029
## 9029 9030
## 9030 9031
## 9031 9032
## 9032 9033
## 9033 9034
## 9034 9035
## 9035 9036
## 9036 9037
## 9037 9038
## 9038 9039
## 9039 9040
## 9040 9041
## 9041 9042
## 9042 9043
## 9043 9044
## 9044 9045
## 9045 9046
## 9046 9047
## 9047 9048
## 9048 9049
## 9049 9050
## 9050 9051
## 9051 9052
## 9052 9053
## 9053 9054
## 9054 9055
## 9055 9056
## 9056 9057
## 9057 9058
## 9058 9059
## 9059 9060
## 9060 9061
## 9061 9062
## 9062 9063
## 9063 9064
## 9064 9065
## 9065 9066
## 9066 9067
## 9067 9068
## 9068 9069
## 9069 9070
## 9070 9071
## 9071 9072
## 9072 9073
## 9073 9074
## 9074 9075
## 9075 9076
## 9076 9077
## 9077 9078
## 9078 9079
## 9079 9080
## 9080 9081
## 9081 9082
## 9083 9084
## 9084 9085
## 9085 9086
## 9086 9087
## 9087 9088
## 9088 9089
## 9089 9090
## 9090 9091
## 9091 9092
## 9092 9093
## 9093 9094
## 9094 9095
## 9095 9096
## 9096 9097
## 9097 9098
## 9098 9099
## 9099 9100
## 9100 9101
## 9101 9102
## 9102 9103
## 9103 9104
## 9104 9105
## 9105 9106
## 9106 9107
## 9107 9108
## 9108 9109
## 9109 9110
## 9110 9111
## 9111 9112
## 9112 9113
## 9113 9114
## 9114 9115
## 9115 9116
## 9116 9117
## 9117 9118
## 9118 9119
## 9119 9120
## 9120 9121
## 9121 9122
## 9122 9123
## 9123 9124
## 9124 9125
## 9125 9126
## 9126 9127
## 9127 9128
## 9128 9129
## 9129 9130
## 9130 9131
## 9131 9132
## 9132 9133
## 9133 9134
## 9134 9135
## 9135 9136
## 9136 9137
## 9137 9138
## 9138 9139
## 9139 9140
## 9140 9141
## 9141 9142
## 9142 9143
## 9143 9144
## 9144 9145
## 9145 9146
## 9146 9147
## 9147 9148
## 9148 9149
## 9149 9150
## 9150 9151
## 9151 9152
## 9153 9154
## 9154 9155
## 9155 9156
## 9156 9157
## 9157 9158
## 9158 9159
## 9159 9160
## 9160 9161
## 9161 9162
## 9162 9163
## 9163 9164
## 9164 9165
## 9165 9166
## 9166 9167
## 9167 9168
## 9168 9169
## 9169 9170
## 9170 9171
## 9171 9172
## 9173 9174
## 9174 9175
## 9175 9176
## 9176 9177
## 9177 9178
## 9178 9179
## 9179 9180
## 9180 9181
## 9181 9182
## 9182 9183
## 9183 9184
## 9184 9185
## 9185 9186
## 9186 9187
## 9187 9188
## 9188 9189
## 9189 9190
## 9190 9191
## 9191 9192
## 9192 9193
## 9193 9194
## 9194 9195
## 9195 9196
## 9196 9197
## 9197 9198
## 9198 9199
## 9199 9200
## 9200 9201
## 9201 9202
## 9202 9203
## 9203 9204
## 9204 9205
## 9205 9206
## 9206 9207
## 9207 9208
## 9208 9209
## 9209 9210
## 9210 9211
## 9211 9212
## 9212 9213
## 9213 9214
## 9214 9215
## 9215 9216
## 9216 9217
## 9217 9218
## 9218 9219
## 9219 9220
## 9220 9221
## 9221 9222
## 9222 9223
## 9223 9224
## 9224 9225
## 9225 9226
## 9226 9227
## 9227 9228
## 9228 9229
## 9229 9230
## 9230 9231
## 9231 9232
## 9232 9233
## 9233 9234
## 9234 9235
## 9235 9236
## Name
## 1 Wii Sports
## 2 Super Mario Bros.
## 3 Mario Kart Wii
## 4 Wii Sports Resort
## 5 Pokemon Red/Pokemon Blue
## 6 Tetris
## 7 New Super Mario Bros.
## 8 Wii Play
## 9 New Super Mario Bros. Wii
## 10 Duck Hunt
## 11 Nintendogs
## 12 Mario Kart DS
## 13 Pokemon Gold/Pokemon Silver
## 14 Wii Fit
## 15 Wii Fit Plus
## 16 Kinect Adventures!
## 17 Grand Theft Auto V
## 18 Grand Theft Auto: San Andreas
## 19 Super Mario World
## 20 Brain Age: Train Your Brain in Minutes a Day
## 21 Pokemon Diamond/Pokemon Pearl
## 22 Super Mario Land
## 23 Super Mario Bros. 3
## 24 Grand Theft Auto V
## 25 Grand Theft Auto: Vice City
## 26 Pokemon Ruby/Pokemon Sapphire
## 27 Pokemon Black/Pokemon White
## 28 Brain Age 2: More Training in Minutes a Day
## 29 Gran Turismo 3: A-Spec
## 30 Call of Duty: Modern Warfare 3
## 31 Pokémon Yellow: Special Pikachu Edition
## 32 Call of Duty: Black Ops
## 33 Pokemon X/Pokemon Y
## 34 Call of Duty: Black Ops 3
## 35 Call of Duty: Black Ops II
## 36 Call of Duty: Black Ops II
## 37 Call of Duty: Modern Warfare 2
## 38 Call of Duty: Modern Warfare 3
## 39 Grand Theft Auto III
## 40 Super Smash Bros. Brawl
## 41 Call of Duty: Black Ops
## 42 Animal Crossing: Wild World
## 43 Mario Kart 7
## 44 Halo 3
## 45 Grand Theft Auto V
## 46 Pokemon HeartGold/Pokemon SoulSilver
## 47 Super Mario 64
## 48 Gran Turismo 4
## 49 Super Mario Galaxy
## 50 Pokemon Omega Ruby/Pokemon Alpha Sapphire
## 51 Super Mario Land 2: 6 Golden Coins
## 52 Grand Theft Auto IV
## 53 Gran Turismo
## 54 Super Mario 3D Land
## 55 Gran Turismo 5
## 56 Call of Duty: Modern Warfare 2
## 57 Grand Theft Auto IV
## 58 Super Mario All-Stars
## 59 Pokemon FireRed/Pokemon LeafGreen
## 60 Super Mario 64
## 61 Just Dance 3
## 62 Call of Duty: Ghosts
## 63 Halo: Reach
## 64 Mario Kart 64
## 65 New Super Mario Bros. 2
## 66 Halo 4
## 67 Final Fantasy VII
## 68 Call of Duty: Ghosts
## 69 Just Dance 2
## 70 Gran Turismo 2
## 71 Call of Duty 4: Modern Warfare
## 72 Donkey Kong Country
## 73 Minecraft
## 74 Animal Crossing: New Leaf
## 75 Mario Party DS
## 76 The Elder Scrolls V: Skyrim
## 77 Super Mario Kart
## 78 FIFA 16
## 79 Wii Party
## 80 Halo 2
## 81 Mario Party 8
## 82 Pokemon Black 2/Pokemon White 2
## 83 FIFA Soccer 13
## 84 The Sims 3
## 85 GoldenEye 007
## 86 Mario & Sonic at the Olympic Games
## 87 Final Fantasy X
## 88 Final Fantasy VIII
## 89 Pokémon Platinum Version
## 90 Pac-Man
## 91 Grand Theft Auto: Liberty City Stories
## 92 Super Mario Galaxy 2
## 93 Star Wars Battlefront (2015)
## 94 Call of Duty: Advanced Warfare
## 95 The Legend of Zelda: Ocarina of Time
## 96 Crash Bandicoot 2: Cortex Strikes Back
## 97 Super Mario Bros. 2
## 98 Super Smash Bros. for Wii U and 3DS
## 99 Call of Duty: World at War
## 100 Battlefield 3
## 101 The Legend of Zelda: Twilight Princess
## 102 Call of Duty: Black Ops 3
## 103 Just Dance
## 104 Battlefield 3
## 105 Need for Speed Underground
## 106 Tekken 3
## 107 Crash Bandicoot 3: Warped
## 108 Super Smash Bros. Melee
## 109 Mario Kart 8
## 110 Fallout 4
## 111 Mario Kart: Double Dash!!
## 112 Just Dance 4
## 113 FIFA 14
## 114 Need for Speed Underground 2
## 115 Medal of Honor: Frontline
## 116 Uncharted 3: Drake's Deception
## 117 Crash Bandicoot
## 118 Zumba Fitness
## 119 Gears of War 2
## 120 Uncharted 2: Among Thieves
## 121 Call of Duty 4: Modern Warfare
## 122 FIFA 12
## 123 Big Brain Academy
## 124 Red Dead Redemption
## 125 FIFA 15
## 126 Donkey Kong Country Returns
## 127 The Elder Scrolls V: Skyrim
## 128 The Legend of Zelda
## 129 Assassin's Creed III
## 130 Halo: Combat Evolved
## 131 Pokémon Emerald Version
## 132 Kingdom Hearts
## 133 Pokémon Crystal Version
## 134 Halo 3: ODST
## 135 Red Dead Redemption
## 136 Super Mario Sunshine
## 137 Street Fighter II: The World Warrior
## 138 World of Warcraft
## 139 Driver
## 140 Kinect Sports
## 141 Gears of War 3
## 142 Gears of War
## 143 Metal Gear Solid 2: Sons of Liberty
## 144 Sonic the Hedgehog 2
## 145 Metal Gear Solid 4: Guns of the Patriots
## 146 Metal Gear Solid
## 147 The Last of Us
## 148 Final Fantasy XII
## 149 LittleBigPlanet
## 150 Dragon Quest IX: Sentinels of the Starry Skies
## 151 LEGO Star Wars: The Complete Saga
## 152 Resident Evil 2
## 153 Tekken 2
## 154 Cooking Mama
## 155 Destiny
## 156 Tetris
## 157 Assassin's Creed II
## 158 Super Smash Bros.
## 159 Assassin's Creed
## 160 Batman: Arkham City
## 161 Forza Motorsport 3
## 162 Monster Hunter Freedom Unite
## 163 Super Mario Advance
## 164 Mario Kart: Super Circuit
## 165 Super Mario World
## 166 Pokemon Stadium
## 167 Call of Duty: World at War
## 168 Crash Bandicoot: The Wrath of Cortex
## 169 Minecraft
## 170 Final Fantasy XIII
## 171 Dr. Mario
## 172 Pokemon Pinball
## 173 Assassin's Creed III
## 174 Final Fantasy IX
## 175 Final Fantasy X-2
## 176 Donkey Kong 64
## 177 Assassin's Creed II
## 178 Professor Layton and the Curious Village
## 179 Tomb Raider II
## 181 Dragon Quest VIII: Journey of the Cursed King
## 182 Diablo III
## 183 Super Mario Bros. 3
## 184 New Super Mario Bros. U
## 185 Super Mario Land 3: Wario Land
## 186 FIFA Soccer 13
## 187 The Legend of Zelda: Phantom Hourglass
## 188 Donkey Kong Country 2: Diddy's Kong Quest
## 189 Tomodachi Life
## 190 Mario & Sonic at the Olympic Games
## 191 Medal of Honor: Rising Sun
## 192 Kirby's Dream Land
## 193 Fable III
## 194 Call of Duty: Advanced Warfare
## 195 Microsoft Flight Simulator
## 196 Guitar Hero II
## 197 Resident Evil 5
## 198 Grand Theft Auto V
## 199 Grand Theft Auto: Vice City Stories
## 200 FIFA Soccer 11
## 201 Super Mario Bros.
## 202 Resident Evil
## 203 Tony Hawk's Pro Skater
## 204 Super Smash Bros. for Wii U and 3DS
## 205 Warzone 2100
## 206 Spyro the Dragon
## 207 Link's Crossbow Training
## 208 Guitar Hero III: Legends of Rock
## 209 Fallout 3
## 210 Pokemon Mystery Dungeon: Explorers of Time/Explorers of Darkness
## 211 Uncharted: Drake's Fortune
## 212 Madden NFL 06
## 213 LEGO Star Wars: The Complete Saga
## 214 Diddy Kong Racing
## 215 Monster Hunter Freedom 3
## 216 Dr. Mario
## 217 God of War III
## 218 StarCraft II: Wings of Liberty
## 219 Assassin's Creed
## 220 FIFA 15
## 221 Crash Team Racing
## 222 FIFA 17
## 223 Batman: Arkham City
## 224 Driver 2
## 225 The Simpsons: Hit & Run
## 226 Tony Hawk's Pro Skater 2
## 227 Animal Crossing: City Folk
## 228 The Lord of the Rings: The Two Towers
## 229 Forza Motorsport 4
## 230 Tomb Raider
## 231 Guitar Hero III: Legends of Rock
## 232 The Legend of Zelda: A Link to the Past
## 233 The Legend of Zelda: The Wind Waker
## 234 Mario & Sonic at the Olympic Winter Games
## 235 Luigi's Mansion: Dark Moon
## 236 Splatoon
## 237 The Last of Us
## 238 Guitar Hero III: Legends of Rock
## 239 Madden NFL 2005
## 240 Pitfall!
## 241 Madden NFL 07
## 242 Spider-Man: The Movie
## 243 Dragon Quest VII: Warriors of Eden
## 244 Uncharted: The Nathan Drake Collection
## 245 Call of Duty: Advanced Warfare
## 246 God of War
## 247 Nintendo Land
## 248 Michael Jackson: The Experience
## 249 Tony Hawk's Pro Skater 3
## 250 Winning Eleven: Pro Evolution Soccer 2007
## 251 The Elder Scrolls IV: Oblivion
## 252 Zelda II: The Adventure of Link
## 253 Need for Speed: Most Wanted
## 254 Resistance: Fall of Man
## 255 Sonic the Hedgehog
## 256 Kingdom Hearts II
## 257 FIFA 14
## 258 Call of Duty: Advanced Warfare
## 259 Asteroids
## 260 Fable II
## 261 Halo 5: Guardians
## 262 Super Mario 3D World
## 263 Batman: Arkham Asylum
## 264 Assassin's Creed: Revelations
## 265 Namco Museum
## 266 Metal Gear Solid 3: Snake Eater
## 267 Daxter
## 268 Warcraft II: Tides of Darkness
## 269 The Legend of Zelda: Ocarina of Time
## 270 FIFA Soccer 06
## 271 EyeToy Play
## 272 Uncharted 4: A Thief's End
## 273 Gran Turismo 5 Prologue
## 274 Assassin's Creed: Revelations
## 275 Street Fighter IV
## 276 FIFA 12
## 277 Teenage Mutant Ninja Turtles
## 278 Excitebike
## 279 Frogger
## 280 Madden NFL 2003
## 281 Watch Dogs
## 282 Half-Life
## 283 Super Mario World 2: Yoshi's Island
## 284 FIFA Soccer 07
## 285 The Legend of Zelda: Skyward Sword
## 286 Street Fighter II Turbo
## 287 Carnival Games
## 288 Fallout 4
## 289 World of Warcraft: The Burning Crusade
## 290 Fallout: New Vegas
## 291 God of War II
## 292 Forza Motorsport 2
## 293 World Soccer Winning Eleven 9
## 294 Namco Museum Vol.3
## 295 Tekken Tag Tournament
## 296 Far Cry 4
## 297 Star Fox 64
## 298 Minecraft
## 299 Golf
## 300 Fallout 3
## 301 Professor Layton and the Diabolical Box
## 302 Left 4 Dead 2
## 303 Namco Museum: 50th Anniversary
## 304 EA Sports Active
## 305 Assassin's Creed: Unity
## 306 Donkey Kong Land
## 307 Tony Hawk's Underground
## 308 Assassin's Creed IV: Black Flag
## 309 Monster Hunter 4 Ultimate
## 310 MotorStorm
## 311 The Elder Scrolls V: Skyrim
## 312 Tekken 5
## 313 Dragon Warrior III
## 314 Sports Champions
## 315 NBA 2K16
## 316 World Soccer Winning Eleven 8 International
## 317 Flash Focus: Vision Training in Minutes a Day
## 318 Namco Museum Vol.1
## 319 The Legend of Zelda: Link's Awakening
## 320 Mario & Luigi: Bowser's Inside Story
## 321 Big Brain Academy: Wii Degree
## 322 Nintendogs + cats
## 323 Batman: Arkham Knight
## 324 Mario & Sonic at the London 2012 Olympic Games
## 325 LEGO Indiana Jones: The Original Adventures
## 326 Resident Evil Director's Cut
## 327 Ratchet & Clank: Size Matters
## 328 Just Dance 2014
## 329 The Sims: Unleashed
## 330 Super Paper Mario
## 331 Harry Potter and the Sorcerer's Stone
## 332 The Witcher 3: Wild Hunt
## 333 Resident Evil 3: Nemesis
## 334 Spyro: Year of the Dragon
## 335 FIFA Soccer 2005
## 336 Pokémon Trading Card Game
## 337 Battlefield 4
## 338 MySims
## 339 Friend Collection
## 340 Tony Hawk's Pro Skater 4
## 341 Midnight Club 3: DUB Edition
## 342 Banjo-Kazooie
## 343 SOCOM: U.S. Navy SEALs
## 344 Guitar Hero: World Tour
## 345 Gran Turismo 6
## 346 Jak and Daxter: The Precursor Legacy
## 347 Pokemon Snap
## 348 FIFA Soccer 10
## 349 Pro Evolution Soccer 2008
## 350 Call of Duty: Ghosts
## 351 Resident Evil 4
## 352 Tom Clancy's The Division
## 353 Star Wars: Battlefront
## 354 Doom II: Hell on Earth
## 355 The Simpsons: Road Rage
## 356 Cooking Mama 2: Dinner With Friends
## 357 Luigi's Mansion
## 358 Star Wars: Battlefront II
## 359 WWF SmackDown!
## 360 Croc: Legend of the Gobbos
## 361 Grand Theft Auto: Liberty City Stories
## 362 The Getaway
## 363 Tomb Raider III: Adventures of Lara Croft
## 364 James Bond 007: Agent Under Fire
## 365 LEGO Star Wars: The Video Game
## 366 Battlefield 4
## 367 FIFA Soccer 11
## 368 Rugrats in Paris: The Movie
## 369 Spyro 2: Ripto's Rage!
## 370 Left 4 Dead
## 371 Mario & Sonic at the Olympic Winter Games
## 372 Resident Evil 5
## 373 Donkey Kong Country 3: Dixie Kong's Double Trouble!
## 374 Assassin's Creed: Brotherhood
## 375 Kung Fu
## 376 Batman: Arkham Asylum
## 377 Clubhouse Games
## 379 Star Wars Battlefront (2015)
## 380 Battlefield: Bad Company 2
## 381 Guitar Hero: On Tour
## 382 Assassin's Creed: Unity
## 383 Far Cry 3
## 384 Monster Hunter 4
## 385 Borderlands
## 386 Tekken 4
## 387 Battlefield 4
## 388 LittleBigPlanet 2
## 389 Grand Theft Auto 2
## 390 Final Fantasy III
## 391 Spider-Man 2
## 392 F-1 Race
## 393 FIFA Soccer 2003
## 394 Crash Bash
## 395 LEGO Batman: The Videogame
## 396 Metal Gear Solid V: The Phantom Pain
## 397 The Legend of Zelda: Spirit Tracks
## 398 WWF War Zone
## 399 The Legend of Zelda: Majora's Mask
## 400 Professor Layton and the Unwound Future
## 401 Rugrats: Search For Reptar
## 402 Assassin's Creed IV: Black Flag
## 403 English Training: Have Fun Improving Your Skills!
## 404 James Bond 007: Nightfire
## 405 Ratchet & Clank
## 406 Mario Party 9
## 407 Star Wars Episode III: Revenge of the Sith
## 408 Max Payne
## 409 The Lord of the Rings: The Return of the King
## 410 Assassin's Creed Syndicate
## 411 Destiny
## 412 True Crime: Streets of LA
## 413 Wii Music
## 414 Gran Turismo (PSP)
## 415 Monster Hunter X
## 416 Tekken
## 417 FIFA 16
## 418 L.A. Noire
## 419 Madden NFL 16
## 420 Yokai Watch 2 Ganso/Honke
## 421 007: Tomorrow Never Dies
## 422 Baseball
## 423 Killer Instinct
## 424 WWF SmackDown! 2: Know Your Role
## 425 Crisis Core: Final Fantasy VII
## 426 God of War: Chains of Olympus
## 427 Dragon Quest VI: Maboroshi no Daichi
## 428 Dance Central
## 429 Enter the Matrix
## 430 Super Mario Maker
## 431 Fallout: New Vegas
## 433 Rhythm Heaven
## 434 Ace Combat 04: Shattered Skies
## 435 Club Penguin: Elite Penguin Force
## 436 Animal Crossing
## 437 LEGO Batman: The Videogame
## 438 Sonic Rush
## 439 Resident Evil 6
## 440 Halo: The Master Chief Collection
## 441 FIFA Soccer 08
## 442 Spider-Man
## 443 Need for Speed III: Hot Pursuit
## 444 Star Wars Episode I Racer
## 445 Personal Trainer: Cooking
## 446 The Elder Scrolls IV: Oblivion
## 447 Dragon Warrior IV
## 448 Heavy Rain
## 449 Mass Effect 2
## 450 FIFA 15
## 451 Dragon Ball Z: Budokai
## 452 Madden NFL 2002
## 453 World Class Track Meet
## 454 Borderlands 2
## 455 The Legend of Zelda: A Link Between Worlds
## 456 Donkey Kong
## 457 The Sims: Vacation
## 458 Mass Effect 3
## 459 Kung Fu Panda
## 460 Far Cry 3
## 461 Epic Mickey
## 462 Saints Row 2
## 463 Rayman
## 464 Killzone 2
## 465 Tom Clancy's Splinter Cell
## 466 Mike Tyson's Punch-Out!!
## 467 WWE SmackDown! Shut Your Mouth
## 468 Gears of War: Ultimate Edition
## 469 NBA 2K13
## 470 Dragon Ball Z: Budokai Tenkaichi 3
## 472 Middle-Earth: Shadow of Mordor
## 473 Star Fox
## 474 The Sims: Livin Large
## 475 World Soccer Winning Eleven 6 International
## 476 Devil May Cry
## 477 Animal Crossing: Happy Home Designer
## 478 Battlefield: Bad Company 2
## 479 The Sims 4
## 480 Star Wars: The Old Republic
## 481 Sonic Heroes
## 482 Kirby Super Star Ultra
## 483 Hitman 2: Silent Assassin
## 484 Street Fighter IV
## 485 Wave Race 64
## 486 SOCOM II: U.S. Navy SEALs
## 487 WWE SmackDown! vs. RAW 2006
## 488 inFAMOUS
## 489 Pac-Man Collection
## 490 Mass Effect
## 491 WarioWare: Smooth Moves
## 492 Cooking Mama: Cook Off
## 493 Super Mario World 2: Yoshi's Island
## 494 FIFA 14
## 495 Titanfall
## 496 Sonic Mega Collection Plus
## 497 Sega Superstars Tennis
## 498 World Soccer Winning Eleven 7 International
## 499 Need for Speed: Most Wanted
## 500 Hot Shots Golf 3
## 501 Call of Duty: Finest Hour
## 502 Zumba Fitness 2
## 503 Syphon Filter
## 504 Imagine: Babyz
## 505 Colin McRae Rally
## 506 Call of Duty: Ghosts
## 507 Madden NFL 13
## 508 The Elder Scrolls III: Morrowind
## 509 Mortal Kombat
## 510 F-Zero
## 511 Yoshi's Story
## 512 Command & Conquer: Red Alert
## 513 Skylanders: Spyro's Adventure
## 514 FIFA 16
## 515 Assassin's Creed: Brotherhood
## 516 BioShock
## 517 Madden NFL 10
## 518 Medal of Honor
## 519 WWE SmackDown! vs. Raw
## 520 Metroid Prime
## 521 Finding Nemo
## 522 Myst
## 523 Need for Speed: Hot Pursuit
## 524 Imagine: Fashion Designer
## 525 WWE SmackDown! Here Comes the Pain
## 526 Star Wars: The Force Unleashed
## 527 Yoshi's Island DS
## 528 Hot Shots Golf
## 529 Killzone 3
## 530 A Bug's Life
## 531 WWF SmackDown! Just Bring It
## 532 Dragon Quest V: Tenkuu no Hanayome
## 533 Mortal Kombat Trilogy
## 534 Battlefield 3
## 535 NBA Street
## 536 Professor Layton and the Last Specter
## 537 Monster Hunter Tri
## 538 Jak II
## 539 inFAMOUS: Second Son
## 540 Ratchet & Clank: Going Commando
## 541 Tekken 6
## 542 The Sims
## 543 Sonic and the Secret Rings
## 544 Saints Row: The Third
## 545 Missile Command
## 546 Mario Paint
## 547 Assassin's Creed IV: Black Flag
## 548 Pokémon Stadium 2
## 549 Metroid
## 550 L.A. Noire
## 551 Call of Duty 3
## 552 The Legend of Zelda: A Link to the Past
## 553 Onimusha: Warlords
## 554 Mortal Kombat X
## 555 Mario Party
## 556 Madden NFL 12
## 557 LEGO Star Wars II: The Original Trilogy
## 558 Madden NFL 11
## 559 Mario vs. Donkey Kong: Mini-Land Mayhem!
## 560 Skate 3
## 561 Burnout 3: Takedown
## 562 Yokai Watch 2 Shinuchi
## 563 Need for Speed: Shift
## 564 Final Fantasy XIII-2
## 565 Mortal Kombat
## 566 Call Of Duty 2: Big Red One
## 567 Guitar Hero: World Tour
## 568 Medal of Honor
## 569 Fable
## 570 Hannah Montana
## 571 Tom Clancy's Splinter Cell
## 572 Skylanders Giants
## 573 Medal of Honor Heroes
## 574 Super Mario Bros.: The Lost Levels
## 575 Star Wars: Shadows of the Empire
## 576 LEGO Star Wars: The Complete Saga
## 577 Midnight Club: Street Racing
## 578 Pac-Man: Adventures in Time
## 579 Halo Wars
## 580 God of War Collection
## 581 ESPN NFL 2K5
## 582 Mario Strikers Charged
## 583 Medal of Honor
## 584 FIFA Soccer 10
## 585 NBA 2K12
## 586 Style Savvy
## 587 Harry Potter and the Chamber of Secrets
## 588 Super Mario All-Stars: Limited Edition
## 589 Streets of Rage
## 590 FIFA Soccer 09
## 591 Ratchet & Clank Future: Tools of Destruction
## 592 NBA Live 2005
## 593 LittleBigPlanet
## 594 Killzone: Shadow Fall
## 595 Ghostbusters: The Video Game (DS Version)
## 596 Monster Hunter Freedom 2
## 597 WWE SmackDown vs. RAW 2007
## 598 Ratchet & Clank: Up Your Arsenal
## 599 Art Academy
## 600 Dragon Age: Origins
## 601 Madden NFL 08
## 602 Sonic Adventure 2 Battle
## 603 Dragon Warrior II
## 604 Madden NFL 13
## 605 Pokémon Colosseum
## 606 Deca Sports
## 607 Madden NFL 09
## 609 Crazy Taxi
## 610 Perfect Dark
## 611 Game Party
## 612 Dragon Warrior
## 613 Tomb Raider (2013)
## 614 Marvel: Ultimate Alliance
## 615 PES 2009: Pro Evolution Soccer
## 616 Mario Party 2
## 617 Saints Row: The Third
## 618 Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City
## 619 LEGO Harry Potter: Years 1-4
## 620 Mortal Kombat: Deadly Alliance
## 621 Resistance 2
## 622 Pure
## 623 Tomb Raider: The Last Revelation
## 624 NBA 2K13
## 626 NBA 2K14
## 627 Mario Party 4
## 628 uDraw Studio
## 629 Midnight Club: Los Angeles
## 630 Final Fantasy V
## 631 Final Fantasy Tactics
## 632 Twisted Metal 2
## 633 Halo: Combat Evolved Anniversary
## 634 Need for Speed Carbon: Own the City
## 635 The Sims: Bustin' Out
## 636 Riven: The Sequel to Myst
## 637 Tom Clancy's Rainbow Six: Vegas 2
## 638 Sonic Adventure
## 639 Ice Hockey
## 640 pro evolution soccer 2011
## 641 Dragon Ball Z: Budokai 2
## 642 ATV Offroad Fury
## 643 Dino Crisis
## 644 Minecraft
## 645 Need for Speed: ProStreet
## 646 Madden NFL 16
## 647 Tetris Plus
## 648 Pro Wrestling
## 649 Theme Hospital
## 651 Need for Speed (2015)
## 652 Zumba Fitness
## 654 Monopoly
## 655 Batman: Arkham Origins
## 656 Dead Island
## 657 Guitar Hero
## 658 LEGO Star Wars: The Complete Saga
## 659 Kinect: Disneyland Adventures
## 660 WCW/nWo Revenge
## 661 Bloodborne
## 662 NBA 2K15
## 663 Madden NFL 11
## 664 Yu-Gi-Oh! The Duelists of the Roses
## 665 Madden NFL 08
## 666 Half-Life 2
## 667 The Incredibles
## 668 Tony Hawk's Underground 2
## 669 Madden NFL 10
## 670 Kinect Sports: Season Two
## 671 Kirby's Dream Land 2
## 672 LEGO Harry Potter: Years 1-4
## 673 Donkey Kong Land II
## 674 Dragon Warrior Monsters
## 675 Midnight Club: Los Angeles
## 676 Skylanders SWAP Force
## 677 WWE SmackDown vs Raw 2008
## 678 My Fitness Coach
## 679 Resident Evil - Code: Veronica X
## 680 The Sims 3
## 681 The Legend of Zelda: Majora's Mask 3D
## 682 NBA 2K16
## 683 Just Dance Kids
## 684 Mario Tennis
## 685 Grand Theft Auto
## 686 James Bond 007: Everything or Nothing
## 687 WarioWare Touched!
## 688 Need For Speed: High Stakes
## 689 Chrono Trigger
## 690 Cool Boarders 3
## 691 LEGO Marvel Super Heroes
## 692 Guild Wars 2
## 693 Pokemon Ranger: Shadows of Almia
## 694 Dead Island
## 695 Tomb Raider II
## 696 God of War: Ascension
## 697 Need for Speed Underground 2
## 698 Pro Evolution Soccer 2010
## 699 Just Dance 2015
## 700 Yokai Watch Busters
## 701 Mario Bros.
## 702 FIFA Soccer 09
## 703 Star Wars: The Force Unleashed
## 704 Borderlands 2
## 705 TOCA Touring Car Championship
## 706 Paper Mario: Sticker Star
## 707 Sonic's Ultimate Genesis Collection
## 708 Super Monkey Ball: Banana Blitz
## 709 Kirby: Nightmare in Dream Land
## 710 Wario Land 4
## 711 Guitar Hero III: Legends of Rock
## 713 Resident Evil 4
## 714 Minecraft
## 715 Onimusha 2: Samurai's Destiny
## 716 Cool Boarders 2
## 717 Paper Mario: The Thousand-Year Door
## 718 Madden NFL 12
## 719 Monster Hunter Tri
## 720 Dissidia: Final Fantasy
## 721 Sonic Advance
## 722 Spyro: Season of Ice
## 723 Teenage Mutant Ninja Turtles II: The Arcade Game
## 724 LEGO Indiana Jones: The Original Adventures
## 725 Dance Dance Revolution X2
## 726 New Super Luigi U
## 727 Prince of Persia: The Sands of Time
## 728 Scribblenauts
## 729 The Legend of Zelda: Link's Awakening DX
## 730 Need for Speed: Hot Pursuit
## 731 BioShock 2
## 732 Assassin's Creed IV: Black Flag
## 733 Devil May Cry 3: Dante's Awakening Special Edition
## 734 Rock Band 2
## 735 Frogger
## 736 Guitar Hero II
## 737 Wario Land 3
## 738 Pro Yakyuu Family Stadium
## 739 Sonic Unleashed
## 740 High School Musical: Makin' the Cut!
## 741 Pro Evolution Soccer 2012
## 742 Saints Row
## 743 Star Wars: Knights of the Old Republic
## 744 Kirby's Pinball Land
## 745 Donkey Kong Country
## 746 Hitman: Absolution
## 747 Yu-Gi-Oh: Duel Monsters 4
## 748 ATV Offroad Fury 2
## 749 Forza Motorsport 5
## 750 Madden NFL 25
## 751 Pokemon Ranger
## 752 Mario & Luigi: Superstar Saga
## 753 Final Fantasy XIII
## 754 Star Wars: Rogue Squadron
## 755 Tennis
## 756 The Sims: House Party
## 757 Your Shape featuring Jenny McCarthy
## 758 Syphon Filter 2
## 759 Tom Clancy's Rainbow Six: Siege
## 760 Volleyball
## 761 FIFA 15
## 762 Call of Duty: Roads to Victory
## 763 Super Mario RPG: Legend of the Seven Stars
## 764 Mahjong
## 765 R.C. Pro-Am
## 766 SimCity 2000
## 767 Demon Attack
## 768 Dance Dance Revolution Extreme
## 769 Tetris DS
## 770 Final Fantasy Tactics Advance
## 771 Far Cry: Primal
## 772 Toy Story 3: The Video Game
## 773 Final Fantasy III
## 774 Kirby's Epic Yarn
## 775 Project Gotham Racing
## 776 Golf
## 777 NBA 2K12
## 778 Borderlands
## 779 Tony Hawk's Pro Skater
## 780 PES 2009: Pro Evolution Soccer
## 781 Need for Speed: Hot Pursuit 2
## 782 Mario Sports Mix
## 784 Dynasty Warriors 4
## 785 Mortal Kombat
## 786 Parasite Eve
## 787 Scooby-Doo! Night of 100 Frights
## 788 Project Gotham Racing (JP weekly sales)
## 789 Need for Speed: Most Wanted 5-1-0
## 790 Portal 2
## 791 Devil May Cry 3: Dante's Awakening
## 792 Derby Stallion
## 793 Dead Rising
## 794 Finding Nemo
## 795 NBA 2K11
## 796 Wipeout: The Game
## 797 The Sims 2: Pets
## 798 Battlefield: Hardline
## 799 Metal Gear Solid: Peace Walker
## 800 World of Warcraft: Cataclysm
## 801 Tetris Worlds
## 802 Need For Speed: Undercover
## 803 Dance Dance Revolution: Hottest Party
## 804 Mario Party 5
## 805 Ghostbusters: The Video Game (DS Version)
## 806 Sim Theme Park
## 807 Warcraft: Orcs & Humans
## 808 Skate 3
## 809 Spec Ops: Airborne Commando
## 810 Kingdom Hearts: Birth by Sleep
## 811 UFC 2009 Undisputed
## 812 Dark Souls
## 813 Yu-Gi-Oh! The Eternal Duelist Soul
## 814 Need for Speed: ProStreet
## 815 The Sims 3
## 816 Tom Clancy's Splinter Cell: Conviction
## 817 Pokemon Mystery Dungeon: Red/Blue Rescue Team
## 818 The Incredibles
## 819 R4: Ridge Racer Type 4
## 820 SoulCalibur II
## 821 Mario & Luigi: Dream Team
## 822 Need for Speed: ProStreet
## 823 Carnival Games
## 824 NBA 2K14
## 825 Pokémon Mystery Dungeon: Blue Rescue Team
## 826 Sonic Mega Collection
## 827 Diablo III
## 828 NBA Jam
## 829 PGR4 - Project Gotham Racing 4
## 830 Kingdom Hearts 358/2 Days
## 831 Dance Central 2
## 832 Rayman Raving Rabbids: TV Party
## 833 SOCOM: U.S. Navy SEALs: Combined Assault
## 834 Peter Jackson's King Kong: The Official Game of the Movie
## 835 Donkey Kong Country
## 836 Need for Speed: The Run
## 837 Madden NFL 15
## 838 1080°: TenEighty Snowboarding
## 839 Just Dance 3
## 840 NBA Live 2004
## 841 Dead Space
## 842 Call of Duty 2
## 843 Madden NFL 15
## 844 Forza Horizon
## 845 TouchMaster
## 846 Tom Clancy's The Division
## 847 LEGO Marvel Super Heroes
## 848 Fire Emblem: Awakening
## 849 DriveClub
## 850 Super Street Fighter II
## 851 Mortal Kombat vs. DC Universe
## 852 Tenchu: Stealth Assassins
## 853 Tennis
## 854 Harry Potter and the Chamber of Secrets
## 855 Harry Potter and the Chamber of Secrets
## 856 SimCity
## 857 Battlefield 4
## 858 Resident Evil 6
## 859 Dragon Age: Inquisition
## 860 Sonic Classic Collection
## 861 Spyro: Enter the Dragonfly
## 862 Call of Duty: World at War
## 863 Devil May Cry 2
## 864 Burnout Paradise
## 865 E.T.: The Extra Terrestrial
## 866 BioShock Infinite
## 867 Hot Shots Golf: Open Tee
## 868 Rad Racer
## 869 Soccer
## 870 Kirby Squeak Squad
## 871 Tom Clancy's Rainbow Six: Vegas
## 872 Destiny
## 873 Crash Nitro Kart
## 874 Grand Theft Auto: San Andreas
## 875 Star Wars: Dark Forces
## 876 NBA Street Vol. 2
## 877 Def Jam Vendetta
## 878 FIFA Soccer 09
## 879 Who wants to be a millionaire
## 880 Scooby Doo and the Cyber Chase
## 881 Alleyway
## 882 Dragon Ball Z: Budokai 3
## 883 Jet Moto 2
## 884 Tom Clancy's Ghost Recon
## 885 X-Men Legends
## 886 Batman: Arkham Origins
## 887 Guitar Hero: World Tour
## 888 Mortal Kombat II
## 889 Virtua Fighter 2
## 890 Tetris DX
## 891 Mortal Kombat vs. DC Universe
## 892 Watch Dogs
## 893 Mario Super Sluggers
## 894 Tomb Raider (2013)
## 895 The Legend of Zelda: Oracle of Ages
## 896 Need for Speed: Shift
## 897 Monopoly
## 898 Red Faction
## 899 The Sims: Makin' Magic
## 900 MX Unleashed
## 901 PaRappa The Rapper
## 902 Toy Story Mania!
## 903 Mario Party 3
## 904 Star Wars: The Force Unleashed
## 905 Game Party 2
## 906 Destiny: The Taken King
## 907 LEGO Star Wars III: The Clone Wars
## 908 Star Wars Rogue Leader: Rogue Squadron II
## 909 Max Payne 3
## 910 Need for Speed Rivals
## 911 Madden NFL 09
## 912 Yokai Watch
## 913 Ratchet & Clank Future: A Crack in Time
## 914 Yu-Gi-Oh! Forbidden Memories
## 915 Mortal Kombat: Deception
## 916 Hot Shots Golf 2
## 917 Medal of Honor: European Assault (All Region sales)
## 918 WCW Nitro
## 919 High School Musical: Sing It!
## 920 Star Fox Adventures
## 921 FIFA 2000
## 922 Dynasty Warriors 3
## 923 Donkey Kong Country Returns
## 924 The Legend of Zelda: Oracle of Seasons
## 925 Madden NFL 06
## 926 Shrek 2
## 927 The Legend of Dragoon
## 928 Turok 2: Seeds of Evil
## 929 SingStar
## 930 LittleBigPlanet 3
## 931 NBA Live 2002
## 932 Phineas and Ferb
## 933 Chrono Cross
## 934 GoldenEye 007 (2010)
## 935 Mario Party: Island Tour
## 936 Jak 3
## 937 Rayman Raving Rabbids 2
## 938 Kingdom Hearts: Chain of Memories
## 939 Pinball
## 940 inFAMOUS 2
## 941 Gran Turismo Concept 2001 Tokyo
## 942 Demon's Souls
## 943 NCAA Football 06
## 944 Hey You, Pikachu!
## 945 2 Games in 1: Sonic Advance & ChuChu Rocket!
## 946 World of Warcraft: Mists of Pandaria
## 947 Jet Moto
## 948 Just Cause 3
## 949 Secret of Mana
## 950 The Orange Box
## 951 Air Combat
## 952 Kirby: Triple Deluxe
## 953 Sonic & Knuckles
## 954 Namco Museum
## 955 The Sims: Hot Date
## 956 Metroid Prime 3: Corruption
## 957 Dragon Quest VI: Realms of Revelation
## 958 The Evil Within
## 959 DDRMAX2: Dance Dance Revolution
## 960 Crazy Taxi
## 961 Virtua Fighter 4
## 962 Sly 2: Band of Thieves
## 963 Guitar Hero: World Tour
## 964 Sonic Advance 2
## 965 Madden NFL 07
## 966 NBA 2K11
## 967 NFL GameDay 2000
## 968 Call of Duty: Black Ops 3
## 969 Disney's The Lion King
## 970 Beyond: Two Souls
## 971 Kinect Star Wars
## 972 Midnight Club II
## 973 Dragon Quest Monsters: Joker
## 974 SpongeBob SquarePants: SuperSponge
## 975 The Getaway: Black Monday
## 976 Professor Layton and the Mask of Miracle
## 977 Just Cause 2
## 978 Dragon's Dogma
## 979 The Legend of Zelda: The Wind Waker
## 980 50 Cent: Bulletproof
## 981 High School Musical: Sing It!
## 982 Wii Party U
## 983 Madden NFL 25
## 984 Final Fantasy II
## 985 Kirby 64: The Crystal Shards
## 986 Dead or Alive 3
## 987 UFC 2009 Undisputed
## 988 Metroid II: Return of Samus
## 989 WWF Attitude
## 990 The SpongeBob SquarePants Movie
## 991 Golden Sun
## 992 Sonic the Hedgehog 3
## 993 Kid Icarus
## 994 Def Jam: Fight for NY
## 995 Tom Clancy's Ghost Recon
## 996 State of Emergency
## 997 BioShock Infinite
## 998 Hitman: Absolution
## 999 2 Games in 1 Double Pack: The Incredibles / Finding Nemo: The Continuing Adventures
## 1000 Call of Duty: Black Ops 3
## 1001 The Urbz: Sims in the City
## 1002 FIFA Soccer 08
## 1003 Star Wars: Starfighter
## 1004 Madden NFL 2000
## 1005 Kingdom Hearts
## 1006 Star Wars: Battlefront
## 1007 Pro Evolution Soccer
## 1008 Crackdown
## 1009 Yoshi
## 1010 Disney's Aladdin
## 1011 Kirby's Adventure
## 1012 Cooking Mama 3: Shop & Chop
## 1013 Dance Dance Revolution X
## 1014 2 Games in 1: Disney Princess & The Lion King
## 1015 Star Wars Episode I: The Phantom Menace
## 1016 Xenosaga Episode I: Der Wille zur Macht
## 1017 Portal 2
## 1018 The Beatles: Rock Band
## 1019 Forza Motorsport 6
## 1020 Sonic Colors
## 1021 Cruis'n USA
## 1022 Madden NFL 99
## 1023 Diablo III
## 1024 Uncharted: Golden Abyss
## 1025 Destiny
## 1026 SSX Tricky
## 1027 Overwatch
## 1028 Twisted Metal III
## 1029 Harry Potter and the Sorcerer's Stone
## 1030 Disney Infinity
## 1031 Crash Bandicoot: The Huge Adventure
## 1032 Dishonored
## 1033 Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City
## 1034 The Order: 1886
## 1035 The Elder Scrolls Online
## 1036 Call of Duty: World at War Final Fronts
## 1037 Imagine: Teacher
## 1038 Call of Duty: Modern Warfare 3
## 1039 Madden NFL 2005
## 1040 Star Ocean: Till The End of Time
## 1041 The Sims 3: Late Night Expansion Pack
## 1042 Game Party 3
## 1043 Toy Story 2: Buzz Lightyear to the Rescue!
## 1044 Deal or No Deal
## 1045 Ace Combat 5: The Unsung War
## 1046 Need for Speed Underground
## 1047 Kanshuu Nippon Joushikiryoku Kentei Kyoukai: Imasara Hito ni wa Kikenai Otona no Joushikiryoku Training DS
## 1048 Tetris Worlds
## 1049 Cabela's Big Game Hunter 2010
## 1050 The Crew
## 1051 FIFA Soccer 10
## 1052 We Ski
## 1053 Personal Trainer: Math
## 1054 Kirby's Return to Dreamland
## 1055 Super Puyo Puyo
## 1056 Ben 10: Protector of Earth
## 1057 NCAA Football 07
## 1058 SOCOM 3: U.S. Navy SEALs
## 1059 NBA 2K15
## 1060 Saints Row 2
## 1061 Saints Row IV
## 1062 Jampack Winter '99
## 1063 Dragon Age: Origins
## 1064 FIFA 16
## 1065 WCW vs. nWo: World Tour
## 1066 WCW/NWO Thunder
## 1067 Harry Potter and the Sorcerer's Stone
## 1068 Need For Speed: Undercover
## 1069 Dragon Ball Z: The Legacy of Goku
## 1070 Sid Meier's Civilization V
## 1071 Resident Evil 4
## 1072 Call of Duty Black Ops: Declassified
## 1073 Star Wars Battlefront: Renegade Squadron
## 1074 World Championship Poker: Featuring Howard Lederer - All In
## 1075 NFL GameDay 98
## 1076 LEGO Batman 2: DC Super Heroes
## 1077 Yoshi's Cookie
## 1078 Time Crisis
## 1079 The Sims: Superstar
## 1080 Star Wars The Clone Wars: Lightsaber Duels
## 1081 MySims
## 1082 Metroid Fusion
## 1083 Shaun White Snowboarding: Road Trip
## 1084 SSX 3
## 1085 Big Beach Sports
## 1086 Madden NFL 2001
## 1087 Fight Night Round 3
## 1088 Knack
## 1089 Star Wars: Battlefront II
## 1090 Disney's DuckTales
## 1091 Tony Hawk's Pro Skater 3
## 1092 Monsters, Inc.
## 1093 StarCraft II: Heart of the Swarm
## 1094 PGR: Project Gotham Racing 2
## 1095 Spy Hunter
## 1096 NCAA Football 2004
## 1097 SpongeBob SquarePants: Battle for Bikini Bottom
## 1098 Dying Light
## 1099 Heavenly Sword
## 1100 Street Fighter II': Special Champion Edition
## 1101 SSX
## 1102 Max Payne 3
## 1103 NBA Ballers
## 1104 Need for Speed Carbon
## 1105 NBA Live 2003
## 1106 Dragon Ball Z: Budokai Tenkaichi
## 1107 Ms. Pac-Man
## 1108 Mario Party 6
## 1109 Super Scope 6
## 1110 Go Vacation
## 1111 Dragon Quest V: Tenkuu no Hanayome
## 1112 Army of Two
## 1113 Dragon Quest IV: Chapters of the Chosen
## 1114 Kirby & the Amazing Mirror
## 1115 LEGO Pirates of the Caribbean: The Video Game
## 1116 Dig Dug
## 1117 Tom Clancy's Rainbow Six
## 1118 Ghosts 'n Goblins
## 1119 Tiger Woods PGA Tour 2003
## 1120 NBA Live 06 (All region sales)
## 1121 Prince of Persia: Warrior Within
## 1122 Kinectimals
## 1123 Until Dawn
## 1124 ESPN NFL 2K5
## 1125 Viva Pinata
## 1126 Pikmin
## 1128 Sonic Generations
## 1129 Tiger Woods PGA Tour 2004
## 1130 Ape Escape
## 1131 NBA 2K15
## 1132 NCAA Football 2005
## 1133 Just Cause 2
## 1135 Tony Hawk's American Wasteland (Old all region sales)
## 1136 Rage
## 1137 Mario Hoops 3 on 3
## 1138 Kirby Air Ride
## 1139 Sled Storm
## 1140 Pokemon Battle Revolution
## 1141 NFL Street 2
## 1142 Gears of War: Judgment
## 1143 Baseball
## 1144 Yu-Gi-Oh! Duel Monsters
## 1145 Super Mario Strikers
## 1146 Buzz! The Music Quiz
## 1147 SpongeBob's Atlantis SquarePantis
## 1148 Far Cry 4
## 1149 Dance Dance Revolution: Hottest Party 2
## 1150 Moshi Monsters: Moshling Zoo
## 1151 Dollar Dash
## 1152 Far Cry 2
## 1153 F-1 World Grand Prix
## 1154 River Raid
## 1155 Silent Hill
## 1156 Dragon Quest V: Hand of the Heavenly Bride
## 1157 No Man's Sky
## 1158 Sonic Heroes
## 1159 ESPN NBA 2K5
## 1160 Diablo
## 1161 The Legend of Zelda: Twilight Princess
## 1162 Soul Edge
## 1163 Devil May Cry 4
## 1164 Mario Bros.
## 1165 Pro Evolution Soccer 2008
## 1166 SoulCalibur IV
## 1167 LEGO Harry Potter: Years 1-4
## 1168 NASCAR 2000
## 1169 Wolfenstein: The New Order
## 1170 Carnival Games: Mini Golf
## 1171 Guitar Hero: On Tour Decades
## 1172 MySims Kingdom
## 1173 Jampack Summer 2K
## 1174 Need for Speed: Most Wanted
## 1175 Guitar Hero 5
## 1176 High School Musical 3: Senior Year
## 1177 Kingdom Hearts 3D: Dream Drop Distance
## 1178 Hannah Montana: Music Jam
## 1179 Pokemon Mystery Dungeon: Explorers of Sky
## 1180 Spyro 2: Season of Flame
## 1181 Pro Evolution Soccer 2010
## 1182 NCAA Football 2002
## 1183 Conflict: Desert Storm
## 1184 Mario Party 7
## 1185 Pro Evolution Soccer 2013
## 1186 Smuggler's Run
## 1187 Fight Night Round 3
## 1188 Donkey Kong Classics
## 1189 Twisted Metal
## 1190 Dark Souls III
## 1191 Final Fight
## 1192 Dragon Quest Monsters 2
## 1193 Pokemon Pinball: Ruby & Sapphire
## 1194 LEGO Marvel Super Heroes
## 1195 Mafia II
## 1196 Dishonored
## 1197 Stuntman
## 1198 Tom Clancy's Rainbow Six 3
## 1199 Active Life: Outdoor Challenge
## 1200 BioShock 2
## 1201 007: The World is not Enough
## 1202 Spider-Man 2: Enter: Electro
## 1203 Watch Dogs
## 1204 Star Wars: The Force Unleashed II
## 1205 Ni no Kuni: Wrath of the White Witch
## 1206 Command & Conquer: Tiberian Sun
## 1207 LEGO Battles: Ninjago
## 1208 Mario Party 10
## 1209 Dead Rising 3
## 1210 Resident Evil: The Umbrella Chronicles
## 1211 Fire Emblem Fates
## 1212 Dark Cloud
## 1213 Warcraft III: The Frozen Throne
## 1214 Tom Clancy's Ghost Recon Advanced Warfighter
## 1215 Disney Fairies: Tinker Bell
## 1216 MVP Baseball 2005
## 1217 Die Hard Trilogy
## 1218 Call of Duty: Black Ops II
## 1219 Fight Night Round 4
## 1220 MySims Kingdom
## 1221 The Simpsons Game
## 1222 Mortal Kombat 3
## 1223 NFL GameDay 99
## 1224 Call of Duty: Modern Warfare: Reflex Edition
## 1225 FIFA 17
## 1226 Mario Golf: Toadstool Tour
## 1227 Tiger Woods 99 PGA Tour Golf
## 1228 Donkey Kong Country: Tropical Freeze
## 1229 Dead Space 2
## 1230 Sonic Rivals 2
## 1231 Knockout Kings
## 1232 The Simpsons Skateboarding
## 1233 NASCAR 98
## 1234 F1 Race
## 1235 Xevious
## 1236 NASCAR 99
## 1237 NBA Live 2000
## 1238 Mafia II
## 1239 Call of Duty 3
## 1240 Super Monkey Ball 2
## 1241 Pac-Man World 2
## 1242 Madden NFL 15
## 1243 Sonic & Sega All-Stars Racing
## 1244 LEGO Star Wars III: The Clone Wars
## 1245 Football Manager 2012
## 1246 Puzzle & Dragons
## 1247 Mega Man 2
## 1248 Simpsons Wrestling
## 1249 NBA Live 98
## 1250 The Simpsons Game
## 1251 Monopoly
## 1252 SoulCalibur II
## 1253 Resistance 3
## 1254 Tokyo Xtreme Racer Zero
## 1255 Final Fantasy XIV: A Realm Reborn
## 1256 NFL Blitz
## 1257 Red Faction II
## 1258 Super Scribblenauts
## 1259 Madden NFL 2001
## 1260 WWF No Mercy
## 1261 Ice Climber
## 1262 Sonic CD
## 1263 Ninja Hattori Kun: Ninja wa Shuugyou Degogiru no Maki
## 1264 Dead Rising 2
## 1265 Rock Band 2
## 1266 Pac-Man World
## 1267 Disney Sing It: Pop Hits
## 1268 Final Fantasy: Crystal Chronicles
## 1269 Medal of Honor: Frontline
## 1270 Madden NFL 09
## 1271 Drawn To Life: SpongeBob SquarePants Edition
## 1272 Banjo-Tooie
## 1273 Buzz! The BIG Quiz
## 1274 007: Quantum of Solace
## 1275 The Sims 3
## 1276 New Play Control! Mario Power Tennis
## 1277 Bratz: Forever Diamondz
## 1278 Dirge of Cerberus: Final Fantasy VII
## 1279 Nintendo World Cup
## 1280 WWF WrestleMania 2000
## 1281 Wario Land II
## 1282 Mass Effect 2
## 1283 Major League Baseball 2K5
## 1284 Fight Night 2004
## 1285 Tom Clancy's Splinter Cell: Pandora Tomorrow
## 1286 Imagine: Master Chef
## 1287 Assassin's Creed III: Liberation
## 1288 SoulCalibur IV
## 1289 Mario Golf
## 1290 Disney Princess
## 1291 Fight Night Round 3
## 1292 Metal Gear Rising: Revengeance
## 1293 Chrono Trigger
## 1294 Star Wars: The Force Unleashed II
## 1295 The House of the Dead 2 & 3 Return
## 1296 Disney Princess: Magical Jewels
## 1297 LittleBigPlanet PS Vita
## 1298 Xenogears
## 1299 The SpongeBob SquarePants Movie
## 1300 Tom Clancy's Ghost Recon: Future Soldier
## 1301 Battlefield: Bad Company
## 1302 Midway Arcade Treasures
## 1303 Wall-E
## 1305 Homefront
## 1306 Super Monkey Ball
## 1307 Donkey Kong
## 1308 Mortal Kombat 4
## 1309 Mario Superstar Baseball
## 1310 Mass Effect 3
## 1311 LEGO Batman 2: DC Super Heroes
## 1312 Medal of Honor: Warfighter
## 1313 WCW vs the World
## 1314 SNK vs. Capcom: The Match of the Millennium
## 1315 LEGO City Undercover
## 1316 Onimusha 3: Demon Siege
## 1317 Diablo III
## 1318 Batman: Arkham Knight
## 1319 BioShock
## 1320 Red Dead Revolver
## 1321 Anno 2070
## 1322 Resident Evil: Outbreak
## 1323 Smarty Pants
## 1324 Tamagotchi
## 1325 4 Nin uchi Mahjong
## 1326 Dragon Ball Z
## 1327 Game de Hakken!! Tamagotchi 2
## 1328 Namco Museum 64
## 1329 Hasbro Family Game Night
## 1330 Dragon Quest Monsters: Joker 2
## 1331 Tony Hawk's American Wasteland (Weekly american sales)
## 1332 My Word Coach
## 1333 Hello Kitty Party
## 1334 SingStar Pop
## 1335 Sonic Rivals
## 1336 SimCity (2013)
## 1337 Kirby Super Star
## 1338 Far Cry 4
## 1339 WWE SmackDown vs Raw 2008
## 1340 Kinect Joy Ride
## 1341 Rayman Raving Rabbids
## 1342 Need for Speed Rivals
## 1343 Tiger Woods PGA Tour 2005
## 1344 Dead Space 2
## 1345 NCAA Football 2003
## 1346 Frogger 2: Swampy's Revenge
## 1347 Disney Infinity
## 1348 LEGO Indiana Jones 2: The Adventure Continues
## 1349 Sonic's Ultimate Genesis Collection
## 1350 Tiger Woods PGA Tour 09 All-Play
## 1351 Disney's DuckTales
## 1352 Classic NES Series: Super Mario Bros.
## 1353 Triple Play 2000
## 1354 Dragon Quest VII: Warriors of Eden
## 1355 Cabela's Big Game Hunter
## 1356 UFC Undisputed 2010
## 1357 NBA Live 06 (Weekly american sales)
## 1358 The Legend of Zelda: The Minish Cap
## 1359 NFL Street
## 1360 Sonic Generations
## 1361 Super Metroid
## 1362 Pro Yakyuu Family Stadium '87
## 1363 Dead Space
## 1364 Resident Evil (Remake)
## 1365 Inazuma Eleven 2
## 1366 Tomb Raider (2013)
## 1367 LEGO Star Wars II: The Original Trilogy
## 1368 Toy Story 3: The Video Game
## 1369 Fight Night Round 4
## 1370 LEGO Star Wars: The Video Game
## 1371 Injustice: Gods Among Us
## 1372 Madden NFL 15
## 1373 Disney's The Lion King
## 1374 Ridge Racer
## 1375 Metroid: Other M
## 1376 Knockout Kings 2000
## 1377 Gran Turismo 4 Prologue
## 1378 Twisted Metal: Black
## 1379 NASCAR 2005: Chase for the Cup
## 1380 Call of Duty: Black Ops
## 1381 Spider-Man: The Movie
## 1382 Need For Speed: Undercover
## 1383 2Xtreme
## 1384 Far Cry 2
## 1385 Sonic Advance 3
## 1386 Final Fantasy III
## 1387 Battlefield 4
## 1388 Colin McRae Rally 3
## 1389 Madden NFL 2002
## 1390 Doom (2016)
## 1391 Final Fantasy XII: Revenant Wings
## 1392 Bakugan: Battle Brawlers
## 1393 Deus Ex: Human Revolution
## 1394 NBA Jam
## 1395 Teenage Mutant Ninja Turtles III: The Manhattan Project
## 1396 Dynasty Warriors 5
## 1397 Hannah Montana: Spotlight World Tour
## 1398 WWE '13
## 1399 Deus Ex: Human Revolution
## 1400 True Crime: Streets of LA
## 1401 The Sims 2
## 1402 Paper Mario
## 1403 Bravely Default: Flying Fairy
## 1404 Titanfall
## 1405 Duke Nukem: Time to Kill
## 1406 Persona 4: Golden
## 1407 Dead Rising 2
## 1408 Hasbro Family Game Night 2
## 1409 Disney Princess: Enchanted Journey
## 1410 Gardening Mama
## 1411 Dave Mirra Freestyle BMX 2
## 1412 Need for Speed: The Run
## 1413 LEGO Indiana Jones: The Original Adventures
## 1414 Assassin's Creed: Rogue
## 1415 Ridge Racer 7
## 1416 A Collection of Activision Classic Games for the Atari 2600
## 1417 Forza Horizon 2
## 1418 MotorStorm: Pacific Rift
## 1419 Sonic Colors
## 1420 Star Wars Knights of the Old Republic II: The Sith Lords
## 1421 LEGO Harry Potter: Years 1-4
## 1422 Pocket Monsters Stadium
## 1423 NBA 2K15
## 1424 Tom Clancy's Ghost Recon 2
## 1425 Crash Bandicoot 2: N-Tranced
## 1426 Burnout Paradise
## 1427 SingStar Abba
## 1428 Gradius
## 1429 Dragon Quest III: Soshite Densetsu e...
## 1430 Centipede
## 1431 Yoshi's New Island
## 1432 Ryse: Son of Rome
## 1433 Dead to Rights
## 1435 Marvel vs. Capcom 3: Fate of Two Worlds
## 1436 Dance Dance Revolution (Japan)
## 1437 F1 2010
## 1438 Madden NFL 98
## 1439 FIFA Soccer 09
## 1440 Namco Museum DS
## 1441 FIFA Soccer 08
## 1442 Grand Theft Auto: Chinatown Wars
## 1443 Alan Wake
## 1444 Battlefield: Bad Company
## 1445 Mortal Kombat X
## 1446 Samurai Warriors
## 1447 The Simpsons: Hit & Run
## 1448 Devil May Cry 4
## 1449 Tom Clancy's Rainbow Six: Vegas 2
## 1450 Monster Hunter Freedom
## 1451 Crysis 2
## 1452 SaGa Frontier
## 1453 SingStar Party
## 1454 FIFA Soccer 08
## 1455 The ICO & Shadow of the Colossus Collection
## 1456 Test Drive
## 1457 Mario & Luigi: Partners in Time
## 1458 Lost Planet: Extreme Condition
## 1459 Mortal Kombat 3
## 1460 Doom 3
## 1461 Donkey Kong Jungle Beat
## 1462 Need for Speed Carbon
## 1463 Max Payne 2: The Fall of Max Payne
## 1464 Command & Conquer: Red Alert 2
## 1465 MVP Baseball 2004
## 1466 WWE SmackDown vs Raw 2008
## 1467 Ratchet & Clank: Up Your Arsenal (Weekly american sales)
## 1468 Your Shape: Fitness Evolved
## 1469 Rage
## 1470 Skylanders SWAP Force
## 1471 NBA 2K14
## 1472 Spider-Man: The Movie
## 1473 WWF War Zone
## 1474 Tony Hawk's Pro Skater
## 1475 The Sims: Bustin' Out
## 1476 Triple Play 2001
## 1477 Metroid Prime 2: Echoes
## 1478 UFC Undisputed 2010
## 1479 Final Fantasy X / X-2 HD Remaster
## 1480 Corvette
## 1481 Petz Wild Animals: Dolphinz
## 1482 Pokemon Ranger: Guardian Signs
## 1483 Middle-Earth: Shadow of Mordor
## 1484 Need for Speed Underground Rivals
## 1485 LEGO Batman: The Videogame
## 1486 Dark Souls II
## 1487 World of Warcraft: Wrath of the Lich King
## 1488 Kingdom Hearts II
## 1489 The LEGO Movie Videogame
## 1490 TOCA 2: Touring Cars
## 1491 Gyromite
## 1492 NFL 2K3
## 1493 Fighting Force
## 1494 Mega Man Battle Network 4: Red Sun / Blue Moon
## 1495 MAG: Massive Action Game
## 1496 Madden NFL 97
## 1497 Cars 2
## 1498 Skylanders Giants
## 1500 TNN Motor Sports Hardcore 4x4
## 1501 IHRA Drag Racing 2
## 1502 The Beatles: Rock Band
## 1503 Tekken 6
## 1504 [Prototype]
## 1505 Deal or No Deal
## 1506 Madagascar
## 1507 Rugrats Studio Tour
## 1508 LEGO Battles
## 1509 Pitfall II: Lost Caverns
## 1510 Turok: Evolution
## 1511 High School Musical 3: Senior Year DANCE!
## 1512 Gold's Gym: Cardio Workout
## 1513 Burnout 3: Takedown
## 1515 Yu-Gi-Oh! The Sacred Cards
## 1516 Crysis 2
## 1517 NBA Live 07
## 1518 Saints Row IV
## 1519 SingStar '80s
## 1520 EA Playground
## 1521 Test Drive 5
## 1522 Romancing SaGa 3
## 1523 EA Sports Active 2
## 1524 Digimon World
## 1525 Rise of the Tomb Raider
## 1526 Need for Speed Carbon
## 1527 Yoshi's Woolly World
## 1528 Mega Man Battle Network 3 Blue / White Version
## 1529 FIFA Street
## 1530 Resident Evil Zero
## 1531 Need for Speed: Most Wanted
## 1532 Tom Clancy's Rainbow Six: Siege
## 1533 Pirates of the Caribbean: The Curse of the Black Pearl
## 1534 Transformers
## 1535 Guitar Hero: Aerosmith
## 1536 Mystery Case Files: MillionHeir
## 1537 Valkyria Chronicles
## 1538 Midnight Club 3: DUB Edition (America weekly sales)
## 1539 Champions of Norrath
## 1540 Watch Dogs
## 1541 Imagine: Wedding Designer
## 1542 Metal Gear Solid V: Ground Zeroes
## 1543 Yakuman
## 1544 Assassin's Creed Syndicate
## 1545 Army Men 3D
## 1546 WWE '13
## 1547 Twisted Metal 4
## 1548 Manhunt
## 1549 Kid Icarus: Uprising
## 1550 Silent Hill 2
## 1551 Tomb Raider: Underworld
## 1552 Castlevania: Symphony of the Night
## 1553 The Sims 2: Nightlife
## 1554 LEGO Batman: The Videogame
## 1555 Road Rash
## 1556 Pokemon Mystery Dungeon: Gates to Infinity
## 1557 Atlantis
## 1558 NBA 2K9
## 1559 WWE '12
## 1560 Tony Hawk's Underground
## 1561 Hogan's Alley
## 1562 The Elder Scrolls Online
## 1563 Jillian Michaels' Fitness Ultimatum 2009
## 1564 .hack//Infection Part 1
## 1565 Rockstar Games presents Table Tennis
## 1566 Sonic Adventure DX: Director's Cut
## 1567 Jet Li: Rise to Honor
## 1568 Battle Arena Toshinden
## 1569 Yokai Watch 3
## 1570 Kung Fu Panda
## 1571 Tamagotchi Connection: Corner Shop
## 1572 Football Manager 2011
## 1573 Devil Dice
## 1574 Final Fantasy IV
## 1575 Hyrule Warriors
## 1576 Need for Speed Carbon
## 1577 Championship Manager 03/04
## 1578 Brian Lara Cricket
## 1579 Ratatouille
## 1580 Wheel of Fortune
## 1581 LEGO The Lord of the Rings
## 1582 Winter Sports: The Ultimate Challenge
## 1583 SOCOM: U.S. Navy SEALs Confrontation
## 1584 NBA Live 2001
## 1585 Star Wars: The Force Unleashed
## 1587 Tom Clancy's Rainbow Six: Vegas
## 1588 Dragon Ball: Daimaou Fukkatsu
## 1589 Gegege no Kitarou 2: Youkai Gundan no Chousen
## 1590 Reel Fishing
## 1591 Injustice: Gods Among Us
## 1592 Pokemon XD: Gale of Darkness
## 1593 Black
## 1594 RollerCoaster Tycoon 2
## 1595 Lara Croft Tomb Raider: The Angel of Darkness
## 1596 Tom Clancy's Splinter Cell: Pandora Tomorrow
## 1597 Road Rash 3D
## 1598 Ratchet: Deadlocked
## 1599 Baldur's Gate: Dark Alliance
## 1600 Transformers: Autobots / Decepticons
## 1601 Tales of Xillia
## 1602 Diddy Kong Racing DS
## 1603 [Prototype]
## 1604 Assassin's Creed: Bloodlines
## 1605 Oddworld: Abe's Oddysee
## 1606 The Witcher 3: Wild Hunt
## 1607 Ridge Racer V
## 1608 WWE SmackDown vs. Raw 2009
## 1609 Tetris 2 (All region sales)
## 1610 Star Wars Episode III: Revenge of the Sith
## 1611 Ben 10: Protector of Earth
## 1612 Frogger: The Great Quest
## 1613 2010 FIFA World Cup South Africa
## 1614 Ninja Gaiden
## 1615 Crash Bandicoot: The Wrath of Cortex
## 1616 Driv3r
## 1617 Disney's Tarzan / Disney's Aladdin in Nasira's Revenge / Disney's The Emperor's New Groove Action Game
## 1618 Farming Simulator 2015
## 1619 Guitar Hero: Aerosmith
## 1620 Medal of Honor: Airborne
## 1621 Kirby Tilt 'n' Tumble
## 1622 SpongeBob SquarePants: Battle for Bikini Bottom
## 1623 Vigilante 8
## 1624 Castlevania
## 1625 Donkey Kong Country 2
## 1626 Bayonetta
## 1627 WarioWare, Inc.: Mega MicroGame$
## 1628 Star Wars: Battlefront II
## 1629 Madden NFL 17
## 1630 Boom Blox
## 1631 Fallout 4
## 1632 The Sims 2: Castaway
## 1633 LEGO Batman 2: DC Super Heroes
## 1634 Naruto Shippuden: Ultimate Ninja Storm 2
## 1635 Mario Power Tennis
## 1636 Intelligent Qube
## 1637 Game & Watch Gallery 2
## 1638 Game & Watch Gallery 3
## 1639 Pac-Man
## 1640 Parfait: Chocolat Second Style
## 1641 F1 2011
## 1642 Cars
## 1643 NBA Live 99
## 1644 Chocobo no Fushigi Dungeon
## 1645 Golden Sun: The Lost Age
## 1646 SimCity 2000
## 1647 Max Payne
## 1648 WCW Mayhem
## 1649 NBA 2K2
## 1651 Super Street Fighter IV: 3D Edition
## 1652 Cars
## 1653 Fuzion Frenzy
## 1654 Call of Duty: Finest Hour
## 1655 FIFA Soccer 11
## 1656 Sly Cooper and the Thievius Raccoonus
## 1657 LEGO Indiana Jones 2: The Adventure Continues
## 1658 The Magical Quest starring Mickey Mouse
## 1659 Dragon Quest IV: Michibikareshi Monotachi
## 1660 Star Wars Episode 1: Jedi Power Battles
## 1661 Dino Crisis 2
## 1662 Need for Speed Underground
## 1663 Shrek / Shrek 2 2-in-1 Gameboy Advance Video
## 1664 Test Drive 4
## 1665 FIFA Soccer 07
## 1666 World Soccer Winning Eleven 9 (JP & Others sales)
## 1667 The Lord of the Rings: The Fellowship of the Ring
## 1668 LEGO Star Wars III: The Clone Wars
## 1669 ATV Offroad Fury 3
## 1670 Pikmin 2
## 1671 Just Dance 2016
## 1672 Disney Sing It
## 1673 Battlefield: Hardline
## 1674 WWE 2K16
## 1675 Dragon Ball Z: La Legende Saien
## 1676 TwinBee
## 1677 Ganbare Goemon! Karakuri Douchuu
## 1678 NFL 2K
## 1679 SolarStriker
## 1680 Enter the Matrix
## 1681 NHL 2002
## 1682 Mario vs. Donkey Kong 2: March of the Minis
## 1683 PokéPark Wii: Pikachu's Adventure
## 1684 One Piece: Pirate Warriors
## 1685 WWE 2K14
## 1686 Metal Gear Solid: Portable Ops
## 1687 Nuclear Strike
## 1688 Captain Toad: Treasure Tracker
## 1689 WWE SmackDown vs Raw 2008
## 1690 The Simpsons: Road Rage
## 1691 Pro Evolution Soccer 2008
## 1692 SpongeBob SquarePants: Revenge of the Flying Dutchman
## 1693 Mario & Sonic at the London 2012 Olympic Games
## 1694 Scarface: The World is Yours
## 1695 Kobe Bryant in NBA Courtside
## 1696 Disney's Chip 'n Dale: Rescue Rangers
## 1697 The Dukes of Hazzard: Racing for Home
## 1699 FIFA 14
## 1700 Spider-Man: The Movie
## 1701 Final Fantasy I & II: Dawn of Souls
## 1702 NBA 2K17
## 1703 Pokemon Super Mystery Dungeon
## 1704 Just Dance 4
## 1705 Metal Gear Solid VR Missions
## 1706 Pole Position
## 1707 Resident Evil: Operation Raccoon City
## 1708 LEGO Indiana Jones: The Original Adventures
## 1709 Pro Yakyuu Family Stadium '88
## 1710 Shenmue
## 1711 Mario Tennis
## 1712 Tony Hawk's Pro Skater 2
## 1713 WWE '12
## 1714 WWE SmackDown vs. Raw 2010
## 1715 Plants vs. Zombies
## 1716 Sonic the Hedgehog
## 1717 Super Ghouls 'n Ghosts
## 1718 Spore
## 1719 Soviet Strike
## 1720 Your Shape: Fitness Evolved 2012
## 1721 Army of Two
## 1722 Gun
## 1723 Ty the Tasmanian Tiger
## 1724 Wario Land: Shake It!
## 1725 Sonic Rush Adventure
## 1726 Medal of Honor: Warfighter
## 1727 Mega Man 3
## 1728 Ratchet & Clank (2016)
## 1729 Mission: Impossible
## 1730 Romancing SaGa 2
## 1731 Cabela's Dangerous Hunts
## 1732 Cool Boarders 4
## 1733 Rage Racer
## 1734 Medal of Honor: Rising Sun
## 1735 Football Manager 2013
## 1736 Destruction Derby 2
## 1737 Mirror's Edge
## 1738 Destiny: The Taken King
## 1739 Mario vs. Donkey Kong
## 1740 007: Quantum of Solace
## 1741 EA Sports Active: More Workouts
## 1742 Fallout: New Vegas
## 1743 Need for Speed: Most Wanted
## 1744 Final Fantasy Tactics: The War of the Lions
## 1745 Midnight Club 3: DUB Edition Remix
## 1746 Tom Clancy's Ghost Recon: Jungle Storm
## 1747 SingStar
## 1748 Bushido Blade
## 1749 LEGO Star Wars III: The Clone Wars
## 1750 NASCAR Thunder 2002
## 1751 Jet Force Gemini
## 1752 Mega Man X
## 1753 Yu-Gi-Oh! The Sacred Cards (American and Others sales)
## 1754 Sega Rally Championship
## 1755 Test Drive: Off Road
## 1756 Medal of Honor Heroes 2
## 1757 Sniper: Ghost Warrior
## 1758 Rocksmith
## 1759 LEGO Star Wars: The Video Game
## 1760 FIFA Soccer 10
## 1761 Plants vs. Zombies: Garden Warfare
## 1762 Worldwide Soccer Manager 2009
## 1763 Omerta: City of Gangsters
## 1764 Gauntlet: Dark Legacy
## 1765 Ninja Gaiden Sigma
## 1766 Bad Boys: Miami Takedown
## 1767 Kaboom!
## 1768 Red Dead Redemption: Undead Nightmare
## 1769 Sonic and the Black Knight
## 1770 Call of Duty 4: Modern Warfare
## 1771 Qix
## 1772 Derby Stallion III
## 1773 Doraemon
## 1774 High School Musical 2: Work This Out!
## 1775 Ratchet & Clank: All 4 One
## 1776 Donkey Konga
## 1777 Fight Night Champion
## 1778 Dragon Quest I & II
## 1779 Tak and the Power of Juju
## 1780 Asteroids
## 1781 Puyo Puyo Sun Ketteiban
## 1782 Pokemon Rumble Blast
## 1783 Action Bass
## 1784 Tenchu: Wrath of Heaven
## 1785 Shadow of the Colossus
## 1786 Brave Fencer Musashi
## 1787 Hot Shots Golf: Out of Bounds
## 1788 Dance Dance Revolution Extreme 2
## 1789 Mirror's Edge
## 1790 Rabbids Go Home
## 1791 South Park
## 1792 Commando
## 1793 Pilotwings
## 1794 Resident Evil - Code: Veronica
## 1795 Super R.C. Pro-Am
## 1796 The Lord of the Rings: The Return of the King
## 1797 LEGO Star Wars: The Video Game
## 1798 Royal Palace of White Sword and The City of Gentiles
## 1799 Guitar Hero 5
## 1800 Mobile Suit Gundam: Federation vs. Zeon
## 1801 Need for Speed Underground 2
## 1802 MechAssault
## 1803 ModNation Racers
## 1804 LEGO Star Wars III: The Clone Wars
## 1805 Derby Stallion 99
## 1806 Cars
## 1807 Fantasy Life
## 1808 Tom Clancy's Rainbow Six 3: Black Arrow
## 1809 WWE 2K15
## 1810 Donkey Kong
## 1811 Jampack Winter '98
## 1812 WWE 2K14
## 1813 Alien: Isolation
## 1814 Yakuza 3
## 1815 Pokémon Mystery Dungeon: Red Rescue Team (US weekly sales)
## 1816 The Beatles: Rock Band
## 1817 Dragon Age II
## 1818 Moon Patrol
## 1819 Supercar Street Challenge
## 1820 Pilotwings 64
## 1821 Crackdown 2
## 1822 Final Fantasy XIV: A Realm Reborn
## 1823 Castlevania: Lords of Shadow
## 1824 Rocksmith
## 1825 Disney Infinity 2.0: Marvel Super Heroes
## 1826 SOCOM: U.S. Navy SEALs Fireteam Bravo
## 1827 Call Of Duty 2: Big Red One
## 1828 Yoshi's Cookie
## 1829 Guitar Hero 5
## 1830 Worldwide Soccer Manager 2008
## 1831 Spider-Man 2
## 1832 Counter-Strike
## 1833 Mad Max (2015)
## 1834 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 1835 GRID
## 1836 Guitar Hero Encore: Rocks The 80s
## 1837 Sunset Overdrive
## 1839 Tom Clancy's Splinter Cell: Chaos Theory
## 1840 Donkey Kong Jr.
## 1841 Arc the Lad
## 1842 NBA Jam Tournament Edition
## 1843 Need for Speed: ProStreet
## 1844 Pikmin 3
## 1845 Legend of Mana
## 1846 Lumines: Puzzle Fusion
## 1847 Toy Story 3: The Video Game
## 1848 Guitar Hero 5
## 1849 Megamania
## 1850 Medal of Honor: Airborne
## 1851 The Legend of Zelda: Tri Force Heroes
## 1852 Jungle Hunt
## 1853 Triple Play 98
## 1854 LEGO The Lord of the Rings
## 1855 Petz Dogz 2
## 1856 WWE SmackDown vs. Raw 2011
## 1857 Yu-Gi-Oh! Duel Monsters II: Dark Duel Stories
## 1858 Lode Runner
## 1859 The Final Fantasy Legend
## 1860 Famicom Jump: Eiyuu Retsuden
## 1861 F-Zero X
## 1862 Popeye
## 1863 NERF N-Strike
## 1864 NBA Live 2001
## 1865 SingStar Legends
## 1866 SingStar Rocks!
## 1867 Tales of Symphonia
## 1868 Untold Legends: Brotherhood of the Blade
## 1869 Star Ocean: The Second Story
## 1870 Lightning Returns: Final Fantasy XIII
## 1871 Star Wars: The Force Unleashed
## 1872 Imagine: Babysitters
## 1873 The Simpsons Game
## 1874 Yakuza 2
## 1875 Skate 2
## 1876 Dragon Ball Z: The Legacy of Goku II
## 1877 Virtua Fighter 5
## 1878 NFL 2K1
## 1879 BeatMania
## 1880 Namco Museum Battle Collection
## 1881 LEGO Star Wars II: The Original Trilogy
## 1882 Madden NFL 2004
## 1883 Empire: Total War
## 1884 The Godfather
## 1885 Tiger Woods PGA Tour 10
## 1886 Star Wars: Bounty Hunter
## 1887 Densha De Go!
## 1888 Dante's Inferno
## 1889 Sonic & Sega All-Stars Racing
## 1890 Skylanders Giants
## 1891 Endless Ocean
## 1892 NFL Blitz 2000
## 1893 Sonic Free Riders
## 1894 NASCAR Thunder 2004
## 1895 Prince of Persia
## 1896 SpongeBob SquarePants: Revenge of the Flying Dutchman
## 1897 Grand Theft Auto V
## 1898 The Biggest Loser
## 1899 Fisherman's Bass Club
## 1900 MySims Agents
## 1901 Resident Evil: The Darkside Chronicles
## 1902 NCAA Football 13
## 1903 Grand Theft Auto: Chinatown Wars
## 1904 FIFA Soccer 11
## 1905 The Orange Box
## 1906 Joust
## 1907 Tomb Raider: Underworld
## 1908 Tom Clancy's Ghost Recon 2
## 1909 DiRT 3
## 1910 LEGO City Undercover
## 1911 Spore Creatures
## 1912 Ready 2 Rumble Boxing
## 1913 Dragon Ball Z: Taiketsu
## 1914 Disney's Lilo & Stitch
## 1915 Star Fox: Assault
## 1916 Naruto: Ultimate Ninja Storm
## 1917 Marvel vs. Capcom 3: Fate of Two Worlds
## 1918 NCAA Football 14
## 1919 Doko Demo Issyo
## 1920 Call of Duty 3
## 1921 Imagine: Fashion Designer New York
## 1922 Red Dead Redemption: Undead Nightmare
## 1923 Bully: Scholarship Edition
## 1924 Virtua Fighter
## 1925 Championship Manager 99/00
## 1926 WWE SmackDown vs. Raw 2010
## 1927 Pro Evolution Soccer 2008
## 1928 Super Princess Peach
## 1929 NHL 99
## 1930 SoulCalibur III
## 1931 Skylanders SWAP Force
## 1932 F1 2012
## 1933 World Tour Soccer
## 1934 Disney Universe
## 1935 Ridge Racer Revolution
## 1936 LEGO Pirates of the Caribbean: The Video Game
## 1937 Hot Wheels Turbo Racing
## 1938 NCAA Football 99
## 1939 Mortal Kombat: Armageddon
## 1940 Aliens vs Predator
## 1941 Freekstyle
## 1942 Junior Brain Trainer
## 1943 Darksiders
## 1944 DiRT
## 1945 Call of Duty 4: Modern Warfare
## 1946 Simple 1500 Series Vol. 1: The Mahjong
## 1947 Sega Superstars Tennis
## 1948 NBA Street V3
## 1949 Sleeping Dogs
## 1950 Mercenaries 2: World in Flames
## 1951 Worms Armageddon
## 1952 Hulk
## 1953 LEGO Indiana Jones: The Original Adventures
## 1954 NFL Blitz
## 1955 NFL Quarterback Club 98
## 1956 DJ Hero
## 1957 Dora the Explorer: Dora Saves the Mermaids
## 1958 Diablo II: Lord of Destruction
## 1959 Naruto Shippuden: Ultimate Ninja Storm 4
## 1960 Spider-Man 2
## 1961 Virtua Tennis 3
## 1962 Seek and Destroy
## 1963 Warhawk
## 1964 Apollo Justice: Ace Attorney
## 1965 Assassin's Creed: Rogue
## 1966 Cosmic Ark
## 1967 SOCOM: U.S. Navy SEALs Fireteam Bravo 2
## 1968 Skylanders: Trap Team
## 1969 Aliens vs Predator
## 1970 Defender
## 1971 Dance on Broadway
## 1972 Adventure Island
## 1973 Arc the Lad II
## 1974 Tag Team Match M.U.S.C.L.E.
## 1975 Derby Stallion 96
## 1976 UFC Undisputed 3
## 1977 NBA 2K3
## 1978 Dragon Ball: XenoVerse
## 1979 The Simpsons: Road Rage
## 1980 Dave Mirra Freestyle BMX
## 1981 Imagine: Animal Doctor
## 1982 WWE SmackDown vs. Raw 2010
## 1983 Forza Motorsport
## 1984 Sonic the Hedgehog
## 1985 MySims Agents
## 1986 Monster Rancher 2
## 1987 Pokemon Conquest
## 1988 The Simpsons Game
## 1989 Guinness World Records: The Videogame
## 1990 MVP Baseball 2003
## 1992 Dragon Ball Z: Budokai Tenkaichi 3
## 1993 Disney Tangled
## 1994 Tales of Destiny
## 1995 ATV: Quad Power Racing
## 1996 Disney Fairies: Tinker Bell and the Lost Treasure
## 1997 Mega Man X4
## 1998 Naruto: Clash of Ninja 2
## 1999 Dance Dance Revolution SuperNOVA
## 2000 Brink
## 2001 F-Zero: Maximum Velocity
## 2002 Bomberman 64
## 2003 Jeremy McGrath Supercross 98
## 2004 LEGO Indiana Jones 2: The Adventure Continues
## 2005 Project CARS
## 2006 Need for Speed: Most Wanted
## 2007 Kirby: Mass Attack
## 2008 LEGO Marvel Super Heroes
## 2009 ZhuZhu Pets
## 2010 Tom Clancy's Ghost Recon Advanced Warfighter 2
## 2011 MotorStorm: Arctic Edge
## 2012 WipEout Pure
## 2013 EA Sports UFC
## 2014 MX vs. ATV Unleashed
## 2015 Sonic Unleashed
## 2016 Tiger Woods PGA Tour 08
## 2017 Rayman Origins
## 2018 Epic Mickey 2: The Power of Two
## 2019 NCAA March Madness 2004
## 2021 Bomberman
## 2022 The Simpsons Game
## 2023 Tomb Raider
## 2024 Rock Band 2
## 2025 Street Fighter Alpha 3
## 2026 Bulletstorm
## 2027 FIFA Soccer 08
## 2028 Naruto: Clash of Ninja Revolution
## 2029 Tom Clancy's Ghost Recon Advanced Warfighter 2
## 2030 ZombiU
## 2031 Shrek 2
## 2032 Petz: Catz 2
## 2033 Tales of Graces f
## 2034 Final Fight 2
## 2035 Wall-E
## 2036 The Lost World: Jurassic Park
## 2037 Ace Combat 6: Fires of Liberation
## 2038 Madden NFL 07
## 2039 Disney Infinity 2.0: Marvel Super Heroes
## 2040 Harry Potter and the Prisoner of Azkaban
## 2041 Pong: The Next Level
## 2042 Bayonetta 2
## 2043 Prince of Persia
## 2044 God of War: Ghost of Sparta
## 2045 Sonic Generations
## 2046 Ninja Gaiden II
## 2047 NBA Jam Tournament Edition
## 2048 Championship Manager 3
## 2049 Guitar Hero: Warriors of Rock
## 2050 Oshare Majo Love and Berry: DS Collection
## 2051 Monster Rancher
## 2052 The LEGO Movie Videogame
## 2053 DiRT 2
## 2054 Rayman Legends
## 2055 NERF N-Strike Elite
## 2056 Ford Racing 2
## 2057 Breath of Fire III
## 2058 PES 2009: Pro Evolution Soccer
## 2059 Dead or Alive 2
## 2060 1942
## 2061 Excitebike 64
## 2062 NES Open Tournament Golf
## 2063 Game & Watch Gallery
## 2064 Jissen Pachi-Slot Hisshouhou: Hokuto no Ken
## 2065 SoulCalibur II
## 2066 Haze
## 2067 UFC Undisputed 3
## 2068 Winning Eleven: Pro Evolution Soccer 2007 (All Region sales)
## 2069 Road & Track Presents: The Need for Speed
## 2070 NFL GameDay 2001
## 2071 Killzone: Mercenary
## 2072 NBA Live 97
## 2073 Dynasty Warriors 3: Xtreme Legends
## 2074 Zoo Tycoon DS
## 2075 Rocksmith 2014
## 2076 Dead Space 3
## 2077 Wheel of Fortune
## 2078 Disney Infinity
## 2079 Dark Souls
## 2080 Puzzler Collection
## 2081 Jampack Winter 2000
## 2082 Dead Space 3
## 2083 Phoenix Wright: Ace Attorney
## 2084 NFL Fever 2002
## 2085 The Simpsons: Hit & Run
## 2086 Littlest Pet Shop: Winter
## 2088 Tom Clancy's Splinter Cell: Blacklist
## 2089 Ace Combat X: Skies of Deception
## 2090 NCAA Football 12
## 2091 LEGO Pirates of the Caribbean: The Video Game
## 2092 Band Hero
## 2093 Cars: Race-O-Rama
## 2094 Oddworld: Abe's Exoddus
## 2095 EyePet
## 2096 Scooby-Doo! First Frights
## 2097 Midnight Club: LA Remix
## 2098 The Bouncer
## 2099 Guitar Hero: Aerosmith
## 2100 WWE SmackDown vs Raw 2008
## 2101 FIFA Soccer 10
## 2102 Shadow The Hedgehog
## 2103 Farming Simulator 2013
## 2104 Fallout 3
## 2105 Cars
## 2106 Pro Evolution Soccer 2008
## 2107 Far Cry 3
## 2108 Xenoblade Chronicles
## 2109 Just Dance 2014
## 2110 Mario Party Advance
## 2111 Sonic & Sega All-Stars Racing
## 2112 Tetris 2
## 2113 NASCAR 99
## 2116 Kingdom Hearts Re:coded
## 2117 South Park: The Stick of Truth
## 2118 Driver: San Francisco
## 2119 Sniper Elite V2
## 2120 Far Cry 4
## 2121 Grand Theft Auto: San Andreas
## 2122 Tom Clancy's Splinter Cell: Blacklist
## 2123 Pro Evolution Soccer 2014
## 2124 Madden NFL 16
## 2125 Madden NFL 10
## 2126 Brutal Legend
## 2127 Tamagotchi Connection: Corner Shop 2
## 2128 Final Fantasy Type-0
## 2129 Madden NFL 08
## 2130 de Blob
## 2131 NCAA Football 06
## 2132 Mass Effect 3
## 2133 NBA 2K10
## 2134 Fire Emblem
## 2136 Skylanders: Spyro's Adventure
## 2137 Club Penguin: Game Day!
## 2138 NHL 2004
## 2139 Grand Theft Auto: Vice City Stories
## 2140 NBA 2K16
## 2141 FIFA Soccer 2005
## 2142 LEGO The Lord of the Rings
## 2143 Romancing SaGa
## 2144 Donkey Kong Junior
## 2145 LEGO Star Wars II: The Original Trilogy
## 2147 Final Fantasy X / X-2 HD Remaster
## 2148 Medal of Honor: Underground
## 2149 The Sims 2
## 2150 Dark Cloud 2
## 2151 Jampack Summer '99
## 2152 PlayStation All-Stars Battle Royale
## 2153 Dance Dance Revolution 2nd ReMIX
## 2154 Monster High: Ghoul Spirit
## 2155 Dragon Quest X
## 2156 LEGO Pirates of the Caribbean: The Video Game
## 2157 Gangs of London
## 2158 Mortal Kombat Trilogy
## 2159 Star Soldier
## 2160 Sonic Unleashed
## 2161 Lost Planet 2
## 2162 NHL 2001
## 2163 Dragon Quest Monsters: Terry's Wonderland 3D
## 2164 My Weight Loss Coach
## 2165 Tom Clancy's Ghost Recon: Future Soldier
## 2166 Mega Man Star Force Dragon / Leo / Pegasus
## 2167 Shinobi
## 2168 Mortal Kombat: Deadly Alliance
## 2169 The Witcher 2: Assassins of Kings
## 2170 PilotWings Resort
## 2171 Naruto Shippuden: Ultimate Ninja Storm 3
## 2172 LEGO Jurassic World
## 2173 ESPN NBA 2K5
## 2175 World Championship Poker
## 2176 Tom Clancy's Splinter Cell: Chaos Theory
## 2177 SpongeBob SquarePants: Battle for Bikini Bottom
## 2178 South Park: The Stick of Truth
## 2179 Ben 10: Alien Force
## 2180 SingStar Abba
## 2181 Cars 2
## 2182 Wild ARMs
## 2183 Kessen
## 2184 Yu-Gi-Oh! Worldwide Edition: Stairway to the Destined Duel
## 2185 NCAA Football 2000
## 2186 Brutal Legend
## 2187 Skylanders: Spyro's Adventure
## 2188 Guitar Hero: Metallica
## 2189 Evolve
## 2190 WWE SmackDown vs. Raw 2009
## 2191 Army of Two: The 40th Day
## 2192 Tony Hawk: RIDE
## 2193 Lego Batman 3: Beyond Gotham
## 2194 Wii Play: Motion
## 2195 Killzone
## 2196 The Tomb Raider Trilogy
## 2197 Colin McRae Rally 04
## 2198 Star Fox 64 3D
## 2199 The SpongeBob SquarePants Movie
## 2200 Rocksmith 2014
## 2201 Midway Presents Arcade's Greatest Hits: The Atari Collection 1
## 2202 Cars
## 2203 Assassin's Creed III
## 2204 Castlevania: Lament of Innocence
## 2205 Mario Tennis Open
## 2206 The Witcher 2: Assassins of Kings
## 2207 Bayonetta
## 2208 Destroy All Humans!
## 2209 MVP Baseball 2005
## 2210 SaGa Frontier 2
## 2211 NCAA Football 10
## 2212 MLB 2000
## 2213 The Legend of Zelda: Twilight Princess HD
## 2214 Bully
## 2215 Prince of Persia: The Sands of Time
## 2216 Phantasy Star Portable
## 2217 Hot Shots Golf Fore!
## 2218 MLB 06: The Show
## 2219 NHL 2003
## 2220 Operation Flashpoint: Dragon Rising
## 2221 Nickelodeon Fit
## 2222 Buzz! Quiz World
## 2223 Bentley's Hackpack
## 2224 Tony Hawk's Pro Skater 4
## 2225 Borderlands 2
## 2226 EA Sports Grand Slam Tennis
## 2227 White Knight Chronicles: International Edition
## 2228 SSX
## 2229 Sonic Riders: Zero Gravity
## 2230 LEGO Jurassic World
## 2231 Build-A-Bear Workshop
## 2232 Crash City Mayhem
## 2233 Spider-Man
## 2234 Mega Man 4
## 2235 Castlevania II: Simon's Quest
## 2236 Toy Story 2: Buzz Lightyear to the Rescue!
## 2237 Teenage Mutant Ninja Turtles
## 2238 MLB 07: The Show
## 2239 Skylanders: Trap Team
## 2240 Cars
## 2241 Brothers in Arms: Hell's Highway
## 2242 Inazuma Eleven 3
## 2243 Pokken Tournament
## 2244 SnoCross Championship Racing
## 2245 Teenage Mutant Ninja Turtles
## 2246 Top Gun: Combat Zones
## 2247 Blue Dragon
## 2248 007: The World is not Enough
## 2249 NCAA Football 11
## 2250 NHL 98
## 2251 FIFA Street
## 2252 EA Sports Active 2
## 2253 SpongeBob SquarePants: The Yellow Avenger
## 2254 WWE SmackDown vs. Raw 2009
## 2255 Dante's Inferno
## 2256 Wipeout: In The Zone
## 2257 Space Jam
## 2258 Kung Fu Panda
## 2259 Knockout Kings 2000
## 2260 Balloon Fight
## 2261 Assassin's Creed
## 2262 Disney Magical World
## 2263 Crysis 3
## 2264 Lego Batman 3: Beyond Gotham
## 2265 Dynasty Warriors 7
## 2266 The Evil Within
## 2267 MLB 12: The Show
## 2268 Sonic Riders
## 2269 Starsky & Hutch
## 2270 Tobal No.1
## 2271 Lost Odyssey
## 2272 MLB 15: The Show
## 2273 Operation Flashpoint: Dragon Rising
## 2274 Homefront
## 2275 AMF Bowling Pinbusters!
## 2276 Street Hoops
## 2277 Avatar: The Game
## 2278 Harvest Moon 3D: A New Beginning
## 2279 Tom Clancy's EndWar
## 2280 Knockout Kings 2002
## 2281 Tokyo Xtreme Racer 3
## 2282 LEGO Indiana Jones 2: The Adventure Continues
## 2283 Colin McRae Rally 2.0
## 2284 Glover
## 2285 MX vs. ATV Reflex
## 2286 Minecraft: Story Mode
## 2288 Marvel: Ultimate Alliance 2
## 2289 Call of Duty: World at War
## 2290 Super Momotarou Dentetsu III
## 2291 Sonic Mega Collection Plus
## 2292 DJ Hero
## 2293 Dragon Age: Inquisition
## 2294 The Simpsons Game
## 2295 Tiger Woods PGA Tour 2002
## 2297 Mini-Yonku Shining Scorpion: Let's & Go!!
## 2298 MLB 2005
## 2299 SOCOM 4: U.S. Navy SEALs
## 2300 Burnout Revenge
## 2301 Buzz! Quiz TV
## 2302 We Ski & Snowboard
## 2303 Destruction Derby
## 2304 TouchMaster 2
## 2305 Crysis 3
## 2306 3Xtreme
## 2307 Hot Shots Tennis
## 2308 Sonic Heroes
## 2309 Resistance: Retribution
## 2310 Tiger Woods PGA Tour 12: The Masters
## 2311 Star Wars: The Force Unleashed
## 2312 Madden NFL 99
## 2313 Spider-Man 3
## 2314 James Bond 007: Agent Under Fire
## 2315 Samba De Amigo
## 2316 The Elder Scrolls Online
## 2317 Pure
## 2318 FIFA Soccer 09 All-Play
## 2319 Fossil Fighters
## 2320 LittleBigPlanet Karting
## 2321 X-Men Legends
## 2322 NBA Live 2005
## 2323 Harry Potter: Quidditch World Cup
## 2324 The Biggest Loser: Ultimate Workout
## 2325 Madagascar
## 2326 Call of Juarez: Bound in Blood
## 2327 Killzone: Liberation
## 2328 Madden NFL 08
## 2329 Blitz: The League
## 2330 LEGO Jurassic World
## 2331 Castlevania: Circle of the Moon
## 2332 Sonic Chronicles: The Dark Brotherhood
## 2333 Tiger Woods PGA Tour 06
## 2334 Classic NES Series: The Legend of Zelda
## 2335 The Jak and Daxter Collection
## 2336 Fire Emblem: The Sacred Stones
## 2337 Pokemon Card GB2: Here Comes Team GR!
## 2338 Finding Nemo
## 2339 CSI: Hard Evidence
## 2340 Ace Combat 2
## 2341 F1 2009
## 2342 NFL 2K2
## 2343 EA Sports UFC 2
## 2344 Dissidia 012: Duodecim Final Fantasy
## 2345 LEGO Marvel Super Heroes
## 2346 F1 2010
## 2347 Monster 4X4: World Circuit
## 2348 Call of Duty: Modern Warfare 2
## 2349 Wii Fit U
## 2350 Kingdoms of Amalur: Reckoning
## 2351 Call of Duty: Modern Warfare 3
## 2352 MLB 2001
## 2353 SingStar Anthems
## 2354 Seiken Densetsu 3
## 2355 Mega Man 8 Anniversary Collector's Edition
## 2356 WWE SmackDown vs. Raw 2011
## 2357 Sleeping Dogs
## 2358 Grand Theft Auto IV
## 2359 Peppa Pig: The Game
## 2360 Michael Jackson: The Experience
## 2361 Ghostbusters: The Video Game
## 2362 Rock Band 3
## 2363 Resident Evil: Revelations
## 2364 NBA 2K6
## 2365 Buzz! The Mega Quiz
## 2366 Endless Ocean: Blue World
## 2367 Star Wars: Rebel Assault II - The Hidden Empire
## 2368 Just Cause 3
## 2369 Metal Gear Ac!d
## 2370 Cooking Mama: World Kitchen
## 2371 Tekken Tag Tournament 2
## 2372 ESPN NHL 2K5
## 2373 GRID
## 2374 Phantasy Star Portable 2
## 2375 Crimson Skies: High Road to Revenge
## 2376 Spec Ops: Ranger Elite
## 2377 Gex
## 2378 NBA 2K14
## 2379 DiRT
## 2380 Derby Stallion II
## 2381 Gold's Gym: Dance Workout
## 2382 Red Faction: Guerrilla
## 2383 Tom Clancy's Ghost Recon: Island Thunder
## 2384 Mercenaries 2: World in Flames
## 2385 Need for Speed: V-Rally
## 2386 Kingdom Hearts Re: Chain of Memories
## 2387 Pictionary
## 2388 NCAA Football 13
## 2389 Kingdoms of Amalur: Reckoning
## 2390 NFL GameDay '97
## 2391 Beijing 2008
## 2392 The House of the Dead: Overkill
## 2393 Tony Hawk's Project 8
## 2394 Injustice: Gods Among Us
## 2395 NHL 2000
## 2396 Buzz! Master Quiz
## 2397 Brothers in Arms: Hell's Highway
## 2398 Fight Night Round 2
## 2399 Wizards of Waverly Place
## 2400 Scooby-Doo! First Frights
## 2401 Conflict: Desert Storm
## 2402 Triple Play 2002
## 2403 Vagrant Story
## 2404 Lemmings
## 2405 Warriors Orochi
## 2406 Guitar Hero: Warriors of Rock
## 2407 Enduro
## 2408 Tales of Xillia 2
## 2409 SingStar '90s
## 2410 Monster Strike 3DS
## 2411 Tomb Raider: Anniversary
## 2412 Winning Eleven: Pro Evolution Soccer 2007
## 2413 Darksiders II
## 2414 Ghostbusters: The Video Game
## 2415 The World Ends With You
## 2417 Rocky
## 2418 Dragon Quest VIII: Journey of the Cursed King
## 2419 Ford Racing
## 2420 Madden Football 64
## 2421 MLB 99
## 2422 Dragon Ball Z: Burst Limit
## 2424 The Legendary Starfy
## 2425 2010 FIFA World Cup South Africa
## 2426 Dynasty Warriors 4: Xtreme Legends
## 2427 Ninja Gaiden Sigma 2
## 2428 Forza Horizon 2
## 2429 Skate 2
## 2430 FIFA Soccer 08
## 2431 Army Men: Air Attack
## 2432 Need for Speed: Nitro
## 2433 Madden NFL 09 All-Play
## 2434 NBA 2K8
## 2435 Far Cry: Primal
## 2436 Street Fighter Alpha 2
## 2437 Tiger Woods PGA Tour 2005
## 2438 Army of Two: The 40th Day
## 2439 Blazing Angels: Squadrons of WWII
## 2440 Castlevania III: Dracula's Curse
## 2441 Harry Potter and the Order of the Phoenix
## 2442 Rampage World Tour
## 2443 Burnout Legends
## 2444 WWE 2K15
## 2445 Overwatch
## 2446 Ratatouille
## 2447 NFL GameDay
## 2448 Burnout 2: Point of Impact
## 2449 Kirby: Planet Robobot
## 2450 Street Fighter EX3
## 2451 Karaoke Revolution Glee
## 2452 Sniper Elite V2
## 2453 Thief (2014)
## 2454 Spider-Man 2
## 2455 Golden Sun: Dark Dawn
## 2456 Tiger Woods PGA Tour 11
## 2457 Devil May Cry HD Collection
## 2458 MLB 16: The Show
## 2459 NBA 2K10
## 2460 Xenoblade Chronicles X
## 2461 Petz Dogz Fashion
## 2462 The Incredibles
## 2463 NCAA Football 11
## 2464 Dragon Age II
## 2465 ATV Quad Power Racing 2
## 2466 Harvest Moon: Tree of Tranquility
## 2467 Final Fantasy
## 2468 Street Fighter X Tekken
## 2469 Rocket Power: Team Rocket Rescue
## 2470 Duke Nukem Forever
## 2471 Big Mutha Truckers
## 2472 Borderlands: The Handsome Collection
## 2473 Rogue Galaxy
## 2474 ESPN College Hoops 2K5
## 2475 Metroid: Zero Mission
## 2476 FIFA 15
## 2477 Time Crisis 4
## 2478 Ben 10: Protector of Earth
## 2479 Need for Speed Rivals
## 2480 Q*bert
## 2481 WWE SmackDown vs. Raw 2009
## 2482 Ace Combat 3: Electrosphere
## 2483 Dynasty Warriors 2
## 2484 Battle of Giants: Dinosaurs
## 2486 Lizzie McGuire 2: Lizzie Diaries
## 2487 Borderlands 2
## 2488 FIFA Soccer World Championship
## 2489 Brute Force
## 2490 Dance Central 3
## 2491 Yu-Gi-Oh! Dark Duel Stories
## 2492 The Game of Life
## 2493 Mega Man Legends
## 2494 NCAA Football 12
## 2495 Sly 3: Honor Among Thieves
## 2496 The Price is Right
## 2497 Sid Meier's Civilization Revolution
## 2499 I Spy: Fun House
## 2500 The Amazing Spider-Man (Console Version)
## 2501 Dragon Ball: Raging Blast 2
## 2502 MediEvil
## 2503 Casper
## 2504 Deca Sports 2
## 2505 James Bond 007: Nightfire
## 2506 Madden NFL 17
## 2507 Tony Hawk's Underground 2 Remix
## 2508 Tony Hawk's Pro Skater 3
## 2509 Marvel: Ultimate Alliance
## 2510 Star Wars The Clone Wars: Republic Heroes
## 2511 DJ Hero 2
## 2512 Street Fighter V
## 2513 Need for Speed: Hot Pursuit 2
## 2514 Clu Clu Land
## 2515 Killer Instinct Gold
## 2516 Amped: Freestyle Snowboarding
## 2517 Custer's Revenge
## 2518 MediEvil: Resurrection
## 2519 DmC: Devil May Cry
## 2520 Tales of the Abyss
## 2521 Rocket Power: Beach Bandits
## 2522 Guitar Hero: Warriors of Rock
## 2523 Hasbro Family Game Night 3
## 2524 Madden NFL 16
## 2525 Stranglehold
## 2526 Imagine: Rock Star
## 2527 Shin Megami Tensei: Persona 4
## 2528 SingStar Vol. 2
## 2530 Madden NFL 25
## 2531 Twisted Metal (2012)
## 2532 Dragon Warrior III
## 2533 Disney's The Little Mermaid: Ariel's Undersea Adventure
## 2534 Ready 2 Rumble Boxing: Round 2
## 2535 Kamaitachi no Yoru
## 2536 Patapon
## 2537 Tales of Destiny II
## 2538 Super Bomberman 2
## 2539 NASCAR 2001
## 2540 EA Sports Active NFL Training Camp
## 2541 The Legend of Zelda: Four Swords Adventures
## 2542 Jikkyou Powerful Pro Yakyuu '99 Kaimakuban
## 2543 Guitar Hero Live
## 2544 Valkyrie Profile
## 2545 Final Fantasy Type-0
## 2546 Pro Evolution Soccer 2010
## 2547 Army Men: Sarge's Heroes
## 2548 Mega Man
## 2549 Tom Clancy's Rainbow Six 3
## 2550 Lego Batman 3: Beyond Gotham
## 2551 EarthBound
## 2552 DiRT 2
## 2553 Professor Layton vs Phoenix Wright: Ace Attorney
## 2554 The Next Tetris
## 2555 Dying Light
## 2556 NCAA Football 10
## 2557 Ben 10: Alien Force
## 2558 World Soccer Jikkyou Winning Eleven 3: World Cup France '98
## 2559 Final Fantasy XI: Wings of the Goddess
## 2560 The Sims 2
## 2561 Guitar Hero: Metallica
## 2562 NCAA Football 14
## 2563 MadWorld
## 2564 Fight Night Champion
## 2565 Who wants to be a millionaire
## 2566 Yakuza
## 2567 Star Wars Rogue Squadron III: Rebel Strike
## 2568 ABBA: You Can Dance
## 2569 Moto Racer
## 2570 Hitman: Contracts
## 2571 The Sims 2: Pets
## 2572 Final Fantasy Anthology
## 2573 Aliens: Colonial Marines
## 2574 Pro Evolution Soccer 2010
## 2575 [Prototype 2]
## 2576 Sonic & SEGA All-Stars Racing with Banjo-Kazooie
## 2577 Goldeneye 007: Reloaded
## 2578 NBA 2K16
## 2579 All Star Cheer Squad
## 2580 The Sims 2: Castaway
## 2581 Prince of Persia: Warrior Within
## 2582 Dragon's Dogma
## 2583 Darksiders II
## 2584 Resident Evil: Revelations
## 2585 Rayman Raving Rabbids 2
## 2586 Super Robot Taisen α
## 2588 Need for Speed: Hot Pursuit 2
## 2589 Star Wars: The Force Unleashed II
## 2590 Band Hero
## 2591 Mario & Sonic at the Sochi 2014 Olympic Winter Games
## 2592 Tales of Destiny 2
## 2593 Capcom's Soccer Shootout
## 2594 Sniper: Ghost Warrior
## 2595 The Godfather II
## 2596 pro evolution soccer 2011
## 2597 Alien
## 2598 Dragon Ball Z: Budokai Tenkaichi 2
## 2599 The Walking Dead: Season One
## 2600 Rayman Origins
## 2601 Guitar Hero: Aerosmith
## 2602 Ridge Racer
## 2603 Final Fantasy Tactics A2: Grimoire of the Rift
## 2604 Harvest Moon: A Wonderful Life
## 2605 Momotarou Dentetsu 7
## 2606 Invizimals
## 2607 Motocross Mania
## 2608 Tiger Woods PGA Tour 10
## 2609 Star Wars The Clone Wars: Jedi Alliance
## 2610 WCW Mayhem
## 2611 Mega Man 5
## 2612 Star Ocean: The Last Hope
## 2613 Dance Dance Revolution SuperNOVA 2
## 2614 Armored Core 2
## 2615 Dragon Quest Monsters 2
## 2616 Ghost Squad
## 2617 Dead Island: Riptide
## 2618 Drawn to Life
## 2619 Major League Baseball Featuring Ken Griffey Jr
## 2620 FIFA 12
## 2621 Too Human
## 2622 Sid Meier's Civilization Revolution
## 2623 NCAA Football 08
## 2624 FIFA Soccer 2004
## 2625 Personal Trainer: Walking
## 2626 Naruto Shippuden: Ultimate Ninja Storm 2
## 2627 PokePark 2: Wonders Beyond
## 2628 Professor Layton and the Azran Legacy
## 2629 Tom Clancy's Splinter Cell: Double Agent
## 2630 Yars' Revenge
## 2631 Lips
## 2632 Secret Agent Barbie: Royal Jewels Mission
## 2633 Metroid Prime Hunters
## 2634 The 7th Guest
## 2635 Doom
## 2636 Buzz! The Hollywood Quiz
## 2637 Puzzler World
## 2638 My Little Pony: Pinkie Pie's Party
## 2639 We Sing
## 2640 Marvel vs. Capcom: Clash of Super Heroes
## 2641 God of War Saga
## 2642 Battle Stations
## 2643 Tetris Party Deluxe
## 2644 Pro Evolution Soccer 2016
## 2645 Worms: Open Warfare
## 2646 Star Wars Battlefront: Elite Squadron
## 2647 UFC Personal Trainer: The Ultimate Fitness System
## 2648 Resident Evil: Operation Raccoon City
## 2649 NBA 2K7
## 2650 Need for Speed: ProStreet
## 2651 Toy Story 3: The Video Game
## 2652 Torneko no Daibouken: Fushigi no Dungeon
## 2653 Jr. Pac-Man
## 2654 James Bond 007: Nightfire
## 2655 Banjo-Kazooie: Nuts & Bolts
## 2656 NBA ShootOut 98
## 2657 Avatar: The Game
## 2658 Harry Potter and the Half-Blood Prince
## 2659 DJ Hero
## 2660 Perfect Dark Zero
## 2661 Galaxian
## 2662 Andretti Racing
## 2663 Caesars Palace 2000: Millennium Gold Edition
## 2664 Madden NFL 25
## 2665 Air Raid
## 2666 Need For Speed: Undercover
## 2667 Duke Nukem Forever
## 2668 Freedom Wars
## 2669 Marvel Nemesis: Rise of the Imperfects
## 2670 Boxing
## 2671 Need for Speed: Porsche Unleashed
## 2672 Dragon Ball: Raging Blast
## 2673 Crystal Castles
## 2674 Conker's Bad Fur Day
## 2675 Dragon Warrior I&II
## 2676 Star Wars Episode II: Attack of the Clones
## 2677 My Baby Girl
## 2678 LEGO Batman 2: DC Super Heroes
## 2679 Twisted Metal: Head On
## 2680 Conflict: Desert Storm II - Back to Bagdhad
## 2681 Maximo: Ghosts to Glory
## 2682 Pokemon Dash
## 2683 Donkey Kong Country 3
## 2684 All-Star Baseball 2003
## 2685 Unlimited Saga
## 2686 Cabela's Deer Hunt: 2004 Season
## 2687 Sonic Unleashed
## 2688 Formula 1
## 2689 Plants vs. Zombies: Garden Warfare
## 2690 Raving Rabbids: Travel in Time
## 2691 The Sims 3
## 2692 Driv3r
## 2693 Mercenaries: Playground of Destruction
## 2694 MTV Celebrity Deathmatch
## 2695 Street Fighter Alpha: Warriors' Dreams
## 2696 Mortal Kombat
## 2697 ISS Pro Evolution
## 2698 Lost Planet 2
## 2699 SoulCalibur V
## 2700 Portal 2
## 2701 Super Monkey Ball: Touch & Roll
## 2702 Pro Evolution Soccer 2015
## 2703 Drawn to Life: The Next Chapter
## 2704 The Lord of the Rings: Conquest
## 2705 Final Fantasy II
## 2706 Tony Hawk's Pro Skater 2
## 2707 Taiko no Tatsujin: Tatakon de Dodon ga Don
## 2708 Mega Man Battle Network 6: Cybeast Falzar / Gregar
## 2709 Syphon Filter: The Omega Strain
## 2710 FIFA Soccer 11
## 2711 Deer Drive
## 2712 Kane & Lynch: Dead Men
## 2713 Assassin's Creed: Revelations
## 2714 Mortal Kombat: Deception
## 2715 Ace Attorney Investigations: Miles Edgeworth
## 2716 That's So Raven
## 2717 FIFA 15
## 2718 Marvel vs. Capcom 2: New Age of Heroes
## 2719 Need for Speed: Shift
## 2720 Kane & Lynch: Dead Men
## 2721 Dark Souls II
## 2722 True Crime: New York City
## 2723 Legends of Wrestling
## 2724 Rockstar Games presents Table Tennis
## 2725 Monopoly Streets
## 2726 Genji: Days of the Blade
## 2727 Harvest Moon: Animal Parade
## 2728 Final Fantasy Legend III
## 2729 Total War: Rome II
## 2730 Rare Replay
## 2731 Spectrobes
## 2732 Wall-E
## 2733 WWE SmackDown vs. Raw 2009
## 2734 Band Hero
## 2735 Mega Man X5
## 2736 Tearaway
## 2737 DJ Hero 2
## 2738 The Godfather II
## 2739 WWE SmackDown vs. Raw 2010
## 2740 Turok
## 2741 [Prototype 2]
## 2742 Shark Tale
## 2743 San Francisco Rush: Extreme Racing
## 2744 The Amazing Spider-Man (Console Version)
## 2745 Zone of the Enders
## 2746 Red Faction: Guerrilla
## 2747 Street Fighter EX Plus Alpha
## 2748 Madden NFL 06
## 2749 Coded Arms
## 2750 Tony Hawk's Underground 2
## 2751 Tales of Vesperia
## 2752 X-Men Origins: Wolverine - Uncaged Edition
## 2753 Madagascar: Escape 2 Africa
## 2754 Split/Second
## 2755 Capcom vs. SNK 2: Mark of the Millennium 2001
## 2756 MVP 06 NCAA Baseball
## 2757 Just Dance 2015
## 2758 Borderlands: The Pre-Sequel
## 2759 LittleBigPlanet 3
## 2760 Marvel: Ultimate Alliance 2
## 2761 Sega Superstars Tennis
## 2762 The Walking Dead: Season One
## 2763 Ace Combat: Assault Horizon
## 2764 Jump Ultimate Stars
## 2765 Jampack Summer 2001
## 2766 Resonance of Fate
## 2767 Burnout
## 2768 Tom Clancy's Rainbow Six: Vegas
## 2769 Final Fantasy XIII-2
## 2770 LEGO Batman 2: DC Super Heroes
## 2771 Mortal Kombat: Unchained
## 2772 Mario & Luigi: Paper Jam
## 2773 Yu-Gi-Oh! Dungeon Dice Monsters
## 2774 Brink
## 2775 LEGO Marvel Super Heroes
## 2776 Blur
## 2778 Namco Museum Remix
## 2779 Midnight Club 3: DUB Edition
## 2780 Crysis 2
## 2781 The Lord of the Rings: The Two Towers
## 2782 Tiger Woods PGA Tour 2001
## 2783 Indiana Jones and the Staff of Kings
## 2784 Jet Moto 3
## 2785 Naruto Shippuden: Ultimate Ninja Storm Generations
## 2786 Unreal Championship
## 2788 Pirates of the Caribbean: At World's End
## 2789 Tiger Woods PGA Tour 08
## 2790 Persona 4: Arena
## 2791 Sword of Mana
## 2792 Harvest Moon DS: Island of Happiness
## 2793 Star Ocean: The Last Hope International
## 2794 The Sims 2: Castaway
## 2795 FIFA: Road to World Cup 98
## 2796 Dragon Ball Z: Ultime Menace
## 2797 Classic NES Series: Donkey Kong
## 2798 Call of Duty: Ghosts
## 2799 Yoshi
## 2800 Mortal Kombat 4
## 2801 F1 2011
## 2802 Madden NFL 10
## 2803 Kirby: Canvas Curse
## 2804 Croc 2
## 2805 Practise English!
## 2806 Oddworld: Munch's Oddysee
## 2807 Berzerk
## 2808 NHL 11
## 2809 Dragon Age: Inquisition
## 2810 iCarly
## 2811 DiRT 3
## 2812 NCAA Football 07
## 2813 Just Dance Wii
## 2814 Full Spectrum Warrior
## 2815 Katamari Damacy
## 2816 Beyblade VForce: Ultimate Blader Jam
## 2817 Ratchet & Clank Collection
## 2818 Avatar: The Game
## 2819 Shaun Palmer's Pro Snowboarder
## 2820 MX vs. ATV Reflex
## 2821 Imagine: Interior Designer
## 2822 SSX
## 2823 Style Savvy: Trendsetters
## 2824 James Bond 007: Agent Under Fire
## 2825 XCOM: Enemy Unknown
## 2826 Rabbids Go Home
## 2827 Star Wars Episode III: Revenge of the Sith
## 2828 Ultimate Spider-Man
## 2829 FIFA Soccer 13
## 2830 God Eater
## 2831 Final Fantasy XIV: A Realm Reborn
## 2832 SD Gundam G Generation
## 2833 Area 51
## 2834 NBA Live 08
## 2835 Dead to Rights
## 2836 Tiger Woods PGA Tour 07
## 2837 Test Drive 6
## 2838 Kouchuu Ouja Mushi King
## 2840 Major League Baseball 2K7
## 2841 X-Men: Mutant Academy 2
## 2842 Terraria
## 2843 Jampack Winter 2001
## 2844 Kangaroo
## 2845 James Bond 007: Blood Stone
## 2846 Ben 10: Protector of Earth
## 2847 Skate
## 2848 Super Monkey Ball Jr.
## 2849 Driver: San Francisco
## 2850 MLB 09: The Show
## 2851 Monster Hunter Tri
## 2852 Mobile Suit Gundam: Encounters in Space
## 2853 Catherine
## 2854 Fear Effect
## 2855 FIFA Soccer 11
## 2856 Crysis
## 2857 Battlefield: Bad Company 2
## 2858 The Lord of the Rings: The Two Towers
## 2859 Madden NFL 2003
## 2860 Dragon Quest Swords: The Masked Queen and the Tower of Mirrors
## 2861 MLB 13: The Show
## 2862 Omerta: City of Gangsters
## 2863 Dragon Quest Heroes: The World's Tree Woe and the Blight Below
## 2864 Virtua Fighter 4: Evolution
## 2865 Top Spin 4
## 2866 Resident Evil: Survivor
## 2867 Dynasty Warriors 6
## 2868 Super Trucks Racing
## 2869 Persona Q: Shadow of the Labyrinth
## 2870 Madden NFL 08
## 2871 Godzilla: Destroy All Monsters Melee
## 2872 Jeremy McGrath Supercross 2000
## 2873 Conker: Live And Reloaded
## 2874 Silent Hill 3
## 2875 Madden NFL 09
## 2876 Final Fantasy X/X-2 HD Remaster
## 2877 Yu-Gi-Oh! The Falsebound Kingdom
## 2878 LEGO Rock Band
## 2879 MLB 10: The Show
## 2880 Spyro: Enter the Dragonfly
## 2881 Scooby-Doo 2: Monsters Unleashed
## 2882 Power Rangers: Dino Thunder
## 2883 Rhythm Heaven: The Best+
## 2884 LEGO Racers
## 2885 WWF Attitude
## 2886 Blast Corps
## 2887 LEGO Harry Potter: Years 1-4
## 2888 Tactics Ogre: Let Us Cling Together
## 2889 WarioWare, Inc.: Mega Party Game$
## 2890 Football Manager 2014
## 2891 Battle Arena Toshinden 2
## 2892 WWE SmackDown vs. Raw 2011
## 2893 Jeopardy!
## 2894 South Park
## 2895 Metal Gear Solid V: The Phantom Pain
## 2896 Two Worlds
## 2897 Doom 3: Resurrection of Evil
## 2898 NCAA Football 09
## 2899 NBA Live 09
## 2900 Ratchet & Clank: Into the Nexus
## 2901 Spider-Man 2
## 2902 2014 FIFA World Cup Brazil
## 2903 London 2012: The Official Video Game of the Olympic Games
## 2904 NHL 12
## 2905 Tony Hawk's Underground
## 2906 Infinite Undiscovery
## 2907 Super Bomberman 3
## 2908 Command & Conquer: Red Alert Retaliation
## 2909 The Sims 2: Apartment Pets
## 2910 Star Wars: Obi-Wan
## 2911 NCAA Football 08
## 2912 Kill.Switch
## 2913 Lalaloopsy
## 2914 Madden NFL 2005
## 2915 F-14 Tomcat
## 2916 SplashDown
## 2917 NCAA Football 98
## 2918 Jade Empire
## 2919 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 2920 The Sims 3
## 2921 Skylanders: Trap Team
## 2922 Prince of Persia: The Forgotten Sands
## 2923 Chocobo's Dungeon 2
## 2924 Advance Wars
## 2925 Hannah Montana: The Movie
## 2926 World of Zoo
## 2927 Ape Escape: On the Loose
## 2928 NASCAR 2001
## 2929 IL-2 Sturmovik: Birds of Prey
## 2930 Book of Spells
## 2931 NCAA Football 2001
## 2932 Mafia
## 2933 Mobile Suit Gundam: Journey to Jaburo
## 2934 Metal Gear Solid V: The Phantom Pain
## 2935 TimeSplitters 2
## 2936 MotionSports
## 2937 MLB 08: The Show
## 2938 Classic NES Series: Zelda II: The Adventure of Link
## 2939 Fire Emblem: Monsh? no Nazo
## 2940 Disney's Chicken Little
## 2941 King Kong
## 2942 WWE 2K15
## 2943 The LEGO Movie Videogame
## 2944 X-Men Origins: Wolverine - Uncaged Edition
## 2945 Metal Gear Solid: Portable Ops Plus
## 2946 Disney Tangled
## 2947 Shrek the Third
## 2949 Moto Racer 2
## 2950 Halo 2 Multiplayer Map Pack
## 2951 Minecraft: Story Mode
## 2952 Mortal Kombat: Shaolin Monks
## 2953 MX vs. ATV Unleashed: On the Edge
## 2954 Skylanders: Trap Team
## 2955 Mario Pinball Land
## 2956 Mappy
## 2957 J-League Soccer: Prime Goal
## 2958 Dragon Ball Z: Budokai
## 2959 NFL Xtreme
## 2960 The Sly Collection
## 2961 One Piece: Pirate Warriors 2
## 2962 Assassin's Creed IV: Black Flag
## 2963 Harry Potter and the Chamber of Secrets
## 2964 Need for Speed: Shift 2 Unleashed
## 2965 The Lord of the Rings: The Return of the King
## 2966 Nintendo Presents: New Style Boutique 2 - Fashion Forward
## 2967 MX vs. ATV Untamed
## 2968 The Last Remnant
## 2969 Frozen: Olaf's Quest
## 2970 The Sims: Medieval
## 2971 Baldur's Gate: Dark Alliance II
## 2972 Shark Tale
## 2973 Plants vs. Zombies: Garden Warfare
## 2974 Kirby's Dream Collection: Special Edition
## 2975 Bakugan: Battle Brawlers
## 2976 Star Wars: Masters of Teras Kasi
## 2977 The Last Story
## 2978 NBA Street Vol. 2
## 2979 Iron Man
## 2980 Disney Infinity 3.0
## 2981 Spider-Man 3
## 2982 NCAA Football 2005
## 2983 Mortal Kombat Mythologies: Sub-Zero
## 2984 Rayman Legends
## 2985 Naruto: Clash of Ninja
## 2986 Prince of Persia: The Two Thrones
## 2987 Hot Shots Golf: Open Tee 2
## 2988 Metro: Last Light
## 2989 Fossil Fighters: Champions
## 2990 Mercenaries: Playground of Destruction
## 2991 Sniper Elite 3
## 2992 Doom (2016)
## 2993 Bushido Blade 2
## 2994 Suikoden II
## 2995 Need for Speed (2015)
## 2996 Cars: Mater-National Championship
## 2997 FIFA Soccer 06
## 2998 Hidden Objects: Mystery Stories
## 2999 Red Steel
## 3000 Fight Night 2004
## 3001 Tourist Trophy: The Real Riding Simulator
## 3002 Mass Effect
## 3003 .hack//Mutation Part 2
## 3004 Country Dance
## 3005 Turok
## 3006 Midway Arcade Treasures 2
## 3007 100 Classic Books
## 3008 Unreal Tournament III
## 3009 Final Fantasy Crystal Chronicles: Ring of Fates
## 3010 Return to Castle Wolfenstein: Tides of War
## 3011 Need for Speed Rivals
## 3012 Lollipop Chainsaw
## 3013 The Darkness
## 3014 Street Sk8er
## 3015 Club Penguin: Elite Penguin Force - Herbert's Revenge
## 3016 Contra: Legacy of War
## 3017 Blazing Angels: Squadrons of WWII
## 3018 Fight Night Round 2004
## 3019 Wolfenstein: The New Order
## 3020 The Biggest Loser: Challenge
## 3021 Zaidan Houjin Nippon Kanji Nouryoko Kentei Kyoukai Kounin: KanKen DS
## 3022 Spice World
## 3023 Star Wars: Republic Commando
## 3024 Armored Core 3
## 3025 Need For Speed: Undercover
## 3026 Taiko no Tatsujin Wii
## 3027 The Witcher 3: Wild Hunt
## 3028 Virtua Tennis: World Tour (US & Others sales)
## 3029 The LEGO Movie Videogame
## 3030 Ratatouille
## 3031 RIFT
## 3032 Wild ARMs 2
## 3033 Summer Sports: Paradise Island (Others sales)
## 3034 Castlevania: Lords of Shadow
## 3035 BioShock Infinite
## 3036 Minecraft: Story Mode
## 3037 TV Show King Party
## 3038 Crafting Mama
## 3039 007: Quantum of Solace
## 3040 Rock Band 3
## 3041 Command & Conquer: Red Alert 3
## 3042 The Fairly Odd Parents: Breakin Da Rules
## 3043 WWE SmackDown vs. RAW 2007
## 3044 Peppa Pig: Fun and Games
## 3045 Adventures of Tron
## 3046 Phoenix Wright: Ace Attorney - Trials and Tribulations
## 3047 NHL 13
## 3048 Borderlands: The Pre-Sequel
## 3049 The Sims 3: High-End Loft Stuff
## 3051 Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Koushiki Soft: 200 Mannin no KanKen: Tokoton Kanji Nou
## 3052 Pro Pinball: Big Race USA
## 3053 NFL Street
## 3054 Shaun White Snowboarding
## 3055 The LEGO Movie Videogame
## 3056 Tony Hawk's Proving Ground
## 3057 MLB 2004
## 3058 Naruto Shippuden: Ultimate Ninja 4
## 3059 Tiger Woods PGA Tour 2000
## 3060 Darkstone
## 3061 NCAA March Madness 2003
## 3062 Finding Nemo
## 3063 Thrillville
## 3064 NHL 10
## 3065 Jikkyou World Soccer 2000 Final Edition
## 3066 Madagascar
## 3067 Puzzler Brain Games
## 3068 Dragon Quest Monsters: Caravan Heart
## 3069 Strawberry Shortcake: Summertime Adventure
## 3070 Rayman Legends
## 3071 Rocksmith 2014
## 3072 Street Fighter Anniversary Collection
## 3073 Legend of Legaia
## 3074 Napoleon: Total War
## 3075 Fist of the North Star: Ken's Rage
## 3076 Wario: Master of Disguise
## 3077 Toy Story 3: The Video Game
## 3078 The Sims: Bustin' Out
## 3079 Tiger Woods PGA Tour 09
## 3080 Keystone Kapers
## 3081 LEGO Marvel Super Heroes
## 3082 New Play Control! Pikmin
## 3083 Shrek: Hassle at the Castle
## 3084 Suikoden IV
## 3085 Gods Eater Burst
## 3086 Disney's Kim Possible 2: Drakken's Demise
## 3087 Um Jammer Lammy
## 3088 Brothers In Arms: Road to Hill 30
## 3089 Madden NFL 10
## 3090 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3091 Taiko no Tatsujin DS: Touch de Dokodon!
## 3092 F1 2015
## 3093 Scene It? Box Office Smash
## 3094 Animaniacs Ten Pin Alley
## 3095 Disney Infinity 2.0: Marvel Super Heroes
## 3096 NHL 13
## 3097 Kung Fu Panda
## 3098 Tom Clancy's EndWar
## 3099 The Evil Within
## 3100 Tiger Woods PGA Tour 09
## 3101 Radiata Stories
## 3102 F-Zero GX
## 3103 Disney's Chicken Little
## 3104 Wall-E
## 3105 Yoshi Topsy-Turvy
## 3106 Up
## 3107 Monster Jam: Maximum Destruction
## 3108 Real Heroes: Firefighter
## 3109 Cartoon Network Block Party / Cartoon Network Speedway Double Pack
## 3110 World of Dragon Warrior - Torneko: The Last Hope
## 3111 Drawn to Life: The Next Chapter
## 3112 MLB 14: The Show
## 3113 Tiger Woods PGA Tour 10
## 3114 Advance Wars 2: Black Hole Rising
## 3115 Fire Emblem: Shadow Dragon
## 3116 Centipede
## 3117 Drakengard
## 3118 SingStar Pop Hits
## 3119 Kung-Fu Master
## 3120 Champions: Return to Arms
## 3121 Harry Potter and the Goblet of Fire
## 3122 SingStar R&B
## 3123 Mary-Kate and Ashley: Magical Mystery Mall
## 3124 MX vs. ATV Untamed
## 3125 Disney Sing It: Party Hits
## 3126 Dead or Alive 5
## 3127 Star Ocean: First Departure
## 3128 Super Robot Taisen Impact
## 3129 Dragon Age: Inquisition
## 3130 The Black Eyed Peas Experience
## 3131 Meccha! Taiko no Tatsujin Master DS: 7-tsu no Shima no Daibouken
## 3132 Sengoku Basara: Samurai Heroes
## 3133 Crysis 3
## 3134 Paws & Claws: Pet Vet
## 3135 Harry Potter and the Half-Blood Prince
## 3136 Crash Bandicoot Purple: Ripto's Rampage
## 3137 Diablo III
## 3138 Spyro: A Hero's Tail
## 3139 Crash of the Titans
## 3140 Aliens: Colonial Marines
## 3141 Crash: Twinsanity
## 3143 Max Payne 2: The Fall of Max Payne
## 3144 Dragon Ball: Raging Blast 2
## 3145 GoldenEye: Rogue Agent
## 3146 NBA 2K17
## 3147 Lost Planet: Extreme Condition
## 3148 XCOM: Enemy Unknown
## 3149 Rayman 3D
## 3150 LEGO Marvel's Avengers
## 3151 James Bond 007: Everything or Nothing
## 3152 X2: Wolverine's Revenge
## 3153 Stuntman: Ignition
## 3154 NBA Live 06
## 3155 Dragon Age II
## 3156 LEGO Star Wars II: The Original Trilogy
## 3157 Tom Clancy's Rainbow Six
## 3158 Castlevania
## 3159 Rayman 2: The Great Escape
## 3160 Nicktoons Collection: Game Boy Advance Video Volume 1
## 3161 The Lord of the Rings: Conquest
## 3162 TimeSplitters 2
## 3163 Onimusha: Dawn of Dreams
## 3164 NieR
## 3165 The Princess and the Frog
## 3166 Sega Rally Revo
## 3167 SpongeBob SquarePants: Game Boy Advance Video Volume 1
## 3168 Gravity Rush
## 3169 Konami Collector's Series: Arcade Advanced
## 3170 White Knight Chronicles II
## 3171 Wolfenstein
## 3172 Jampack Volume 13 (RP-T)
## 3173 LEGO Dimensions
## 3174 Start the Party!
## 3175 Cruis'n World
## 3176 Madden NFL 2001
## 3177 NBA Live 08
## 3178 The Walking Dead: Survival Instinct
## 3179 Donkey Kong Barrel Blast
## 3180 Okami
## 3181 Lemony Snicket's A Series of Unfortunate Events
## 3182 Middle-Earth: Shadow of Mordor
## 3183 Family Feud: 2010 Edition
## 3184 Red Steel 2
## 3185 X-Men Legends II: Rise of Apocalypse
## 3186 Nightmare Creatures
## 3187 SingStar Queen
## 3188 Just Dance 2015
## 3189 F1 2013
## 3190 Juiced 2: Hot Import Nights
## 3191 Tony Hawk's Pro Skater 2x
## 3192 Sim Theme Park
## 3193 FIFA Soccer 2003
## 3194 Ghostbusters: The Video Game
## 3196 NASCAR 06: Total Team Control
## 3197 Tony Hawk's Project 8
## 3198 Dogz
## 3199 Disney Universe
## 3200 Guitar Hero: Metallica
## 3201 Iron Man
## 3202 Taiko no Tatsujin: Chibi Dragon to Fushigi na Orb
## 3203 Harry Potter and the Half-Blood Prince
## 3204 A Bug's Life
## 3205 Super Castlevania IV
## 3206 DJ Hero 2
## 3207 Angry Birds Trilogy
## 3208 Condemned 2: Bloodshot
## 3209 Cabela's Big Game Hunter (2008)
## 3210 Mobile Suit Z Gundam: AEUG vs. Titans
## 3211 Just Dance 3
## 3212 Call of Duty: Black Ops
## 3213 God of War III
## 3214 Ape Escape 2
## 3215 Metroid Prime: Trilogy
## 3216 X-Man
## 3217 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 3219 The Sims 3: Generations
## 3220 The Crew
## 3221 Battle of Giants: Dragons
## 3222 Dragon Quest Monsters Joker 3
## 3223 Sonic & All-Stars Racing Transformed
## 3224 Shin Megami Tensei: Persona 3 FES
## 3225 FIFA Soccer 2002
## 3226 Shin Megami Tensei: Persona 3 Portable
## 3227 Final Fantasy VII International
## 3228 Tiger Woods PGA Tour 12: The Masters
## 3229 Okami
## 3230 NHL 2001
## 3231 World of Zoo
## 3232 LEGO Jurassic World
## 3233 Wet
## 3234 MySims Racing
## 3235 Buzz Lightyear of Star Command
## 3236 Namco Museum
## 3237 Nobunaga no Yabou: Haouden
## 3238 Virtua Cop
## 3240 Tony Hawk's American Wasteland
## 3241 WWF in Your House
## 3242 Prince of Persia: The Forgotten Sands
## 3243 Vanquish
## 3244 Wild ARMs 3
## 3245 NBA ShootOut '97
## 3246 Sacred 2: Fallen Angel
## 3247 Madden NFL 07
## 3248 Far Cry 4
## 3249 Battlezone
## 3250 Tiger Woods PGA Tour 2004
## 3251 LEGO Pirates of the Caribbean: The Video Game
## 3252 Pro Evolution Soccer 2015
## 3253 Evolve
## 3254 Tak 2: The Staff of Dreams
## 3255 Dead Island: Riptide
## 3256 Warriors Orochi 3
## 3257 Bolt
## 3258 Viewtiful Joe
## 3259 The Urbz: Sims in the City
## 3260 Beetle Adventure Racing!
## 3261 FIFA Soccer
## 3262 Disney's 102 Dalmatians: Puppies to the Rescue
## 3263 Wipeout: The Game
## 3264 Strike Force Bowling
## 3265 SpongeBob's Atlantis SquarePantis
## 3266 Metal Gear Solid V: Ground Zeroes
## 3267 Halloween
## 3268 Dragon Ball Z: Ultimate Tenkaichi
## 3269 WWE SmackDown vs. Raw 2010
## 3270 Bass Landing
## 3271 XGRA: Extreme G-Racing Association
## 3272 Mario's Picross
## 3273 Pac-Man Player's Choice Bundle
## 3274 Rocksmith 2014
## 3275 Fighters MEGAMiX
## 3276 Bahamut Lagoon
## 3277 Wall-E
## 3278 Tomb Raider III: Adventures of Lara Croft
## 3279 Toshochu: Run for Money
## 3280 Dragon Quest Monsters: Joker 2 Professional
## 3281 NFL Quarterback Club 99
## 3282 Super Robot Taisen α Gaiden
## 3283 Formula 1: Championship Edition
## 3284 Muramasa: The Demon Blade
## 3285 NBA 2K9
## 3286 SingStar Singalong With Disney
## 3287 NHL 16
## 3288 Plants vs. Zombies: Garden Warfare
## 3289 NFL Fever 2003
## 3290 Samurai Warriors 2
## 3291 Dynasty Warriors 8
## 3292 Disney Sing It: Family Hits
## 3293 2 Games in 1: Sonic Battle & ChuChu Rocket!
## 3294 Robotech: Battlecry
## 3295 Dora the Explorer: Super Spies
## 3296 New Carnival Games
## 3297 Tony Hawk: RIDE
## 3298 Just Dance 2014
## 3299 Cooking Mama 4: Kitchen Magic!
## 3300 Texas Hold 'Em Poker
## 3301 Time Crisis 3
## 3302 Cabela's Monster Buck Hunter
## 3303 Ganbaru Watashi no Kakei Diary
## 3304 pro evolution soccer 2011
## 3305 New Play Control! Donkey Kong Jungle Beat
## 3306 Small Soldiers
## 3307 Yakuza: Dead Souls
## 3308 Littlest Pet Shop: Garden
## 3309 Half-Life 2
## 3310 Duke Nukem: Total Meltdown
## 3311 Pac-Man Party
## 3312 Jak and Daxter: The Lost Frontier
## 3313 Major League Baseball 2K8
## 3314 SimCity DS
## 3315 Major League Baseball 2K9
## 3316 Petz: Dogz Pack
## 3317 Split/Second
## 3318 Final Fantasy IV Advance
## 3319 Madden NFL 2003
## 3320 Tomb Raider Chronicles
## 3321 Harry Potter and the Goblet of Fire
## 3322 Dragon Ball Z: Buu's Fury
## 3323 Madden NFL 2002
## 3324 Guitar Hero: Smash Hits
## 3325 Disney TH!NK Fast: The Ultimate Trivia Showdown
## 3326 Spider-Man: Mysterio's Menace
## 3327 Madden NFL 2000
## 3328 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3329 Game & Watch Gallery 4
## 3330 Littlest Pet Shop: Jungle
## 3331 Naruto: Ultimate Ninja
## 3332 Fighters Uncaged
## 3333 Call of Juarez: Bound in Blood
## 3334 New Play Control! Pikmin 2
## 3335 Tony Hawk's Underground
## 3336 Hot Shots Golf: World Invitational
## 3337 Monster Trucks
## 3338 Shadow The Hedgehog
## 3339 Wave Race: Blue Storm
## 3340 Backyard Wrestling: Don't Try This at Home
## 3341 Fight Night Round 2
## 3342 MonHun Nikki: Poka Poka Ailu Mura
## 3343 The Golden Compass
## 3344 NBA 2K8
## 3345 Phineas and Ferb: Across the 2nd Dimension
## 3346 Disney Infinity
## 3348 WarioWare D.I.Y.
## 3349 Tony Hawk: RIDE
## 3350 LEGO Jurassic World
## 3351 Alice: Madness Returns
## 3352 LEGO The Hobbit
## 3353 Suikoden
## 3354 Secret Agent Clank
## 3355 Rayman Arena
## 3356 Avatar: The Game
## 3357 Jaws Unleashed
## 3358 Puyo Puyo Sun
## 3359 Half-Life
## 3360 Tomb Raider (2013)
## 3361 Mickey's Speedway USA
## 3362 International Superstar Soccer 64
## 3363 Skylanders SWAP Force
## 3364 NASCAR Heat 2002
## 3365 Disney Sing It! High School Musical 3: Senior Year
## 3366 From TV Animation One Piece: Grand Battle 2
## 3367 BeatMania Append 3rdMix
## 3368 PGR3 - Project Gotham Racing 3
## 3369 XCOM: Enemy Unknown
## 3370 Blur
## 3371 Xena: Warrior Princess
## 3372 Scribblenauts: Unlimited
## 3373 Front Mission
## 3374 NHL 11
## 3375 Kinect Rush: A Disney Pixar Adventure
## 3376 Monopoly
## 3377 Disney Infinity 2.0: Marvel Super Heroes
## 3378 Major League Baseball 2K7
## 3379 Asphalt: Urban GT
## 3380 The Fight: Lights Out
## 3381 Dai-2-Ji Super Robot Taisen α
## 3382 Pokemon Trozei!
## 3383 Dead Space
## 3384 Hot Wheels: Stunt Track Challenge
## 3385 Rayman Origins
## 3386 London 2012: The Official Video Game of the Olympic Games
## 3387 Beijing 2008
## 3388 Dai-3-Ji Super Robot Taisen α: Shuuen no Ginga e
## 3389 Jeopardy!
## 3390 Jikkyou Powerful Pro Yakyuu '97 Kaimakuban
## 3391 Assassin's Creed: Brotherhood
## 3392 CyberTiger
## 3393 Jampack Fall 2001
## 3394 Medal of Honor: Frontline
## 3395 Final Fantasy: The 4 Heroes of Light
## 3396 Iron Man
## 3397 Kane & Lynch 2: Dog Days
## 3398 NFL Blitz 2001
## 3399 Total War: Shogun 2
## 3400 Jikkyou Powerful Pro Yakyuu '98 Kaimakuban
## 3401 Rock Band 2
## 3402 Yakuza 5
## 3403 LEGO Indiana Jones 2: The Adventure Continues
## 3404 BurgerTime
## 3405 Naruto: The Broken Bond
## 3406 2002 FIFA World Cup
## 3407 MVP Baseball 2004
## 3408 Crash Bandicoot: The Wrath of Cortex
## 3409 Smurf: Rescue In Gargamel's Castle
## 3410 Spelling Challenges and more!
## 3411 Go Diego Go! Great Dinosaur Rescue
## 3412 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3413 Extreme-G
## 3414 Ready 2 Rumble Boxing
## 3415 Payday 2
## 3416 Dead or Alive Xtreme Beach Volleyball
## 3417 Tales of Rebirth
## 3418 SoulCalibur V
## 3419 NHL 12
## 3420 Tales of Zestiria
## 3421 Silent Hill: Shattered Memories
## 3423 Skate it
## 3424 Game Party in Motion
## 3425 Barbie: Race & Ride
## 3426 Lost: Via Domus
## 3427 Mega Man Anniversary Collection
## 3428 Final Fantasy Anniversary Edition
## 3429 Dark Souls II
## 3430 Ben 10: Alien Force
## 3431 Deus Ex: Human Revolution
## 3432 Zumba Fitness
## 3433 Harvest Moon: Friends of Mineral Town
## 3434 Backyard NBA Basketball
## 3435 FIFA Soccer 10
## 3436 Kirby's Dream Course
## 3437 Doom 3 BFG Edition
## 3438 Mega Man X7
## 3439 Top Spin 3
## 3440 Petz Dogz 2
## 3441 SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3442 The Conduit
## 3443 Just Dance 2016
## 3444 Tokimeki Memorial: Forever with You
## 3445 Diablo
## 3446 Cabela's Dangerous Hunts 2011
## 3447 NHL 15
## 3448 Q*bert
## 3449 Romancing SaGa
## 3450 The Lord of the Rings: The Third Age
## 3451 Harvest Moon: Sunshine Islands
## 3452 Trivial Pursuit
## 3453 The Legend of Spyro: Dawn of the Dragon
## 3454 The Sims 3: World Adventures
## 3455 Kinect Sports Rivals
## 3456 Rayman Origins
## 3457 WWE 2K16
## 3458 Titanfall
## 3459 NCAA Football 09
## 3460 Tom Clancy's HAWX
## 3461 Sammy Sosa High Heat Baseball 2001
## 3462 Frozen: Olaf's Quest
## 3463 Terminator 3: Rise of the Machines
## 3464 Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 3465 Harvest Moon: The Tale of Two Towns
## 3466 FIFA: Road to World Cup 98
## 3467 World Cup 98
## 3468 International Superstar Soccer '98
## 3470 Unreal Tournament
## 3471 Digimon World 2
## 3472 Tales of Phantasia
## 3473 Prince of Persia: The Two Thrones
## 3474 Xenosaga Episode II: Jenseits von Gut und Böse
## 3475 Gex: Enter the Gecko
## 3476 Shrek 2: Beg for Mercy
## 3477 Mega Man Star Force 2: Zerker x Ninja / Saurian
## 3478 JoJo's Bizarre Adventure: All Star Battle
## 3479 Petz Nursery
## 3480 Contra: Shattered Soldier
## 3481 Championship Motocross featuring Ricky Carmichael
## 3482 Dragon Ball Z: Chou Saiya Densetsu
## 3483 NBA 2K7
## 3484 WWE 2K16
## 3485 Phoenix Wright: Ace Attorney - Justice for All
## 3486 Fire Emblem: Seisen no Keifu
## 3487 Rock Band 3
## 3488 Disgaea 4: A Promise Unforgotten
## 3489 BlazBlue: Calamity Trigger
## 3490 Tenchu 2: Birth of the Stealth Assassins
## 3491 Tony Hawk's Pro Skater 4
## 3492 MLB 11: The Show
## 3493 Naruto: Uzumaki Chronicles 2
## 3494 NHL 06
## 3495 NHL 10
## 3496 Rooms: The Main Building
## 3497 Rapala: We Fish
## 3498 Parasite Eve II
## 3499 Tetris Party Deluxe
## 3500 NFL Blitz 2000
## 3501 Ratchet & Clank: Quest for Booty
## 3503 NCAA Football 10
## 3504 Top Spin 3
## 3505 Shin Megami Tensei IV
## 3506 Theme Park
## 3507 Blacksite: Area 51
## 3508 Spider-Man 3
## 3509 ATV Offroad Fury: Blazin' Trails
## 3510 Far Cry Instincts
## 3511 Hasbro Family Game Night
## 3512 Tony Hawk's Pro Skater 4
## 3513 Up
## 3514 Tales of the Abyss
## 3515 Disney Universe
## 3516 Iron Man
## 3517 Mobile Suit Gundam: Giren no Yabou- Zeon no Keifu
## 3518 Spyro Orange: The Cortex Conspiracy
## 3519 Enslaved: Odyssey to the West
## 3520 SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3521 Beyond The Beyond
## 3522 Ben 10: Alien Force
## 3523 Tomb Raider: Anniversary
## 3524 Warhammer 40,000: Space Marine
## 3525 Madden NFL 06
## 3526 No More Heroes
## 3527 Assassin's Creed II
## 3528 Petz Wild Animals: Tigerz
## 3529 Naruto: Ultimate Ninja 2
## 3530 Defiance
## 3531 Dogz
## 3532 3D Dot Game Heroes
## 3533 The Mysterious Murasame Castle
## 3534 NBA Hangtime
## 3535 Jillian Michaels Fitness Ultimatum 2010
## 3536 Pro Evolution Soccer 2012
## 3537 Grease
## 3538 Blood Wake
## 3539 Dynasty Warriors 5: Xtreme Legends
## 3540 Skylanders: Spyro's Adventure
## 3541 Dora The Explorer: Dora Saves the Snow Princess
## 3542 Jampack Summer 2002
## 3543 FIFA World Cup Germany 2006
## 3544 Wreckless: ThE YaKuza MisSiOns
## 3545 Super Bomberman
## 3546 SpongeBob SquarePants: Battle for Bikini Bottom
## 3547 Spec Ops: The Line
## 3548 SD Gundam G Generation Neo
## 3549 Bratz 4 Real
## 3550 RalliSport Challenge
## 3551 Resident Evil Outbreak File #2
## 3552 Bob the Builder: Can We Fix It?
## 3553 XIII
## 3554 NHL 14
## 3555 LEGO Rock Band
## 3556 Bolt
## 3557 Top Spin 3
## 3558 Tom Clancy's HAWX
## 3559 LEGO Dimensions
## 3560 Breath of Fire IV
## 3561 True Crime: Streets of LA
## 3562 Odin Sphere
## 3563 Donkey Kong Jungle Climber
## 3564 The Incredible Hulk
## 3565 Ms. Pac-Man Maze Madness
## 3566 Arena Football
## 3567 The Lord of the Rings: The Return of the King
## 3568 NHL Hitz 20-02
## 3569 Classic NES Series: Dr. Mario
## 3570 The Sims: Bustin' Out
## 3571 NCAA March Madness 07
## 3572 Monsters, Inc. Scream Team
## 3573 Harry Potter Collection
## 3574 Tony Hawk's Project 8
## 3575 Yu-Gi-Oh! World Championship Tournament 2004
## 3576 Cabela's Big Game Hunter 2005 Adventures
## 3577 Hotel Dusk: Room 215
## 3578 Knockout Kings 2001
## 3579 Army Men: Sarge's Heroes
## 3580 Phineas and Ferb: Across the 2nd Dimension
## 3581 Petz Dogz 2
## 3582 Battlefield 2: Modern Combat
## 3583 Wolfenstein
## 3584 All-Star Baseball 2002
## 3585 Backyard NFL Football
## 3586 Need for Speed: Most Wanted
## 3587 NASCAR Rumble
## 3588 Tony Hawk: Shred
## 3589 Tony Hawk's Proving Ground
## 3590 WWE Raw 2
## 3591 Resident Evil 2
## 3592 Mega Man X2
## 3593 Manhunt 2
## 3594 Xenoblade Chronicles
## 3595 Fullmetal Alchemist and the Broken Angel
## 3596 Monster High: Ghoul Spirit
## 3597 Final Fantasy IV: The Complete Collection
## 3598 Frontlines: Fuel of War
## 3599 Lips: Number One Hits
## 3600 Hamtaro: Ham-Hams Unite!
## 3601 Batman Begins
## 3602 Viva Pinata: Pocket Paradise
## 3603 Dr. Seuss' The Cat in the Hat
## 3604 Barbie Groovy Games
## 3605 Yu-Gi-Oh! Reshef of Destruction
## 3606 Blinx: The Time Sweeper
## 3607 Madagascar: Escape 2 Africa
## 3608 Archer Maclean's Mercury
## 3609 ESPN NFL Football
## 3610 Fatal Fury Special
## 3611 Catz
## 3612 Major League Baseball 2K5
## 3613 DS Bimoji Training
## 3614 WWE 2K15
## 3615 Petz Catz Clan
## 3616 Soul Sacrifice
## 3617 G-Force
## 3618 Tiger Woods PGA Tour 11
## 3619 Soldier of Fortune: Gold Edition
## 3620 Rune Factory: A Fantasy Harvest Moon
## 3621 Monster Jam: Path of Destruction
## 3622 Rapala Tournament Fishing!
## 3623 MX 2002 Featuring Ricky Carmichael
## 3624 Purr Pals
## 3625 NCAA Football 07
## 3626 God of War: Origins Collection
## 3627 MX vs. ATV: Alive
## 3628 Lunar: Silver Star Story Complete
## 3629 Dragon Ball: XenoVerse
## 3630 NBA Showtime: NBA on NBC
## 3631 ZhuZhu Pets 2: Featuring The Wild Bunch
## 3632 Dragon Age: Inquisition
## 3633 Soul Reaver 2
## 3634 Metal Gear Solid 3: Subsistence
## 3635 Sly Cooper: Thieves in Time
## 3636 The Godfather (old US sales)
## 3637 Daytona USA
## 3638 Harry Potter and the Deathly Hallows - Part 1
## 3639 Tiger Woods PGA Tour 13
## 3640 WWF Raw
## 3641 Shin Super Robot Taisen
## 3642 Jump Super Stars
## 3643 Legends of WrestleMania
## 3644 The Activision Decathlon
## 3645 Simple 1500 Series Vol. 73: The Invaders ~Space Invaders 1500~
## 3646 50 Classic Games
## 3647 Fighting Force 2
## 3648 Sakura Wars
## 3649 Yokai Sangokushi
## 3650 Extermination
## 3651 Batman: Vengeance
## 3652 Unit 13
## 3653 Tatsunoko vs. Capcom: Ultimate All-Stars
## 3654 TMNT
## 3655 F.E.A.R.
## 3656 Secret Agent Clank(US sales)
## 3657 Assassin's Creed: Unity
## 3658 Derby Stallion 04
## 3659 NBA 2K8
## 3660 Barbie Horse Adventures: Riding Camp
## 3661 CrossworDS
## 3662 Tony Hawk's Pro Skater 3
## 3663 Mega Man Zero
## 3664 Contender 2
## 3665 The Amazing Spider-Man 2 (2014)
## 3666 Star Wars: Dark Forces
## 3667 SD Gundam G Generation Zero
## 3668 Super Robot Taisen F
## 3669 Shrek 2
## 3670 Soccer Tsuku 2002: J-League Pro Soccer Club o Tsukurou!
## 3671 Time Crisis: Razing Storm
## 3672 SpongeBob SquarePants: SuperSponge
## 3673 Super Robot Taisen F Kanketsuhen
## 3674 Enslaved: Odyssey to the West
## 3675 Rune Factory 4
## 3676 Summer Sports: Paradise Island
## 3677 Tak and the Power of Juju
## 3678 Dynasty Warriors: Gundam 3
## 3679 Mortal Kombat 3
## 3680 Turok: Evolution
## 3681 Jak X: Combat Racing
## 3682 Metro 2033
## 3683 Are You Smarter than a 5th Grader? Make the Grade
## 3684 American Idol
## 3685 Top Gun: Fire at Will!
## 3686 Red Dead Revolver
## 3687 Dragon Ball Z: Shin Budokai
## 3688 LEGO The Hobbit
## 3689 Iron Man
## 3690 SingStar Summer Party
## 3691 Tiger Woods PGA Tour 08
## 3692 NBA Live 10
## 3693 The SpongeBob SquarePants Movie
## 3694 FIFA Soccer 07
## 3695 Gekikuukan Pro Yakyuu: At the End of the Century 1999
## 3696 Medarot 2: Kabuto / Kuwagata Version
## 3697 Excite Truck
## 3698 Sacred 2: Fallen Angel
## 3699 System 3 presents Ferrari Challenge Trofeo Pirelli
## 3700 Dance Dance Revolution Ultramix
## 3701 ModNation Racers
## 3702 Crash Tag Team Racing
## 3703 Two Worlds II
## 3704 Sonic & All-Stars Racing Transformed
## 3705 Michael Jackson: The Experience
## 3706 Front Mission 4
## 3707 The Fairly Odd Parents: Breakin' Da Rules
## 3708 LEGO Dimensions
## 3709 Inazuma Eleven
## 3710 Ninokuni: Shikkoku no Madoushi
## 3711 Minecraft: Story Mode
## 3712 Resident Evil: Revelations 2
## 3713 Manhunt 2
## 3714 SRS: Street Racing Syndicate
## 3715 Despicable Me: The Game - Minion Mayhem
## 3717 Action Force
## 3718 Gauntlet Legends
## 3719 FIFA 99
## 3720 Kidou Senshi Gundam: Extreme VS
## 3721 Dragon Ball Z: Ultimate Tenkaichi
## 3722 Tales of Symphonia
## 3723 Bust A Groove
## 3724 Fire Emblem: Path of Radiance
## 3725 Dragon Quest Characters: Torneko no Daibouken 3: Fushigi no Dungeon
## 3726 Let's Draw!
## 3727 Pachi-Slot Aruze Oukoku 2
## 3728 NHL 14
## 3729 Valkyria Chronicles II
## 3730 Middle-Earth: Shadow of Mordor
## 3731 Madden NFL 13
## 3732 Rune Factory 2: A Fantasy Harvest Moon
## 3733 Terminator Salvation
## 3734 Cars 2
## 3735 Bratz: Rock Angelz
## 3736 How to Train Your Dragon
## 3737 SSX Tricky
## 3738 WWE SmackDown vs. Raw 2010
## 3739 Greg Hastings' Tournament Paintball
## 3740 Hello Kitty: Big City Dreams
## 3741 Star Fox Command
## 3742 World Soccer Winning Eleven 7 International (JP version)
## 3743 ESPN NBA Basketball
## 3744 Inazuma Eleven GO
## 3745 Over the Hedge
## 3746 Mat Hoffman's Pro BMX
## 3747 Lego Star Wars: The Force Awakens
## 3748 Epic Mickey 2: The Power of Two
## 3749 Popeye
## 3750 Magician's Quest: Mysterious Times
## 3751 The Hobbit
## 3752 War of the Monsters
## 3753 Tales of Symphonia: Dawn of the New World
## 3755 The Incredible Hulk: Ultimate Destruction
## 3756 Star Wars Battlefront (2015)
## 3757 Sakura Taisen 2 - Kimi, Shinitamou Koto Nakare
## 3758 Jewel Master Egypt
## 3759 Time Crisis II
## 3760 Clock Tower
## 3761 NCAA March Madness 06
## 3762 SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3763 Jampack Volume 11
## 3764 Dragon's Crown
## 3765 Tactics Ogre: Let Us Cling Together
## 3766 Legacy of Kain: Defiance
## 3767 SpongeBob SquarePants: Game Boy Advance Video Volume 2
## 3768 NCAA March Madness 2005
## 3769 007 Racing
## 3770 Conflict: Vietnam
## 3771 2 in 1 Combo Pack: Sonic Heroes / Super Monkey Ball Deluxe
## 3772 Mystery Dungeon: Shiren the Wanderer
## 3773 SimAnimals
## 3774 MLB SlugFest 20-04
## 3775 Gex 3: Deep Cover Gecko
## 3776 NASCAR 09
## 3777 Blitz: The League
## 3778 Jampack Vol. 2
## 3779 LEGO Jurassic World
## 3780 Sesame Street: Once Upon A Monster
## 3781 Virtual Soccer
## 3782 Romance of the Three Kingdoms IV: Wall of Fire
## 3783 Winning Post
## 3784 Peter Jackson's King Kong: The Official Game of the Movie
## 3785 SingStar Dance
## 3786 Kirby and the Rainbow Curse
## 3787 Burnout Revenge
## 3788 FIFA 12
## 3789 Medal of Honor: European Assault
## 3790 Batman: Arkham City
## 3791 Ty the Tasmanian Tiger 2: Bush Rescue
## 3792 The Lord of the Rings: The Fellowship of the Ring
## 3793 NBA 06
## 3794 Sonic & All-Stars Racing Transformed
## 3795 Spider-Man
## 3796 We Cheer
## 3797 Tom Clancy's Ghost Recon Advanced Warfighter 2
## 3798 X-Men Legends
## 3799 Alice in Wonderland
## 3800 Littlest Pet Shop 3: Biggest Stars - Blue / Pink / Purple Team
## 3801 Front Mission 2
## 3802 Bulletstorm
## 3803 F.E.A.R. 2: Project Origin
## 3804 Tiger Woods PGA Tour 11
## 3805 Stuntman: Ignition
## 3806 Are You Smarter Than A 5th Grader?
## 3807 F1 2009
## 3808 Oni
## 3809 The Lord of the Rings: The Two Towers
## 3810 Juiced
## 3811 The Warriors
## 3812 Batman: Arkham Origins Blackgate
## 3813 J-League Soccer: Prime Goal 2
## 3814 Go Diego Go! Safari Rescue
## 3815 The Walking Dead: Survival Instinct
## 3816 Picross 3D
## 3817 Just Dance 2015
## 3818 Silent Hill: Origins
## 3819 NASCAR 2000
## 3820 Wayne Gretzky's 3D Hockey
## 3821 Pachi-Slot Aruze Oukoku 4
## 3822 Return to Castle Wolfenstein: Operation Resurrection
## 3823 Mario Tennis: Power Tour
## 3824 Seaman
## 3825 Guinness World Records: The Videogame
## 3826 The Grinch
## 3827 GT Pro Series
## 3828 Tales of Destiny
## 3829 Spectrobes: Beyond the Portals
## 3830 Classic Word Games
## 3831 Naruto Shippuden: Clash of Ninja Revolution 3
## 3832 Fight Night Round 3
## 3833 The Golden Compass
## 3834 Final Fantasy Chronicles
## 3835 NBA Live 08
## 3836 Syphon Filter 3
## 3837 Star Wars Battlefront: Elite Squadron
## 3838 Metal Gear Solid 2: Substance
## 3839 We Love Katamari
## 3840 NCAA Football 2003
## 3841 Way of the Samurai 3
## 3842 NBA Live 09
## 3843 DC Universe Online
## 3844 Ready 2 Rumble Boxing: Round 2
## 3845 Mega Man 6
## 3846 Mission: Impossible
## 3847 Final Fantasy Explorers
## 3848 Rival Schools: United By Fate
## 3849 Bully: Scholarship Edition
## 3850 IL-2 Sturmovik: Birds of Prey
## 3851 PlayStation All-Stars Battle Royale
## 3852 Ratatouille
## 3853 Cars Toon: Mater's Tall Tales
## 3854 Kung Fu Panda
## 3855 Swing Away Golf
## 3856 J-League Pro Soccer Club o Tsukurou! 3
## 3857 Tomb Raider: Legend
## 3858 Ratatouille
## 3859 Freedom Fighters
## 3860 Gun
## 3861 That's So Raven 2: Supernatural Style
## 3862 Lair
## 3863 Madden NFL 07
## 3864 The Punisher
## 3865 Front Mission 3
## 3866 Kenkou Ouen Recipe 1000: DS Kondate Zenshuu
## 3867 SSX On Tour
## 3868 Tony Hawk's Pro Skater 3
## 3869 Harry Potter and the Prisoner of Azkaban
## 3870 Petz: Hamsterz Life 2
## 3871 Omega Boost
## 3872 The Sims 2: Open for Business
## 3873 Iron Man
## 3874 NFL 2K3
## 3875 NBA Live 2002
## 3876 Jampack Winter 2002
## 3877 My Word Coach
## 3878 Way of the Samurai
## 3879 Dragon Age: Origins
## 3880 Naruto Shippuden: Ultimate Ninja Storm 3
## 3882 Pac-Man Fever
## 3883 The LEGO Movie Videogame
## 3884 The 3rd Birthday
## 3885 Prince of Persia Trilogy
## 3886 International Track & Field
## 3887 100 All-Time Favorites
## 3888 HSX HyperSonic.Xtreme
## 3889 StarCraft II: Legacy of the Void
## 3890 Tiger Woods PGA Tour 13
## 3891 SoulCalibur: Broken Destiny
## 3892 The Saboteur
## 3893 Lords of the Fallen
## 3894 Pro Evolution Soccer 2010
## 3895 Goldeneye 007: Reloaded
## 3896 Jam With the Band
## 3897 Madden NFL 2004
## 3898 Jikkyou Powerful Pro Yakyuu 10
## 3899 Summoner
## 3900 Virtual Pool
## 3901 NBA Live 07
## 3902 Sega Bass Fishing
## 3903 Fire Emblem: Radiant Dawn
## 3904 Dynasty Warriors
## 3905 SpongeBob SquarePants: Lights, Camera, Pants!
## 3906 Dragon Ball: Raging Blast
## 3907 Rugrats: Scavenger Hunt
## 3908 Wrecking Crew
## 3909 International Superstar Soccer 2000 (All region sales)
## 3910 Major League Baseball 2K10
## 3911 Monsters vs. Aliens
## 3912 Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 3913 SpongeBob SquarePants: Creature from the Krusty Krab
## 3914 Lost: Via Domus
## 3915 NBA Live 2004
## 3916 Dai-4-Ji Super Robot Taisen S
## 3917 Disney's Kim Possible: Revenge of Monkey Fist
## 3918 WWE SmackDown vs. RAW 2007
## 3919 Ace Combat Zero: The Belkan War
## 3920 R.U.S.E.
## 3921 Disgaea 3: Absence of Justice
## 3922 Test Drive Unlimited
## 3923 LEGO Dimensions
## 3924 Picross DS
## 3925 Final Fantasy II Anniversary Edition
## 3926 NHL 07
## 3927 Harry Potter and the Half-Blood Prince
## 3928 Quantum Break
## 3929 NBA 2K11
## 3930 World Championship Poker
## 3931 The BIGS
## 3932 Final Fantasy
## 3933 Burnout Revenge
## 3934 Rory McIlroy PGA Tour
## 3935 Euro Truck Simulator
## 3936 Dragon Ball Z: Supersonic Warriors
## 3937 Dishonored
## 3938 Paws & Claws: Dogs & Cats Best Friends
## 3939 NBA Ballers
## 3940 Silent Hill 4: The Room
## 3941 River Raid II
## 3942 Capcom Classics Collection
## 3943 Guitar Hero Live
## 3944 Wolfenstein: The New Order
## 3945 Monopoly Party
## 3946 Hidden Mysteries: Titanic - Secrets of the Fateful Voyage
## 3947 NHL FaceOff 98
## 3948 The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 3949 F1 2012
## 3950 NHL 09
## 3951 Sonic Riders
## 3952 Looney Tunes: Back in Action
## 3954 Midnight Magic
## 3955 Alice: Madness Returns
## 3956 Pro Evolution Soccer 2012
## 3957 Tiger Woods PGA Tour 07
## 3958 Midnight Club II
## 3959 Atelier Rorona: Alchemist of Arland
## 3960 Monster Hunter Freedom 2
## 3961 Dragon Ball Z: Supersonic Warriors 2
## 3962 Avatar: The Last Airbender
## 3963 Blue's Clues: Blue's Big Musical
## 3964 The Mummy Returns
## 3965 Hitman: Blood Money
## 3966 Disney Sing It
## 3967 Chopper Command
## 3968 Activision Anthology
## 3969 Crash: Mind Over Mutant
## 3970 WWE 2K16
## 3971 LEGO The Hobbit
## 3972 Babysitting Mama
## 3973 Boogie
## 3974 Theatrhythm: Final Fantasy
## 3975 Bleach: Soul Resurreccion
## 3976 Madden NFL 07
## 3977 Rugrats in Paris: The Movie
## 3978 Dance Dance Revolution Universe 2
## 3979 Star Wars: Jedi Starfighter
## 3980 Tactics Ogre: The Knight of Lodis
## 3981 Fortune Street
## 3982 Super Robot Taisen MX
## 3983 Alice in Wonderland
## 3984 NBA Street Homecourt
## 3985 Spider-Man 2
## 3986 Bases Loaded '96: Double Header
## 3987 Dead or Alive Ultimate
## 3988 RPG Maker
## 3989 FIFA 14
## 3990 Star Wars: Clone Wars
## 3991 The Saboteur
## 3992 The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 3993 Metal Gear Rising: Revengeance
## 3994 Madden NFL 11
## 3995 Major League Baseball 2K12
## 3996 Alien: Isolation
## 3997 The Price is Right
## 3998 Monster Hunter
## 3999 Cars 2
## 4000 Dreamworks Madagascar Kartz
## 4001 Tony Hawk's Underground 2
## 4002 SplashDown: Rides Gone Wild
## 4003 Super Famista 5
## 4004 Dynasty Warriors: Gundam 2
## 4005 Shrek SuperSlam
## 4006 Rayman Advance
## 4007 Super Robot Taisen Z
## 4008 PoPoLoCrois Monogatari
## 4009 Tomb Raider: Anniversary
## 4010 Fantastic 4
## 4011 Epic Mickey 2: The Power of Two
## 4012 Men in Black II: Alien Escape
## 4013 The Evil Within
## 4014 RealSports Tennis
## 4015 Nicktoons: Attack of the Toybots
## 4016 Raiders of the Lost Ark
## 4017 Gauntlet
## 4018 Ridge Racer 3D
## 4019 Cars Mater-National Championship
## 4020 Ace Combat: Assault Horizon
## 4021 Resident Evil: The Mercenaries 3D
## 4022 Super Monkey Ball 3D
## 4023 Tony Hawk's Project 8
## 4024 Tony Hawk's Underground 2
## 4025 MotorStorm: Apocalypse
## 4026 Ice Hockey
## 4027 Dragon Quest Heroes: The World's Tree Woe and the Blight Below
## 4028 Lego Batman 3: Beyond Gotham
## 4029 The Matrix: Path of Neo
## 4030 Kane & Lynch 2: Dog Days
## 4031 Lollipop Chainsaw
## 4032 WWE Wrestlemania X8
## 4033 Sonic Lost World
## 4034 Power Rangers: Dino Thunder
## 4035 GoldenEye: Rogue Agent
## 4036 Ultimate I Spy
## 4037 SpongeBob SquarePants: Creature from the Krusty Krab
## 4038 The Sims
## 4039 Grandia III
## 4040 FIFA Soccer 09
## 4041 Mobile Suit Gundam Seed Destiny: Rengou vs. Z.A.F.T. II Plus
## 4042 Mario & Wario
## 4043 Scarface: The World is Yours
## 4044 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4045 Pokemon Art Academy
## 4046 FIFA Soccer 64
## 4047 Dragon Ball Z: Burst Limit
## 4048 Bakugan Battle Brawlers: Defenders of the Core
## 4049 Medal of Honor
## 4050 Doom 3 BFG Edition
## 4051 J-League Pro Soccer Club wo Tsukurou! 2
## 4052 Terraria
## 4053 Backyard Baseball
## 4054 WipEout Pulse
## 4055 Barbie Horse Adventures: Wild Horse Rescue
## 4056 Epic Mickey: Power of Illusion
## 4057 LEGO Marvel Super Heroes
## 4058 Taiko no Tatsujin: Appare Sandaime
## 4059 Alone in the Dark
## 4060 One Piece: Grand Battle!
## 4061 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4062 Football Manager Handheld 2009
## 4063 Sniper: Art of Victory
## 4064 Crazy Taxi
## 4065 Spy Hunter 2
## 4066 F1 2014
## 4067 Pac-Man World 2
## 4068 Bass Pro Shops: The Strike
## 4069 Die Hard Trilogy 2: Viva Las Vegas
## 4070 Jake Power: Fireman
## 4071 Asphalt 3D
## 4072 Momotarou Dentetsu X: Kyuushuu-hen mo Arubai
## 4073 Steel Diver
## 4074 Tales of Legendia
## 4075 SimCity 2000
## 4076 Crash of the Titans
## 4077 Far Cry 2
## 4078 Battlefield: Hardline
## 4079 Harry Potter and the Order of the Phoenix
## 4080 Rayman Raving Rabbids: TV Party
## 4081 F.E.A.R. 2: Project Origin
## 4082 Sonic & All-Stars Racing Transformed
## 4083 Scene It? Lights Camera Action
## 4084 Dead Space Extraction
## 4085 Scrabble 2007 Edition
## 4086 Shrek the Third
## 4087 Metal Gear Solid HD Edition
## 4088 Children of Mana
## 4089 Madagascar: Operation Penguin
## 4090 Active Life: Extreme Challenge
## 4091 The Sims 2: Pets
## 4092 Mario Golf: World Tour
## 4093 Need for Speed: Porsche Unleashed
## 4094 Yu-Gi-Oh! Forbidden Memories (JP sales)
## 4095 NFL Street 2
## 4096 Silent Hill: Shattered Memories
## 4097 Millipede
## 4098 The Legend of the Mystical Ninja
## 4099 You're in the Movies
## 4100 Dark Sector
## 4101 James Bond 007: Blood Stone
## 4102 Jeopardy!
## 4103 Destroy All Humans! 2
## 4104 ECW Hardcore Revolution
## 4105 Pinball Hall of Fame: The Williams Collection
## 4106 Tiger Woods PGA Tour 07
## 4107 Wu-Tang: Shaolin Style
## 4108 World of Warcraft: Warlords of Draenor
## 4109 Rock Band Unplugged
## 4110 OkamiDen
## 4111 Crash: Mind Over Mutant
## 4112 2010 FIFA World Cup South Africa
## 4113 Secret Weapons Over Normandy
## 4114 Go Diego Go! Great Dinosaur Rescue
## 4115 All-Star Baseball 99
## 4116 Harvest Moon 64
## 4117 NCAA Football 09
## 4118 Bratz: The Movie
## 4119 FIFA Soccer 13
## 4120 Harvest Moon DS (US sales)
## 4121 Vigilante 8: 2nd Offense
## 4122 Two Worlds II
## 4123 Football Manager 2015
## 4124 Theme Park Roller Coaster
## 4125 Need for Speed: Hot Pursuit
## 4126 Skylanders: SuperChargers
## 4127 Viva Pinata: Trouble in Paradise
## 4128 Nickelodeon Team Umizoomi
## 4129 FlingSmash
## 4130 NFL Xtreme 2
## 4131 Spider-Man 3
## 4132 Midnight Club: Street Racing
## 4133 Dynasty Warriors Gundam
## 4134 Tomb Raider: Underworld
## 4135 Final Fantasy Crystal Chronicles: Echoes of Time
## 4136 Fable
## 4137 Tiger Woods PGA Tour 06
## 4138 FIFA World Cup Germany 2006
## 4139 Up
## 4140 Grand Prix
## 4141 Ford Racing Off Road
## 4142 SimCity Creator
## 4143 World of Outlaws: Sprint Cars 2002
## 4144 Cars: Race-O-Rama
## 4145 Emergency Heroes
## 4147 Fantavision
## 4148 Double Dragon
## 4149 Alien Trilogy
## 4150 NBA Live 99
## 4151 Bravely Second: End Layer
## 4153 Dark Sector
## 4154 Unreal Tournament III
## 4155 X-Men: Next Dimension
## 4156 Street Fighter X Tekken
## 4157 The Godfather (JP sales)
## 4158 MySims Racing
## 4159 Hamsterz Life
## 4160 Dragon Age Origins: Awakening
## 4161 Super Puyo Puyo 2
## 4162 Gauntlet Legends
## 4163 Castlevania: Dawn of Sorrow
## 4164 Naruto Shippuden: Ultimate Ninja Storm Revolution
## 4165 Deadpool
## 4166 WipEout
## 4167 ICO
## 4168 Silent Hill: Downpour
## 4169 2014 FIFA World Cup Brazil
## 4170 WWE SmackDown vs. Raw 2011
## 4171 Dragon Quest 25 Shuunen Kinin: Famicom & Super Famicom Dragon Quest I-II-III
## 4172 Victorious Boxers: Ippo's Road to Glory
## 4173 Petz Sports
## 4174 Lego Batman 3: Beyond Gotham
## 4175 Densetsu no Stafi
## 4176 Valkyrie Profile 2: Silmeria
## 4177 Hot Wheels Velocity X
## 4178 Shadowrun
## 4179 FIFA Soccer 13
## 4180 Virtua Tennis 4: World Tour
## 4181 Warhammer 40,000: Dawn of War II
## 4182 Crazy Taxi: Fare Wars
## 4183 Clash of Elementalists
## 4184 Spider-Man 3
## 4185 Disney Infinity 3.0
## 4186 L.A. Rush
## 4187 Bomberman Hero
## 4188 Automobili Lamborghini
## 4189 Quest 64
## 4190 Momotarou Dentetsu V
## 4191 Doom 64
## 4192 Boom Blox Bash Party
## 4193 The Sims 3: Ambitions
## 4194 Dead or Alive 4
## 4195 Commando
## 4196 Rise of Nightmares
## 4197 The Princess and the Frog
## 4198 NBA Ballers: Phenom
## 4199 Need for Speed Carbon
## 4201 NHL 16
## 4202 FIFA 12
## 4203 MTV Music Generator
## 4204 Spider-Man: Friend or Foe
## 4205 Major League Baseball 2K13
## 4206 Super Momotarou Dentetsu DX
## 4207 World Soccer Winning Eleven 8: Liveware Evolution
## 4208 The Sims 3: Outdoor Living Stuff
## 4209 Cars: Race-O-Rama
## 4210 Downhill Domination
## 4211 NHL 15
## 4212 Pirates of the Caribbean: Dead Man's Chest
## 4213 World Series of Poker
## 4214 Inazuma Eleven Go 2: Chrono Stone
## 4215 NHL 97
## 4216 We Sing Encore
## 4217 Kong: The 8th Wonder of the World
## 4218 MX vs. ATV: Alive
## 4219 Mega Man Star Force 3: Black Ace / Red Joker
## 4220 Crayola: Treasure Adventures
## 4221 Godzilla: Save the Earth
## 4222 Dance Dance Revolution: Mario Mix
## 4223 Metal Gear Solid: The Twin Snakes
## 4224 Imagine: Figure Skater (US sales)
## 4225 Mat Hoffman's Pro BMX 2
## 4226 Metal Gear Solid: The Essential Collection
## 4227 The Legend of Spyro: Dawn of the Dragon
## 4228 Iridion 3D
## 4229 MX vs. ATV Untamed
## 4230 Classic NES Series: Pac-Man
## 4231 Destroy All Humans!
## 4232 Dragon Ball Z: Collectible Card Game
## 4234 Country Dance 2
## 4235 Razor Freestyle Scooter
## 4236 Crash of the Titans
## 4237 F.E.A.R. 3
## 4238 Disney's Kim Possible 3: Team Possible
## 4239 Rygar: The Legendary Adventure
## 4240 Syphon Filter: Logan's Shadow
## 4241 Super Batter Up
## 4242 Kessen II
## 4243 Crayon Shin-Chan: Arashi o Yobu Enji
## 4244 Stuart Little 2
## 4245 Wolfenstein: The New Order
## 4246 Warhammer 40,000: Space Marine
## 4247 Tak 2: The Staff of Dreams
## 4248 Art Academy: Lessons for Everyone
## 4249 Sid Meier's Civilization Revolution
## 4250 ATV Offroad Fury Pro
## 4251 Dora The Explorer: Dora Saves the Snow Princess
## 4252 SingStar Amped
## 4253 Brothers In Arms: Earned in Blood
## 4254 Walk it Out!
## 4255 Transformers: Dark of the Moon - Autobots/Decepticons
## 4256 Dragon Ball Z: Sagas
## 4257 Scooby-Doo
## 4258 The Legend of Spyro: Dawn of the Dragon
## 4259 Hydro Thunder
## 4260 Brothers In Arms: D-Day
## 4261 American Girl: Kit Mystery Challenge!
## 4262 Mario & Sonic at the Rio 2016 Olympic Games
## 4263 NHL FaceOff '97
## 4264 Deadpool
## 4265 Brothers In Arms: Road to Hill 30
## 4266 Virtua Tennis 4
## 4267 EA Sports UFC
## 4268 Gremlins
## 4269 The Mark of Kri
## 4270 Jampack Winter 2003 (RP-M)
## 4271 Rugrats: Castle Capers
## 4272 Crash Nitro Kart
## 4273 Star Wars The Clone Wars: Republic Heroes
## 4274 Farming Simulator 2015
## 4275 Bleach: The Blade of Fate
## 4276 Madden NFL 12
## 4277 LEGO Rock Band
## 4278 Mad Max (2015)
## 4279 Barbie: Jet, Set & Style!
## 4280 Jak and Daxter: The Lost Frontier
## 4281 Momotarou Dentetsu 11
## 4282 Command & Conquer: Red Alert 3
## 4283 Tomb Raider: Legend
## 4284 Skylanders: SuperChargers
## 4285 The Golden Compass
## 4286 Star Wars: Demolition
## 4287 Scooby-Doo! and the Spooky Swamp
## 4288 Sword Art Online: Lost Song
## 4289 Bloody Roar II
## 4290 Delta Force: Black Hawk Down
## 4291 Burnout Dominator
## 4292 NBA Live 07
## 4293 Vin Diesel: Wheelman
## 4294 Space Invaders
## 4295 .hack//Outbreak Part 3
## 4296 Rayman Legends
## 4297 Mother 1+2
## 4298 Hyperdimension Neptunia
## 4299 iCarly
## 4300 Puzzle & Dragons Z + Super Mario Bros. Edition
## 4301 Harry Potter and the Deathly Hallows - Part 1
## 4302 Top Spin
## 4303 Disney Guilty Party
## 4304 Warhawk
## 4305 Pirates of the Caribbean: At World's End
## 4306 Red Faction: Armageddon
## 4307 DanceStar Party
## 4308 Persona 4: Dancing All Night
## 4309 Tales of Vesperia
## 4310 Thief (2014)
## 4311 Dynasty Warriors: Strikeforce
## 4312 2 Games in 1: SpongeBob SquarePants: SuperSponge & Rugrats Go Wild
## 4313 Tales of Hearts
## 4314 Missile Command
## 4315 Lego Batman 3: Beyond Gotham
## 4316 Barbie as The Island Princess
## 4317 Jikkyou Powerful Pro Yakyuu 3
## 4318 The Walking Dead: Season One
## 4319 Jikkyou Powerful Pro Yakyuu 12
## 4320 Enter the Matrix
## 4321 Crash: Mind Over Mutant
## 4322 NASCAR 2005: Chase for the Cup
## 4323 J-League Excite Stage '95
## 4324 The New York Times Crosswords
## 4325 Phantasy Star Online Episode I & II
## 4326 Moshi Monsters: Moshlings Theme Park
## 4327 The Powerpuff Girls: Relish Rampage
## 4328 Resistance: Burning Skies
## 4329 NBA 2K13
## 4330 Dead or Alive: Dimensions
## 4332 Brain Challenge
## 4333 NFL Head Coach
## 4334 Watch Dogs
## 4335 Karaoke Revolution Presents American Idol Encore
## 4336 Major League Baseball 2K11
## 4337 Enemy Territory: Quake Wars
## 4338 Ghostbusters
## 4339 NCAA Gamebreaker 99
## 4340 Area 51
## 4341 World Stadium 2
## 4342 Sega Rally Revo
## 4343 NHL 2005
## 4344 TNA iMPACT!
## 4345 Star Wars Jedi Knight: Jedi Academy
## 4346 Thrillville: Off the Rails
## 4347 Phoenix
## 4348 Spider-Man: Shattered Dimensions
## 4349 F.E.A.R. 3
## 4350 My Fashion Studio
## 4351 Plants vs. Zombies: Garden Warfare 2
## 4352 Rock Band Country Track Pack
## 4353 Pro Evolution Soccer 2016
## 4354 Apocalypse
## 4355 Transformers: Revenge of the Fallen (Wii & PS2 Version)
## 4356 PES 2009: Pro Evolution Soccer
## 4357 Yu-Gi-Oh! Destiny Board Traveler
## 4358 SingStar Queen
## 4359 God Eater 2
## 4360 Samurai Warriors 3
## 4361 World Soccer Winning Eleven 5 Final Evolution
## 4362 One Piece: Pirate Warriors 3
## 4363 Sphinx and the Cursed Mummy
## 4364 Fatal Fury 2
## 4365 Rampage World Tour
## 4366 Pokemon Puzzle League
## 4367 Eternal Sonata
## 4368 Dance Dance Revolution: Hottest Party 3
## 4369 FIFA 15
## 4370 Petz: Catz 2
## 4371 Bee Movie Game
## 4372 Tekken Advance
## 4373 Shin Megami Tensei: Persona 3
## 4374 Persona
## 4375 Band Hero
## 4376 Naruto Shippuden: Ultimate Ninja Storm Generations
## 4377 Hot Wheels: Stunt Track Challenge
## 4378 Viking: Battle for Asgard
## 4380 Mobile Suit Gundam
## 4382 SingStar Take That
## 4383 SOCOM: U.S. Navy SEALs Fireteam Bravo 3
## 4384 Final Fantasy Collection
## 4385 Disney Sing It! High School Musical 3: Senior Year
## 4386 NBA Live 10
## 4387 Samurai Warriors: Xtreme Legends
## 4388 Tony Hawk's Proving Ground
## 4389 NHL FaceOff
## 4390 WWE WrestleMania 21
## 4391 Brunswick Pro Bowling
## 4392 Worms: Open Warfare 2
## 4393 NBA Live 2005
## 4394 Defender II
## 4395 WWE Day of Reckoning
## 4396 Dragon Quest Heroes: Rocket Slime
## 4397 ATV Quad Power Racing 2
## 4398 Walt Disney World Quest: Magical Racing Tour
## 4399 Sled Storm
## 4400 Vandal Hearts
## 4401 Mario Tennis Ultra Smash
## 4402 Celebrity Sports Showdown
## 4403 Jawbreaker
## 4404 Scooby-Doo! Mystery Mayhem
## 4405 Mario Golf: Advance Tour
## 4406 Crash: Mind Over Mutant
## 4407 Karaoke Revolution
## 4408 Discovery Kids: Kitten Corner
## 4409 Just Dance 2014
## 4410 Yu-Gi-Oh! Capsule Monster Coliseum
## 4411 Payday 2
## 4412 Major League Baseball 2K6
## 4413 Jampack Volume 13 (RP-M)
## 4414 World Soccer Winning Eleven 9
## 4415 NBA Live 2000
## 4416 Teenage Mutant Ninja Turtles 2: Battle Nexus
## 4417 SpongeBob SquarePants: Lights, Camera, Pants!
## 4418 Disney Infinity 3.0
## 4419 TouchMaster 3
## 4420 The Thing
## 4421 Disney Infinity 3.0
## 4422 Van Helsing
## 4423 X-Men Legends II: Rise of Apocalypse
## 4424 Food Network: Cook or Be Cooked
## 4425 Transformers: Fall of Cybertron
## 4426 Metro: Last Light
## 4427 The Urbz: Sims in the City (all regions sales)
## 4428 Spawn: Armageddon
## 4429 The Godfather (US sales)
## 4430 DmC: Devil May Cry
## 4431 Plants vs. Zombies: Garden Warfare 2
## 4432 World Stadium EX
## 4433 Tiger Woods PGA Tour 2003
## 4434 Battlefield 2: Modern Combat
## 4435 G-Force
## 4436 Ben 10 Alien Force: Vilgax Attacks
## 4437 50 Cent: Bulletproof
## 4438 Densetsu no Stafi 2
## 4439 Independence Day
## 4440 Need for Speed: Shift 2 Unleashed
## 4441 Chocobo Racing
## 4442 Ninja Gaiden 3
## 4443 Child of Eden
## 4444 LEGO Star Wars II: The Original Trilogy
## 4445 Family Fest Presents Circus Games
## 4446 My Spanish Coach
## 4447 The Darkness
## 4448 Gundam SEED: Federation vs. Z.A.F.T.
## 4449 Ms. Pac-Man Maze Madness
## 4450 Blood Omen: Legacy of Kain
## 4451 Super Bomberman 4
## 4452 Bomberman II
## 4453 Duke Nukem 64
## 4454 Sin and Punishment: Star Successor
## 4455 Jump Start Pet Rescue
## 4456 Naughty Bear
## 4457 SpongeBob SquarePants: Lights, Camera, Pants!
## 4458 Super Robot Taisen OG: Original Generations
## 4459 Army Men World War: Final Front
## 4460 Petz: Horsez 2
## 4461 Puppy Luv: Spa and Resort
## 4462 Yu-Gi-Oh! 5D's Tag Force 4
## 4463 MX Unleashed
## 4464 Jikkyou Powerful Pro Yakyuu 9
## 4465 Grind Session
## 4466 Naruto: Gekito Ninja Taisen! 3
## 4467 Barbie: Groom and Glam Pups
## 4468 Wario World
## 4469 Scooby-Doo! Mystery Mayhem
## 4471 Taiko no Tatsujin: Doki! Shinkyoku Darake no Haru Matsuri
## 4472 Deer Drive
## 4474 Just Dance 4
## 4475 TimeSplitters 2
## 4476 Battlebots: Design & Destroy
## 4477 Devil May Cry HD Collection
## 4478 Eternal Darkness: Sanity's Requiem
## 4479 Power Rangers: S.P.D.
## 4480 Naruto: Ultimate Ninja 3
## 4481 SingStar Motown
## 4482 Neon Genesis Evangelion
## 4483 Nicktoons: Attack of the Toybots
## 4484 Mobile Suit Gundam: One Year War
## 4485 Tongari Boushi to Mahou no Otana
## 4486 NFL Blitz 20-03
## 4487 Just Dance: Summer Party
## 4488 SpongeBob's Atlantis SquarePantis
## 4489 Dragon Ball Z: Shin Budokai - Another Road
## 4490 Master of Illusion
## 4491 Star Wars: Jedi Starfighter
## 4492 Remington Great American Bird Hunt
## 4493 Classic NES Series: Metroid
## 4494 Alpha Protocol
## 4495 Tetris Axis
## 4496 Dora the Explorer: Dora Puppy
## 4497 Primal
## 4498 Madden NFL 2002
## 4499 Need for Speed Underground 2
## 4500 007: Quantum of Solace
## 4501 Spec Ops: Covert Assault
## 4502 SSX Tricky
## 4503 Flight Control Rocket
## 4504 FIFA 14
## 4505 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 4506 Trials Fusion
## 4507 Wheel of Fortune
## 4508 NiGHTS into dreams...
## 4509 NCAA Football 2004
## 4510 Overwatch
## 4511 Rock Band 4
## 4512 NBA Jam
## 4513 Bionicle
## 4514 Minecraft
## 4515 MLB 2002
## 4516 Sleeping Dogs
## 4517 TimeSplitters
## 4518 Barnstorming
## 4519 InuYasha: The Secret of the Cursed Mask
## 4520 Rune Factory 3: A Fantasy Harvest Moon
## 4521 The Powerpuff Girls: Him and Seek
## 4522 Mega Man Zero 2
## 4523 Wonder Project J: Kikai no Shonen Pino
## 4524 2010 FIFA World Cup South Africa
## 4525 Atelier Totori: The Adventurer of Arland
## 4526 Spec Ops: The Line
## 4527 The Fairly Odd Parents: Game Boy Advance Video Volume 1
## 4528 Ghostbusters: The Video Game
## 4529 Hunter: The Reckoning Wayward
## 4530 How to Train Your Dragon
## 4531 Command & Conquer 3: Tiberium Wars
## 4532 WipEout 64
## 4533 Mischief Makers
## 4534 Max Payne 3
## 4535 Petz Bunnyz
## 4536 Castlevania: Portrait of Ruin
## 4538 EyeToy: AntiGrav
## 4539 FIFA 14
## 4540 EverQuest Online Adventures
## 4541 Cool Boarders
## 4542 999: Nine Hours, Nine Persons, Nine Doors
## 4543 Mobile Suit Gundam: Zeonic Front
## 4544 Zone of the Enders HD Collection
## 4545 Def Jam Icon
## 4546 Tales of the World: Radiant Mythology
## 4547 Monopoly
## 4548 Dawn of Mana
## 4549 Microsoft Flight Simulator X
## 4550 Lego Batman 3: Beyond Gotham
## 4551 Madden NFL 2003
## 4552 NASCAR Kart Racing
## 4553 Disney Sing It
## 4554 Backyard Baseball
## 4555 Call of Duty: Black Ops II
## 4556 TRON: Evolution
## 4557 Midway Arcade Treasures
## 4558 Call of Duty: Modern Warfare: Mobilized
## 4559 Petz: Horsez 2
## 4560 The Smurfs
## 4561 Bakugan: Battle Brawlers
## 4562 NHL FaceOff 99
## 4563 Skylanders: Trap Team
## 4564 SEGA Classics Collection
## 4565 Pirates of the Caribbean: At World's End
## 4566 Juiced: Eliminator
## 4567 Naruto: Ninja Council 3
## 4568 Neon Genesis Evangelion 2nd Impression
## 4569 Dai-2-Ji Super Robot Taisen Z: Hakai-hen
## 4570 NBA Street
## 4571 Ben 10 Alien Force: Vilgax Attacks
## 4572 Ben 10 Alien Force: Vilgax Attacks
## 4573 Valkyrie Profile: Covenant of the Plume
## 4574 The Legend of Spyro: The Eternal Night
## 4575 Mega Man Battle Network
## 4576 LEGO Rock Band
## 4577 25 to Life
## 4578 NHL 2K6
## 4579 Medal of Honor: Rising Sun
## 4580 The Sims
## 4581 Guitar Hero: Smash Hits
## 4582 Dog's Life
## 4583 The X Files
## 4584 Super Wagyan Land
## 4585 Rascal
## 4586 Hometown Story
## 4587 Tony Hawk's American Wasteland
## 4588 Top Spin 4
## 4589 Famicom Mini: Super Mario Bros. 2
## 4590 Crash: Mind Over Mutant
## 4591 Medal of Honor Heroes 2
## 4592 Yu-Gi-Oh! GX: Tag Force 2
## 4593 Colony Wars
## 4594 All-Star Baseball 2004
## 4595 Big Strike Bowling
## 4596 Ragnarok Odyssey
## 4597 Harry Potter and the Deathly Hallows - Part 1
## 4598 Horsez
## 4599 SpongeBob's Truth or Square (US sales)
## 4600 NASCAR Thunder 2002
## 4601 Grandia
## 4602 ESPN NHL 2K5
## 4603 Yu-Gi-Oh! 7 Trials to Glory: World Championship Tournament 2005
## 4604 Hot Wheels World Race
## 4605 Avatar: The Last Airbender - The Burning Earth
## 4606 Superman: Shadow of Apokolips
## 4607 NiGHTS: Journey of Dreams
## 4608 American Chopper
## 4609 Vanquish
## 4610 Star Wars Trilogy: Apprentice of the Force
## 4611 Marvel Super Hero Squad
## 4612 Lemony Snicket's A Series of Unfortunate Events
## 4613 JGTC: All-Japan Grand Touring Car Championship
## 4614 NBA Live 06
## 4615 Arc the Lad III
## 4616 Solitaire Overload
## 4617 Mobile Suit Gundam: Gundam vs. Gundam
## 4618 Test Drive
## 4619 Jikkyou Powerful Pro Yakyuu 11
## 4620 Ghost Trick: Phantom Detective
## 4621 The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 4622 Rush 2: Extreme Racing USA
## 4623 NFL Blitz 2001
## 4624 Dr. Mario 64
## 4625 Jikkyou Powerful Pro Yakyuu 6
## 4626 Army Men: Sarge's Heroes 2
## 4627 James Bond 007: Everything or Nothing
## 4628 Green Day: Rock Band
## 4629 Wolfenstein: The Old Blood
## 4630 MLB 08: The Show
## 4631 Disney Infinity 2.0: Marvel Super Heroes
## 4632 Dance Dance Revolution Ultramix 2
## 4633 Mega Man Anniversary Collection
## 4634 Blazing Angels: Squadrons of WWII
## 4635 Super Famista 4
## 4636 The Fairly Odd Parents: Game Boy Advance Video Volume 2
## 4637 Cabela's Legendary Adventures
## 4638 Taiko no Tatsujin DS: Dororon! Youkai Daikessen!!
## 4639 Harry Potter and the Goblet of Fire
## 4640 JumpStart: Escape from Adventure Island
## 4641 Thrillville: Off the Rails
## 4642 Style Lab: Makeover
## 4643 Condemned: Criminal Origins
## 4644 Mega Man X6
## 4645 Monster Jam: Urban Assault
## 4646 BloodRayne
## 4647 Kumamon Bomber: Puzzle de Kumamon Taisou
## 4648 Castlevania: Curse of Darkness
## 4649 Tom Clancy's HAWX 2
## 4650 Harvest Moon: Grand Bazaar
## 4651 International Superstar Soccer Pro '98
## 4652 Jimmy Neutron: Boy Genius
## 4653 Black
## 4654 Zack & Wiki: Quest for Barbaros' Treasure
## 4655 Double Pack: Finding Nemo / The Incredibles
## 4656 Star Wars The Clone Wars: Republic Heroes
## 4657 NBA 2K11
## 4658 Animal Crossing: Amiibo Festival
## 4659 Hyrule Warriors
## 4660 Harry Potter and the Deathly Hallows - Part 1
## 4661 Fishing Resort
## 4662 WWE All Stars
## 4663 Lord of the Rings: The Third Age
## 4664 Football Manager Handheld 2011
## 4665 Pirates of the Caribbean: At World's End
## 4666 Mega Man Legends 2
## 4667 X-Men vs. Street Fighter
## 4668 High Rollers Casino
## 4669 Castlevania: The Dracula X Chronicles
## 4670 The Suffering
## 4671 Cyber Troopers Virtual-On
## 4672 Katamari Forever
## 4673 Star Wars Starfighter: Special Edition
## 4674 TimeShift
## 4675 NBA Jam
## 4676 Zone of the Enders: The 2nd Runner
## 4677 Ghostbusters: The Video Game
## 4678 Attack on Titan: Humanity in Chains
## 4679 Jampack Spring 2004 (RP-T)
## 4680 Dexter's Laboratory Deesaster Strikes
## 4681 NFL GameDay 2004
## 4682 Scooby-Doo and the Cyber Chase
## 4683 Danganronpa: Trigger Happy Havoc
## 4685 Tomb Raider: The Last Revelation
## 4686 pro evolution soccer 2011
## 4687 Sega Rally Championship 2
## 4688 Quake II
## 4689 Crash of the Titans
## 4690 BioShock
## 4691 Cars: Mater-National Championship
## 4692 MLB 10: The Show
## 4693 Wheel of Fortune: 2nd Edition
## 4694 Tom Clancy's Rainbow Six: Lockdown
## 4695 Mobile Suit Gundam: Gundam vs. Gundam NEXT PLUS
## 4696 Cool Boarders 2001
## 4697 Grudge Warriors
## 4698 World Soccer Jikkyou Winning Eleven 2000: U-23 Medal heno Chousen
## 4699 Destiny: The Taken King
## 4700 Mobile Suit Gundam
## 4701 Mass Effect Trilogy
## 4702 Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4703 Wolfenstein: The New Order
## 4704 James Patterson Women's Murder Club: Games of Passion
## 4705 Farming Simulator 2015
## 4706 Jimmy Neutron: Boy Genius
## 4707 Itadaki Street DS
## 4708 Castlevania: Order of Ecclesia
## 4709 BlazBlue: Continuum Shift
## 4710 X-Men: The Official Game
## 4711 300: March to Glory
## 4712 E0: Enemy Zero
## 4713 Nicktoons: Unite!
## 4714 Six Flags Fun Park
## 4715 Spore Hero
## 4716 Mass Effect Trilogy
## 4717 NASCAR Racing
## 4718 LEGO Jurassic World
## 4719 Monotaro Dentetsu 2010: Sengoku Ishin no Hero Daishuugou! no Maki
## 4720 Up
## 4721 Spider-Man: Web of Shadows
## 4722 Boku no Natsuyasumi 2: Umi no Bouken Hen
## 4723 SpongeBob SquigglePants
## 4724 Cars: Race-O-Rama
## 4725 Fantastic Pets
## 4726 Command & Conquer: Red Alert
## 4727 Star Wars The Clone Wars: Republic Heroes
## 4728 Dig Dug
## 4729 Ogre Battle 64: Person of Lordly Caliber
## 4730 Superman: The New Superman Adventures
## 4731 UEFA Euro 2008 Austria-Switzerland
## 4732 The Terminator: Dawn of Fate
## 4733 The LEGO Movie Videogame
## 4734 Rogue Galaxy: Director's Cut
## 4735 Armored Core
## 4736 Monster Trucks Mayhem
## 4737 Winter Sports 2: The Next Challenge
## 4738 Green Day: Rock Band
## 4739 Densha De Go! 2
## 4740 Transformers: Fall of Cybertron
## 4741 Call of Duty: Advanced Warfare
## 4742 Disney Princess: Enchanting Storybooks
## 4743 Monopoly Streets
## 4744 Band Hero
## 4745 The Wonderful 101
## 4746 No More Heroes 2: Desperate Struggle
## 4747 Battlefield 2: Modern Combat
## 4748 Armored Core 2: Another Age
## 4749 Buzz! Junior: Jungle Party
## 4750 Mortal Kombat: Deadly Alliance
## 4751 Marvel: Ultimate Alliance
## 4752 NBA 2K11
## 4753 AKB1/48: Idol to Koishitara...
## 4754 Pro Pinball
## 4755 '98 Koshien
## 4756 NBA 2K9
## 4757 Yu-Gi-Oh! The Eternal Duelist Soul (JP sales)
## 4758 Speed Racer: The Videogame
## 4759 Naughty Bear
## 4760 Littlest Pet Shop
## 4761 TNA iMPACT!
## 4762 Just Dance Kids 2
## 4763 Duke Nukem Forever
## 4764 Hatsune Miku: Project Diva 2nd
## 4765 Marvel: Ultimate Alliance 2
## 4766 Mario no Super Picross
## 4767 Ed, Edd n Eddy: The Mis-Edventures
## 4768 Jikkyou Powerful Pro Yakuu '94
## 4769 Disney's Tarzan Untamed
## 4770 Borderlands: The Handsome Collection
## 4771 The Gunstringer
## 4772 Knockout Kings 2001
## 4773 From Russia With Love
## 4774 FIFA Soccer 13
## 4775 Asura's Wrath
## 4776 Avatar: The Game
## 4777 My Virtual Tutor: Reading Adventure First to Second Grade
## 4778 Minority Report: Everybody Runs
## 4779 Disney's Hercules / Disney's The Jungle Book: Groove Party / A Bug's Life
## 4780 NFL GameDay 2002
## 4781 Pengo
## 4782 Disney Sing It! High School Musical 3: Senior Year
## 4783 Story of Seasons
## 4784 Beowulf: The Game
## 4785 Mouse Trap
## 4786 Super Monkey Ball: Step & Roll
## 4787 Hatsune Miku: Project Diva F 2nd
## 4788 Overlord
## 4789 Tak and the Power of Juju
## 4790 Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 4791 Sega Superstars Tennis
## 4793 Dragon Quest X
## 4794 Wall-E
## 4795 Medarot: Kabuto / Kuwagata Version
## 4796 NBA 2K10
## 4797 Defender
## 4799 WipeOut 3 The Game
## 4800 Taiko no Tatsujin Wii: Dodon to 2 Yome!
## 4801 Thief (2014)
## 4802 Congo Bongo
## 4803 Gauntlet: Seven Sorrows
## 4804 Harry Potter: Quidditch World Cup
## 4805 Advance Wars: Dual Strike
## 4806 Yu-Gi-Oh! 5D's Stardust Accelerator: World Championship 2009
## 4807 Warriors Orochi 2 (JP sales)
## 4808 WWE SmackDown! vs. RAW 2006
## 4809 The Chronicles of Narnia: Prince Caspian
## 4810 The Incredibles: Rise of the Underminer
## 4811 Pet in TV
## 4812 Battalion Wars
## 4813 NBA ShootOut 2000
## 4814 Power Rangers: Dino Thunder
## 4815 Rocksmith 2014
## 4816 Samurai Shodown
## 4817 NHL 15
## 4818 TMNT
## 4819 Final Fantasy Crystal Chronicles: The Crystal Bearers
## 4820 Cabela's Big Game Hunter 2010
## 4821 EA Sports UFC 2
## 4822 Fighting Vipers
## 4823 NCAA GameBreaker 2000
## 4824 Iron Man 2
## 4825 The Legend of Spyro: Dawn of the Dragon
## 4826 AKB1/48: Idol to Guam de Koishitara...
## 4827 RR64: Ridge Racer 64
## 4828 Top Gear Rally
## 4829 NFL Quarterback Club 2000
## 4830 Mortal Kombat Mythologies: Sub-Zero
## 4831 18 Wheeler: American Pro Trucker
## 4832 Atari Anthology
## 4833 Bugs Bunny: Lost in Time
## 4834 NBA Jam
## 4835 Sherlock Holmes: The Mystery of the Mummy
## 4836 Hot Wheels: Beat That!
## 4837 MLB 2006
## 4838 Star Wars The Clone Wars: Republic Heroes
## 4839 Brunswick Pro Bowling
## 4840 Mafia II
## 4841 Rocket Power: Dream Scheme
## 4842 SpongeBob's Truth or Square (US sales)
## 4843 MX vs. ATV Unleashed
## 4844 Rampage: Total Destruction
## 4845 Planet 51
## 4846 The Urbz: Sims in the City
## 4847 Road Rash: Jailbreak
## 4848 Mother 3
## 4849 Nicktoons: Freeze Frame Frenzy
## 4850 Diner Dash: Sizzle & Serve
## 4851 Rapala Pro Bass Fishing 2010
## 4852 Legends of WrestleMania
## 4853 Wii Sports Club
## 4854 Tomb Raider: Anniversary
## 4855 You Don't Know Jack
## 4856 Mystery Dungeon: Shiren the Wanderer
## 4857 Sonic Lost World
## 4858 Condemned 2: Bloodshot
## 4860 Star Wars: Clone Wars
## 4861 NBA Live 2002
## 4862 Boku no Natsuyasumi
## 4863 Armored Core V
## 4864 I-Ninja
## 4865 Command & Conquer
## 4867 NBA Jam
## 4868 Mass Effect 2
## 4869 SD Gundam G Generation Seed
## 4870 Call of Duty: Finest Hour
## 4871 Scooby-Doo! and the Spooky Swamp
## 4872 Naruto: Path of the Ninja
## 4873 Rise of the Tomb Raider
## 4874 Hitman: Blood Money
## 4875 Tales of Phantasia
## 4876 Alpha Protocol
## 4877 Suzuki TT Superbikes
## 4878 Rumble Roses
## 4879 Just Dance 2014
## 4880 Fantastic Four: Rise of the Silver Surfer
## 4881 Ultimate Spider-Man
## 4882 GRID 2
## 4883 LEGO The Lord of the Rings
## 4884 Juiced 2: Hot Import Nights
## 4885 Skylanders: SuperChargers
## 4886 NHL 99
## 4887 NBA 2K10
## 4888 Dungeon Siege III
## 4889 Viking: Battle for Asgard
## 4890 Brunswick Pro Bowling
## 4891 Monster Jam: Urban Assault
## 4892 Danball Senki
## 4893 NASCAR Heat
## 4894 Bloody Roar
## 4895 Bump 'n' Jump
## 4896 Mobile Suit Gundam: Lost War Chronicles
## 4897 Disney's Brother Bear
## 4898 Naruto: Clash of Ninja Revolution 2
## 4899 NBA Live 09
## 4900 LEGO Star Wars III: The Clone Wars
## 4901 The House of The Dead III
## 4902 Rune Factory: Frontier
## 4903 Fire Emblem: Fuuin no Tsurugi
## 4904 SpongeBob's Truth or Square (US sales)
## 4905 FIFA 12
## 4906 Ener-G: Gym Rockets
## 4907 The Darkness II
## 4908 NBA Live 09
## 4909 Laser Blast
## 4910 Dancing with the Stars: We Dance!
## 4911 LocoRoco
## 4912 Thrasher Presents: Skate and Destroy
## 4913 Are You Smarter than a 5th Grader? Make the Grade
## 4914 Donkey Konga 2
## 4915 Just Dance 2014
## 4916 Metal Gear Solid: The Legacy Collection
## 4917 Tear Ring Saga Yutona Eiyuu Senki
## 4918 Project X Zone
## 4919 Red Faction: Armageddon
## 4920 Wipeout 2048
## 4921 Need for Speed: Nitro
## 4922 Mystery Case Files: The Malgrave Incident
## 4923 Yoshi Touch & Go
## 4924 EA Sports Active 2
## 4925 Combat of Giants: Dinosaurs 3D
## 4926 Taiko no Tatsujin Wii: Ketteiban
## 4927 Age of Empires III
## 4928 SSX 3
## 4929 MLB 15: The Show
## 4930 Madden NFL 2005
## 4931 All-Star Baseball 2000
## 4932 Custom Robo V2
## 4933 Extreme-G: XG2
## 4934 BattleTanx: Global Assault
## 4936 Chibi-Robo! Plug into Adventure!
## 4937 Dawn of Discovery
## 4938 Jampack Winter 2003 (RP-T)
## 4939 Dancing with the Stars: We Dance!
## 4940 Kengo: Master of Bushido
## 4941 Blood Omen 2
## 4942 Sesame Street: Elmo's A-to-Zoo Adventure
## 4943 Skylanders Giants
## 4944 Just Dance 4
## 4945 Super Fire ProWrestling
## 4946 Cabela's Dangerous Hunts 2
## 4947 Marvel: Ultimate Alliance
## 4948 SpongeBob vs The Big One: Beach Party Cook Off
## 4949 MotoGP 08
## 4950 Imagine: Party Babyz
## 4951 Chessmaster
## 4952 Tiger Woods PGA Tour 14
## 4953 Fatal Fury
## 4954 Farming Simulator 2013
## 4955 From TV Animation One Piece: Yume no Lufy Kaizokudan Tanjou!
## 4956 The Dog Island
## 4957 Madden NFL Football
## 4958 The Sims 2
## 4959 Ice Age 2: The Meltdown
## 4960 MLB 14: The Show
## 4961 Super Famista 3
## 4962 Auto Modellista
## 4963 Tom Clancy's Ghost Recon 2: Summit Strike
## 4964 Junior Classic Games
## 4965 Hooked! Again: Real Motion Fishing
## 4966 Tiger Woods PGA Tour 08
## 4967 Karaoke Revolution Presents American Idol Encore
## 4968 Airlock
## 4969 Tokimeki Memorial 2
## 4970 Samurai Warriors Chronicles
## 4971 Tomb Raider: Legend
## 4972 Ice Age: Dawn of the Dinosaurs
## 4973 Dance Party: Pop Hits
## 4974 Harry Potter: Quidditch World Cup
## 4975 Jam Sessions: Sing and Play Guitar (US sales)
## 4976 Saints Row IV
## 4977 Evil Dead: Fistfull of Boomstick
## 4978 One Piece: Unlimited World Red
## 4979 Phantasy Star Ø
## 4980 Triple Play 97
## 4981 Virtua Tennis 2009
## 4982 Super Soccer
## 4983 Shin Megami Tensei: Nocturne
## 4984 Wario Land II (GBC)
## 4985 San Francisco Rush: Extreme Racing
## 4986 Dragon's Crown
## 4987 Bakusou Dekotora Densetsu: Otoko Ippiki Yume Kaidoi
## 4988 Imagine: Salon Stylist
## 4989 ESPN College Hoops 2K5
## 4990 Looney Tunes: Acme Arsenal
## 4991 Cabela's Dangerous Hunts 2009
## 4992 Fragile Dreams: Farewell Ruins of the Moon
## 4993 SD Gundam G Generation Spirits
## 4994 Batman: Arkham City
## 4995 Disney Sing It
## 4996 Peppa Pig: The Game
## 4997 God Eater 2: Rage Burst
## 4998 Get Fit with Mel B
## 4999 The Cat in the Hat
## 5000 Naruto Shippuden: Ultimate Ninja Heroes 3
## 5001 NFL GameDay 2002
## 5002 Turok: Evolution
## 5003 Destiny: The Taken King
## 5004 Tamagotchi Connection: Corner Shop 3
## 5005 Mobile Suit Gundam: Giren no Yabou Zeon Dokuritsu Sensouden
## 5006 Ice Age
## 5007 Sega Superstars Tennis
## 5008 Headhunter
## 5009 Skate
## 5010 Shin Megami Tensei: Devil Summoner
## 5011 Raving Rabbids: Travel in Time 3D
## 5012 NCAA Football 08
## 5013 Marvel Nemesis: Rise of the Imperfects
## 5014 NHL 15
## 5015 ESPN Extreme Games
## 5016 Forza Horizon 3
## 5017 Overlord: Dark Legend
## 5018 Ninja: Shadow of Darkness
## 5019 SD Gundam G Generation-F
## 5020 Bratz: Rock Angelz
## 5021 FlatOut
## 5022 Phoenix Wright: Ace Attorney - Dual Destinies
## 5023 SSX 3
## 5024 NCAA Football 11
## 5025 Tales of Zestiria
## 5026 Lilo & Stitch 2: Hämsterviel Havoc
## 5027 Metal Gear Solid: Snake Eater 3D
## 5028 Risk: Global Domination
## 5029 Elite Beat Agents
## 5030 NBA 2K7
## 5031 Mobile Suit Gundam version 2.0
## 5032 Grandia Xtreme
## 5033 Silent Scope
## 5034 Final Fantasy Adventure
## 5035 Virtua Tennis 2009
## 5036 Dora The Explorer: Dora Saves the Snow Princess
## 5037 The Incredible Hulk
## 5038 Mercenaries 2: World in Flames
## 5039 Cabela's Big Game Hunter 2012
## 5040 EA Sports MMA
## 5041 Iron Man 2
## 5042 DiRT 2
## 5043 Tokimeki Memorial: Forever with You
## 5044 MediEvil II
## 5045 Guitar Hero On Tour: Modern Hits
## 5046 Hunter: The Reckoning
## 5047 MX vs. ATV Untamed
## 5048 Rogue Trip: Vacation 2012
## 5049 Dai-4-Ji Super Robot Taisen
## 5050 Tiger Woods PGA Tour 08
## 5051 Pokemon Channel
## 5052 Taiko no Tatsujin Portable DX
## 5053 Etrian Odyssey IV: Legends of the Titans
## 5054 Moto Racer World Tour
## 5055 NCAA Final Four 2000
## 5056 Scribblenauts: Unlimited
## 5057 FIFA 17
## 5058 Saints Row: The Third
## 5059 Just Dance 2015
## 5060 Madagascar: Escape 2 Africa
## 5061 ZhuZhu Pets: Featuring The Wild Bunch
## 5063 Petz Rescue: Wildlife Vet
## 5064 Green Day: Rock Band
## 5065 Gravitar
## 5066 Monster Jam: Path of Destruction
## 5067 Toukiden: The Age of Demons
## 5068 EyeToy Play 2
## 5069 Dance Dance Revolution Ultramix 3
## 5070 Mobile Suit Gundam: Extreme VS Full Boost
## 5071 WWE SmackDown vs. Raw 2011
## 5072 Need for Speed: Hot Pursuit
## 5073 The Legend of Spyro: A New Beginning
## 5074 Pro Evolution Soccer 2011 3D
## 5075 Shin Megami Tensei: Devil Survivor Overclocked
## 5076 Dragon Ball Z: Attack of the Saiyans
## 5077 Marvel Super Hero Squad
## 5078 The House of the Dead: Overkill - Extended Cut
## 5080 Harry Potter and the Prisoner of Azkaban
## 5081 Quake 4
## 5082 Petz Rescue: Ocean Patrol
## 5083 Solaris
## 5084 Puppy Palace
## 5085 Super Dragon Ball Z
## 5086 Paws & Claws: Pampered Pets
## 5087 ESPN: Sports Connection
## 5088 Alien: Isolation
## 5089 Naruto Shippuden: Ninja Destiny 2
## 5090 SAW
## 5091 The Legend of Spyro: The Eternal Night
## 5092 Tobal 2
## 5093 Digging for Dinosaurs
## 5094 Trivial Pursuit
## 5095 Tiger Woods PGA Tour 09
## 5096 Ultimate Spider-Man
## 5097 Life is Strange
## 5098 Kingdom Under Fire: Circle of Doom
## 5099 NBA Inside Drive 2002
## 5100 The BIGS
## 5101 Major League Baseball 2K6
## 5102 Kileak: The DNA Imperative
## 5103 Petz: Catz 2
## 5104 Mini Ninjas
## 5105 Tom Clancy's The Division
## 5106 Phantasy Star Portable 2: Infinity
## 5107 Hell's Kitchen: The Game
## 5108 LEGO Dimensions
## 5109 Monsters, Inc. Scream Arena
## 5110 Reel Fishing III
## 5111 Cabela's Deer Hunt 2005 Season
## 5112 Prince of Persia: The Forgotten Sands
## 5113 Rampage: Total Destruction
## 5114 High Heat Major League Baseball 2003
## 5115 Madden NFL 11
## 5116 Super Formation Soccer 94
## 5117 Panzer Dragoon
## 5118 Tiger Woods PGA Tour 12: The Masters
## 5119 Rage
## 5120 Spider-Man: Friend or Foe
## 5121 Yarudora Series Vol.1: Double Cast
## 5122 Dungeon Siege III
## 5123 Juiced 2: Hot Import Nights
## 5124 Rec Room Games
## 5125 Fushigi no Dungeon: Furai no Shiren 2 - Oni Shuurai! Shiren Shiro!
## 5126 Turok: Rage Wars
## 5127 Scooby-Doo! Classic Creep Capers
## 5128 Dragonfire
## 5129 Custom Robo
## 5130 FIFA Soccer 13
## 5131 Command & Conquer: Red Alert 3 Ultimate Edition
## 5132 Harry Potter and the Order of the Phoenix
## 5133 Medieval II: Total War Gold Edition
## 5134 Pac-Man World 2
## 5135 Kotoba no Puzzle: Mojipittan DS
## 5136 Barbie Horse Adventures: Blue Ribbon Race
## 5137 Bionic Commando
## 5138 Wanted: Weapons of Fate
## 5139 Slime MoriMori Dragon Quest: Shougeki No Shippo Dan
## 5140 Dishonored
## 5141 Marvel: Ultimate Alliance
## 5142 NFL Street 2 Unleashed
## 5143 Super Robot Taisen EX
## 5144 FIFA Street 2
## 5145 Bottom of the 9th
## 5146 Theatrhythm Final Fantasy: Curtain Call
## 5147 Trauma Center: Under the Knife
## 5148 Shin Megami Tensei II
## 5149 Xenosaga Episode III: Also sprach Zarathustra
## 5150 Build-A-Bear Workshop: A Friend Fur All Seasons
## 5151 Sid Meier's Civilization: Beyond Earth
## 5152 Need for Speed: The Run
## 5153 Virtua Fighter 3tb
## 5154 Transformers: Dark of the Moon
## 5155 Mini-Yonku GB: Let's & Go!!
## 5156 Skylanders SWAP Force
## 5157 LEGO Batman 2: DC Super Heroes
## 5158 Rock Band 4
## 5159 Left 4 Dead 2
## 5160 The Sims 2: Castaway
## 5161 NCAA Football 07
## 5162 The Chronicles of Narnia: Prince Caspian
## 5164 Dreamworks Madagascar Kartz
## 5165 My Horse & Me
## 5166 GoldenEye: Rogue Agent
## 5167 Zero4 Champ RR
## 5168 Dragon Ball Z: Infinite World
## 5169 Nonomura Byoin no Hitobito
## 5170 Tom Clancy's HAWX 2
## 5171 ESPN X Games Skateboarding
## 5173 Resident Evil Zero
## 5174 Super Fire ProWrestling Special
## 5175 Yuu Yuu Hakusho
## 5176 Kamaitachi no Yoru 2
## 5177 High Heat Major League Baseball 2004
## 5178 Robots
## 5179 NARC
## 5180 One Piece: Gigant Battle!
## 5181 Valkyrie Profile: Lenneth
## 5182 Tiger Woods PGA Tour 09
## 5183 Metro: Last Light
## 5184 Tiger Woods PGA Tour 14
## 5185 LocoRoco 2
## 5186 Monster Rancher 3
## 5187 The Incredibles: Rise of the Underminer
## 5188 Spider-Man: Shattered Dimensions
## 5189 BlazBlue: Calamity Trigger
## 5190 MechWarrior 2: 31st Century Combat
## 5191 Earth Defense Force 2025
## 5192 Hamtaro: Ham-Ham Heartbreak
## 5193 Okage: Shadow King
## 5194 Press Your Luck 2010 Edition
## 5195 Mobile Suit Z-Gundam
## 5198 Speed Racer: The Videogame
## 5199 NHL 2K10
## 5200 Assassin's Creed III
## 5201 Kirby's Dream Land 3
## 5202 Big Bass World Championship
## 5203 NFL GameDay 2001
## 5204 NBA 2K6
## 5205 Jurassic Park
## 5206 Mystical Ninja starring Goemon
## 5207 Tetrisphere
## 5208 Saban's Power Rangers: Lightspeed Rescue
## 5209 Senran Kagura Shinovi Versus: Sh?jo-tachi no Sh?mei
## 5210 North American Hunting Extravaganza
## 5211 World's Scariest Police Chases
## 5212 Guitar Hero: Smash Hits
## 5213 Shaun Palmer's Pro Snowboarder
## 5214 AMF Bowling World Lanes
## 5215 MechAssault 2: Lone Wolf
## 5216 Middle-Earth: Shadow of Mordor
## 5217 Hamster Club 3
## 5218 Breath of Fire II
## 5219 Call of Duty: Ghosts
## 5220 LEGO Racers
## 5221 NBA 2K12
## 5222 Teenage Mutant Ninja Turtles: Smash-Up
## 5223 Kinectimals: Now with Bears!
## 5224 ESPN NFL Football
## 5225 ATV/Monster Truck Mayhem
## 5226 Naruto: Ultimate Ninja 3 (JP sales)
## 5227 Just Dance 2016
## 5228 Worms: Open Warfare 2
## 5229 Rapala Pro Fishing
## 5230 J-League Pro Soccer Club o Tsukurou '04
## 5231 Dark Void
## 5232 James Bond 007: Legends
## 5233 Dai-2-Ji Super Robot Taisen Z Saisei-hen
## 5234 WWE '12
## 5235 Disney's The Haunted Mansion
## 5236 Arc the Lad: Twilight of the Spirits
## 5237 Dance Dance Revolution 3rdMix
## 5238 Ryu Ga Gotoku Kenzan!
## 5239 U-Sing
## 5240 Super Robot Taisen A
## 5242 Chicken Shoot
## 5243 Company of Heroes 2
## 5244 Defiance
## 5245 We Sing Deutsche Hits
## 5246 Boxer's Road
## 5247 Frogs And Flies
## 5248 DanceDanceRevolution
## 5249 Harry Potter and the Chamber of Secrets
## 5250 EA Sports MMA
## 5251 Toriko: Gourmet Survival!
## 5252 South Park Rally
## 5253 Ganbare Goemon 3: Shishi Jyuurokubei no Karakuri Manji Katame
## 5254 Monopoly
## 5255 Mega Man Zero Collection
## 5256 Arctic Thunder
## 5257 G-Force
## 5258 NHL 2K10
## 5259 Football Manager Handheld 2010
## 5260 J-League Pro Soccer Club o Tsukurou!
## 5261 Wonder Pets! Save the Animals!
## 5262 Formula 1 Championship Edition
## 5263 Shrek
## 5264 CSI: Deadly Intent - The Hidden Cases
## 5265 SOCOM: Tactical Strike
## 5266 Blasto
## 5267 Trauma Center: Second Opinion
## 5268 Backyard Baseball 2006
## 5269 Dark Souls III
## 5270 Cabela's Outdoor Adventures (2006)
## 5271 Nicktoons: Unite!
## 5272 Suikoden V
## 5273 Picross 2
## 5274 Remember Me
## 5275 Battalion Wars 2
## 5276 Outlaw Golf 2
## 5277 SpongeBob's Boating Bash
## 5278 Sentouchu: Densetsu no Shinobi to Survival Battle!
## 5279 Vancouver 2010 - The Official Video Game of the Olympic Winter Games
## 5280 Momotarou Dentetsu 12
## 5281 Mini Ninjas
## 5282 Tekken Tag Tournament 2
## 5283 Batman: Rise of Sin Tzu
## 5284 Disney's Tarzan: Return to the Jungle
## 5285 Cabela's Dangerous Hunts
## 5286 Terminator Salvation
## 5287 Jikkyou Powerful Pro Yakyuu 13
## 5288 Fossil Fighters: Frontier
## 5289 Star Fox: Zero
## 5290 Mega Man X3
## 5291 Mini Ninjas
## 5292 Stunt Race FX
## 5293 Bloody Roar 3
## 5294 WWE Crush Hour
## 5295 Persona 2: Eternal Punishment
## 5296 Star Wars: Flight of the Falcon
## 5297 One Piece: Gigant Battle 2 Shin Sekai
## 5298 Pac-Man All-Stars
## 5299 Def Jam Rapstar
## 5300 SimCity Creator
## 5301 Hannah Montana: The Movie
## 5302 Angry Birds Star Wars
## 5304 Mega Man ZX Advent
## 5305 Jikkyou Powerful Pro Yakyuu 2000
## 5306 Sniper: Ghost Warrior 2
## 5307 Racquet Sports
## 5308 Harry Potter and the Deathly Hallows - Part 2
## 5309 Supreme Commander 2
## 5310 Resident Evil: Dead Aim
## 5311 Need for Speed Carbon
## 5312 The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 5313 SpongeBob SquarePants: The Yellow Avenger
## 5314 The Fairly Odd Parents: Shadow Showdown
## 5315 Saban's Power Rangers: Lightspeed Rescue
## 5316 Xbox Music Mixer
## 5317 WWE All Stars
## 5318 The Shoot
## 5319 College Hoops 2K8
## 5320 Guitar Hero: Metallica
## 5321 Guilty Gear X2
## 5322 MotoGP 08
## 5323 Yu-Gi-Oh! 5D's Tag Force 5
## 5324 Enemy Territory: Quake Wars
## 5325 Tom Clancy's Rainbow Six: Lockdown
## 5326 From TV Animation One Piece: Tobidase Kaizokudan!
## 5327 The Tale of Despereaux
## 5328 Aggressive Inline
## 5329 Karaoke Revolution
## 5330 NFL Street
## 5331 Hello Kitty Daily
## 5332 Metal Arms: Glitch in the System
## 5333 Farming Simulator 2015
## 5334 Jikkyou Powerful Pro Yakyuu 7
## 5335 Rally Cross 2
## 5336 EverGrace
## 5337 Def Jam Icon
## 5338 Lunar 2: Eternal Blue Complete
## 5339 Street Fighter Alpha: Warriors' Dreams
## 5340 Rugrats: Royal Ransom
## 5341 Disney Fairies: Tinker Bell and the Great Fairy Rescue
## 5342 MLB 06: The Show
## 5343 F1 Race Stars
## 5344 Over the Hedge
## 5345 Naruto Shippuden: Ultimate Ninja Impact
## 5346 Just Dance 2016
## 5347 Charlie and the Chocolate Factory
## 5348 Pirates of the Caribbean: At World's End
## 5349 UEFA Euro 2008 Austria-Switzerland
## 5350 Kurushi Final: Mental Blocks
## 5351 Style Lab: Jewelry Design
## 5352 Risk / Battleship / Clue
## 5353 SD Gundam G Generation World
## 5354 LEGO Pirates of the Caribbean: The Video Game
## 5355 The Wild Thornberrys Movie
## 5356 High School Musical 3: Senior Year DANCE!
## 5357 Dynasty Warriors 5 Empires
## 5358 SoulCalibur
## 5359 WipEout 3
## 5360 Etrian Odyssey
## 5361 Conan
## 5362 Classic NES Series: Ice Climber
## 5363 Skylanders: Trap Team
## 5364 Avatar: The Last Airbender - The Burning Earth
## 5365 F.E.A.R.
## 5366 Tenchu Z
## 5367 Freeway
## 5368 Driver 2 Advance
## 5369 Monster Rancher 4
## 5370 Iron Man 2
## 5371 Chicken Riot
## 5372 Tim Burton's The Nightmare Before Christmas: Oogie's Revenge
## 5373 Iron Storm
## 5374 Harry Potter and the Deathly Hallows - Part 2
## 5375 MotorStorm: Arctic Edge
## 5376 The Fairly Odd Parents: Shadow Showdown
## 5377 Radiant Historia
## 5378 Marvel Super Heroes
## 5379 Super Bust-A-Move
## 5380 Hitman: Contracts
## 5381 Thunderstrike: Operation Phoenix
## 5382 Alien's Return
## 5383 Frostbite
## 5384 LEGO Marvel's Avengers
## 5385 Kameo: Elements of Power
## 5386 Power Rangers Samurai
## 5387 WWE Day of Reckoning 2
## 5388 Dynasty Warriors 6 Empires
## 5389 The Urbz: Sims in the City
## 5390 Fantastic Voyage
## 5391 The Adventures of Tintin: The Game
## 5392 Bee Movie Game
## 5393 Silent Hill HD Collection
## 5394 Night Warriors: Darkstalkers' Revenge
## 5395 Off Road Challenge
## 5396 Bank Heist
## 5397 Harry Potter and the Half-Blood Prince
## 5398 Tom Clancy's Ghost Recon: Shadow Wars
## 5399 Backstreet Billiards
## 5400 MX vs. ATV Untamed
## 5401 Carnival
## 5402 Football Manager Handheld 2008
## 5403 Leisure Suit Larry: Magna Cum Laude
## 5404 Harry Potter and the Deathly Hallows - Part 2
## 5405 MVP 06 NCAA Baseball
## 5406 Momotarou Dentetsu DS: Tokyo & Japan
## 5407 Point Blank
## 5408 Bookworm
## 5409 Smart Girl's Party Game
## 5410 Rayman Legends
## 5411 Puzzle Quest: Challenge of the Warlords
## 5412 Star Ocean: Second Evolution
## 5413 My Baby Boy
## 5414 Tiny Tank
## 5415 Jonah Lomu Rugby Challenge
## 5416 Spy Hunter
## 5417 Angry Birds Star Wars
## 5418 Imagine: Movie Star
## 5419 NHL 09
## 5420 Zoo Tycoon (2013)
## 5421 Herbie: Fully Loaded
## 5422 The Sims 3: Town Life Stuff
## 5423 Teenage Mutant Ninja Turtles
## 5424 Pony Friends 2
## 5425 Disney Sing It: Pop Hits
## 5426 Buzz! The Ultimate Music Quiz
## 5427 Persona 5
## 5428 The Eye of Judgment
## 5429 Pirates of the Caribbean: At World's End
## 5430 Modnation Racers: Road Trip
## 5431 Dynasty Warriors: Gundam 2
## 5432 Power Rangers Samurai
## 5433 Fade to Black
## 5434 MXRider
## 5435 Avatar: The Last Airbender
## 5436 Battlefield: Hardline
## 5437 Delta Force: Black Hawk Down
## 5438 Night at the Museum: Battle of the Smithsonian
## 5439 World Championship Poker 2: Featuring Howard Lederer
## 5440 Sengoku Musou 3 Z
## 5441 Operation Flashpoint: Red River
## 5442 Ninja Blade
## 5443 Tom Clancy's Ghost Recon Advanced Warfighter
## 5444 Transformers: Revenge of the Fallen (DS Versions)
## 5445 Fracture
## 5446 Tokyo Highway Battle
## 5447 Pandora's Tower
## 5448 Binary Domain
## 5449 The King of Fighters XIII
## 5450 Beyond Good & Evil
## 5451 Banjo-Kazooie: Grunty's Revenge
## 5452 Bomberman World
## 5453 The X-Factor
## 5454 Digimon World: Dawn / Dusk
## 5455 Street Fighter Alpha 3 MAX
## 5456 Untold Legends: The Warriors Code
## 5457 Virtua Tennis 2009
## 5458 Deathtrap Dungeon
## 5459 Tales of the World: Radiant Mythology 2
## 5460 Wipeout 2
## 5461 Iron Man 2
## 5462 Ape Escape Academy
## 5463 The Darkness II
## 5464 SingStar Take That
## 5465 Marvel: Ultimate Alliance 2
## 5466 Ultimate Marvel vs. Capcom 3
## 5467 WWE Wrestlemania XIX
## 5468 Planet Puzzle League
## 5469 The Sims 2
## 5470 Hulk
## 5471 Naruto: Rise of a Ninja
## 5472 Chicken Blaster
## 5473 Family Party: 90 Great Games Party Pack
## 5474 Klonoa 2: Lunatea's Veil
## 5475 Deus Ex: Invisible War
## 5476 Resonance of Fate
## 5477 Hell's Kitchen: The Game
## 5478 Disney's Treasure Planet
## 5479 NASCAR Thunder 2002
## 5480 Jeanne d'Arc
## 5481 NCAA Basketball 10
## 5482 BeatMania Append GottaMix
## 5483 Dead or Alive 5
## 5484 Tak 2: The Staff of Dreams
## 5485 Rugby World Cup 2011
## 5486 Medal of Honor: Warfighter
## 5487 Kelly Slater's Pro Surfer
## 5488 Shrek SuperSlam
## 5489 Sonic Boom: Rise of Lyric
## 5490 Legends of Wrestling II
## 5491 World Stadium 3
## 5492 Little Deviants
## 5493 Silent Hill: Downpour
## 5494 Extra Bases
## 5495 Super Power League 2
## 5496 Night at the Museum: Battle of the Smithsonian
## 5497 Capcom Classics Collection Reloaded
## 5498 Madden NFL 09
## 5499 MLB 09: The Show
## 5500 Deus Ex: Mankind Divided
## 5501 Cool Boarders 2001
## 5502 Classic NES Series: Castlevania
## 5503 Dragon Ball Z: Battle of Z
## 5504 Scooby-Doo! First Frights
## 5505 Fight Night Round 3
## 5506 GT Advance Championship Racing
## 5507 Way of the Samurai 2
## 5508 FIFA Street 3
## 5510 BattleTanx
## 5511 Hatsune Miku: Project Diva Extend
## 5512 Battlestations: Pacific
## 5513 Pitfall 3D: Beyond the Jungle
## 5514 Disgaea 2: Cursed Memories
## 5515 Cabela's Dangerous Hunts 2011
## 5516 DECA Sports Freedom
## 5517 Clock Tower 3
## 5518 Battle Dodge Ball
## 5519 Goosebumps HorrorLand
## 5520 Phineas and Ferb: Across the 2nd Dimension
## 5521 Call Of Duty 2: Big Red One
## 5522 Elebits
## 5523 Warhammer 40,000: Squad Command
## 5524 F1 2013
## 5525 Disgaea: Hour of Darkness
## 5526 NeoGeo Battle Coliseum
## 5527 SSX Blur
## 5528 DiRT 2
## 5529 Vin Diesel: Wheelman
## 5530 SpongeBob SquarePants: Creature from the Krusty Krab
## 5531 My Baby: First Steps
## 5532 MLB 08: The Show
## 5533 The Black Eyed Peas Experience
## 5534 Parodius
## 5535 Spy Kids 3-D: Game Over
## 5536 Sakura Wars 3: Paris wa Moeteiru ka
## 5537 1001 Touch Games
## 5538 NCAA GameBreaker 2001
## 5539 Power Rangers: Ninja Storm
## 5540 Angry Birds Star Wars
## 5541 Naruto: Gekito Ninja Taisen! 4
## 5542 Kidou Senshi Gundam F91: Formula Senki 0122
## 5543 Despicable Me: The Game
## 5544 Golden Axe: Beast Rider
## 5545 MySims SkyHeroes
## 5546 MVP Baseball 2005
## 5547 Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Kounin: KanKen DS 2 + Jouyou Kanji Jiten
## 5548 Carnival Games: Monkey See, Monkey Do!
## 5549 Eternal Sonata
## 5550 DX Game of Life 2
## 5551 EA Playground
## 5552 NBA Live 96
## 5553 Clash of the Titans
## 5554 Folklore
## 5555 Dragon Ball Z: Extreme Butoden
## 5556 Samurai Warriors 2: Xtreme Legends (JP sales)
## 5557 Sniper Elite 3
## 5558 Teen Titans
## 5559 Dead Rising 2: Off the Record
## 5560 Frogger II: Threeedeep!
## 5561 Etrian Odyssey III: The Drowned City
## 5562 LEGO The Lord of the Rings
## 5563 NBA Live 06
## 5564 Karaoke Revolution Presents American Idol Encore 2
## 5565 Fireball
## 5566 Batman: Arkham Origins
## 5567 Discovery Kids: Puppy Playtime
## 5568 Dr. Mario / Puzzle League
## 5569 Bleach: Shattered Blade
## 5570 Shin Nippon Pro Wrestling: Toukon Retsuden
## 5571 Major League Baseball 2K6
## 5572 Pinball Hall of Fame: The Gottlieb Collection
## 5573 God of War Collection
## 5574 Dead Space 2
## 5575 Def Jam Rapstar
## 5576 Overlord II
## 5577 NBA 2K10
## 5578 J Stars Victory Vs.
## 5579 The Witcher: Enhanced Edition
## 5580 Teenage Mutant Ninja Turtles 2: Battle Nexus
## 5581 Nicktoons: Movin'
## 5582 One Piece: Romance Dawn - Bouken no Yoake
## 5583 Batman: Arkham Origins
## 5584 SWAT: Global Strike Team
## 5585 Championship Bass
## 5586 Resident Evil: Revelations 2
## 5587 Test Drive Unlimited
## 5588 Golden Axe: Beast Rider
## 5589 Madden NFL 13
## 5590 Bratz: Girlz Really Rock
## 5591 NCAA Basketball 10
## 5592 Dead or Alive 5
## 5593 Shin Megami Tensei: Devil Survivor 2
## 5594 NHL Breakaway 98
## 5595 Momotarou Dentetsu 20-Shuunen
## 5596 LEGO Marvel's Avengers
## 5597 Tekken 6
## 5598 Kinetica
## 5599 Beautiful Katamari
## 5600 Bust-A-Move '99
## 5601 NBA Street V3
## 5602 Overlord II
## 5603 Dragon Quest Monsters 1·2
## 5604 Army of Two: The 40th Day
## 5605 Ben 10 Ultimate Alien: Cosmic Destruction
## 5606 Bigfoot: Collision Course
## 5607 Batman: Arkham Asylum
## 5608 Crash of the Titans
## 5609 The Legend of Spyro: Dawn of the Dragon
## 5610 Prey
## 5611 Birthday Party Bash
## 5612 OverBlood
## 5613 ESPN X-Games Pro Boarder
## 5614 Murdered: Soul Suspect
## 5615 Tony Hawk's American Wasteland
## 5616 Harvest Moon: Back to Nature
## 5617 Sniper Elite 3
## 5618 Naruto: Ultimate Ninja (JP sales)
## 5620 The Settlers 7: Paths to a Kingdom
## 5621 Go, Diego, Go!: Great Dinosaur Rescue
## 5622 TrackMania Turbo
## 5623 The Biggest Loser
## 5624 Minute to Win It
## 5625 Darkwatch
## 5627 Dance Dance Revolution Universe
## 5628 SimAnimals
## 5629 Prince of Persia: The Sands of Time
## 5630 Sky Odyssey
## 5631 Nagano Winter Olympics 98
## 5632 Rayman 2: The Great Escape
## 5633 Kirby's Block Ball
## 5634 DiRT Rally
## 5635 Fortress
## 5636 FIFA 2001 Major League Soccer
## 5637 Peppa Pig: Theme Park Fun
## 5638 Rally Cross
## 5639 My Horse & Me
## 5640 Frogger's Adventures: The Rescue
## 5641 Extreme Pinball
## 5642 Shaun White Snowboarding
## 5643 Karaoke Revolution Volume 3
## 5644 Gold's Gym: Cardio Workout (Others sales)
## 5645 Seaman: Kindan no Pet - Gaze Hakushi no Jikken Shima
## 5646 Street Fighter Alpha 2
## 5647 No.1 Muscle Ranking - Kinniku Banzuke Vol. 1: Oregasaikyouno Otokoda!
## 5648 Cartoon Network Collection: Game Boy Advance Video Platinum Edition
## 5649 Ultimate Fighting Championship: Throwdown
## 5650 Marvel Nemesis: Rise of the Imperfects
## 5651 SpongeBob SquarePants: Double Pack
## 5652 Tetris 2 + Bombliss
## 5653 Harry Potter and the Half-Blood Prince
## 5654 Disney's Extreme Skate Adventure
## 5655 Rock Band Country Track Pack
## 5656 7 Wonders II
## 5657 Ed, Edd n Eddy: Jawbreakers!
## 5659 Frankenstein's Monster
## 5660 Riven: The Sequel to Myst
## 5661 Derby Stallion DS
## 5662 Mirror's Edge Catalyst
## 5663 Manhunt 2
## 5664 NBA 2K3
## 5665 Monster Lab
## 5666 Dragon Quest Monsters: Battle Road Victory
## 5667 Shin Momotarou Densetsu
## 5668 From TV Animation One Piece: Grand Battle! 3
## 5669 Sega Smash Pack
## 5671 The Conveni: Ano Machi wo Dokusen Seyo
## 5672 Shin Super Robot Taisen Special Disk
## 5673 Live A Live
## 5674 NFL Fever 2004
## 5675 Madden NFL 2002
## 5676 UEFA Euro 2008 Austria-Switzerland
## 5677 Clive Barker's Jericho
## 5678 Littlest Pet Shop: City Friends
## 5679 Kingdom Under Fire: The Crusaders
## 5680 4x4 Evolution
## 5681 Cabela's Dangerous Hunts 2011
## 5682 Momotarou Dentetsu Happy
## 5683 Power Rangers: Time Force
## 5684 Romance of the Three Kingdoms VII
## 5685 Shrek the Third
## 5686 Catherine
## 5687 BlazBlue: Continuum Shift
## 5688 Monsters, Inc.
## 5689 DJ Hero
## 5690 WipEout Pulse
## 5691 Quiz Magic Academy DS
## 5692 Just Dance 2016
## 5693 Resident Evil Archives: Resident Evil
## 5694 Dynasty Warriors 4 Empires
## 5695 Shenmue II
## 5696 Heart of Darkness
## 5697 LEGO Marvel's Avengers
## 5698 Virtua Striker 2
## 5699 Fable III
## 5700 Dragon Ball: XenoVerse
## 5701 Might & Magic Heroes VI
## 5702 Fuel
## 5703 ExerBeat
## 5704 WarCraft II: The Dark Saga
## 5705 MonHun Nikki: Poka Poka Ailu Mura G
## 5706 Crash Nitro Kart
## 5707 Sesame Street: Cookie's Counting Carnival
## 5708 NBA ShootOut
## 5709 Fishing Master
## 5710 Phineas and Ferb Ride Again
## 5711 Jikkyou Powerful Pro Yakyuu 14
## 5712 Contra 4
## 5713 Madden NFL 2004
## 5714 Sniper Elite 3
## 5715 Ganbare Goemon: KiraKira Douchuu - Boku ga Dancer ni Natta Riyuu
## 5716 Bust-A-Move Universe
## 5717 Mario Golf
## 5718 Jikkyou Powerful Pro Yakyuu Portable 3
## 5719 Sesame Street: Elmo's Letter Adventure
## 5720 The Incredible Hulk
## 5721 Namco Museum: Virtual Arcade
## 5722 NBA Inside Drive 2003
## 5723 FIFA Street
## 5724 Barbie as The Island Princess
## 5725 Star Wars Episode III: Revenge of the Sith
## 5726 Hatsune Miku: Project Mirai DX
## 5727 Dragon Ball Heroes: Ultimate Mission 2
## 5728 Shrek: Forever After
## 5729 MLB 07: The Show
## 5730 Homefront: The Revolution
## 5731 Jampack: Summer 2003 (RP-M)
## 5732 Alone in the Dark: One-Eyed Jack's Revenge
## 5733 Yu-Gi-Oh! The Dawn of Destiny
## 5734 The Matrix: Path of Neo
## 5735 Mortal Kombat: Shaolin Monks
## 5736 Happy Feet
## 5737 Einhänder
## 5738 Tiny Toon Adventures: The Great Beanstalk
## 5739 Foto Frenzy: Spot The Diffrence
## 5740 Metro: Last Light
## 5741 Dark Void
## 5742 Pro Evolution Soccer 2013
## 5743 Armored Core: Silent Line
## 5744 SD Gundam G Generation Wars
## 5745 Dr. Seuss: How the Grinch Stole Christmas
## 5746 Panzer Dragoon II Zwei
## 5747 KISS Pinball
## 5748 Brothers In Arms: Earned in Blood
## 5749 2 Games in 1: Disney's Brother Bear / The Lion King 1 1/2
## 5750 Super Robot Taisen Complete Box
## 5751 Mega Man Maverick Hunter X
## 5752 Cabela's Outdoor Adventures (2009)
## 5753 Lord of Arcana
## 5754 Jikkyou Powerful Pro Yakyuu 4
## 5755 Goemon's Great Adventure
## 5756 Hot Wheels Turbo Racing
## 5757 Vigilante 8
## 5758 Bass Hunter 64
## 5759 Doubutsu no Mori
## 5760 Football Manager 2016
## 5761 Naruto: Ninja Destiny (US sales)
## 5762 TRON: Evolution
## 5763 Disney Infinity 3.0
## 5764 Taiko Drum Master: Don and Katsu's Space-Time Great Adventure
## 5765 Calvin Tucker's Redneck Jamboree
## 5766 MySims SkyHeroes
## 5767 J-League Winning Eleven 2007: Club Championship
## 5768 Shrek's Carnival Craze Party Games
## 5769 Harvest Moon: Magical Melody
## 5771 Yu-Gi-Oh! 5D's World Championship 2010 Reverse of Arcadia
## 5772 Mega Man Battle Network 2
## 5773 Little King's Story
## 5774 Mountain King
## 5775 Jampack Volume 12
## 5776 Madagascar
## 5777 Tiger Woods PGA Tour 06
## 5778 Shaun White Snowboarding
## 5779 Shin Megami Tensei: Devil Summoner - Soul Hackers
## 5780 Major League Baseball 2K8
## 5781 Rapala Pro Bass Fishing 2010
## 5782 Lord of the Rings: Battle for Middle-Earth
## 5783 Demolition Racer
## 5784 Midway Arcade Treasures 2
## 5785 Final Fantasy IV
## 5786 Math Play
## 5787 Kingdoms of Amalur: Reckoning
## 5788 NASCAR Thunder 2003
## 5789 SD Gundam G Generation: Overworld
## 5790 Sorcery
## 5791 TouchMaster: Connect
## 5792 NHL FaceOff 2000
## 5793 Star Wars Racer Revenge
## 5794 NBA Live 08
## 5795 The King of Fighters XIII
## 5796 NCAA Final Four 2002
## 5797 South Park: Chef's Luv Shack
## 5798 Music Maker
## 5800 Ganbare Goemon 2: Kiteretsu Shougun Magginesu
## 5801 Astroblast
## 5802 Blade II
## 5803 40 Winks
## 5804 The Legend of Heroes: Trails of Cold Steel
## 5805 Fate/Extra
## 5806 Shaun White Snowboarding: World Stage
## 5807 My Virtual Tutor: Reading Adventure Pre-K to Kindergarten
## 5808 Skylanders SWAP Force
## 5809 A Collection of Classic Games from the Intellivision
## 5810 Monsters vs. Aliens
## 5811 Silent Hill: Shattered Memories
## 5812 Bruce Lee: Quest of the Dragon
## 5813 Spin Jam
## 5814 KuruKuru Kururin
## 5815 Disney's The Emperor's New Groove
## 5816 Disney's Stitch: Experiment 626
## 5817 RPG Tsukuru 2
## 5818 Yuu Yuu Hakusho 2: Kakutou no Sho
## 5819 Orphen: Scion of Sorcery
## 5820 LEGO Legends of Chima: Laval's Journey
## 5821 Imagine: Family Doctor
## 5822 Magna Carta 2
## 5823 Ultimate Spider-Man
## 5824 Nicktoons: Battle for Volcano Island
## 5825 Midtown Madness 3
## 5826 Shrek Swamp Kart Speedway
## 5827 One Piece: Unlimited World Red
## 5828 Alien: Isolation
## 5829 Gameboy Gallery
## 5830 Virtua Cop 2
## 5831 Ehrgeiz
## 5832 Touhoku Daigaku Mirai Kagaku Gijutsu Kyoudou Kenkyuu Center Kawashima Ryuuta Kyouju Kanshu: Nou Ryoku Trainer Portable
## 5833 Karaoke Revolution Glee: Volume 3
## 5834 Spyro: Attack of the Rhynocs
## 5835 Army Men World War: Land, Sea, Air
## 5836 Dai-2-Ji Super Robot Taisen OG
## 5837 Stranglehold
## 5838 Trauma Center: New Blood
## 5840 Lumines ll
## 5841 NES Remix
## 5842 1701 A.D.
## 5843 Jumping Flash!
## 5844 Karaoke Revolution Party
## 5845 Batman: The Brave and the Bold the Videogame
## 5846 Burnout
## 5847 Lizzie McGuire 3: Homecoming Havoc
## 5848 Chaos Legion
## 5849 PowerUp Heroes
## 5850 NASCAR 2011: The Game
## 5851 Puyo Puyo 7
## 5852 Shrek: Forever After
## 5853 Charlie and the Chocolate Factory
## 5854 Neopets: The Darkest Faerie
## 5855 Blazing Heroes
## 5856 Rhythm Tengoku
## 5857 Super Robot Taisen W
## 5858 Cart World Series
## 5859 Invizimals: Shadow Zone
## 5860 24: The Game
## 5861 Spider-Man 3
## 5863 Famista '91
## 5864 Squinkies
## 5865 Zoo Tycoon 2 DS
## 5866 Looney Tunes: Duck Amuck
## 5867 Super Robot Taisen OG: Original Generations Gaiden
## 5868 Drakengard 3
## 5869 Decathlete
## 5870 The Sims 2
## 5872 Tom Clancy's Splinter Cell 3D
## 5873 DmC: Devil May Cry
## 5874 Jonas
## 5875 Dynasty Warriors 6
## 5876 Wacky Races: Crash & Dash
## 5877 Dynasty Warriors 8: Xtreme Legends
## 5878 Toukiden Kiwami
## 5879 Sengoku Basara: Samurai Heroes
## 5880 Romance of the Three Kingdoms VIII
## 5881 Fossil Fighters (JP sales)
## 5882 Daikaijyuu Monogatari
## 5883 Tropico 5
## 5884 Hard Hitter Tennis
## 5885 Glory of Heracles
## 5886 Monster Truck Madness 64
## 5887 Quake II
## 5888 Nounai Aeshe: IQ Suppli DS
## 5889 Crazy Taxi: Catch a Ride
## 5890 MySims Party
## 5891 Harry Potter and the Order of the Phoenix
## 5892 Skylanders: SuperChargers
## 5893 Macross Digital Mission VF-X
## 5894 One Piece Unlimited Cruise SP
## 5895 Rayman 2: Revolution
## 5896 Yu Yu Hakusho Ghost Files: Spirit Detective
## 5897 Super Bomberman 5
## 5898 N3: Ninety-Nine Nights
## 5899 Shin Megami Tensei: Persona 2: Innocent Sin
## 5900 Army Men: Air Attack 2
## 5901 Need for Speed: Most Wanted
## 5903 Pride FC: Fighting Championships
## 5904 Eternal Ring
## 5905 Dragon Force
## 5906 John Deere: Harvest in the Heartland
## 5907 Rabbids: Alive & Kicking
## 5908 Shin Megami Tensei: Devil Summoner - Soul Hackers
## 5909 Winning Post 2
## 5910 Star Gladiator Episode: I Final Crusade
## 5911 Spider-Man: Friend or Foe
## 5912 FIFA 15
## 5913 Dance Dance Revolution Universe 3
## 5915 We Sing Pop!
## 5916 Showdown: Legends of Wrestling
## 5917 Capcom Classics Collection Remixed
## 5918 Reel Fishing: Angler's Dream
## 5919 Call of Duty: Modern Warfare 3: Defiance
## 5920 SimCity 4
## 5921 Far East of Eden Zero
## 5922 Sword Art Online: Hollow Fragment
## 5923 Star Ocean 5: Integrity and Faithlessness
## 5924 Call of Juarez: The Cartel
## 5925 Full Spectrum Warrior
## 5926 Alvin and the Chipmunks: The Squeakquel
## 5927 Taiko no Tatsujin Wii: Minna de Party * 3-Yome!
## 5928 James Bond 007: Legends
## 5929 The Sims 2: Pets
## 5930 Dragon Quest Builders: Revive Alefgard
## 5931 The Suite Life of Zack & Cody: Circle of Spies
## 5932 Power Pro Kun Pocket 6
## 5933 Mega Man ZX
## 5934 Harvest Moon DS Cute (US sales)
## 5935 Power Pro Kun Pocket 10
## 5936 Wanted: Weapons of Fate
## 5937 Finding Nemo: The Continuing Adventures
## 5938 Spirit: Stallion of the Cimarron
## 5939 Dreamworks Madagascar Kartz
## 5940 Future Cop L.A.P.D.
## 5941 Guitar Hero: Van Halen
## 5942 Final Fantasy XI: Wings of the Goddess
## 5943 Hamster Tarou
## 5944 Shark Tale
## 5945 Fist of the North Star: Ken's Rage 2
## 5946 MLB SlugFest Loaded
## 5947 Teenage Mutant Ninja Turtles
## 5948 Trace Memory
## 5949 FIFA Street 3
## 5950 Mah Jong Quest: Expeditions
## 5951 Batman: The Brave and the Bold the Videogame
## 5952 Dragon Ball Z: Budokai Tenkaichi 2
## 5953 AMF Bowling 2004
## 5954 Thief (2014)
## 5955 Scooby-Doo! Night of 100 Frights
## 5956 Just Dance Kids 2
## 5957 RealSports Boxing
## 5958 Imagine: Makeup Artist
## 5959 Grandia II
## 5960 Syphon Filter: Dark Mirror
## 5961 Front Mission Evolved
## 5962 Tom and Jerry Tales
## 5963 Mini Ninjas
## 5964 NieR
## 5965 The BIGS 2
## 5966 X-Men Legends II: Rise of Apocalypse
## 5967 Junior Brain Trainer 2
## 5968 The Chronicles of Riddick: Assault on Dark Athena
## 5969 Need for Speed Underground
## 5970 Power Pro Kun Pocket 4
## 5971 The Godfather: Dons Edition
## 5972 Soul Sacrifice Delta
## 5973 Guardian Heroes
## 5974 Assassin's Creed IV: Black Flag
## 5975 MLB Power Pros
## 5976 Outlaw Golf
## 5977 The Amazing Spider-Man 2 (2014)
## 5978 Dynasty Warriors: Strikeforce
## 5979 Fisherman's Bait 2: Big Ol' Bass
## 5980 Lupin the 3rd: Treasure of the Sorcerer King
## 5981 Up
## 5982 Kurohyou: Ryu ga Gotoku Shinshou
## 5983 Prince of Persia: Rival Swords
## 5984 One Piece Unlimited Cruise 2: Awakening of a Hero
## 5985 Ben 10 Alien Force: Vilgax Attacks
## 5986 Majin and the Forsaken Kingdom
## 5987 NBA Street V3
## 5988 WinBack: Covert Operations
## 5989 Punch-Out!!
## 5990 FlatOut: Head On
## 5991 Kagero: Deception II
## 5992 Jikkyou Powerful Pro Yakyuu 2000 Kaimakuban
## 5993 The Bureau: XCOM Declassified
## 5994 NBA Live 06
## 5995 Guitar Hero: Van Halen
## 5996 J-League Victory Goal '96
## 5997 Shin Megami Tensei: Strange Journey
## 5998 Jeopardy! 2nd Edition
## 5999 SD Gundam G Century
## 6000 Ratchet & Clank: Size Matters
## 6001 Ben 10 Ultimate Alien: Cosmic Destruction
## 6002 Atelier Iris 3: Grand Phantasm (US Sales)
## 6003 Itadaki Street 2: Neon Sign wa Bara Iro ni
## 6004 Def Jam Rapstar
## 6005 Need for Speed: The Run
## 6006 From TV Animation One Piece: Treasure Battle!
## 6007 Starhawk
## 6008 Dolphin
## 6009 Imagine: Fashion Designer World Tour
## 6010 Area 51
## 6011 The Smurfs: Dance Party
## 6012 Disney Channel: All Star Party
## 6013 Ace Combat: Joint Assault
## 6014 Hamster Club 4: Shigessa Daidassou
## 6015 Medieval Moves: Deadmund's Quest
## 6016 Angry Birds Star Wars
## 6017 Mega Man X8
## 6018 CSI: Deadly Intent
## 6019 Ford Mustang: The Legend Lives
## 6020 Ys: Memories of Celceta
## 6021 FIFA Soccer 13
## 6022 Fast Food
## 6023 Jikkyou Powerful Pro Yakyuu 8
## 6024 Viz
## 6025 Top Gear Overdrive
## 6026 Xena: Warrior Princess - The Talisman of Fate
## 6027 Jeremy McGrath Supercross 2000
## 6028 The New Tetris
## 6029 Ken Griffey Jr.'s Slugfest
## 6030 Supercross 2000
## 6031 War Gods
## 6032 Bladestorm: The Hundred Years' War
## 6033 World of Tanks
## 6034 Jewel Quest Mysteries: Curse of the Emerald Tear
## 6035 Duel Masters: Sempai Legends
## 6036 Marvel Super Hero Squad
## 6037 Turning Point: Fall of Liberty
## 6038 Heroes of the Pacific
## 6039 Dead Rising: Chop Till You Drop
## 6040 The Lord of the Rings: The Third Age
## 6041 Disney Infinity
## 6042 Fable: The Journey
## 6044 Sonic Boom: Shattered Crystal
## 6045 Just Dance Wii 2
## 6046 Madden NFL 08
## 6047 DX Game of Life
## 6048 Pirates of the Caribbean
## 6049 Operation Flashpoint: Red River
## 6050 One Piece: Pirate Warriors 3
## 6051 The Punisher
## 6052 MLB Pennant Race
## 6053 Transformers: Dark of the Moon
## 6054 SD Gundam Gaiden: Knight Gundam Monogatari: Ooinaru Isan
## 6055 GRID 2
## 6056 WWII Aces
## 6057 Puzzle Quest: Challenge of the Warlords
## 6058 Shrek Super Party
## 6059 Sakura Wars 4: Koi Seyo,Otome
## 6060 Sakura Wars: So Long, My Love
## 6061 Dynasty Tactics
## 6062 The Urbz: Sims In the City (US weekly sales)
## 6063 Lightning Returns: Final Fantasy XIII
## 6064 Feel the Magic XY/XX
## 6065 Trivial Pursuit
## 6066 Neopets Puzzle Adventure
## 6067 Sonic & All-Stars Racing Transformed
## 6068 Shrek the Third
## 6069 Snowboarding
## 6070 Purr Pals
## 6071 Dragon Ball Heroes: Ultimate Mission
## 6072 Borderlands: The Pre-Sequel
## 6073 Surf's Up
## 6074 BlazBlue: Chrono Phantasma
## 6075 Looney Tunes Racing
## 6076 Final Fantasy X-2: International + Last Mission
## 6077 Namco Museum Vol.2
## 6078 Rayman 3: Hoodlum Havoc
## 6079 Penguin no Mondai: Saikyou Penguin Densetsu! A Penguin's Troubles
## 6080 Psi-Ops: The Mindgate Conspiracy
## 6081 I Spy: Spooky Mansion
## 6082 Tomba! 2: The Evil Swine Return
## 6083 SAW
## 6084 Wappy Dog
## 6085 Dragon Quest: Shounen Yangus to Fushigi no Dungeon
## 6086 BeatMania Append 4thMix: The beat goes on
## 6087 NASCAR 08
## 6088 World of Warcraft: Legion
## 6089 Romance of the Three Kingdoms III: Dragon of Destiny
## 6090 Power Pro Kun Pocket 11
## 6091 El Shaddai: Ascension of the Metatron
## 6092 Family Guy: Back to the Multiverse
## 6093 Spyro: A Hero's Tail
## 6094 Warriors Orochi 2
## 6095 Ratatouille: Food Frenzy
## 6096 Links 2004
## 6097 PGA Tour 97
## 6098 Bratz: Super Babyz
## 6099 Battle & Get! Pokemon Typing DS
## 6100 Kung Zhu
## 6101 Earthworm Jim
## 6102 Tales of Phantasia
## 6103 The Golden Compass
## 6104 F1 Race Stars
## 6105 All Star Cheer Squad
## 6106 Rugby World Cup 2011
## 6107 Ice Age: Dawn of the Dinosaurs
## 6108 Monster 4x4: Masters of Metal
## 6109 SingStar Country
## 6110 DeathSmiles
## 6111 VMX Racing
## 6112 Hot Shots Golf: World Invitational
## 6113 Disney's Extreme Skate Adventure
## 6114 Dragon Ball GT: Transformation
## 6115 Bratz Ponyz
## 6116 Super Fire ProWrestling X
## 6117 Baby Pals
## 6118 International Superstar Soccer
## 6119 Metal Gear Solid V: Ground Zeroes
## 6120 Tigger's Honey Hunt
## 6121 The Warriors
## 6122 Monopoly Streets
## 6123 Shadow Hearts
## 6124 NHL 2K11
## 6125 One Piece: Burning Blood
## 6127 Street Hoops
## 6128 Yu-Gi-Oh! Double Pack
## 6129 X-Men: Reign of Apocalypse
## 6130 R: Racing Evolution
## 6131 Tony Hawk: Shred
## 6132 Netsu Chu! Pro Yakyuu 2003
## 6133 ATV Quad Power Racing 2
## 6134 Digimon Adventure: Anode Tamer
## 6135 Fantastic 4: Flame On
## 6136 Siren: Blood Curse
## 6137 Pro Evolution Soccer 2017
## 6138 Chromehounds
## 6139 Marvel Nemesis: Rise of the Imperfects
## 6140 The King of Fighters '95
## 6141 Pirates of the Caribbean: Dead Man's Chest
## 6142 Assassin's Creed II: Discovery
## 6143 F/A-18F Super Hornet
## 6144 Avatar: The Last Airbender
## 6145 Final Fantasy VI Advance
## 6146 Polaris
## 6147 Viewtiful Joe
## 6148 Triple Play 2000
## 6149 Beyblade: Metal Masters
## 6150 Need for Speed: Most Wanted
## 6151 Arcade Hits: Frisky Tom
## 6152 Dead to Rights: Retribution
## 6153 Harry Potter and the Sorcerer's Stone
## 6155 Kung Fu Chaos
## 6156 Mega Man: Dr. Wily's Revenge
## 6157 Yu-Gi-Oh! World Championship 2008
## 6158 Naruto Shippuden: Ultimate Ninja Storm 4
## 6159 Godzilla: Domination!
## 6160 Sly Cooper: Thieves in Time
## 6161 Tales of the World: Radiant Mythology 3
## 6162 Famista '92
## 6163 Jissen Pachi-Slot Hisshouhou! Moujuu-Oh S
## 6164 Jackass the Game
## 6165 Mega Man II
## 6166 Lord of Darkness
## 6167 Hannah Montana: Spotlight World Tour
## 6168 Rocket Power: Beach Bandits
## 6169 Surf's Up
## 6170 Carol Vorderman's Sudoku
## 6171 MX SuperFly featuring Ricky Carmichael
## 6172 Remington Super Slam Hunting: Africa
## 6173 Army of Two: The Devil's Cartel
## 6174 Syphon Filter: Dark Mirror
## 6175 Conflict: Desert Storm II - Back to Bagdhad
## 6176 Guitar Hero Live
## 6177 Mission: Impossible - Operation Surma
## 6178 Sesame Street: Elmo's A-to-Zoo Adventure
## 6179 MLB 07: The Show
## 6180 Pitfall: The Mayan Adventure
## 6181 Driver: Parallel Lines
## 6182 Sing Party
## 6183 Shrek: Ogres & Dronkeys
## 6184 Monopoly
## 6185 Hot Wheels: Track Attack
## 6186 Backyard Wrestling 2: There Goes the Neighborhood
## 6187 Virtua Fighter 5 Online
## 6188 Disney's Treasure Planet
## 6189 Dead or Alive
## 6190 Wild ARMs 5
## 6191 Bionic Commando
## 6192 NFL Blitz 20-02
## 6193 Mega Man 7
## 6194 NCAA March Madness 2005
## 6195 Shadows of the Damned
## 6197 NBA In The Zone
## 6198 Corvette
## 6199 F1 ROC: Race of Champions
## 6200 Just Dance 2015
## 6201 The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 6202 Silent Hill 2: Restless Dreams
## 6203 Cabela's Big Game Hunter 2012
## 6204 Dragon Quest Heroes II: Twin Kings and the Prophecy's End
## 6205 Moshi Monsters: Moshlings Theme Park
## 6206 UEFA Euro 2016
## 6207 Soul Nomad & the World Eaters
## 6208 RollerCoaster Tycoon 3
## 6209 Bass Strike
## 6210 NHL Hitz 20-03
## 6211 Danganronpa Another Episode: Ultra Despair Girls
## 6213 Over the Hedge
## 6214 Real Pool
## 6215 iCarly 2: iJoin The Click!
## 6216 The Warriors
## 6217 Mister Mosquito
## 6218 Kakyuusei
## 6219 Patapon 3
## 6220 Sesame Street: Cookie's Counting Carnival
## 6221 Civilization II
## 6222 Guitar Hero: Van Halen
## 6223 Dynasty Warriors: Gundam
## 6224 Madagascar
## 6225 Transformers: Cybertron Adventures
## 6226 Indiana Jones and the Staff of Kings
## 6227 F-1 Grand Prix
## 6228 Mass Effect 3
## 6229 Pinkalicious
## 6230 SimCity 2000
## 6231 Deer Hunter
## 6232 Pokemon Box: Ruby & Sapphire
## 6233 Puyo Puyo! 15th Anniversary
## 6234 Yu-Gi-Oh! Monster Capsule Breed & Battle
## 6235 FIFA Soccer 07
## 6236 Mass Effect Trilogy
## 6237 Dave Mirra Freestyle BMX 2
## 6238 AC/DC LIVE: Rock Band Track Pack
## 6239 My Japanese Coach
## 6240 Puppeteer
## 6241 Warpath: Jurassic Park
## 6242 Tak and the Guardians of Gross
## 6243 True Crime: New York City
## 6244 Summer Heat Beach Volleyball
## 6245 NCAA Basketball 09
## 6246 One Piece Unlimited Cruise 1: The Treasure Beneath the Waves
## 6247 Marvel Super Hero Squad: The Infinity Gauntlet
## 6248 Dead Rising 2: Off the Record
## 6249 Power Pro Kun Pocket 3
## 6250 Myst III: Exile
## 6251 Castlevania: Aria of Sorrow
## 6252 NBA 2K12
## 6253 R.U.S.E.
## 6254 Mobile Suit Gundam Side Story I: Senritsu no Blue
## 6255 Armored Core: Project Phantasma
## 6256 Donkey Kong GB: Dinky Kong & Dixie Kong
## 6257 Kobitodzukan: Kobito Kansatsu Set
## 6258 ExciteBots: Trick Racing
## 6259 Pro Evolution Soccer 2013
## 6260 Deadpool
## 6261 Nichibutsu Arcade Classics
## 6262 Kenka Bancho: Badass Rumble
## 6263 Cabela's Trophy Bucks
## 6264 Moero! Nekketsu Rhythm Damashii: Osu! Tatakae! Ouendan! 2
## 6265 Q-Ball: Billiards Master
## 6266 Mr. Do!
## 6267 How to Train Your Dragon 2
## 6268 Boogie
## 6269 Tao Feng: Fist of the Lotus
## 6270 Rapala Pro Bass Fishing 2010
## 6271 Shin Nippon Pro Wrestling: Toukon Retsuden 2
## 6272 Dragon Ball Z: Budokai 2
## 6274 Motocross Maniacs Advance
## 6275 Resident Evil 2: Dual Shock Edition
## 6276 Dynasty Warriors
## 6277 M&M's Blast!
## 6278 Zumba Fitness: World Party
## 6279 Need for Speed: Most Wanted
## 6280 Final Fantasy X International
## 6281 Tiny Toon Adventures: Plucky's Big Adventure
## 6282 NHL Hitz 20-02
## 6283 Iron Man 2
## 6285 Littlest Pet Shop: Beach Friends
## 6286 Trivial Pursuit
## 6287 Suikoden Tierkreis
## 6288 Evil Dead: Hail to the King
## 6289 Dragon Ball GT: Final Bout
## 6290 Burstrick: Wake Boarding!!
## 6291 Dave Mirra Freestyle BMX: Maximum Remix
## 6292 Divinity: Original Sin
## 6293 R.U.S.E.
## 6294 Hatsune Miku: Project Diva f
## 6295 Resident Evil: Deadly Silence
## 6296 Pac-Pix
## 6297 Beamrider
## 6298 EyePet
## 6299 The Evil Within
## 6300 Athens 2004
## 6301 Gunship
## 6302 Jikkyou Powerful Pro Yakyuu Portable 4
## 6303 SD Gundam G Generation Portable
## 6304 Sydney 2000
## 6305 Pro Race Driver
## 6306 Baten Kaitos: Eternal Wings and the Lost Ocean
## 6307 Bishoujo Senshi Sailormoon R
## 6308 The Club
## 6309 Slam Dunk: Yonkyo Taiketsu!!
## 6310 Rhythm Thief & the Emperor's Treasure
## 6311 Rocky: Legends
## 6312 NickToons: Racing
## 6313 MotionSports: Adrenaline
## 6314 Tiger Woods PGA Tour 07
## 6316 NHL 07
## 6318 Bridge
## 6319 G-Force
## 6321 The Adventures of Tintin: The Game
## 6322 RalliSport Challenge 2
## 6323 Fushigi no Dungeon: Fuurai no Shiren GB: Tsukikagemura no Kaibutsu
## 6324 Wave Rally
## 6325 Over the Hedge
## 6326 Disgaea 5: Alliance of Vengeance
## 6327 Disney's Chicken Little
## 6328 Battle of Giants: Mutant Insects
## 6329 Ty the Tasmanian Tiger
## 6330 Sengoku Basara 4
## 6331 Yu-Gi-Oh! The Sacred Cards (JP weekly sales)
## 6332 WWE Road to WrestleMania X8
## 6333 Medarot 3: Kabuto / Kuwagata Version
## 6334 Fullmetal Alchemist 2: Curse of the Crimson Elixir
## 6335 Sherlock Holmes: Crimes & Punishments
## 6336 NASCAR 06: Total Team Control
## 6337 Bratz: The Movie
## 6338 BloodRayne 2
## 6339 Spider-Man: Web of Shadows
## 6340 NHL 2002
## 6341 Reader Rabbit Kindergarten
## 6342 Tropico 4
## 6343 NBA In The Zone '98
## 6344 Jikkyou Powerful Pro Yakyuu 5
## 6345 NBA Jam 99
## 6346 Shadow Man
## 6347 Command & Conquer
## 6348 Call of Juarez: The Cartel
## 6349 Shadow of Rome
## 6350 Tohoku Daigaku Karei Igaku Kenkyuusho - Kawashima Ryuuta Kyouju Kanshuu - Mono Sugoku Nou o Kitaeru 5-Funkan no Oni Training
## 6351 Tales of Eternia
## 6352 Harry Potter and the Order of the Phoenix
## 6353 Ben 10 Triple Pack
## 6354 Need for Speed Rivals
## 6355 Stuntman: Ignition
## 6356 Fantastic 4
## 6357 Mat Hoffman's Pro BMX
## 6358 MotoGP
## 6359 The Penguins of Madagascar
## 6360 Summer Athletics: The Ultimate Challenge (US sales)
## 6361 Rock Revolution
## 6362 Etrian Odyssey II: Heroes of Lagaard
## 6363 LEGO The Hobbit
## 6364 Jikkyou Powerful Pro Yakyuu 2
## 6365 The Incredible Hulk
## 6366 Resident Evil: Revelations
## 6367 Major League Baseball 2K10
## 6368 NASCAR 2011: The Game
## 6369 Thoroughbred Breeder II
## 6370 Shin Megami Tensei: Devil Survivor
## 6371 Magical Vacation
## 6372 XGIII: Extreme G Racing
## 6373 NBA Live 2004
## 6374 Dragon Ball: XenoVerse
## 6375 NASCAR Thunder 2003
## 6376 Section 8
## 6377 Superbike 2000
## 6378 America's Test Kitchen: Let's Get Cooking
## 6379 Final Fantasy XI: Ultimate Collection
## 6380 Fire Emblem: Shin Monshou no Nazo Hikari to Kage no Eiyuu
## 6381 F1 2016 (Codemasters)
## 6382 Connect Four / Perfection / Trouble
## 6383 Wipeout 2
## 6384 Ratatouille
## 6385 The Incredible Hulk
## 6386 Dora the Explorer: Dora Saves the Crystal Kingdom
## 6387 Alundra 2: A New Legend Begins
## 6388 Reign of Fire
## 6389 Scooby-Doo! and the Spooky Swamp
## 6390 Jikkyou Powerful Pro Yakyuu '98 Ketteiban
## 6391 Ace Attorney 6
## 6392 The Sims 2: Pets
## 6393 Cake Mania 2: Jill's Next Adventure!
## 6394 Batman: Arkham Origins Blackgate
## 6395 The BIGS
## 6396 Initial D: Special Stage
## 6397 Madden NFL 08
## 6398 Jurassic Park: Operation Genesis
## 6399 Family Feud: 2010 Edition
## 6400 Final Doom
## 6401 Deadly Premonition
## 6403 Are You Smarter than a 5th Grader? Game Time
## 6404 NBA ShootOut 2001
## 6405 Knockout Kings 2002
## 6406 Wipeout 2
## 6407 Payday 2
## 6408 Ultimate NES Remix
## 6409 Megamind: The Blue Defender
## 6410 NFL Street 3
## 6411 Battle Arena Toshinden 3
## 6412 Teenage Mutant Ninja Turtles: Danger of the Ooze
## 6413 Jade Cocoon: Story of the Tamamayu
## 6414 Super Nazo Puyo: Ruruu no Ruu
## 6415 Cabela's Big Game Hunter 2010
## 6416 InuYasha: Feudal Combat
## 6417 Duel Masters
## 6418 Ninja Gaiden Sigma
## 6419 Super Collapse! 3
## 6420 Superman Returns
## 6421 The Dog Island
## 6422 My Virtual Tutor: Reading Adventure Kindergarten to First
## 6423 Dynasty Warriors Next
## 6424 Major League Baseball 2K9
## 6425 Jikkyou Powerful Pro Yakyuu 2010
## 6426 Operation Armored Liberty
## 6427 Rory McIlroy PGA Tour
## 6428 Dynasty Warriors 7: Xtreme Legends
## 6429 Summer Sports 2: Island Sports Party
## 6430 Imagine: Fashion Party
## 6431 Fish Tycoon
## 6432 Scene It? Twilight
## 6433 And1 Streetball
## 6434 Don King Boxing
## 6435 Atelier Ayesha: The Alchemist of Dusk
## 6436 Angry Birds Trilogy
## 6437 Dragon Ball Z: Tenkaichi Tag Team
## 6438 Sonic X: Game Boy Advance Video Volume 1
## 6439 ESPN NBA Basketball
## 6440 Gallop Racer 2: One and Only Road to Victory
## 6441 NBA 07
## 6442 Lowrider
## 6443 Reload: Target Down
## 6444 All-Pro Football 2K8
## 6445 Dungeons & Dragons: Eye of the Beholder
## 6446 The Crew
## 6447 Barbie: Jet, Set & Style!
## 6448 Battlestations: Midway
## 6449 Rayman DS
## 6450 Gundam Breaker
## 6451 The House of the Dead 2
## 6452 Create
## 6453 A.C.E.: Another Century's Episode R
## 6454 Littlest Pet Shop: Friends
## 6455 Rune: Viking Warlord
## 6456 Panzer Dragoon Orta
## 6457 Jikkyou Powerful Pro Yakyuu '99 Ketteiban
## 6458 Dragon Age Origins: Awakening
## 6459 King's Field II
## 6460 Danganronpa 2: Goodbye Despair
## 6461 Aikatsu! 2-nin no My Princess
## 6462 Beyblade: Metal Fusion
## 6463 NCAA Gamebreaker
## 6464 Petz: Horsez 2
## 6465 NPPL: Championship Paintball 2009
## 6466 Skylanders: SuperChargers
## 6467 Zoo Tycoon 2: Ultimate Collection
## 6468 Tomba!
## 6469 Love Plus
## 6470 Tales of Innocence
## 6471 MLB SlugFest 2006
## 6472 J Stars Victory Vs.
## 6473 Rugrats: I Gotta Go Party
## 6474 Virtua Racing
## 6475 Crash Tag Team Racing
## 6476 Prison Break: The Conspiracy
## 6477 Bolt
## 6478 DS Bungaku Zenshuu
## 6479 We Cheer 2
## 6480 Nancy Drew: The Mystery of the Clue Bender Society
## 6481 Inazuma Eleven GO 3: Galaxy
## 6482 Ford Racing 3
## 6483 Michael Jackson: The Experience
## 6484 Phantasy Star Universe: Ambition of the Illuminus
## 6485 Project Runway
## 6486 Jikkyou Powerful Pro Yakyuu 2013
## 6487 The Adventures of Jimmy Neutron Boy Genius vs. Jimmy Negatron
## 6488 Sengoku Basara 2
## 6489 Naruto: Ultimate Ninja Heroes
## 6490 Inazuma Eleven Strikers
## 6491 Hey Arnold! The Movie
## 6492 Final Fantasy V Advance
## 6493 Need for Speed: Most Wanted
## 6494 Lumines: Electronic Symphony
## 6495 Star Trek: Invasion
## 6496 Final Fantasy Crystal Chronicles: Echoes of Time
## 6498 Babysitting Mania
## 6499 Star Wars: Bounty Hunter
## 6500 Tom and Jerry in War of the Whiskers
## 6501 Ace Attorney Investigations 2
## 6502 Minute to Win It
## 6503 Smart Girl's Playhouse
## 6504 Racquet Sports
## 6505 TouchMaster 3(Others sales)
## 6506 The Elder Scrolls IV: Oblivion
## 6507 Jikkyou Powerful Pro Yakyuu 2011
## 6508 Madden NFL 2005
## 6509 Skylanders: Trap Team
## 6510 Yu-Gi-Oh! Ultimate Masters: World Championship Tournament 2006
## 6511 Power Pro Kun Pocket 5
## 6512 Konjiki no Gashbell!! Makai no Bookmark
## 6513 Plants vs. Zombies
## 6514 Riding Spirits
## 6515 Disney Sing It: Pop Hits
## 6516 Indiana Jones and the Staff of Kings
## 6517 Etrian Odyssey Untold: The Millennium Girl
## 6518 Bust A Groove 2
## 6519 Hatsune Miku: Project Diva
## 6520 Juiced 2: Hot Import Nights
## 6521 Gundam Battle Universe
## 6522 Sengoku Basara: Battle Heroes
## 6523 Nightmare Creatures
## 6524 Star Wars Episode I: Battle for Naboo
## 6525 Duke Nukem: Zero Hour
## 6526 Armorines: Project S.W.A.R.M.
## 6527 NCAA March Madness 08
## 6528 Armored Core: Nexus
## 6529 Evolution Skateboarding
## 6530 Dora the Explorer: The Search for Pirate Pig's Treasure
## 6531 Muramasa: The Demon Blade
## 6532 Yakuza: Ishin
## 6533 Indiana Jones and the Staff of Kings
## 6534 Tony Hawk: Shred
## 6535 Outlaw Volleyball
## 6536 Batman: Vengeance
## 6537 The Amazing Spider-Man 2 (2014)
## 6538 RealSports Football
## 6539 Tiger Woods PGA Tour 10
## 6540 SD Gundam G Generation: Cross Drive
## 6541 Tom Clancy's Splinter Cell: Double Agent
## 6542 Monsters vs. Aliens
## 6543 Dungeons & Dragons Heroes
## 6544 The Testament of Sherlock Holmes
## 6545 Game of Thrones
## 6546 Loving Life with Hello Kitty & Friends
## 6547 McGrath Vs. Pastrana Freestyle Motocross
## 6548 Legaia 2: Duel Saga
## 6549 Crash Nitro Kart
## 6550 Karaoke Joysound Wii
## 6551 MLB 09: The Show
## 6552 Polarium
## 6553 Samurai Warriors 4
## 6554 F1 2014
## 6555 Classic NES Series: Bomberman
## 6556 Avatar: The Last Airbender - The Burning Earth
## 6557 Peter Jackson's King Kong: The Official Game of the Movie
## 6558 Bratz Ponyz 2
## 6559 A.C.E.: Another Century's Episode
## 6560 Frogger's Journey: The Forgotten Relic
## 6561 X-Men vs. Street Fighter
## 6562 Army of Two: The Devil's Cartel
## 6563 Dora the Explorer: Game Boy Advance Video Volume 1
## 6564 Oddworld: Stranger's Wrath
## 6565 Sega Rally Revo
## 6566 King of Fighters: Maximum Impact
## 6567 Marvel Super Heroes vs. Street Fighter
## 6568 Legendary
## 6569 J-League Pro Soccer Club wo Tsukurou!
## 6570 Daisy Fuentes Pilates
## 6571 Star Trek: The Game
## 6572 Drakan: The Ancients' Gates
## 6573 Dead or Alive Xtreme 2
## 6574 Petz: Crazy Monkeyz
## 6575 SpongeBob SquarePants: Lights, Camera, Pants!
## 6576 Choro Q3
## 6577 Tokyo Jungle
## 6578 Hunted: The Demon's Forge
## 6579 Lemony Snicket's A Series of Unfortunate Events
## 6580 Pirates of the Caribbean: Dead Man's Chest
## 6581 Bionicle: Matoran Adventures
## 6582 Armored Core: Master of Arena
## 6583 Fire Emblem: Thracia 776
## 6584 Desert Falcon
## 6585 NASCAR 09
## 6586 Tengai Makyou: Daishi no Mokushiroku - The Apocalypse IV
## 6587 A.C.E.: Another Century's Episode 3: The Final
## 6588 ATV: Quad Power Racing
## 6589 Mario & Sonic at the Rio 2016 Olympic Games
## 6590 The Backyardigans
## 6591 Backyard NFL Football
## 6592 All-Star Baseball 2003
## 6593 Silent Hunter 5: Battle of the Atlantic
## 6594 MTX Mototrax
## 6595 Tomb Raider: Underworld (Others sales)
## 6596 NHL Rock the Rink
## 6597 LEGO Star Wars III: The Clone Wars
## 6598 NBA ShootOut 2004
## 6599 TOCA Race Driver 2: Ultimate Racing Simulator
## 6600 Super Robot Taisen R
## 6601 Castlevania: Harmony of Dissonance
## 6602 Metroid Prime Pinball
## 6603 Formula One 2001
## 6604 Nickelodeon Dance
## 6605 Doukyuusei if
## 6606 Baldur's Gate: Dark Alliance II
## 6607 MVP Baseball 2004
## 6608 Super Street Fighter II: Turbo Revival
## 6609 Secret Weapons Over Normandy
## 6610 Combination Pro Soccer: J-League no Kantoku ni Natte Sekai wo Mezase!!
## 6611 NHL 08
## 6612 Kidou Senshi Gundam: Giren no Yabou
## 6613 Imagine: Ballet Star
## 6614 Teen Titans
## 6615 Percy Jackson and the Olympians: The Lightning Thief
## 6616 Spelling Challenges and more!
## 6617 Crusaders of Might and Magic
## 6618 Journey
## 6619 Tearaway Unfolded
## 6620 Star Wars The Clone Wars: Republic Heroes
## 6621 Bomberman Generation
## 6622 NASCAR 09
## 6623 Surfing H3O
## 6624 Romance of the Three Kingdoms II
## 6625 The Chronicles of Riddick: Assault on Dark Athena
## 6626 Resident Evil Archives: Resident Evil Zero
## 6627 Zoo Resort 3D
## 6628 Ice Age 2: The Meltdown
## 6629 The Suite Life of Zack & Cody: Tipton Trouble
## 6630 World Series of Poker
## 6631 Hatsune Miku: Project Diva F 2nd
## 6632 Galactic Attack
## 6633 Power Pro Kun Pocket 2
## 6634 Game of Thrones
## 6635 Happy Feet
## 6636 Walt Disney's The Jungle Book: Rhythm N'Groove
## 6637 Triple Play 2002
## 6638 Scrabble
## 6639 Evil Zone
## 6640 Spy Kids Challenger
## 6641 K-ON! Houkago Live!!
## 6642 A. IV Evolution: A Ressha de Ikou 4
## 6643 Exhibition
## 6644 Scrabble
## 6645 Tony Hawk's Proving Ground
## 6646 Amped 2
## 6647 Blaster Master: Blasting Again
## 6649 Cartoon Network Collection: Game Boy Advance Video Volume 1
## 6650 Cars
## 6651 Family Guy: Back to the Multiverse
## 6652 Kung Fu Panda 2
## 6653 Up
## 6654 Birds of Steel
## 6655 Madagascar: Escape 2 Africa
## 6656 WipEout XL
## 6657 Animal Paradise
## 6658 The Powerpuff Girls: Chemical X-Traction
## 6659 NHL 08
## 6660 Dynasty Warriors 6 (JP sales)
## 6661 Just Dance Kids 2
## 6662 FIFA 14
## 6663 Men of Valor
## 6664 Bomberman Tournament
## 6665 Medal of Honor European Assault
## 6666 Spider-Man: Web of Shadows
## 6667 Billy Hatcher and the Giant Egg
## 6668 Midway's Greatest Arcade Hits
## 6669 SpongeBob's Truth or Square (US sales)
## 6670 Final Fantasy II
## 6671 WipEout Fusion
## 6672 Spider-Man: Edge of Time
## 6673 UEFA Euro 2008 Austria-Switzerland
## 6674 Marie no Atelier: Salburg no Renkinjutsushi
## 6675 The Outfit
## 6676 Golden Nugget Casino
## 6677 NHL 06
## 6678 Atari Anthology
## 6679 Ultimate Fighting Championship
## 6680 XIII
## 6681 MotoGP '07
## 6682 Samurai Shodown II
## 6683 Mortal Kombat: Armageddon
## 6684 Don King Presents: Prizefighter
## 6685 Hybrid Heaven
## 6686 NBA Showtime: NBA on NBC
## 6687 Fox Sports College Hoops '99
## 6688 Wheel of Fortune
## 6689 MRC: Multi-Racing Championship
## 6690 F1 Pole Position 64
## 6691 Gex 64: Enter the Gecko
## 6692 Wayne Gretzky's 3D Hockey '98
## 6693 NBA Courtside 2 featuring Kobe Bryant
## 6694 J Stars Victory Vs.
## 6695 U-Sing: Girls Night
## 6696 The Mummy: Tomb of the Dragon Emperor
## 6697 Def Jam Vendetta
## 6698 Scooby-Doo! Unmasked
## 6699 Penny Racers
## 6700 The Sims 2
## 6701 Caesars Palace II
## 6702 Final Fantasy Type-0
## 6703 World Series Baseball 2K3
## 6704 Freshly-Picked: Tingle's Rosy Rupeeland
## 6705 Pro Yakyuu Team o Tsukurou!
## 6706 L.A. Noire: The Complete Edition
## 6707 Sentimental Graffiti
## 6708 Hitman: Absolution
## 6709 Bolt
## 6710 Marvel: Ultimate Alliance 2
## 6711 The Legend of Legacy
## 6712 Disgaea 2: Dark Hero Days
## 6713 Devil Kings
## 6714 Ultimate Band
## 6715 NBA Jam Tournament Edition
## 6716 Far Cry Instincts Predator
## 6717 Medabots AX: Metabee
## 6718 Tennis no Oji-Sama: Genius Boys Academy
## 6719 X-Men: Destiny
## 6720 Shadow Man
## 6721 X-Men Origins: Wolverine
## 6722 Netsu Chu! Pro Yakyuu 2002
## 6723 Ninja Gaiden 3
## 6724 Ben 10 Ultimate Alien: Cosmic Destruction
## 6725 Yakuza Zero: The Place of Oath
## 6726 Prince of Persia: The Forgotten Sands
## 6727 Dynasty Warriors 6
## 6728 Imagine: Zookeeper
## 6729 Porky's
## 6730 America's Army: Rise of a Soldier
## 6731 Grandia
## 6732 TV Superstars
## 6733 Armored Core 4
## 6734 F1 2000
## 6735 Littlest Pet Shop: Country Friends
## 6736 Dood's Big Adventure
## 6737 Pirates of the Caribbean: The Legend of Jack Sparrow
## 6738 We Love Golf!
## 6739 WRC: World Rally Championship
## 6740 Ed, Edd n Eddy: The Mis-Edventures
## 6741 Cars: Mater-National Championship
## 6742 Dreamworks Madagascar Kartz
## 6743 Harry Potter and the Order of the Phoenix
## 6744 Anno 2205
## 6745 Dune 2000
## 6746 Cradle of Rome
## 6747 Monster Hunter G
## 6748 Fuel
## 6749 Hasbro Family Game Night 3
## 6750 Pro Evolution Soccer 2014
## 6751 Project Overkill
## 6752 Jumping Flash! 2
## 6753 Nickelodeon Party Blast
## 6754 SBK Superbike World Championship
## 6755 Final Fantasy XI: Chains of Promathia
## 6756 Choro Q2
## 6757 Disney's A Christmas Carol
## 6758 Butt Ugly Martians: B.K.M. Battles
## 6759 Major League Baseball 2K7
## 6760 X-Men Legends II: Rise of Apocalypse
## 6761 Sorry! / Aggravation / Scrabble Junior
## 6762 Driver '76
## 6763 Turning Point: Fall of Liberty
## 6764 NBA Courtside 2002
## 6765 How to Train Your Dragon 2
## 6766 The Adventures of Tintin: The Game
## 6767 Classic NES Series: Excitebike
## 6768 Classic NES Series: Xevious
## 6769 Avatar: The Last Airbender - Into the Inferno
## 6770 Disney's Planes
## 6771 Dora the Explorer: Journey to the Purple Planet
## 6772 Tales of Hearts
## 6773 Digimon World: Data Squad
## 6774 Dynasty Warriors 7
## 6775 Catz
## 6776 Jikkyou Powerful Pro Yakyuu 2001
## 6777 Transformers: War for Cybertron (DS Version)
## 6779 Trials Fusion
## 6780 LEGO Ninjago: Shadow of Ronin
## 6781 Avalon Code
## 6782 That's So Raven: Psychic on the Scene
## 6783 Monster Jam: Path of Destruction
## 6784 Tongari Boushi to Oshare na Mahou Tsukai
## 6785 Panzer General
## 6786 Broken Sword: Shadow of the Templars - The Director's Cut
## 6787 Gallop Racer (JP)
## 6788 Spawn the Eternal
## 6789 MLB
## 6790 Army Men: Sarge's Heroes 2
## 6791 Command & Conquer 3: Kane's Wrath
## 6792 Dreamcast Collection
## 6793 Madden NFL 13
## 6794 Corpse Party: Blood Drive
## 6795 Homefront
## 6796 Disney Stitch Jam
## 6797 Bakugan: Battle Brawlers
## 6798 Britney's Dance Beat
## 6799 Guitar Freaks
## 6800 World Soccer Winning Eleven 7
## 6801 Ace Combat: Assault Horizon Legacy
## 6802 Cabela's Outdoor Adventures (2009)
## 6803 SRS: Street Racing Syndicate
## 6804 Namco Tennis Smash Court
## 6805 Vexx
## 6806 The Incredible Hulk
## 6808 Marvel vs. Capcom Origins
## 6809 Pro Yaky? Spirits 2011
## 6810 Imagine: Teacher Class Trip
## 6811 TimeSplitters: Future Perfect
## 6812 Final Fantasy Fables: Chocobo Tales
## 6813 Harvest Moon: Magical Melody
## 6814 Genma Onimusha
## 6815 DK: King of Swing
## 6816 K-1 Revenge
## 6817 G-Police
## 6818 Pure Futbol
## 6819 Spider-Man: Shattered Dimensions
## 6820 Corvette
## 6821 Atelier Meruru: Alchemist of Arland 3
## 6822 AC/DC LIVE: Rock Band Track Pack
## 6823 Deca Sports 3
## 6824 Harry Potter and the Goblet of Fire
## 6825 Midway Arcade Treasures: Extended Play
## 6826 F1 2015
## 6827 Skylanders SWAP Force
## 6828 Bass Pro Shops: The Hunt
## 6829 What Did I Do to Deserve This, My Lord!? 2
## 6830 Boogie SuperStar
## 6831 Burnout 2: Point of Impact
## 6832 Rock Band Track Pack Volume 1
## 6834 Super Monkey Ball Deluxe
## 6835 Street Fighter X Tekken
## 6836 Kill.Switch
## 6837 Ben 10 Ultimate Alien: Cosmic Destruction
## 6838 Metro 2033
## 6839 Peter Jackson's King Kong: The Official Game of the Movie
## 6840 Stella Glow
## 6841 Dancing With The Stars
## 6842 Summon Night 3
## 6843 Pro Yaky? Spirits 2010
## 6844 The Simpsons: Road Rage
## 6845 Megamind: Mega Team Unite
## 6846 PDC World Championship Darts 2008
## 6847 Jissen Pachi-Slot Hisshouhou! Hokuto no Ken SE
## 6848 Azurik: Rise of Perathia
## 6849 Luminous Arc
## 6850 All Grown Up!: Game Boy Advance Video Volume 1
## 6851 The Lord of the Rings: Aragorn's Quest
## 6852 Dragon Ball Z: Sagas
## 6853 Paws & Claws: Pet Resort
## 6854 Grand Slam Tennis 2
## 6855 Sakura Wars: Atsuki Chishio Ni
## 6856 Ms. Pac-Man: Maze Madness / Pac-Man World
## 6857 NHRA Championship Drag Racing
## 6858 The Price is Right 2010 Edition
## 6859 Monster Jam
## 6860 Valhalla Knights
## 6861 Harvest Moon: Another Wonderful Life
## 6862 NBA Live 10
## 6863 The Godfather (US & Others sales)
## 6864 Jikkyou Powerful Pro Yakyuu 15
## 6865 MX vs. ATV Reflex
## 6866 Bakugan: Battle Brawlers
## 6867 Front Line
## 6868 Paperboy
## 6869 South Park: Chef's Luv Shack
## 6870 Midway's Greatest Arcade Hits Volume 1
## 6871 Road Rash 64
## 6872 Ready 2 Rumble Boxing: Round 2
## 6873 Army Men: Air Combat
## 6874 Rock Band Track Pack Volume 2
## 6875 NCAA College Basketball 2K3
## 6876 Mobile Suit Gundam Battlefield Record U.C.0081
## 6877 Harry Potter and the Deathly Hallows - Part 2
## 6878 NCAA March Madness 2004
## 6879 Lucky Luke
## 6880 Fantastic 4
## 6881 Ashes Cricket 2009
## 6882 Ghost Rider
## 6883 Tony Hawk's American Sk8land
## 6884 Juiced 2: Hot Import Nights
## 6885 Are You Smarter than a 5th Grader? Game Time
## 6886 Amazing Adventures: The Forgotten Ruins
## 6887 Densetsu no Stafi 3
## 6888 Forsaken
## 6889 Ratchet & Clank: Going Commando (JP weekly sales)
## 6890 Pictionary: Ultimate Edition
## 6891 LEGO The Hobbit
## 6892 Samurai Warriors 4
## 6893 The Hobbit
## 6894 Dance Dance Revolution: Disney Channel Edition
## 6895 DiRT Showdown
## 6896 Divinity II: Ego Draconis
## 6897 Checkers
## 6898 Front Mission: Gun Hazard
## 6899 X-Men: Destiny
## 6900 Hello Kitty Seasons
## 6901 Chibi-Robo! Zip Lash
## 6902 4x4 EVO 2
## 6903 XS Airboat Racing
## 6904 Lunar: Silver Star Harmony
## 6905 Sherlock Holmes and the Mystery of Osborne House
## 6906 Grand Theft Auto
## 6907 Dora the Explorer: Super Star Adventures
## 6908 Viva Pinata: Party Animals
## 6909 Scrabble (Others sales)
## 6910 Asura's Wrath
## 6911 Lego Star Wars: The Force Awakens
## 6912 Dynasty Warriors 6 Empires
## 6913 My Street
## 6914 Wild 9
## 6915 Shadow Hearts: Covenant
## 6916 Tiger Woods PGA Tour 10
## 6917 Shrek's Carnival Craze Party Games
## 6918 Angry Birds
## 6919 Risen 2: Dark Waters
## 6921 Guitar Hero Live
## 6922 Game & Wario
## 6923 PGA Tour 96
## 6924 Onechanbara Z2: Chaos
## 6925 Fallout 3 Game Add-On Pack: Broken Steel and Point Lookout
## 6926 Covert Ops: Nuclear Dawn
## 6928 Pictionary: Ultimate Edition
## 6929 LEGO Harry Potter: Years 5-7
## 6930 TrackMania: Build to Race
## 6931 Nintendo Presents: Crossword Collection
## 6932 Galaga: Destination Earth
## 6933 G.I. Joe: The Rise of Cobra
## 6934 Ar tonelico Qoga: Knell of Ar Ciel
## 6935 FIFA World Cup Germany 2006
## 6936 Polly Pocket: Super Splash Island
## 6937 God Eater 2
## 6939 Sesame Street: Elmo's Number Journey
## 6940 Rampage
## 6941 Dark Cavern
## 6942 Jewels of the Tropical Lost Island
## 6943 Afro Samurai
## 6944 The Bureau: XCOM Declassified
## 6945 Sands of Destruction
## 6946 NASCAR 2011: The Game
## 6947 Silent Hill: Book of Memories
## 6948 Lunar Knights
## 6949 The Walking Dead: Season Two
## 6950 Epic Mickey 2: The Power of Two
## 6951 DC Universe Online
## 6952 NASCAR 08
## 6953 Madagascar: Escape 2 Africa
## 6954 New Carnival Games
## 6955 Need For Speed: Undercover
## 6956 LEGO Marvel's Avengers
## 6957 Naruto: Path of the Ninja 2
## 6958 Wallace & Gromit in Project Zoo
## 6959 Karaoke Revolution Volume 2
## 6960 Wizards of Waverly Place: Spellbound
## 6961 Love Plus +
## 6962 Etrian Mystery Dungeon
## 6963 Mobile Suit Gundam: Climax U.C.
## 6964 Street Fighter EX2 Plus
## 6965 The Smurfs 2
## 6966 Big Family Games
## 6968 Hot Wheels: Beat That!
## 6970 Super Robot Taisen D
## 6971 NASCAR Thunder 2004
## 6972 Buffy the Vampire Slayer
## 6973 LEGO Marvel's Avengers
## 6974 Star Wars: The Force Unleashed II
## 6975 Harry Potter and the Goblet of Fire
## 6976 Zumba Fitness: World Party
## 6977 Saint Seiya: Sanctuary Battle
## 6978 Girls Mode 3: Kirakira Code
## 6979 Meteos
## 6980 Virtua Tennis 4
## 6981 Kung Fu Panda 2
## 6982 Cross Edge
## 6983 Hotel for Dogs
## 6984 Cabela's Big Game Hunter 2012
## 6985 Pro Yakyuu Team o Tsukurou!
## 6986 Me & My Katamari
## 6987 Asphalt: Injection
## 6988 Total War: Attila
## 6989 SSX On Tour
## 6990 Vancouver 2010 - The Official Video Game of the Olympic Winter Games
## 6991 World Series Baseball
## 6992 SingStar Pop Edition
## 6993 Test Drive: Eve of Destruction
## 6994 Starsky & Hutch
## 6995 Dynasty Warriors: Gundam Reborn
## 6996 Hatsune Miku: Project Diva f
## 6997 The Club
## 6998 Carnival Island
## 6999 Jeremy McGrath Supercross World
## 7000 M&M's Kart Racing
## 7001 Rock Band Track Pack: Classic Rock
## 7002 The Scorpion King: Rise of the Akkadian
## 7003 Let's Make a Soccer Team!
## 7004 Looney Tunes: Acme Arsenal
## 7005 Monster Hunter G
## 7006 All-Star Baseball 2001
## 7007 Pinball Hall of Fame: The Gottlieb Collection
## 7008 Sword Art Online: Lost Song
## 7009 Star Wars Jedi Knight II: Jedi Outcast
## 7010 Tom Clancy's Splinter Cell
## 7011 Pitfall: The Big Adventure
## 7012 Rock Band Country Track Pack
## 7013 Worms: Battle Islands
## 7014 ESPN NHL Hockey
## 7015 Harvest Moon GB
## 7016 Imagine: Detective
## 7017 The Incredible Hulk: Ultimate Destruction
## 7018 Hannah Montana: The Movie
## 7019 NCAA GameBreaker 2003
## 7020 Skylanders: SuperChargers
## 7021 Gundam Battle Assault
## 7022 Virtua Fighter Kids
## 7023 Lunar: Silver Star Story
## 7024 Rocket Power: Beach Bandits
## 7025 Shaun White Snowboarding
## 7026 LEGO The Hobbit
## 7027 Ultimate Band
## 7028 NBA 2K6
## 7029 Age of Empires: The Age of Kings
## 7030 What's Cooking? Jamie Oliver
## 7031 Tom Clancy's Rainbow Six: Rogue Spear
## 7032 NHL FaceOff 2001
## 7033 Ultimate Duck Hunting: Hunting & Retrieving Ducks
## 7034 Yu-Gi-Oh! GX: Duel Academy
## 7035 FIFA 14
## 7037 Colony Wars: Vengeance
## 7038 Last Window: The Secret of Cape West
## 7039 Yu-Gi-Oh! GX: Tag Force 3
## 7040 Dynasty Warriors: Strikeforce
## 7041 Naruto Shippuden: Ultimate Ninja Storm Revolution
## 7042 I Love Horses
## 7043 Madden NFL 06
## 7044 Karaoke Revolution Glee 2: Road to Regionals
## 7045 NASCAR 08
## 7046 The King of Fighters '95 (CD)
## 7047 Perfect Weapon
## 7048 Luminous Arc 2
## 7049 Project CARS
## 7050 Major League Baseball 2K10
## 7051 Call of Duty: Black Ops 3
## 7052 Mafia
## 7053 Spider-Man: Edge of Time
## 7054 Deadly Creatures
## 7055 Airblade
## 7056 Cabela's Outdoor Adventures (2009)
## 7057 Mega Man & Bass
## 7058 NBA Live 15
## 7059 Neopets Puzzle Adventure
## 7060 Risen 2: Dark Waters
## 7061 Dragon Quest Heroes II: Twin Kings and the Prophecy's End
## 7062 Puss in Boots
## 7063 Family Fest presents: Movie Games
## 7064 AKB1/149: Love Election
## 7065 Tony Hawk's Proving Ground
## 7066 Tetris 2 (weekly jp sales)
## 7067 Pro Yakyuu Team o Tsukurou! 2
## 7068 Musou Orochi Z
## 7069 World Series of Poker 2008: Battle for the Bracelets
## 7070 WWE All Stars
## 7071 Naruto Shippuden: Ninja Council 4
## 7072 Genji: Dawn of the Samurai
## 7073 Rocket League
## 7074 Wipeout 2
## 7075 The Idolm@ster SP: Wandering Star / Perfect Sun / Missing Moon
## 7076 Critical Depth
## 7077 Barbie as The Island Princess
## 7078 Petz Rescue: Wildlife Vet
## 7079 Tales of VS.
## 7080 Saka-Tsuku DS: Touch and Direct
## 7081 Super Swing Golf
## 7082 The Italian Job
## 7083 Mega Man Battle Network 5: Team Colonel / Protoman
## 7084 Barbie and the Three Musketeers
## 7085 Star Ocean
## 7086 Freedom Fighters
## 7087 Naruto: Ninja Council 2 European Version
## 7088 Soldier of Fortune II: Double Helix
## 7089 pro evolution soccer 2011
## 7090 Disney Princess: Enchanted Journey
## 7091 Final Fantasy XI: Treasures of Aht Urhgan
## 7092 Alundra
## 7093 World Soccer Winning Eleven 2010: Aoki Samurai no Chousen
## 7094 Bratz: Girlz Really Rock
## 7095 Super R-Type
## 7096 Rampage 2: Universal Tour
## 7097 Super Robot Taisen F Kanketsuhen
## 7098 Tiger Woods PGA Tour 2003
## 7099 BlowOut
## 7100 NFL Blitz Pro
## 7101 MySims Party
## 7102 TRON: Evolution - Battle Grids
## 7103 The Raiden Project
## 7104 Hooked! Real Motion Fishing
## 7105 Pocket Fighter
## 7106 Bicycle Casino 2005
## 7107 Valhalla Knights 2
## 7108 .hack//G.U. Vol.2//Reminisce
## 7109 Disgaea: Afternoon of Darkness
## 7110 Ratchet & Clank: Full Frontal Assault
## 7111 NCAA Football 09
## 7112 Family Party: 30 Great Games Winter Fun
## 7113 NCAA GameBreaker 2004
## 7114 101-in-1 Party Megamix Wii
## 7115 The Polar Express
## 7116 Dinosaur King
## 7117 Buzz! Junior: RoboJam
## 7118 Child of Eden
## 7119 All Star Karate
## 7120 AC/DC LIVE: Rock Band Track Pack
## 7121 Tetris Attack
## 7122 NBA ShootOut 2003
## 7123 The Magic School Bus: Oceans
## 7124 Shin Nippon Pro Wrestling: Toukon Retsuden 3
## 7125 Senran Kagura: Estival Versus
## 7126 Digimon World DS (JP sales)
## 7127 NHL FaceOff 2003
## 7128 Jersey Devil
## 7129 Rogue Ops
## 7130 NBA Street: Showdown
## 7131 3rd Super Robot Wars Z Jigoku Hen
## 7132 Cars 2
## 7133 Petz Monkeyz House
## 7134 Spec Ops: The Line
## 7135 Legion: The Legend of Excalibur
## 7136 FaceBreaker K.O. Party
## 7137 Justice League Heroes
## 7138 Gekijouban Macross F: Sayonara no Tsubasa - Hybrid Pack
## 7139 TNA iMPACT!
## 7140 Yu-Gi-Oh! GX: Spirit Caller (American Sales)
## 7141 Def Jam: Fight for NY
## 7142 Sword Art Online: Infinity Moment
## 7143 Spartan: Total Warrior
## 7144 Killer is Dead
## 7145 EX Monopoly
## 7146 Star Trek: The Game
## 7147 64 de Hakken! Tamagotchi Minna de Tamagotchi World
## 7148 Mary-Kate and Ashley: Sweet 16 - Licenced to Drive
## 7149 Deadly Duck
## 7150 Assault
## 7151 Reactor
## 7152 Ys Seven
## 7153 Marvel Super Hero Squad: The Infinity Gauntlet
## 7154 Gundam Battle Chronicle
## 7155 G-Force
## 7156 Danball Senki Boost
## 7157 Kidz Bop Dance Party! The Video Game
## 7158 Conflict: Vietnam
## 7159 Whirl Tour
## 7160 Time Crisis: Crisis Zone
## 7161 Momotarou Dentetsu 15
## 7162 Dark Souls II
## 7163 Discovery Kids: Dolphin Discovery
## 7164 Ben 10 Ultimate Alien: Cosmic Destruction
## 7165 Hatsune Miku: Project Mirai 2
## 7166 Skies of Arcadia Legends
## 7167 Cloudy With a Chance of Meatballs
## 7168 MotoGP 08
## 7169 Madden NFL 12
## 7170 Sengoku Basara 3 Utage
## 7171 Breath of Fire
## 7172 Ragnarok DS
## 7173 Ford vs. Chevy
## 7174 NCAA Football 2005
## 7175 Hamtaro: Ham-Ham Games
## 7176 Danny Phantom: The Ultimate Enemy
## 7177 Petz Rescue: Endangered Paradise
## 7178 MotoGP 09/10
## 7179 Rune Factory: Tides of Destiny
## 7180 A Boy and His Blob
## 7181 Battleborn
## 7183 Atelier Escha & Logy: Alchemists of the Dusk Sky
## 7184 Hidden Mysteries: Buckingham Palace
## 7185 Crazy Climber
## 7186 Super Adventure Island
## 7187 Bust-A-Move 4
## 7188 The Legend of Spyro: The Eternal Night
## 7189 NFL Quarterback Club 97
## 7190 Rampage: Total Destruction
## 7191 Galactic Wrestling: Featuring Ultimate Muscle
## 7192 Petz: Horse Club
## 7193 Dino Stalker
## 7194 Rapala's Fishing Frenzy
## 7195 Mobile Suit Gundam Seed
## 7196 Shinobi
## 7197 Puss in Boots
## 7198 Tony Hawk's Downhill Jam
## 7199 Mega Man Zero 3
## 7200 LEGO The Lord of the Rings
## 7201 Hitman: HD Trilogy
## 7202 Aliens vs Predator: Requiem
## 7203 Castlevania: Lords of Shadow 2
## 7204 Barbie: Groom and Glam Pups
## 7205 KORG DS-10 Synthesizer
## 7206 Tenchu: Shadow Assassins
## 7207 Barbie Super Sports
## 7208 CSI: Fatal Conspiracy
## 7209 Nicktoons Collection: Game Boy Advance Video Volume 2
## 7210 Jackass the Game
## 7211 The Legend of Heroes: Trails of Cold Steel
## 7212 Tom Clancy's Rainbow Six: Siege
## 7213 Dungeon Hunter Alliance
## 7215 Duel Masters: Kaijudo Showdown
## 7216 Imagine: Boutique Owner
## 7217 The Walking Dead: Season Two
## 7218 The Lord of the Rings: The Third Age
## 7219 Cursed Mountain
## 7220 The Suffering
## 7221 Dragon Quest Builders: Revive Alefgard
## 7222 Tetris Worlds
## 7223 Teenage Mutant Ninja Turtles: Danger of the Ooze
## 7224 ECW Hardcore Revolution
## 7225 Mega Man 64
## 7226 Chou-Kuukan Night Pro Yakyuu King(higher JP sales)
## 7227 Rampage 2: Universal Tour
## 7228 Ms. Pac-Man: Maze Madness
## 7229 Tales of Graces
## 7230 Age of Empires: Mythologies
## 7231 Viewtiful Joe 2
## 7232 Where's Waldo? The Fantastic Journey
## 7233 ATV Quad Kings
## 7234 Mary-Kate and Ashley: Sweet 16 - Licenced to Drive
## 7235 Jewel Quest: Expeditions
## 7236 NBA Jam Extreme
## 7237 Dragon Ball: Origins (JP & incomplete US sales)
## 7238 Touch the Dead
## 7239 Tropico 3
## 7240 Nickelodeon Party Blast
## 7241 Ben 10 Alien Force: Vilgax Attacks
## 7242 NHL Championship 2000
## 7243 G.I. Joe: The Rise of Cobra
## 7244 Shellshock: Nam '67
## 7245 Hunted: The Demon's Forge
## 7246 Kartia: The Word of Fate
## 7247 Tales of Berseria
## 7248 All-Star Baseball 2002
## 7249 Magna Carta: Tears of Blood
## 7250 Lethal Skies Elite Pilot: Team SW
## 7251 Capcom vs. SNK
## 7252 NBA Live 09 All-Play
## 7253 Infinite Space
## 7254 Yoostar2
## 7255 Transformers: Devastation
## 7256 Tamagotchi no KiraKira Omisecchi
## 7257 From Russia With Love
## 7258 You Don't Know Jack
## 7259 Just Dance 2016
## 7260 Pinball Hall of Fame: The Williams Collection
## 7261 Guitar Hero: Smash Hits
## 7262 NFL Quarterback Club 2002
## 7263 Kirby's Star Stacker
## 7264 NCAA Basketball 09
## 7265 Full Auto
## 7266 Dead Island
## 7267 Growlanser: Heritage of War
## 7268 Hasbro Family Game Night
## 7269 Shin Megami Tensei x Fire Emblem
## 7270 Rugby 2004
## 7271 Disney's Magical Quest Starring Mickey and Minnie
## 7272 Spirit Camera: The Cursed Memoir
## 7273 NBA 06
## 7274 Naruto: Ninja Council
## 7275 Shin Megami Tensei: Persona
## 7276 DS Nishimura Kyotaro Suspense Shin Tantei Series: Kyoto Atami Zekkai no Kotou - Satsui no Wana
## 7277 Wreckless: ThE YaKuza MisSiOns
## 7278 Madden NFL 07
## 7279 Jikkyou Powerful Major League
## 7280 NFL 2K3
## 7281 Darksiders II
## 7282 Saltwater Sportfishing
## 7283 Yoshi Touch & Go (JP sales)
## 7284 Samurai Jack: The Amulet of Time
## 7285 Pass the Pigs
## 7286 J-League Winning Eleven 2008: Club Championship
## 7287 Jackie Chan: Stuntmaster
## 7288 Sports Car GT
## 7289 Lost Planet 3
## 7290 Order Up!
## 7291 Code Name: S.T.E.A.M.
## 7292 SBK X: Superbike World Championship
## 7293 NBA Live 14
## 7294 Scooby-Doo! Mystery Mayhem
## 7295 Kanzen Chuuki Pro Yakyuu Greatest Nine
## 7296 American Idol
## 7297 Summer Athletics: The Ultimate Challenge (Others sales)
## 7298 Britney's Dance Beat
## 7299 Shrek SuperSlam
## 7300 Sniper: Ghost Warrior 2
## 7301 Over G Fighters
## 7302 Sailor Moon
## 7303 Apache: Air Assault
## 7304 One Piece: Pirate Warriors 3
## 7305 Herdy Gerdy
## 7306 Armored Core V
## 7307 EVE Online
## 7308 Digimon World Re:Digitize
## 7309 Ninja Gaiden: Dragon Sword
## 7310 Ride
## 7311 Blue Dragon Plus
## 7312 Lords of the Fallen
## 7313 NBA in the Zone 2000
## 7314 Dark Summit
## 7315 Afrika
## 7316 Cabela's Big Game Hunter: Ultimate Challenge
## 7317 The Legend of Heroes: Trails in the Sky First Chapter
## 7318 Are You Smarter Than a 5th Grader? Back to School
## 7320 The Dukes of Hazzard: Return of the General Lee
## 7321 Pandemonium!
## 7322 SingStar: Back to the 80s
## 7323 Namco Museum: 50th Anniversary
## 7324 Crash 'N' Burn
## 7325 NBA
## 7326 Teenage Mutant Ninja Turtles: Smash-Up
## 7327 Pro Yakyuu Greatest Nine '97
## 7328 Transformers: Dark of the Moon
## 7329 Final Fantasy Fables: Chocobo's Dungeon
## 7330 Lunar: Silver Star Story Complete
## 7331 Dorabase DS: Dramatic Stadium
## 7332 Disaster Report
## 7333 EVE: burst error
## 7334 We Sing Robbie Williams
## 7335 Backyard NFL Football '09
## 7336 Pro Evolution Soccer 2012
## 7337 Akiba's Trip: Undead & Undressed
## 7338 Speed Racer: The Videogame
## 7339 College Hoops 2K7
## 7340 The Amazing Spider-Man 2 (2014)
## 7341 Big League Sports
## 7342 Bratz: Forever Diamondz
## 7343 WCW Backstage Assault
## 7344 UFC Undisputed 2010
## 7345 Baja: Edge of Control
## 7346 Wild Wild Racing
## 7347 Magician's Quest: Town of Magic
## 7348 The Bard's Tale
## 7349 NCAA March Madness 08
## 7350 Momotarou Dentetsu 16
## 7351 Robotech: The Macross Saga
## 7353 MTV Celebrity Deathmatch
## 7354 Gekijouban Macross F: Itsuwarino Utahime - Hybrid Pack
## 7355 Conflict Zone
## 7356 Tony Hawk's American Sk8land
## 7357 de Blob 2
## 7358 The BIGS 2
## 7359 BloodRayne
## 7360 Hannah Montana: The Movie
## 7361 50 Cent: Blood on the Sand
## 7362 Bratz: Girlz Really Rock
## 7363 NHL 2K6
## 7364 Tenchu: Return From Darkness
## 7365 World Poker Tour
## 7366 Prison Break: The Conspiracy
## 7367 Neo Contra
## 7368 MVP Baseball
## 7369 GRID Autosport
## 7372 RealSports Baseball
## 7373 Now! That's What I Call Music: Dance & Sing
## 7374 Yu-Gi-Oh! 5D's World Championship 2011: Over the Nexus
## 7375 Metal Gear Solid V: The Phantom Pain
## 7376 Hasbro Family Game Night 3
## 7377 G.I. Joe: The Rise of Cobra
## 7378 Rayman Raving Rabbids
## 7379 Viewtiful Joe 2
## 7380 Quake III: Revolution
## 7381 Pac-Man World 3
## 7382 Naruto: Clash of Ninja (JP sales)
## 7384 NOëL: NOT DiGITAL
## 7385 Transformer: Rise of the Dark Spark
## 7386 Dragon Ball Z Hyper Dimension
## 7387 Hidden Mysteries: Titanic - Secrets of the Fateful Voyage
## 7388 Senran Kagura 2: Deep Crimson
## 7389 Marvel Super Hero Squad
## 7390 The Chronicles of Narnia: Prince Caspian
## 7391 Champion Jockey: G1 Jockey & Gallop Racer
## 7392 HBO Boxing
## 7393 Yoga Wii
## 7394 Darkwatch
## 7395 Cabela's Survival: Shadows of Katmai
## 7396 Prince of Persia: Revelations
## 7397 Bass Pro Shops: The Strike
## 7398 Front Mission 5: Scars of the War
## 7399 Maximo vs Army of Zin
## 7400 The Fairly OddParents: Breakin' Da Rules
## 7401 Namco Museum Megamix
## 7402 Wedding Dash
## 7403 Hot Shots Tennis: Get a Grip
## 7404 Summoner 2
## 7405 The Land Before Time: Big Water Adventure
## 7406 Shadow of Destiny
## 7408 Cabela's Deer Hunt: 2004 Season
## 7409 Disney's Planes
## 7410 Brunswick Pro Bowling
## 7411 World Series of Poker
## 7412 ClayFighter 63 1/3
## 7413 Monopoly
## 7414 WCW Nitro
## 7415 Cruis'n Exotica
## 7416 Gex 3: Deep Cover Gecko
## 7417 WinBack: Covert Operations
## 7418 Heroes of Ruin
## 7419 WipeOut 3 The Game
## 7420 Bastard!! Utsuro Naru Kamigami no Utsuwa
## 7421 SBK Superbike World Championship
## 7422 The King of Fighters '96
## 7423 Bionicle
## 7425 Angel Blade: Neo Tokyo Guardians
## 7426 Threads of Fate
## 7427 PoPoLoCrois Monogatari II
## 7428 Famicom Mini: Ganbare Goemon! Karakuri Douchuu
## 7429 Vampire Rain
## 7430 Way of the Samurai 3
## 7431 Deus Ex: The Conspiracy
## 7432 Unreal II: The Awakening
## 7433 Rumble Racing
## 7434 Spider-Man: Web of Shadows
## 7435 Disgaea D2: A Brighter Darkness
## 7436 Batman Begins
## 7437 Just Dance: Greatest Hits
## 7438 J-League Winning Eleven 10 + Europa League 06-07
## 7439 Shrek: Reekin' Havoc
## 7440 Solatorobo: Red the Hunter
## 7441 Tales of Phantasia: Narikiri Dungeon X
## 7442 JSRF: Jet Set Radio Future
## 7443 NHL Hitz 20-02
## 7444 The Last Airbender
## 7445 NCAA Football 2003
## 7446 StokEd
## 7447 Rollcage
## 7448 ESPN Winter X Games: Snowboarding 2002
## 7449 Project: Snowblind
## 7450 Tony Hawk's Motion
## 7451 Super Robot Taisen K
## 7452 Mortal Kombat: Special Forces
## 7453 LEGO The Hobbit
## 7454 Rayman Legends
## 7455 Dragon Ball Z: Harukanaru Densetsu
## 7456 Wacky Races: Crash & Dash
## 7457 I Spy: Castle
## 7458 Shin Megami Tensei: Persona 3 (jp sales)
## 7459 Greg Hastings Paintball 2
## 7460 Evil Dead: Regeneration
## 7461 Dead to Rights: Retribution
## 7462 NCAA March Madness 07
## 7463 NHL 2003
## 7464 Marvel Super Hero Squad: Comic Combat
## 7465 X-Men: Children of the Atom
## 7466 Barbie Fashion Show: An Eye for Style
## 7467 Tiger Woods PGA Tour
## 7468 Yarudora Series Vol. 2: Kisetsu wo Dakishimete
## 7469 NHL 2K3
## 7470 Heisei Kyouiku linkai DS
## 7471 SpongeBob SquarePants: Game Boy Advance Video Volume 3
## 7472 Pro Yaky? Spirits 2010
## 7473 The Naked Brothers Band: The Video Game
## 7474 Final Fight One
## 7475 Rune Factory: Tides of Destiny
## 7476 The Amazing Spider-Man (Console Version)
## 7477 NCAA Football 10
## 7478 Gallop Racer 2003: A New Breed
## 7479 Dawn of Discovery
## 7480 BeyBlade VForce: Super Tournament Battle
## 7481 Outlaw Golf 2
## 7482 Little Battlers eXperience: Baku Boost
## 7483 Anarchy Reigns
## 7484 CSI: Deadly Intent
## 7485 Defiance
## 7486 J-League Pro Soccer Club o Tsukurou! 7 Euro Plus
## 7487 LEGO Ninjago: Shadow of Ronin
## 7488 Bugs Bunny & Taz: Time Busters
## 7489 Need for Speed Carbon: Own the City
## 7490 Dragon Ball Z: Sagas
## 7491 Kung Fu Rider
## 7492 Jikkyou Powerful Pro Yakyuu 2012
## 7493 X2: Wolverine's Revenge
## 7494 Power Rangers: Wild Force
## 7495 The Wolf Among Us
## 7496 Thrillville
## 7497 Battle of Giants: Dinosaurs Strike
## 7498 Attack on Titan (KOEI)
## 7499 The King of Fighters '95
## 7500 Discovery Kids: Pony Paradise
## 7501 Mary-Kate and Ashley: Girls Night Out
## 7502 Cabela's North American Adventures
## 7503 Enchanted Arms
## 7504 Beyblade G-Revolution
## 7505 WWE All Stars
## 7506 Trade & Battle: Card Hero
## 7507 World Championship Cards
## 7508 You Don't Know Jack
## 7509 Chronicles of Mystery: Curse of the Ancient Temple
## 7510 NBA Live 15
## 7511 Capcom Fighting Evolution
## 7512 Frogger 3D
## 7513 SD Gundam GNext
## 7514 Backyard NFL Football 2006
## 7515 NASCAR Heat 2002
## 7516 Planet 51
## 7517 Sloane to MacHale no Nazo no Monogatari
## 7518 DarkStar One: Broken Alliance
## 7519 My Fitness Coach 2: Exercise and Nutrition
## 7520 Sengoku Basara 2 Heroes
## 7521 Buzz! The Schools Quiz
## 7522 Two Worlds II
## 7523 Suikoden Tactics
## 7524 NCAA March Madness 06
## 7525 Major League Baseball 2K11
## 7526 Mobile Suit Gundam: Crossfire
## 7527 Phantasy Star Online
## 7528 Crazy Taxi 3: High Roller
## 7529 Dark Messiah of Might and Magic Elements
## 7530 Just Dance 2: Extra Songs
## 7531 Midnight Club 3: DUB Edition Remix
## 7532 International Superstar Soccer 2000
## 7533 Warhammer 40,000: Space Marine
## 7534 CandyLand / Chutes & Ladders / Memory
## 7535 The Bible Game
## 7536 Drift King Shutokou Battle '94
## 7537 Shining Blade
## 7538 Fairy Fencer F
## 7539 Atelier Shallie: Alchemists of the Dusk Sea
## 7540 The Ultimate Red Ball Challenge
## 7541 PBR: Out of the Chute
## 7542 The King of Fighters Collection: The Orochi Saga
## 7543 Jikkyou Powerful Pro Yakyuu 10 Chou Ketteiban: 2003 Memorial
## 7544 Arcana Heart 3
## 7545 Tekken 3D: Prime Edition
## 7546 Deal or No Deal: The Banker is Back!
## 7547 Jillian Michaels' Fitness Adventure
## 7548 MLB 10: The Show
## 7549 State of Decay
## 7550 Ashes Cricket 2009
## 7551 Saturday Night Speedway
## 7552 Bratz: Rock Angelz
## 7553 Langrisser III
## 7554 Samurai Spirits (CD)
## 7555 MLB SlugFest 20-03
## 7556 Dragon Ball: Revenge of King Piccolo
## 7557 Spectrobes: Origins
## 7558 Earth Defense Force: Insect Armageddon
## 7559 Pitfall: The Lost Expedition
## 7560 Marvel: Ultimate Alliance 2
## 7561 From TV Animation One Piece: Grand Battle! 3
## 7562 Assassin's Creed Syndicate
## 7563 Rocket Power: Zero Gravity Zone
## 7564 Le Mans 24 Hours
## 7565 XCOM 2
## 7566 International Cricket 2010
## 7567 ESPN MLB Baseball
## 7568 Neighborhood Games
## 7569 All Star Pro-Wrestling
## 7570 Way of the Samurai 4
## 7571 Clive Barker's Jericho
## 7572 Harvest Moon: More Friends of Mineral Town
## 7573 Captain America: Super Soldier
## 7574 MLB 12: The Show
## 7575 The Fairly Odd Parents: Shadow Showdown
## 7576 NHL 17
## 7577 Mobile Suit Gundam Side Story II: Aoi o Uketsugu Mono
## 7578 Camping Mama: Outdoor Adventures
## 7579 Kurohyou 2: Ryu ga Gotoku Ashura Hen
## 7580 NBA 2K2
## 7581 X2: Wolverine's Revenge
## 7582 7th Dragon 2020
## 7583 Cars
## 7584 Taiko no Tatsujin: Waku Waku Anime Matsuri
## 7585 Imagine: Babyz Fashion
## 7586 Spy Hunter
## 7587 Warriors Orochi
## 7588 Dead to Rights II
## 7589 Super Dodge Ball Advance
## 7590 Ogre Battle Saga Episode Five: The March of the Black Queen
## 7591 Ridge Racer 6
## 7592 Angry Birds Star Wars
## 7593 Ni Hao, Kai-lan: New Year's Celebration
## 7594 Press Your Luck 2010 Edition
## 7595 Treasure World
## 7596 Front Mission Evolved
## 7597 Body and Brain Connection
## 7598 MDK
## 7599 Monster Jam
## 7600 Afro Samurai
## 7601 Rock Band Track Pack: Classic Rock
## 7602 Zone of the Enders HD Collection
## 7603 Ty the Tasmanian Tiger 2: Bush Rescue
## 7604 Speed Punks
## 7605 The Legend of Heroes VII: The Trail of Blue
## 7606 No More Heroes: Heroes' Paradise
## 7607 Mahjongg Mysteries: Ancient Egypt
## 7608 Saints Row IV
## 7609 Injustice: Gods Among Us
## 7610 MVP Baseball 2003
## 7611 CSI: Unsolved!
## 7612 Star Wars: Battlefront
## 7613 NCAA Final Four 2004
## 7614 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 7615 Tigger's Honey Hunt
## 7617 Roadsters 99
## 7618 Magical Tetris Challenge
## 7619 Twisted Edge Extreme Snowboarding
## 7620 Disney's Tarzan
## 7621 South Park Rally
## 7622 Body Harvest
## 7623 San Francisco Rush 2049
## 7624 Super Robot Taisen 64
## 7625 Snowboard Kids
## 7626 NBA 07
## 7627 IHRA Drag Racing 2004
## 7628 Shining Hearts
## 7629 Magical ZhuZhu Princess: Carriages & Castles
## 7630 Code of Princess
## 7631 Tomb Raider: Underworld
## 7632 The Con
## 7633 Tony Hawk's Pro Skater 5
## 7634 Jissen Pachi-Slot Hisshouhou! Aladdin A
## 7635 Namco Museum: 50th Anniversary
## 7636 Ford Racing Off Road
## 7637 The Witch and the Hundred Knight
## 7638 Nobunaga no Yabou: Reppuuden
## 7639 Hot Wheels: Track Attack
## 7640 Schlag den Raab
## 7641 UFC Personal Trainer: The Ultimate Fitness System
## 7642 Total War: Shogun 2 - Fall of the Samurai
## 7643 The BIGS 2
## 7644 Mat Hoffman's Pro BMX 2
## 7645 Treasure Hunter G
## 7646 Untold Legends: Dark Kingdom
## 7647 From Russia With Love
## 7648 Wing Arms
## 7650 Pro Yaky? Spirits 2013
## 7651 We Wish You A Merry Christmas
## 7652 BioShock The Collection
## 7653 DanceDanceRevolution
## 7654 Cabela's Big Game Hunter (2008)
## 7655 Grandia II
## 7656 Namco Museum Vol.4
## 7657 The Cheetah Girls: Passport to Stardom
## 7658 UFC Personal Trainer: The Ultimate Fitness System
## 7659 How to Train Your Dragon 2
## 7660 Shark Tale
## 7661 NFL Street 2
## 7662 Pro Yaky? Spirits 2013
## 7663 Teenage Mutant Ninja Turtles 3: Mutant Nightmare
## 7664 My Secret World by Imagine
## 7665 Soldier of Fortune: Payback
## 7666 Ridge Racer
## 7667 Bleach: The 3rd Phantom
## 7668 Gladius
## 7669 Family Feud: 2012 Edition
## 7670 Dave Mirra Freestyle BMX 2
## 7671 Spore Hero Arena
## 7672 Pro Yaky? Spirits 2012
## 7673 Puzzle & Dragons X: God Chapter / Dragon Chapter
## 7674 SpongeBob SquarePants: Revenge of the Flying Dutchman
## 7675 Record of Agarest War
## 7676 Baja: Edge of Control
## 7677 Sid Meier's Pirates!
## 7678 Taiko no Tatsujin: Go! Go! Godaime
## 7679 Taiko Drum Master
## 7680 High School Musical 3: Senior Year DANCE!
## 7681 Harry Potter and the Goblet of Fire
## 7682 Bust-A-Move 2 Arcade Edition
## 7683 South Park: The Stick of Truth
## 7684 Tom Clancy's Splinter Cell: Essentials
## 7685 Tetris Worlds (Online Edition)
## 7686 Armored Core 4
## 7687 Sleeping Dogs
## 7688 Forgotten Realms: Demon Stone
## 7689 Super Baseball Simulator 1.000
## 7690 Barbie Horse Adventures: Riding Camp
## 7691 Resident Evil: Revelations
## 7692 Go Play: Lumberjacks
## 7693 Looney Tunes: Space Race
## 7694 Puzzle Challenge: Crosswords and More!
## 7695 NASCAR Unleashed
## 7696 Backyard Hockey
## 7697 Playboy: The Mansion
## 7698 Jikkyou Powerful Pro Yakyuu 2010
## 7699 Shiren the Wanderer
## 7700 Ore no Shikabane o Koete Yuke
## 7701 Shaman King: Spirit of Shamans
## 7702 Tiger Woods PGA Tour 06
## 7703 Conan
## 7704 Ratatouille
## 7705 The Fairly Odd Parents: Enter the Cleft
## 7706 Warriors Orochi
## 7707 MC Groovz Dance Craze
## 7708 The Thing
## 7709 Tom and Jerry in House Trap
## 7710 Power Rangers: Time Force
## 7711 101-in-1 Explosive Megamix
## 7712 X-Men Origins: Wolverine
## 7713 Jikkyou Powerful Pro Yakyuu 2011
## 7714 DS Kageyama Method: Dennou Hanpuku - Masu x Masu Hyaku Masu Keisan
## 7715 Baldur's Gate: Dark Alliance
## 7716 Family Guy
## 7717 Prince of Persia: Warrior Within
## 7718 UFC: Tapout
## 7719 Aikatsu! Cinderella Lesson
## 7720 Marvel Super Hero Squad: Comic Combat
## 7722 Mega Man Legacy Collection
## 7723 Predator: Concrete Jungle
## 7724 Beyblade: Metal Fusion - Battle Fortress
## 7725 WipeOut 3 The Game
## 7726 Big Mutha Truckers 2
## 7727 Shutter Island
## 7728 The Naked Brothers Band: The Video Game
## 7729 Demon Gaze
## 7730 Zombie Army Trilogy
## 7731 NHL FaceOff 2001
## 7732 Mana Khemia 2: Fall of Alchemy
## 7733 The Great Escape
## 7734 Dexter's Lab Chess Challenge
## 7735 Nostalgia
## 7736 DiRT Showdown
## 7737 Iron Chef America: Supreme Cuisine
## 7738 Arcade Shooting Gallery
## 7739 The Rise of the Argonauts
## 7740 Big Mutha Truckers
## 7741 ESA Foundation Compilation
## 7742 The Hobbit
## 7743 The King of Fighters XI
## 7744 Ninja Gaiden 3
## 7745 Metro: Last Light
## 7746 Dragon Ball Z: Idainaru Dragon Ball Densetsu
## 7747 Silent Hill HD Collection
## 7748 Bound By Flame
## 7749 Conflict: Denied Ops
## 7750 Saw II: Flesh & Blood
## 7751 Ice Age: Dawn of the Dinosaurs
## 7752 Sniper Elite
## 7753 Arc Rise Fantasia
## 7754 Ni Hao, Kai-lan: Super Game Day
## 7755 Kouchuu Ouja Mushi King: Greatest Champion e no Michi DS
## 7756 Dynasty Warriors: Gundam 2
## 7757 Petz Pony: Beauty Pageant
## 7758 Parlor! Mini 4
## 7759 Breath of Fire II
## 7760 The Spiderwick Chronicles
## 7761 Danganronpa 2: Goodbye Despair
## 7762 Aliens vs Predator
## 7763 Ice Age 2: The Meltdown
## 7765 Enchanted Arms
## 7766 Dinotopia: The Timestone Pirates
## 7767 Power Pro Kun Pocket 12
## 7768 J-League Jikkyou Winning Eleven 3
## 7769 The Sims 4: Get Together
## 7770 Jissen Pachi-Slot Hisshouhou
## 7771 Pac-Man & Galaga Dimensions
## 7772 Quantum Theory
## 7773 Manhunt
## 7774 NCAA Final Four 2003
## 7775 Air Conflicts: Secret Wars
## 7776 Rio
## 7777 Dream Salon
## 7778 Scene It? Twilight
## 7779 Disgaea DS
## 7780 Peter Jackson's King Kong: The Official Game of the Movie
## 7781 Space Invaders Extreme 2
## 7782 X-Men Origins: Wolverine
## 7783 Great Phoenix Wright: Ace Attorney - Naruhodou Ryuunosuke no Bouken
## 7784 Mystery Tales of Time Travel
## 7785 J-League Excite Stage '96
## 7786 Risen
## 7787 Hidden Mysteries: Vampire Secrets
## 7788 New Love Plus
## 7789 Final Fantasy XI
## 7790 Breath of Fire: Dragon Quarter
## 7791 Jikkyou J-League Perfect Striker
## 7792 Dante's Inferno
## 7793 Shrek: Forever After
## 7794 Rock Band Country Track Pack
## 7795 Super Robot Taisen: Scramble Commander
## 7796 Re-Volt
## 7797 Conception II: Children of the Seven Stars
## 7798 Descent
## 7799 Supreme Commander 2
## 7800 DanceMasters
## 7801 50 Cent: Blood on the Sand
## 7802 Disney's Magical Mirror Starring Mickey Mouse
## 7803 Need for Speed: The Run
## 7804 Jeep Thrills
## 7805 Conflict: Denied Ops
## 7806 FaceBreaker
## 7807 Major League Baseball 2K12
## 7808 Might & Magic: Clash of Heroes
## 7809 Avatar: The Last Airbender - Into the Inferno
## 7810 IHRA Professional Drag Racing 2005
## 7811 Mace Griffin: Bounty Hunter
## 7812 Legacy of Kain: Defiance
## 7813 Story of Seasons: Good Friends of the Three Villages
## 7814 Chaotic: Shadow Warriors
## 7815 Majin and the Forsaken Kingdom
## 7816 Trivial Pursuit unhinged
## 7817 Tales of the World: Narikiri Dungeon 2
## 7818 Spider-Man: Shattered Dimensions
## 7819 Aliens versus Predator: Extinction
## 7820 Plants vs. Zombies
## 7821 NBA Live 14
## 7822 Silent Scope 2: Dark Silhouette
## 7823 Dave Mirra Freestyle BMX 2
## 7824 Jikkyou Powerful Pro Yakyuu '96 Kaimakuban
## 7825 Tokimeki Memorial Girl's Side 3rd Story
## 7826 NHL Hitz Pro
## 7827 Tom Clancy's Splinter Cell: Blacklist
## 7828 Allied General
## 7829 Fire ProWrestling G
## 7830 Kamen Rider: Battride War
## 7831 Binary Domain
## 7832 IL-2 Sturmovik: Birds of Prey
## 7833 Farming Simulator 2015
## 7834 Armored Core: For Answer
## 7835 Mahjong: Journey Quest for Tikal
## 7836 uDraw Studio: Instant Artist
## 7837 Naruto: Ninja Destiny
## 7838 GunGriffon
## 7839 SingStar Pop Vol.2
## 7840 SNK Arcade Classics Vol. 1
## 7841 Darkstalkers 3
## 7842 SpongeBob's Surf & Skate Roadtrip
## 7843 Frequency
## 7844 Death Jr.
## 7845 Cars: Race-O-Rama
## 7846 Inazuma Eleven Strikers 2012 Xtreme
## 7847 The Polar Express
## 7848 2002 FIFA World Cup
## 7849 Kan Colle Kai
## 7850 SpongeBob SquigglePants 3D
## 7851 Jampack: Summer 2003 (RP-T)
## 7852 Need for Speed: Shift 2 Unleashed
## 7853 Monster 4x4: Stunt Racer
## 7854 Frogger's Adventures 2: The Lost Wand
## 7855 Sudeki
## 7856 Rango: The Video Game
## 7857 The Amazing Spider-Man (Console Version)
## 7858 Boku no Natsuyasumi 4: Seitouchi Shounen Tanteidan, Boku to Himitsu no Chizu
## 7859 Hyperdevotion Noire: Goddess Black Heart
## 7860 Hexen
## 7861 Mace: The Dark Age
## 7862 AeroFighters Assault
## 7863 Puyo Puyo Sun 64
## 7864 Chou-Kuukan Night Pro Yakyuu King (weekly JP sales)
## 7865 Quake
## 7866 Sesame Street: Elmo's Number Journey
## 7867 Disney Magic World 2
## 7868 Squeeballs Party
## 7869 Tottadoo! Yoiko no Mujintou Seikatsu
## 7870 Where's Waldo? The Fantastic Journey
## 7871 Family Game Night 4: The Game Show
## 7872 Teenage Mutant Ninja Turtles 2: Battle Nexus
## 7873 Saints Row IV
## 7874 Fighter Within
## 7875 Barbie Horse Adventures: Riding Camp
## 7876 SSX Tricky
## 7877 Kenka Banchou 4: Ichinen Sensou
## 7878 Warhammer: Shadow of the Horned Rat
## 7879 Shadows of the Damned
## 7880 NBA 2K11
## 7881 Pro Yakyuu Team o Tsukurou!
## 7882 Warriors: Legends of Troy
## 7883 Jeopardy!
## 7884 ESPN International Track & Field
## 7885 Lunar Legend
## 7886 Conflict: Global Terror
## 7887 Valhalla Knights 3
## 7888 Tamagotchi Party On!
## 7889 Hisshou Pachinko*Pachi-Slot Kouryaku Series Vol. 5: CR Shinseiki Evangelion * Pachi-Slot Shinseiki Evangelion
## 7890 Brunswick Pro Bowling
## 7891 Shaun White Skateboarding
## 7892 Hulk
## 7893 The Heavy Rain and Beyond: Two Souls Collection
## 7894 Cabela's Survival: Shadows of Katmai
## 7895 Shaun White Skateboarding
## 7896 Boogie
## 7897 Gungrave
## 7898 Phantasy Star Universe
## 7899 Transworld Surf
## 7900 God Eater Resurrection
## 7901 Tenchu: Fatal Shadows
## 7902 Active Health with Carol Vorderman
## 7903 Escape The Museum
## 7904 The Legend of Spyro: A New Beginning
## 7905 International Soccer
## 7906 Sing4: The Hits Edition
## 7907 Jewel Master: Cradle of Athena
## 7908 Princess Maker: Yumemiru Yosei
## 7910 Big Air
## 7911 Shining Force II
## 7912 Gallop Racer
## 7913 Harry Potter and the Prisoner of Azkaban
## 7914 NASCAR Unleashed
## 7915 3rd Super Robot Wars Z Jigoku Hen
## 7916 Sudoku Gridmaster (JP sales)
## 7917 Dynasty Warriors Gundam
## 7918 Taiko no Tatsujin: Wii U Version!
## 7919 Monsters vs. Aliens
## 7920 CSI: Fatal Conspiracy
## 7921 College Slam
## 7922 Arcania: Gothic 4
## 7923 Mushroom Men: The Spore Wars
## 7924 Zumba Fitness Rush
## 7925 Pro Yaky? Spirits 4
## 7926 Pictionary
## 7927 SoulCalibur Legends
## 7928 Daigasso! Band Brothers
## 7929 Rise of the Kasai
## 7930 Thoroughbred Breeder
## 7931 F1 2011
## 7932 Momotarou Dentetsu World
## 7933 Nobunaga no Yabou: Souzou
## 7934 Doctor Who: Return to Earth
## 7935 The Munchables
## 7936 We Dance
## 7937 Chibi-Robo! Park Patrol
## 7938 Bolt
## 7939 Singstar: Ultimate Party
## 7940 Mathews Bowhunting
## 7941 3rd Super Robot Wars Z: Tengoku-Hen
## 7942 One Piece: Unlimited Adventure
## 7943 Remington Super Slam Hunting: North America
## 7944 Crash & Spyro Superpack
## 7945 Earth Defense Force: Insect Armageddon
## 7946 Face Training
## 7948 ThunderStrike 2
## 7949 Disney's Meet the Robinsons
## 7950 Call of Duty: World at War
## 7951 Pro Yaky? Spirits 2012
## 7952 Kuma-Tomo
## 7953 Super Real Mahjong P V
## 7954 Thomas the Tank Engine & Friends
## 7955 Grand Slam Tennis 2
## 7956 Penguin no Mondai X: Tenkuu no 7 Senshi
## 7957 The Scorpion King: Sword of Osiris
## 7958 Bubsy 3D
## 7959 Reel Fishing Paradise 3D
## 7960 NCAA Final Four 2001
## 7961 Farmtopia
## 7962 Robin Hood: Defender of the Crown
## 7963 SD Gundam GX
## 7964 R-Type Final
## 7965 Jackie Chan Adventures: Legend of the Dark Hand
## 7966 MotoGP
## 7967 Sega GT 2002
## 7968 Ty the Tasmanian Tiger 3: Night of the Quinkan
## 7969 WWE SmackDown vs. Raw 2009
## 7970 Pro Evolution Soccer 2014
## 7971 Samurai Warriors 2: Empires
## 7972 Blood Omen 2
## 7973 Jurassic: The Hunted
## 7974 J-League Pro Soccer Club o Tsukurou! 5
## 7975 Harry Potter: Quidditch World Cup
## 7976 Dance Central: Spotlight
## 7977 Little Battlers eXperience W
## 7978 Magical Starsign (US sales)
## 7979 Tekken Tag Tournament 2
## 7980 Hot Wheels: Battle Force 5
## 7981 Dragon Blade: Wrath of Fire
## 7982 La Pucelle: Tactics
## 7983 Phantasy Star Nova
## 7984 SBK X: Superbike World Championship
## 7985 Samurai Warriors: State of War
## 7986 Tiger Woods PGA Tour 07
## 7987 Call of Juarez
## 7988 Star Wars: The Clone Wars & Tetris Worlds
## 7989 The Bee Game
## 7990 EverQuest Online Adventures: Frontiers
## 7991 Cabela's Survival: Shadows of Katmai
## 7992 NBA Ballers: Chosen One
## 7993 WWE All Stars
## 7994 Treasures of the Deep
## 7995 Phantasy Star Online Ver. 2
## 7996 EyePet & Friends
## 7997 The Lord of the Rings: War in the North
## 7998 Major League Baseball 2K10
## 7999 Fight Club
## 8000 Hello Kitty: Birthday Adventures
## 8001 Syndicate
## 8002 Dance Dance Revolution: Disney Grooves
## 8003 Pure Futbol
## 8004 Harvest Moon: A Wonderful Life Special Edition
## 8005 Sports Illustrated for Kids: Football
## 8006 The Last Airbender
## 8007 Happy Cooking
## 8008 .hack//Quarantine Part 4: The Final Chapter
## 8009 Close Combat: First to Fight
## 8010 MotoGP 14
## 8011 Indiana Jones and the Emperor's Tomb
## 8012 NBA Live 08
## 8013 Buffy the Vampire Slayer: Chaos Bleeds
## 8014 Half-Minute Hero
## 8015 Rock Band Track Pack Volume 2
## 8016 Reel Fishing II
## 8017 Ringling Bros. and Barnum & Bailey Circus
## 8018 The Walking Dead: Season One
## 8019 Ty the Tasmanian Tiger
## 8020 Dead or Alive
## 8021 Driving Emotion Type-S
## 8022 Siren
## 8023 The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 8024 NARC
## 8025 Naruto Shippuden: Dragon Blade Chronicles
## 8026 Dynasty Warriors 8: Empires
## 8027 Super Robot Taisen J
## 8028 Evolve
## 8029 Nep League DS
## 8030 Ar tonelico 2: Melody of Metafalica
## 8031 de Blob 2
## 8032 Lips: Party Classics
## 8033 Casper: Friends Around the World
## 8034 Borderlands
## 8035 Jurassic Park III: Island Attack
## 8036 Chaotic: Shadow Warriors
## 8037 Ghostbusters: The Video Game
## 8038 GameBoy Wars
## 8039 Amplitude
## 8040 Alone in the Dark
## 8041 Company of Heroes: Anthology
## 8042 Shape Up
## 8043 Gauntlet: Seven Sorrows
## 8044 AirForce Delta Storm
## 8046 Monopoly Party
## 8047 Fear Effect 2: Retro Helix
## 8048 How to Train Your Dragon
## 8049 Remember Me
## 8050 International Superstar Soccer 2000 (JP weekly sales)
## 8051 Chocobo no Fushigi Dungeon for WonderSwan
## 8052 Klonoa: Door to Phantomile
## 8053 Vietcong: Purple Haze
## 8054 Hitman: HD Trilogy
## 8055 Atari Anniversary Advance
## 8056 Summer Athletics: The Ultimate Challenge
## 8057 Driver: San Francisco
## 8058 Metal Gear Ac!d 2
## 8059 Hatsune Miku and Future Stars: Project Mirai
## 8060 Let's TAP
## 8061 X-Men Origins: Wolverine
## 8062 TalkMan (Japan)
## 8063 Cabela's Adventure Camp
## 8064 LEGO Marvel's Avengers
## 8065 Bloody Roar: Primal Fury
## 8066 Shrek SuperSlam
## 8067 We Sing UK Hits
## 8068 Mega Man Soccer
## 8069 The Chronicles of Narnia: Prince Caspian
## 8070 ZhuZhu Puppies
## 8071 Rabbids Party Collection
## 8072 Trinity Universe
## 8073 Jewel Match
## 8074 FIFA Soccer 07
## 8075 Dungeon Travelers 2: The Royal Library & The Monster Seal
## 8076 Dying Light
## 8077 Vampire Savior: The Lord of Vampire
## 8078 Pokémon I Choose You / Squirtle Squad Game Boy Advance Video
## 8079 Super Robot Taisen UX
## 8080 Six Flags Fun Park
## 8081 Test Drive Off-Road Wide Open
## 8082 Guilty Gear Xrd: Sign
## 8083 Pro Yaky? Spirits 2011
## 8084 Ben 10 Ultimate Alien: Cosmic Destruction
## 8085 Dengeki Bunko Fighting Climax
## 8086 Battle Commander: Hachibushu Shura no Heihou
## 8088 Odin Sphere: Leifthrasir
## 8089 Bad Boys: Miami Takedown
## 8090 Jampack Vol. 1
## 8091 Spider-Man: Friend or Foe
## 8092 Mega Man X: Command Mission
## 8093 Tokyo Xtreme Racer DRIFT
## 8094 Moon
## 8095 FIFA Soccer 11
## 8096 LEGO Marvel Super Heroes
## 8097 Cabela's Big Game Hunter 2005 Adventures
## 8098 Disney Friends
## 8099 Sesame Street: Elmo's Letter Adventure
## 8100 Re-Volt
## 8101 Gokujou Parodius
## 8102 Hyperdimension Neptunia
## 8103 Gauntlet: Dark Legacy
## 8104 A.C.E.: Another Century's Episode 2
## 8105 Guitar Hero Live
## 8106 Shadow The Hedgehog
## 8107 Ridge Racer Unbounded
## 8108 Burnout Legends
## 8109 Horrid Henry: Missions of Mischief
## 8110 Batman: Vengeance
## 8111 Full Auto 2: Battlelines
## 8112 Soccer Tsuku Tokudai Gou: J-League Pro Soccer Club o Tsukurou
## 8113 The Adventures of Cookie & Cream
## 8114 Van Helsing
## 8115 Aliens: Colonial Marines
## 8116 Splatterhouse
## 8117 MindJack
## 8118 Dark Souls II
## 8119 Daigasso! Band Brothers P
## 8120 Gun
## 8121 World of Outlaws: Sprint Cars
## 8122 Marvel Super Hero Squad: Comic Combat
## 8123 SingStar Motown
## 8124 Cabela's Legendary Adventures
## 8125 F1 Challenge
## 8126 Transformers: Dark of the Moon
## 8127 Shadow Madness
## 8128 Tom Clancy's Ghost Recon: Future Soldier
## 8129 Tiger Woods PGA Tour 2004
## 8130 Aliens: Infestation
## 8131 Brink
## 8132 The Game of Life / Yahtzee / Payday
## 8133 American Chopper 2: Full Throttle
## 8134 Dynasty Warriors: Gundam 3
## 8135 FIFA 16
## 8136 Silent Hill 4: The Room
## 8137 Heavy Fire: Afghanistan
## 8138 Commandos 2: Men of Courage
## 8139 Doom (2016)
## 8140 Chuck E. Cheese's Party Games
## 8141 Pro Evolution Soccer 2013
## 8142 Pirates: Hunt For Blackbeard's Booty
## 8143 FIFA Soccer 2002
## 8144 Godzilla (2015)
## 8145 Race Pro
## 8146 Atari Anniversary Edition Redux
## 8147 Toukiden: The Age of Demons
## 8148 Fireblade
## 8149 Mercury Meltdown Revolution
## 8150 Disney's Tarzan Untamed
## 8151 WordJong Party
## 8152 Brunswick Circuit Pro Bowling
## 8153 Cabela's Dangerous Hunts 2009
## 8154 Velvet Assassin
## 8155 Ball Breakers
## 8156 Mobile Suit Gundam Seed Destiny: Generation of C.E.
## 8157 EyeToy: Groove
## 8159 Disgaea 4: A Promise Unforgotten
## 8160 Charlie and the Chocolate Factory
## 8161 Armored Core: Last Raven
## 8162 Tomb Raider: Underworld
## 8163 All Grown Up! Express Yourself
## 8164 College Hoops 2K7
## 8165 K-1 World Grand Prix
## 8166 Skate it
## 8167 Kidou Senshi Gundam: Senjou no Kizuna Portable
## 8169 Super Robot Taisen A Portable
## 8170 Juiced
## 8171 Looney Tunes: Back in Action
## 8172 Virtua Tennis
## 8173 Tales of the Tempest
## 8174 SimCity Creator (JP sales)
## 8175 Biohazard: Revival Selection
## 8176 Sonic Riders: Zero Gravity
## 8177 Driver: San Francisco
## 8178 UFC: Sudden Impact
## 8179 Shawn Johnson Gymnastics
## 8180 NBA Hoopz
## 8181 Captain America: Super Soldier
## 8182 TRON: Evolution
## 8183 Pac-Man World 3
## 8184 ESPN X Games Skateboarding
## 8185 Nancy Drew: The Hidden Staircase
## 8186 Brunswick Cosmic Bowling
## 8187 Star Wars: Battlefront II
## 8188 Speedball 2100
## 8189 LEGO Island 2: The Brickster's Revenge
## 8190 College Hoops 2K8
## 8191 FIFA 17
## 8192 Fancy Nancy: Tea Party Time!
## 8193 Backyard Basketball
## 8194 Madden NFL 09
## 8195 Scooby-Doo! Unmasked
## 8196 Summon Night 4
## 8197 Pro Yaky? Spirits 5
## 8198 NHL 2004
## 8199 Namco Museum: 50th Anniversary
## 8200 You Don't Know Jack
## 8201 Marvel Super Hero Squad: The Infinity Gauntlet
## 8202 NFL 2K2
## 8203 My French Coach
## 8204 Camp Rock: The Final Jam
## 8206 Castlevania Judgment
## 8207 Dead or Alive Paradise
## 8208 The Suffering: Ties That Bind
## 8209 Disney Sing It: Family Hits
## 8210 Ashes Cricket 2009
## 8211 EyeToy: Kinetic
## 8212 Petz: Horseshoe Ranch
## 8213 Army Men: Sarge's Heroes 2
## 8214 Stormrise
## 8215 Yu-Gi-Oh! Zexal World Duel Carnival
## 8216 Winning Eleven: Pro Evolution Soccer 2007
## 8217 Green Lantern: Rise of the Manhunters
## 8218 Monkey Island: Special Edition Collection
## 8219 Broken Sword: Shadows of the Templars - The Director's Cut
## 8220 The Wild Thornberrys: Animal Adventures
## 8221 MotoGP 10/11
## 8222 Jikkyou Powerful Pro Baseball 2016
## 8223 SEGA Bass Fishing Duel
## 8225 Hyperdimension Neptunia U: Action Unleashed
## 8226 Sports Illustrated for Kids: Baseball
## 8227 Fairytale Fights
## 8228 Mark Davis Pro Bass Challenge
## 8229 Rugrats: Royal Ransom
## 8230 Warriors of Might and Magic
## 8231 Open Season
## 8232 The Chronicles of Narnia: Prince Caspian
## 8233 Back to the Future: The Game
## 8234 Project Spark
## 8235 Backyard Sports Football: Rookie Rush
## 8236 Street Fighter: The Movie
## 8237 Lost in Blue 3
## 8238 World Championship Poker
## 8239 Global Defence Force
## 8240 Rapala Fishing Frenzy 2009
## 8241 Major League Baseball 2K6
## 8242 Major League Baseball 2K9
## 8243 SaGa 2: Hihou Densetsu - Goddess of Destiny
## 8244 Smash Court Tennis Pro Tournament
## 8245 The Cursed Crusade
## 8246 Super Robot Taisen L
## 8247 The Grim Adventures of Billy & Mandy
## 8248 NBA Inside Drive 2004
## 8249 The King of Fighters '97
## 8250 Dungeon Siege III
## 8251 Cabela's Big Game Hunter: Hunting Party
## 8252 Time Commando
## 8253 Professional Fisherman's Tour: Northern Hemisphere
## 8254 Iron Chef America: Supreme Cuisine
## 8255 Kekkaishi: Karasumori Ayakashi Kidan
## 8256 Gretzky NHL 2005
## 8257 FaceBreaker
## 8258 Squeeballs Party
## 8259 NCAA Football 09 All-Play
## 8260 Yakuza Zero: The Place of Oath
## 8261 The Hobbit
## 8262 The Secret World
## 8263 NHL 2K9
## 8264 X-Men: The Official Game
## 8265 True Crime: New York City
## 8266 Metal Arms: Glitch in the System
## 8267 PlayStation Move Heroes
## 8268 The Idolm@ster: Shiny Festa - Honey Sound / Funky Note / Groovy Tune
## 8269 Ice Age: Dawn of the Dinosaurs
## 8270 ESPN Final Round Golf 2002
## 8271 MDK2 Armageddon
## 8272 Exhibition Volume 02
## 8273 Watchmen: The End is Nigh - The Complete Experience
## 8274 Fight Night Round 2
## 8275 Sudoku Gridmaster
## 8276 Disney's Atlantis: The Lost Empire
## 8277 Power Pro Kun Pocket
## 8278 The King of Fighters '97
## 8279 Tamagotchi no Narikiri Challenge
## 8280 Goosebumps HorrorLand
## 8281 One Piece: Unlimited World Red
## 8282 Space Battleship Yamato: Harukanaru Hoshi Iscandar
## 8283 Sound Novel Evolution 1: Otogirisou Sosei-Hen
## 8284 Dementium: The Ward
## 8285 Psi-Ops: The Mindgate Conspiracy
## 8286 SWAT: Global Strike Team
## 8287 Despicable Me: The Game
## 8288 MX World Tour Featuring Jamie Little
## 8289 Goblin Commander: Unleash the Horde
## 8290 Hello Kitty: Happy Party Pals
## 8291 Ringling Bros. and Barnum & Bailey: Circus Friends
## 8292 Backyard NFL Football '09
## 8293 World Destruction League: Thunder Tanks
## 8294 Shin Megami Tensei IV: Final
## 8295 Age of Empires III: Complete Collection
## 8296 Finding Nemo: Escape to the Big Blue
## 8297 Backyard Baseball '10
## 8298 Resident Evil Director's Cut: Dual Shock Edition
## 8299 The Lord of the Rings: Aragorn's Quest
## 8300 Top Spin 2
## 8301 N3 II: Ninety-Nine Nights
## 8302 The King of Fighters '95
## 8303 RoadKill
## 8304 Hanjuku Eiyuu Tai 3D
## 8305 .hack//G.U. Vol.3//Redemption
## 8306 Chuck E. Cheese's Party Games
## 8307 Super Robot Taisen Compact 2 Dai-1-Bu
## 8308 Looney Tunes: Back in Action
## 8309 Tak: The Great Juju Challenge
## 8310 Macross Ultimate Frontier
## 8311 Cabela's Legendary Adventures
## 8312 Jillian Michaels Fitness Ultimatum 2011
## 8313 Pursuit Force: Extreme Justice
## 8315 Hunter: The Reckoning Redeemer
## 8316 The Rise of the Argonauts
## 8317 NHL 07
## 8318 Pro Evolution Soccer 2014
## 8319 Tokyo Xtreme Racer
## 8320 Fighter Maker
## 8321 Bee Movie Game
## 8322 Backyard NFL Football '10
## 8323 Professor Heinz Wolff's Gravity
## 8324 Thief: Deadly Shadows
## 8325 Buzz! Brain of the UK
## 8326 NBA 09: The Inside
## 8327 Transformers: Prime
## 8328 Batman Begins
## 8329 Transformer: Rise of the Dark Spark
## 8330 Glover
## 8331 Dragon Ball GT: Game Boy Advance Video Volume 1
## 8332 Luxor 3
## 8333 Bratz Kidz
## 8334 Fairytale Fights
## 8336 MotoGP 09/10
## 8337 Mahjong Fight Club
## 8338 World Driver Championship
## 8339 Bomberman 64: The Second Attack!
## 8340 Turok 3: Shadow of Oblivion
## 8341 Spawn: Armageddon
## 8342 Codename: Kids Next Door: Game Boy Advance Video Volume 1
## 8343 Zoo Hospital
## 8344 Pokémon Beach Blank-out Blastoise / Go West Young Meowth Game Boy Advance Video
## 8345 Time and Eternity
## 8346 Major League Baseball 2K9
## 8347 Gundam Assault Survive
## 8348 Disney TH!NK Fast: The Ultimate Trivia Showdown
## 8349 Fate/Stay Night [Réalta Nua]
## 8350 Disney's Home on the Range
## 8351 Sid Meier's Civilization IV
## 8352 Jikkyou Powerful Pro Yakyuu 2013
## 8353 Space Griffon VF-9
## 8354 Family Feud Decades
## 8355 NBA Live 16
## 8356 CSI: Fatal Conspiracy
## 8357 Solitaire Overload Plus
## 8358 .hack//G.U. Vol.1//Rebirth
## 8359 Gyakuten Saiban 3
## 8360 Tak: Mojo Mistake
## 8361 Gallop Racer 2001
## 8362 Nightmare Creatures II
## 8363 Marble Saga: Kororinpa
## 8364 Fuzion Frenzy 2
## 8365 Catwoman
## 8366 Monsters vs. Aliens
## 8367 Country Dance: All Stars
## 8368 Garfield: Lasagna World Tour
## 8369 Teenage Mutant Ninja Turtles: Game Boy Advance Video Volume 1
## 8370 Disney's Planes
## 8371 Bomberman Land
## 8372 Bomberman B-Daman
## 8373 Terminator 3: The Redemption
## 8374 World Destruction League: Thunder Tanks
## 8375 Beat Down: Fists of Vengeance
## 8376 Reloaded
## 8378 MotoGP 15
## 8379 SSX On Tour
## 8380 Hot Wheels: Beat That!
## 8381 G-Force
## 8382 James Bond 007: Everything or Nothing
## 8383 Naruto Shippuden: Ultimate Ninja 5
## 8384 Shrek Extra Large
## 8385 Final Fantasy V
## 8386 World Tour Soccer 2006
## 8387 Gunvalkyrie
## 8388 NickToons: Racing
## 8389 VR Golf '97
## 8390 Michael Jackson: The Experience 3D
## 8391 State of Emergency
## 8392 Digimon Story: Cyber Sleuth
## 8393 Off-World Interceptor Extreme
## 8394 Bakugan Battle Brawlers: Defenders of the Core
## 8395 Disney Golf
## 8396 The Naked Brothers Band: The Video Game
## 8397 Custom Robo Arena
## 8398 Clock Tower II: The Struggle Within
## 8399 Batman Beyond: Return of the Joker
## 8400 Surf's Up
## 8401 Jikkyou Powerful Pro Baseball 2016
## 8402 Mega Man Network Transmission
## 8403 I'm A Celebrity: Get Me Out of Here!
## 8404 Pursuit Force
## 8405 Densetsu no Stafi 4
## 8406 Shin Megami Tensei: Devil Summoner 2 - Raidou Kuzunoha vs. King Abaddon (JP sales)
## 8407 Naval Assault: The Killing Tide
## 8408 Tokimeki Memorial: Private Collection
## 8409 RC Revenge Pro
## 8410 Valkyria Chronicles
## 8411 Hellboy: The Science of Evil
## 8412 Backyard Wrestling: Don't Try This at Home
## 8413 Zoo Keeper
## 8414 Gauntlet: Dark Legacy
## 8415 Toukiden Kiwami
## 8416 Far East of Eden II: Manji Maru
## 8417 Lost Kingdoms
## 8418 WRC 2: FIA World Rally Championship
## 8419 Blood Bowl
## 8420 Matchbox Cross Town Heroes
## 8421 Wolfenstein 3D
## 8422 Nobunaga no Yabou: Tenshoki
## 8423 Learning to Spell
## 8424 Go, Diego, Go! Safari Rescue
## 8425 Super Power League
## 8426 Easy Piano
## 8427 Street Fighter Alpha 2
## 8428 Dragon Quest X
## 8429 Payday 2
## 8430 25 to Life
## 8431 Sumikko Gurashi: Koko ga Ochitsukundesu
## 8432 NASCAR '15
## 8433 TransFormers Animated: The Game
## 8434 Fracture
## 8435 Sega Superstars
## 8436 Midway Arcade Treasures
## 8437 Leisure Suit Larry: Magna Cum Laude
## 8438 Mousetrap / Operation / Simon
## 8439 Klonoa
## 8441 NBA 09: The Inside
## 8442 Spyro: Shadow Legacy
## 8443 Resident Evil
## 8444 Wildstar
## 8445 Dragon Ball: Fusions
## 8446 Apache: Air Assault
## 8447 TOEIC Test Training DS
## 8448 Jikkyou Powerful Pro Yakyuu 2014
## 8449 Senran Kagura: Estival Versus
## 8450 Itoi Shigesato no Bass Tsuri No. 1
## 8451 Cubivore: Survival of the Fittest
## 8452 The Sims 3: Seasons
## 8453 Anarchy Reigns
## 8454 FlatOut
## 8455 Project X Zone 2: Brave New World
## 8456 NCAA Basketball 09
## 8457 Bakugan Battle Brawlers: Defenders of the Core
## 8458 Mr. Do!'s Castle
## 8459 Death Trap
## 8460 Armor Ambush
## 8461 Parodius
## 8462 Thrillville: Off the Rails
## 8463 Hyperdimension Neptunia Victory
## 8464 Taz Wanted
## 8465 Mobile Suit Gundam: Extreme VS Force
## 8466 Sid Meier's Pirates!
## 8467 MLB 16: The Show
## 8468 Phantasy Star Online 2
## 8469 Vehicular Combat League presents Motor Mayhem
## 8470 PoPoLoCrois: Hajimari no Bouken
## 8471 Star Wars: Super Bombad Racing
## 8472 Hamster Heroes
## 8473 Hot Wheels Velocity X
## 8474 Ar Nosurge: Ode to an Unborn Star
## 8475 Chaotic: Shadow Warriors
## 8476 Leisure Suit Larry: Box Office Bust
## 8477 Alien Resurrection
## 8478 World Tour Soccer 2005
## 8479 Dungeon Siege: Throne of Agony
## 8480 Spider-Man: Web of Shadows - Amazing Allies Edition
## 8481 F1 2011
## 8482 Rio
## 8483 Gunslingers
## 8484 Create
## 8485 Lufia: Curse of the Sinistrals
## 8486 El Shaddai: Ascension of the Metatron
## 8487 ESPN College Hoops
## 8488 Thor: God of Thunder
## 8489 F1 Championship Season 2000
## 8490 Guilty Gear Judgment
## 8491 Pen 1 Grand Prix: Penguin no Mondai Special
## 8492 Clash of the Titans
## 8493 Around the World in 80 Days
## 8494 Robotech: Battlecry
## 8495 True Swing Golf
## 8496 Zapper: One Wicked Cricket!
## 8497 Bomberman Land
## 8498 Paws & Claws: Pet Resort
## 8499 Kya: Dark Lineage
## 8500 Dynasty Warriors 8: Xtreme Legends
## 8501 Curious George
## 8502 Monster Jam
## 8503 Medieval Games
## 8504 Stronghold 3
## 8505 The Amazing Spider-Man (Console Version)
## 8506 Kid Adventures: Sky Captain
## 8507 Lethal Skies II
## 8508 Doctor Lautrec and the Forgotten Knights
## 8509 Disney's American Dragon Jake Long: Attack of the Dark Dragon
## 8510 Godzilla Unleashed
## 8511 Kamaitachi no Yoru × 3
## 8512 Tom and Jerry: Infurnal Escape
## 8513 The Legend of Heroes VII: The Trail of Zero
## 8514 Warriors Orochi 3
## 8515 King's Field
## 8516 Hannah Montana: Rock Out the Show
## 8517 Let's Ride: Sunshine Stables
## 8518 World Stadium 4
## 8519 Midway Arcade Treasures 2
## 8520 Hot Wheels World Race
## 8521 San Goku Shi Taisen DS
## 8522 Kawa no Nushi Tsuri
## 8523 N2O: Nitrous Oxide
## 8524 Magic: The Gathering - Battlegrounds
## 8525 Heroes over Europe
## 8526 Dancing With The Stars
## 8527 Major League Baseball 2K12
## 8528 Pro Evolution Soccer 2015
## 8529 Bladestorm: Nightmare
## 8530 Otogirisou
## 8531 SD Gundam G Generation 3D
## 8532 Crash Tag Team Racing
## 8533 Grease Dance
## 8534 Ready 2 Rumble Revolution
## 8535 My Baby 3 & Friends
## 8536 NASCAR '14
## 8537 TimeSplitters: Future Perfect
## 8538 Midway Arcade Treasures 3
## 8539 Dr. Muto
## 8540 Beowulf: The Game
## 8541 Puzzle Quest: Galactrix
## 8542 DS Rakubiki Jiten
## 8543 SeaWorld Adventure Parks: Shamu's Deep Sea Adventure
## 8544 Fatal Frame II: Crimson Butterfly
## 8545 Angry Birds Trilogy
## 8546 Dewy's Adventure
## 8547 Shadow Man: 2econd Coming
## 8548 Yu-Gi-Oh! 5D's Tag Force 6
## 8549 NPPL: Championship Paintball 2009
## 8550 Dynasty Warriors 4
## 8551 Wakeboarding Unleashed Featuring Shaun Murray
## 8552 The Incredibles: Rise of the Underminer
## 8553 Jikkyou Powerful Pro Yakyuu 3 '97 Haru
## 8555 The BIGS
## 8556 Flushed Away
## 8557 Eragon
## 8558 Scarface: Money. Power. Respect.
## 8559 Summon Night EX-Thesis: Yoake no Tsubasa
## 8560 Pro Yaky? Spirits 3
## 8561 Silent Scope 3
## 8562 World Series of Poker: Tournament of Champions 2007 Edition
## 8563 NASCAR Heat 2002
## 8564 Namco Classic Fighter Collection
## 8565 International Superstar Soccer Deluxe
## 8566 TNA iMPACT!
## 8567 Intellivision Lives!
## 8568 Field Commander
## 8569 Robots
## 8570 Little League World Series Baseball 2009
## 8571 The King of Fighters XII
## 8572 Doctor Who: Evacuation Earth
## 8573 Murdered: Soul Suspect
## 8574 Ener-G: Dance Squad
## 8575 Our House
## 8576 SimEarth: The Living Planet
## 8577 Major League Baseball 2K11
## 8578 Sengoku Basara: Chronicle Heroes
## 8579 NBA 2K12
## 8580 The Wild Thornberrys: Chimp Chase
## 8581 Power Stakes
## 8582 Fighters Destiny
## 8583 Asteroids Hyper 64
## 8584 The Powerpuff Girls: Chemical X-Traction
## 8585 Jikkyou Powerful Pro Yakyuu Basic-han 2001
## 8586 Tom and Jerry in Fists of Furry
## 8587 Hydro Thunder
## 8588 Space Invaders
## 8589 Starcraft 64
## 8590 Destruction Derby 64
## 8591 Buck Bumble
## 8592 California Speed
## 8593 Wonder Project J2: Koruro no Mori no Josette
## 8594 Culdcept SAGA
## 8595 Take A Break's: Puzzle Master
## 8596 Dragon Ball: Origins 2
## 8597 Minna no DS Seminar: Kanpeki Kanji Ryoku
## 8598 Innocent Life: A Futuristic Harvest Moon
## 8599 The Crew
## 8600 Macross Ace Frontier
## 8601 Black & Bruised
## 8602 Sherlock Holmes vs. Jack the Ripper
## 8603 .hack//G.U. Vol.2//Reminisce (jp sales)
## 8604 Rapala Pro Fishing
## 8605 TimeShift
## 8606 Blitz: The League
## 8607 Scripps Spelling Bee
## 8608 MotionSports: Adrenaline
## 8609 Ener-G Horse Riders
## 8610 Time Hollow
## 8611 Farming Simulator 2013
## 8612 Rudolph the Red-Nosed Reindeer
## 8613 Shinobido 2: Tales of the Ninja
## 8614 SpongeBob's Truth or Square
## 8615 Ghost in the Shell: Stand Alone Complex
## 8616 Rondo of Swords (US sales)
## 8617 Bulletstorm
## 8618 Battle Soccer: Field no Hasha
## 8619 Shaun White Skateboarding
## 8620 MLB 11: The Show
## 8622 Amped 3
## 8623 Family Party: 30 Great Games Outdoor Fun
## 8624 FlatOut 2
## 8625 Naruto: Ultimate Ninja Heroes 2 - The Phantom Fortress
## 8626 FIFA Soccer 96
## 8627 Burger Island
## 8628 Dynasty Warriors 8
## 8629 NCAA Final Four 2001
## 8630 Tak and the Guardians of Gross
## 8631 Just Dance: Disney Party
## 8632 LEGO The Lord of the Rings
## 8633 Dengeki Bunko Fighting Climax
## 8634 J-League Jikkyou Winning Eleven 2000
## 8635 Eve: The Lost One
## 8636 Chessmaster: The Art of Learning
## 8637 Yu-Gi-Oh! 5D's: Duel Transer
## 8638 LEGO Legends of Chima: Laval's Journey
## 8639 Konami Krazy Racers
## 8640 Saturday Night Slam Masters
## 8641 Blitz: The League II
## 8642 F-Zero: GP Legend
## 8643 Racing Lagoon
## 8644 Victorious: Hollywood Arts Debut
## 8645 Mr. Driller 2
## 8646 Just Sing!
## 8647 Darksiders II
## 8648 Dragon's Lair Trilogy
## 8649 Trivial Pursuit: Bet You Know It
## 8650 Imagine: Ice Champions
## 8651 J-League Pro Soccer Club o Tsukurou! 6: Pride of J
## 8652 Nicktoons: MLB
## 8653 Sniper: Ghost Warrior
## 8654 Left Brain Right Brain: Use Both Hands Train Both Sides
## 8655 Rio
## 8656 Power Rangers Double Pack
## 8657 Mugen Souls
## 8658 Yakuza Kiwami
## 8659 Pachi-Slot Kanzen Kouryaku 3: Universal Koushiki Gaido Volume 3
## 8660 BCFX: The Black College Football Xperience, The Doug Williams Edition
## 8661 FIFA Soccer 97
## 8662 Saw II: Flesh & Blood
## 8663 Psychic Force
## 8664 Trigger Man
## 8665 Bomberman Land Touch! 2
## 8666 Michael Jackson: The Experience
## 8667 The Godfather: Blackhand Edition
## 8668 StarBlade α
## 8669 Kidou Senshi Gundam: Giren no Yabou - Axis no Kyoui
## 8670 Tiger Woods PGA Tour 2004
## 8671 Monster House
## 8672 Angry Birds Star Wars
## 8673 Backyard Sports: Sandlot Sluggers
## 8674 Guilty Gear Xrd: Sign
## 8675 Arcade Zone
## 8676 SpongeBob's Boating Bash
## 8677 7th Dragon III Code: VFD
## 8678 DiRT 3
## 8679 Culdcept
## 8680 Birds of Steel
## 8681 Rudolph the Red-Nosed Reindeer
## 8682 WWE '13
## 8683 MX 2002 Featuring Ricky Carmichael
## 8684 Halo Triple Pack
## 8685 Street Racer
## 8686 Bomberman
## 8687 NBA 2K3
## 8688 Arcana Heart
## 8689 NHL 2005
## 8690 World Soccer Winning Eleven 2010: Aoki Samurai no Chousen
## 8691 Infected
## 8692 Battlestar Galactica
## 8693 The Walking Dead: Season One
## 8694 Kingdom Hearts: Birth by Sleep - Final Mix
## 8695 Bust-A-Move Bash!
## 8696 Block Party
## 8697 Toriko: Gourmet Monsters!
## 8698 The Incredible Hulk: The Pantheon Saga
## 8699 Darksiders II
## 8700 Megamind: Ultimate Showdown
## 8701 The Idolm@ster 2
## 8702 Space Camp
## 8703 Imagine: Music Fest
## 8704 AC/DC LIVE: Rock Band Track Pack
## 8705 Senran Kagura: Sh?jo-tachi no Shinei
## 8706 Ultimate Spider-Man
## 8707 Fist of the North Star: Ken's Rage
## 8709 He-Man: Power of Grayskull
## 8710 WordJong
## 8711 Putty Squad
## 8712 Polaris SnoCross
## 8713 Wing Commander III: Heart of the Tiger
## 8714 Top Spin 4
## 8715 Prince of Persia: The Forgotten Sands
## 8716 Mat Hoffman's Pro BMX 2
## 8717 Muppet RaceMania
## 8718 Namco Museum Vol.5
## 8719 Courier Crisis
## 8720 Bleach: Dark Souls
## 8721 The Oregon Trail
## 8722 Digimon Battle Spirit 2
## 8723 Winning Post 3
## 8724 FIFA 06: Road to FIFA World Cup
## 8725 Driven
## 8726 F.E.A.R. 3
## 8727 de Blob 2
## 8728 Warhammer 40,000: Fire Warrior
## 8729 Hot Wheels: Battle Force 5
## 8730 James Noir's Hollywood Crimes
## 8731 Deadly Premonition
## 8732 Bomberman
## 8733 MTV Music Generator 2
## 8734 The Quest Trio
## 8735 Chaotic: Shadow Warriors
## 8736 Space Invaders Extreme
## 8737 Burnout 2: Point of Impact
## 8738 Paris-Dakar Rally
## 8739 All-Pro Football 2K8
## 8740 Dragon Ball Z: Harukanaru Densetsu (JP sales)
## 8741 Atelier Iris: Eternal Mana
## 8742 Blinx 2: Masters of Time & Space
## 8743 Stormrise
## 8744 NHL 2K10
## 8745 FIFA Street 2
## 8746 Tak: The Great Juju Challenge
## 8747 Deponia
## 8748 Harvest Moon: The Lost Valley
## 8749 Knockout Kings 2003
## 8750 NCAA Football 2004
## 8751 XGIII: Extreme G Racing
## 8752 NHL 17
## 8753 Jewel Quest Solitaire
## 8754 Metal Gear Solid V: Ground Zeroes
## 8755 Digimon World 4
## 8756 Cars: Race-O-Rama
## 8757 Disney's Story Studio: Disney's Mulan
## 8758 Klax
## 8759 Pressure Cooker
## 8760 Saturn Bomberman
## 8762 Jikkyou Powerful Pro Yakyuu Portable
## 8763 The Adventures of Tintin: The Game
## 8764 American Chopper
## 8765 Sonny with a Chance
## 8766 Murdered: Soul Suspect
## 8767 Farm Frenzy: Animal Country
## 8768 Kingdom Under Fire: Heroes
## 8769 Wolfenstein: The Old Blood
## 8770 The Terminator: Dawn of Fate
## 8771 Cartoon Network Collection: Game Boy Advance Video Special Edition
## 8772 Naruto Shippuden: Legends: Akatsuki Rising
## 8773 Scooby-Doo! Unmasked
## 8774 Streak: Hoverboard Racing
## 8775 Samurai Warriors: Katana
## 8776 Project Sylpheed: Arc of Deception
## 8777 Enthusia Professional Racing
## 8778 NCAA GameBreaker 2001
## 8779 Get On Da Mic
## 8780 Heroes of Mana
## 8781 Jurassic: The Hunted
## 8782 Army Men: Sarge's War
## 8783 Horse Life Adventures
## 8784 Amagami
## 8785 Ice Age 2: The Meltdown
## 8786 Jikkyou Powerful Pro Yakyuu 2009
## 8787 Blazing Angels 2: Secret Missions of WWII
## 8788 Bigfoot: Collision Course
## 8789 Marvel Super Hero Squad: The Infinity Gauntlet
## 8790 Kidou Senkan Nadesico
## 8791 Tears to Tiara II: Heir of the Overlord
## 8792 Frogger's Adventures: The Rescue
## 8793 The Incredibles: Rise of the Underminer
## 8794 Darksiders
## 8795 The Secret Saturdays: Beasts of the 5th Sun
## 8796 Countdown: The Game
## 8797 Active Life Explorer
## 8798 MLB Power Pros 2008
## 8799 The Fairly Odd Parents: Clash with the Anti-World
## 8800 Theatrhythm Dragon Quest
## 8801 Major League Baseball 2K10
## 8802 Naruto: Powerful Shippuden
## 8803 Disney's The Lion King: Simba's Mighty Adventure
## 8804 Family Party: Fitness Fun
## 8805 Thor: God of Thunder
## 8806 Fantastic Four: Rise of the Silver Surfer
## 8807 Metal Slug Anthology
## 8808 GoldenEye 007 (2010)
## 8809 Jikkyou Powerful Pro Yakyuu 2012
## 8810 All Japan Pro Wrestling featuring Virtua
## 8811 Rudra no Hihou
## 8812 Gundam Breaker 2
## 8813 Prince of Persia: The Sands of Time
## 8814 Cake Mania: In The Mix!
## 8815 Zoids: Battle Legends
## 8816 World Series Baseball 2K3
## 8817 Serious Sam
## 8818 Kowloon's Gate
## 8819 Killer7
## 8820 Kingdom of Paradise
## 8821 Hidden Mysteries: Salem Secrets - Witch Trials of 1692
## 8822 NBA Street Homecourt
## 8823 The Sims Medieval: Pirates and Nobles
## 8824 The Cursed Crusade
## 8825 Super Monkey Ball Adventure
## 8826 Kids Learn Math: A+ Edition
## 8827 FIFA Soccer 2002
## 8828 Build-A-Bear Workshop: Welcome to Hugsville
## 8829 Street Fighter Anniversary Collection
## 8830 Final Fantasy XI: Vana'diel Collection 2008
## 8831 Suzumiya Haruhi no Yakusoku
## 8832 Shadow Ops: Red Mercury
## 8833 Indigo Prophecy
## 8834 Mind Zero
## 8835 World League Soccer
## 8836 NBA ShootOut 2001
## 8837 Earth Defense Force 2025
## 8838 Spider-Man: Friend or Foe
## 8839 Ultimate Board Game Collection
## 8840 Syndicate
## 8841 Samurai Shodown Anthology
## 8842 NBA 09: The Inside
## 8843 Musashi: Samurai Legend
## 8844 Saint Seiya: Soldiers' Soul
## 8845 Terraria
## 8846 Castlevania: Lords of Shadow - Mirror of Fate
## 8847 3rd Super Robot Wars Z: Tengoku-Hen
## 8848 Fantasia: Music Evolved
## 8849 Pokémon: Johto Photo Finish: Game Boy Advance Video
## 8850 F1 2001
## 8851 The Legend of Heroes: Trails of Cold Steel II
## 8852 Top Gun: Combat Zones
## 8853 J-League Victory Goal
## 8854 Bakugan Battle Brawlers: Defenders of the Core
## 8855 Oreshika: Tainted Bloodlines
## 8856 White Knight Chronicles: Origins
## 8857 Return to PopoloCrois: A Story of Seasons Fairytale
## 8858 Spongebob Squarepants / Fairly Odd Parents Double Pack
## 8859 History Civil War: Secret Missions
## 8860 NHL 09
## 8861 Mirror's Edge Catalyst
## 8862 Derby Stallion 64
## 8863 Doraemon 3: Nobi Dai no Machi SOS!
## 8864 Space Station Silicon Valley
## 8865 Dark Rift
## 8866 Tokyo Xanadu
## 8867 All-Star Baseball 2003
## 8868 Burger Island
## 8869 Petz: Dogz Talent Show
## 8870 T'ai Fu: Wrath of the Tiger
## 8871 Rocky
## 8872 Ford Racing 2
## 8873 Odin Sphere: Leifthrasir
## 8874 Sam & Max: Season One
## 8875 Virtua Tennis 4
## 8876 Tetris Attack
## 8877 Candace Kane's Candy Factory
## 8878 BloodRayne 2
## 8879 Hot Wheels: Beat That!
## 8880 Soldier of Fortune: Payback
## 8881 Jaws Unleashed
## 8882 Pro Yaky? Spirits 6
## 8883 Star Trek: Voyager Elite Force
## 8884 X-Men: The Official Game
## 8885 Brain Boost: Gamma Wave
## 8886 Scarface: The World is Yours
## 8887 Rock Band: Metal Track Pack
## 8888 Chessmaster II
## 8889 All-Star Baseball 2003
## 8890 Scooby-Doo! Mystery Mayhem
## 8891 Winning Post 4
## 8892 Major League Baseball 2K13
## 8893 DreamWorks Super Star Kartz
## 8894 Pro Baseball Spirits 2015
## 8895 187: Ride or Die
## 8896 Curious George
## 8897 Strawberry Shortcake: Game Boy Advance Video Volume 1
## 8898 Armored Core: For Answer
## 8899 Geist
## 8901 Cardinal Syn
## 8902 Charm Girls Club: Pajama Party
## 8903 Street Fighter Alpha 3
## 8904 The Wizard of Oz: Beyond The Yellow Brick Road
## 8905 Mobile Suit Gundam Side Story III: Sabakareshi Mono
## 8906 Ridge Racer DS
## 8907 Warriors Orochi 3
## 8908 Nancy Drew: The White Wolf of Icicle Creek
## 8909 Super Street Fighter II
## 8910 Metal Gear Solid: Peace Walker HD Edition
## 8911 Battle Stadium D.O.N
## 8912 No.1 Muscle Ranking - Kinniku Banzuke Vol. 2: Aratanarugenkai Enochousen!
## 8913 Brain Boost: Beta Wave
## 8914 Power Pro Kun Pocket 9
## 8915 Rubik's World
## 8916 Gallop & Ride!
## 8917 Shenmue II
## 8918 Major League Baseball 2K8
## 8919 Capcom Classics Collection
## 8920 Fugitive Hunter: War on Terror
## 8921 The Incredible Hulk: Ultimate Destruction
## 8922 Prince of Persia: The Two Thrones
## 8923 Ore no Imouto ga Konna ni Kawaii wake ga Nai Portable
## 8924 Baseball Blast!
## 8925 Pac-Man World 3
## 8926 The Walking Dead: Season Two
## 8927 Harvest Moon: Hero of Leaf Valley
## 8928 Phantasy Star Online Episode I & II
## 8929 F1 2012
## 8931 Rayman Raving Rabbids
## 8932 Kung-Fu: High Impact
## 8933 SNK Arcade Classics Vol. 1
## 8934 Darkstalkers Chronicle: The Chaos Tower
## 8935 NHL 2K10
## 8936 Batman Begins
## 8937 Toy Story Racer
## 8938 Yakuza: Ishin
## 8939 F1 2011
## 8940 Disney's Donald Duck: Goin' Quackers
## 8941 Mobile Suit Gundam: Perfect One Year War
## 8942 Galerians
## 8943 Crash: Twinsanity
## 8944 DrumMania
## 8945 Yu-Gi-Oh! Nightmare Troubadour (US sales)
## 8946 Code:Realize - Sousei no Himegimi
## 8947 Hoppechan: Tsukutte! Asonde! Punipuni Town!!
## 8948 Deus Ex: Mankind Divided
## 8949 Arena Football
## 8950 Tamagotchi no Narikiri Channel
## 8951 Power Pro Kun Pocket 1+2
## 8952 Rayman Origins
## 8953 Thor: God of Thunder
## 8954 Medal of Honor: Infiltrator
## 8955 Risen 2: Dark Waters
## 8956 Blazing Dragons
## 8957 Geometry Wars: Galaxies
## 8958 Super Monkey Ball Deluxe
## 8959 Shin Megami Tensei: Devil Summoner - Soul Hackers
## 8960 Shin Chan: ¡Aventuras de Cine!
## 8961 Alien: Isolation
## 8962 High Velocity Bowling
## 8963 Tamagotchi Collection
## 8964 Pac-Man Party 3D
## 8965 NewU Fitness First Mind Body, Yoga & Pilates Workout
## 8966 Backyard Sports: Sandlot Sluggers
## 8967 Turbo Prop Racing
## 8968 Barbie Superpack: Secret Agent / Groovy Games
## 8969 Tom Clancy's Ghost Recon
## 8970 Dance Dance Revolution (North America)
## 8971 Bakugan Battle Brawlers: Defenders of the Core
## 8972 Mad Dash Racing
## 8973 Dreamworks 2-in-1 Party Pack
## 8974 Summon Night 5
## 8975 MotoGP 2: Ultimate Racing Technology
## 8976 Black * Rock Shooter: The Game
## 8977 Travel Games For Dummies
## 8978 BMX XXX
## 8979 SafeCracker: The Ultimate Puzzle Adventure
## 8980 Tiger Woods PGA Tour
## 8981 Dragon Ball Z: Idainaru Dragon Ball Densetsu
## 8982 Sonic Advance & Sonic Pinball Party Combo Pack
## 8983 Boktai: The Sun is in Your Hand
## 8984 Cars: Mater-National Championship
## 8985 Making History: The Great War
## 8986 Drawn to Life Collection
## 8987 Guilty Gear X2 #Reload
## 8988 Wizardry VII: Gadeia no Houshu
## 8989 Dynasty Warriors 8: Xtreme Legends
## 8990 Moshi Monsters: Katsuma Unleashed
## 8991 Elf: The Movie
## 8992 Metal Slug 7
## 8993 MLB SlugFest 20-03
## 8994 Tamagotchi no Appare! Niji Venture
## 8995 Grabbed by the Ghoulies
## 8996 Ys: The Oath in Felghana
## 8997 Shadow Hearts: From The New World
## 8998 Mega Man Powered Up
## 8999 CSI: 3 Dimensions of Murder
## 9000 Barbarian
## 9001 QuickSpot
## 9002 Deception IV: Blood Ties
## 9003 Tennis no Oji-Sama: Aim at The Victory!
## 9004 L.A. Rush
## 9005 Lunar 2: Eternal Blue(sales, but wrong system)
## 9006 Where the Wild Things Are
## 9007 Pipe Dreams 3D
## 9008 Derby Stallion Gold
## 9009 Adventure Time: Explore the Dungeon Because I Don't Know!
## 9010 Lost Dimension
## 9011 Fox Sports Golf '99
## 9012 Jurassic: The Hunted
## 9013 Power Rangers: Super Legends
## 9014 Sakura Wars GB
## 9015 Shining Force CD
## 9016 Rayman 3
## 9017 Fatal Frame
## 9018 The Fifth Element
## 9019 Kung Fu Panda 2
## 9020 Fast Food Panic
## 9021 Diner Dash: Flo on the Go
## 9022 Adrenalin Misfits
## 9023 Okaeri! Chibi-Robo! Happy Richie Oosouji
## 9024 Wild ARMs 4
## 9025 Haunted House
## 9026 Ratatouille
## 9027 G.I. Joe: The Rise of Cobra
## 9028 Casper: Spirit Dimensions
## 9029 Super Robot Taisen OG Saga: Endless Frontier (JP sales)
## 9030 Sengoku Musou 3 Empires
## 9031 Dream Pinball 3D
## 9032 Thunder Truck Rally
## 9033 Dishonored
## 9034 Klonoa: Empire of Dreams
## 9035 G.I. Joe: The Rise of Cobra
## 9036 Dragon Age: Origins - Ultimate Edition
## 9037 Balloon Pop
## 9038 Disney Infinity 2.0: Marvel Super Heroes
## 9039 Iron & Blood
## 9040 Asphalt: Urban GT 2
## 9041 Pinball Hall of Fame: The Gottlieb Collection
## 9042 Second Sight
## 9043 Spider-Man: Edge of Time
## 9044 Monster House
## 9045 Phantom Brave
## 9046 Just Cause
## 9047 ArmA II
## 9048 Championship Motocross 2001 featuring Ricky Carmichael
## 9049 Kenka Banchou 5: Otoko no Housoku
## 9050 Legend of the Guardians: The Owls of Ga'Hoole
## 9051 Doshin the Giant
## 9052 Shrek 2 and Shark Tale 2-in-1 Pack
## 9053 Star Ocean: Blue Sphere
## 9054 Mojo!
## 9055 Destroy All Humans! Big Willy Unleashed
## 9056 Age of Empires: Collector's Edition
## 9057 Ford Racing Off Road
## 9058 Kamen Rider Ryuki
## 9059 Front Mission Alternative
## 9060 World Championship Poker: Howard Lederer - All In
## 9061 FIFA Soccer 2005
## 9062 Cave Story 3D
## 9063 The Orange Box
## 9064 Super Dodgeball Brawlers
## 9065 Victorious Boxers: Revolution
## 9066 Record of Agarest War 2
## 9067 SBK 2011: FIM Superbike World Championship
## 9068 Power Stone
## 9069 Jonny Moseley Mad Trix
## 9070 Monster Lab
## 9071 Uta no * Prince-Sama: Repeat
## 9072 Senran Kagura Burst: Guren no Sh?jo-tachi
## 9073 MTV Music Generator 3: This Is the Remix
## 9074 Cake Mania 3
## 9075 .hack//Link
## 9076 Terminator 3: Rise of the Machines
## 9077 Star Wars: Knights of the Old Republic
## 9078 SSX On Tour
## 9079 NCAA College Basketball 2K3
## 9080 Class of Heroes
## 9081 Yogi Bear: The Video Game
## 9083 The Legend of Heroes II: Prophecy of the Moonlight Witch
## 9084 Cranium Kabookii
## 9085 Hero's Saga Laevatein Tactics
## 9086 Doom
## 9087 Gundam Breaker 2
## 9088 TRINITY: Souls of Zill O'll
## 9089 Mary-Kate and Ashley: Winners Circle
## 9090 PaRappa The Rapper 2
## 9091 Hexyz Force
## 9092 OutRun 2
## 9093 Okami
## 9094 Marvel vs. Capcom 2: New Age of Heroes
## 9095 Hitman: Blood Money
## 9096 Soukaigi
## 9097 Naruto Shippuden: Ninja Destiny 3
## 9098 Xevious 3D/G+
## 9099 Pipe Mania
## 9100 Gretzky NHL 06
## 9101 Shonen Jump's Shaman King: Master of Spirits
## 9102 PANGYA: Fantasy Golf
## 9103 NFL Blitz 20-03
## 9104 Sumikko Gurashi: Omise Hajimerundesu
## 9105 Pirates: The Legend of Black Kat
## 9106 Fur Fighters: Viggo's Revenge
## 9107 Krull
## 9108 Yu-Gi-Oh! Monster Capture GB
## 9109 Risen
## 9110 Top Spin 3
## 9111 Zapper: One Wicked Cricket!
## 9112 The Da Vinci Code
## 9113 Watch Dogs
## 9114 Mr. Driller: Drill Spirits
## 9115 Arctic Tale
## 9116 Scooby-Doo! Night of 100 Frights
## 9117 MX vs. ATV Reflex
## 9118 Anno 1701: Dawn of Discovery
## 9119 Chicken Shoot
## 9120 Dead to Rights
## 9121 Sphinx and the Cursed Mummy
## 9122 Cabela's Outdoor Adventures (2009)
## 9123 T.R.A.G. - Tactical Rescue Assault Group: Mission of Mercy
## 9124 Naruto RPG 2: Chidori vs Rasengan
## 9125 Destruction Derby Raw
## 9126 Project V6
## 9127 Farming Simulator 2012
## 9128 NFL Head Coach 09
## 9129 World Tour Soccer 2003
## 9130 Akiba's Trip
## 9131 Bravo Air Race
## 9132 Onimusha Essentials
## 9133 Blazing Angels 2: Secret Missions of WWII
## 9134 Gundam: The Battle Master
## 9135 Spyro: A Hero's Tail
## 9136 ¡Shin Chan Flipa en colores!
## 9137 Just Cause 3
## 9138 Eternal Poison
## 9139 Lord of the Rings: Tactics
## 9140 X-Blades
## 9141 Gretzky NHL 06
## 9142 Gungrave: Overdose
## 9143 Kidou Senshi Gundam: Shin Gihren no Yabou
## 9144 How to Train Your Dragon
## 9145 Your Shape: Fitness Evolved 2013
## 9146 My Fitness Coach: Club
## 9147 NBA ShootOut 2002
## 9148 SingStar Vol. 3
## 9149 The Granstream Saga
## 9150 Scene It? Bright Lights! Big Screen!
## 9151 Holy Invasion of Privacy, Badman! What Did I Do to Deserve This?
## 9153 Micro Machines 64 Turbo
## 9154 Bassmasters 2000
## 9155 Baldur's Gate: Dark Alliance
## 9156 Bio FREAKS
## 9157 Eternal Eyes
## 9158 Injustice: Gods Among Us
## 9159 Fate/Unlimited Codes
## 9160 Atari's Greatest Hits: Volume 1
## 9161 The Operative: No One Lives Forever
## 9162 International Cricket 2010
## 9163 Epidemic
## 9164 Monster House
## 9165 Dead or Alive 2
## 9166 Buck Fever
## 9167 NCAA Basketball Final Four 97
## 9168 Ecco the Dolphin: Defender of the Future
## 9169 Heroes over Europe
## 9170 The Bombing Islands
## 9171 Earth Defense Force 2: Invaders from Planet Space
## 9173 Monster Jam
## 9174 Robots
## 9175 Gyakuten Saiban 2
## 9176 Godzilla: Save the Earth
## 9177 Skylanders Giants
## 9178 Eragon
## 9179 Micro Machines
## 9180 Detective Barbie: The Mystery Cruise
## 9181 Jim Henson's the Muppets: On With the Show!
## 9182 Desire
## 9183 Valhalla Knights: Eldar Saga
## 9184 Lips: I Love The 80s
## 9185 Monster Hunter Diary: Poka Poka Airou Village DX
## 9186 Frank Thomas Big Hurt Baseball
## 9187 Tim Burton's The Nightmare Before Christmas: The Pumpkin King
## 9188 Power Pro Kun Pocket 8
## 9189 Sid Meier's Pirates!
## 9190 Enclave
## 9191 Bottom of the 9th
## 9192 Pro Yaky? Spirits 2014
## 9193 Dino Crisis 3
## 9194 Syberia
## 9195 Zoobles! Spring to Life!
## 9196 NFL Blitz 20-03
## 9197 The King of Fighters '94 (CD)
## 9198 The Walking Dead: Season Two
## 9199 Master Jin Jin's IQ Challenge
## 9200 The Darkness II
## 9201 Create
## 9202 Karaoke Revolution Glee: Volume 3
## 9203 Barbie Explorer
## 9204 Rango: The Video Game
## 9205 Disney's Chicken Little
## 9206 Power Gig: Rise of the SixString
## 9207 Transformers: Prime
## 9208 Agile Warrior F-111X
## 9209 NCIS
## 9210 Jikkyou Powerful Pro Yakyuu Wii
## 9211 Reality Fighters
## 9212 Dynasty Warriors 7: Empires
## 9213 Cabela's African Safari
## 9214 Ben 10 Galactic Racing
## 9215 College Hoops 2K8
## 9216 Super Puzzle Fighter II Turbo
## 9217 Ninjatown
## 9218 Star Wars: Jedi Power Battles
## 9219 Ultimate Muscle - The Kinnikuman Legacy: Legends vs New Generation
## 9220 Hard Rock Casino
## 9221 Space Venus starring Morning Musume
## 9222 To Heart
## 9223 Wild ARMs XF
## 9224 Doukyuusei
## 9225 RockMan & Forte
## 9226 Persona 4: Arena Ultimax
## 9227 NBA 2K13
## 9228 Science Papa
## 9229 Yu-Gi-Oh! Nightmare Troubadour (JP sales)
## 9230 MySims Collection
## 9231 Cities: Skylines
## 9232 Football Manager 2012
## 9233 Ape Escape Academy (jp sales)
## 9234 FIFA 06 Soccer
## 9235 Rayman Arena
## Platform Year Genre Publisher NA_Sales
## 1 Wii 2006 Sports Nintendo 41.49
## 2 NES 1985 Platform Nintendo 29.08
## 3 Wii 2008 Racing Nintendo 15.85
## 4 Wii 2009 Sports Nintendo 15.75
## 5 GB 1996 Role-Playing Nintendo 11.27
## 6 GB 1989 Puzzle Nintendo 23.20
## 7 DS 2006 Platform Nintendo 11.38
## 8 Wii 2006 Misc Nintendo 14.03
## 9 Wii 2009 Platform Nintendo 14.59
## 10 NES 1984 Shooter Nintendo 26.93
## 11 DS 2005 Simulation Nintendo 9.07
## 12 DS 2005 Racing Nintendo 9.81
## 13 GB 1999 Role-Playing Nintendo 9.00
## 14 Wii 2007 Sports Nintendo 8.94
## 15 Wii 2009 Sports Nintendo 9.09
## 16 X360 2010 Misc Microsoft Game Studios 14.97
## 17 PS3 2013 Action Take-Two Interactive 7.01
## 18 PS2 2004 Action Take-Two Interactive 9.43
## 19 SNES 1990 Platform Nintendo 12.78
## 20 DS 2005 Misc Nintendo 4.75
## 21 DS 2006 Role-Playing Nintendo 6.42
## 22 GB 1989 Platform Nintendo 10.83
## 23 NES 1988 Platform Nintendo 9.54
## 24 X360 2013 Action Take-Two Interactive 9.63
## 25 PS2 2002 Action Take-Two Interactive 8.41
## 26 GBA 2002 Role-Playing Nintendo 6.06
## 27 DS 2010 Role-Playing Nintendo 5.57
## 28 DS 2005 Puzzle Nintendo 3.44
## 29 PS2 2001 Racing Sony Computer Entertainment 6.85
## 30 X360 2011 Shooter Activision 9.03
## 31 GB 1998 Role-Playing Nintendo 5.89
## 32 X360 2010 Shooter Activision 9.67
## 33 3DS 2013 Role-Playing Nintendo 5.17
## 34 PS4 2015 Shooter Activision 5.77
## 35 PS3 2012 Shooter Activision 4.99
## 36 X360 2012 Shooter Activision 8.25
## 37 X360 2009 Shooter Activision 8.52
## 38 PS3 2011 Shooter Activision 5.54
## 39 PS2 2001 Action Take-Two Interactive 6.99
## 40 Wii 2008 Fighting Nintendo 6.75
## 41 PS3 2010 Shooter Activision 5.98
## 42 DS 2005 Simulation Nintendo 2.55
## 43 3DS 2011 Racing Nintendo 4.74
## 44 X360 2007 Shooter Microsoft Game Studios 7.97
## 45 PS4 2014 Action Take-Two Interactive 3.80
## 46 DS 2009 Action Nintendo 4.40
## 47 N64 1996 Platform Nintendo 6.91
## 48 PS2 2004 Racing Sony Computer Entertainment 3.01
## 49 Wii 2007 Platform Nintendo 6.16
## 50 3DS 2014 Role-Playing Nintendo 4.23
## 51 GB 1992 Adventure Nintendo 6.16
## 52 X360 2008 Action Take-Two Interactive 6.76
## 53 PS 1997 Racing Sony Computer Entertainment 4.02
## 54 3DS 2011 Platform Nintendo 4.89
## 55 PS3 2010 Racing Sony Computer Entertainment 2.96
## 56 PS3 2009 Shooter Activision 4.99
## 57 PS3 2008 Action Take-Two Interactive 4.76
## 58 SNES 1993 Platform Nintendo 5.99
## 59 GBA 2004 Role-Playing Nintendo 4.34
## 60 DS 2004 Platform Nintendo 5.08
## 61 Wii 2011 Misc Ubisoft 6.05
## 62 X360 2013 Shooter Activision 6.72
## 63 X360 2010 Shooter Microsoft Game Studios 7.03
## 64 N64 1996 Racing Nintendo 5.55
## 65 3DS 2012 Platform Nintendo 3.66
## 66 X360 2012 Shooter Microsoft Game Studios 6.63
## 67 PS 1997 Role-Playing Sony Computer Entertainment 3.01
## 68 PS3 2013 Shooter Activision 4.09
## 69 Wii 2010 Misc Ubisoft 5.84
## 70 PS 1999 Racing Sony Computer Entertainment 3.88
## 71 X360 2007 Shooter Activision 5.91
## 72 SNES 1994 Platform Nintendo 4.36
## 73 X360 2013 Misc Microsoft Game Studios 5.58
## 74 3DS 2012 Simulation Nintendo 2.01
## 75 DS 2007 Misc Nintendo 4.46
## 76 X360 2011 Role-Playing Bethesda Softworks 5.03
## 77 SNES 1992 Racing Nintendo 3.54
## 78 PS4 2015 Sports Electronic Arts 1.11
## 79 Wii 2010 Misc Nintendo 1.79
## 80 XB 2004 Shooter Microsoft Game Studios 6.82
## 81 Wii 2007 Misc Nintendo 3.81
## 82 DS 2012 Role-Playing Nintendo 2.91
## 83 PS3 2012 Action Electronic Arts 1.06
## 84 PC 2009 Simulation Electronic Arts 0.98
## 85 N64 1997 Shooter Nintendo 5.80
## 86 Wii 2007 Sports Sega 2.58
## 87 PS2 2001 Role-Playing Sony Computer Entertainment 2.91
## 88 PS 1999 Role-Playing SquareSoft 2.28
## 89 DS 2008 Role-Playing Nintendo 2.82
## 90 2600 1982 Puzzle Atari 7.28
## 91 PSP 2005 Action Take-Two Interactive 2.90
## 92 Wii 2010 Platform Nintendo 3.66
## 93 PS4 2015 Shooter Electronic Arts 2.93
## 94 PS4 2014 Shooter Activision 2.80
## 95 N64 1998 Action Nintendo 4.10
## 96 PS 1997 Platform Sony Computer Entertainment 3.78
## 97 NES 1988 Platform Nintendo 5.39
## 98 3DS 2014 Fighting Nintendo 3.24
## 99 X360 2008 Shooter Activision 4.79
## 100 X360 2011 Shooter Electronic Arts 4.46
## 101 Wii 2006 Action Nintendo 3.83
## 102 XOne 2015 Shooter Activision 4.52
## 103 Wii 2009 Misc Ubisoft 3.51
## 104 PS3 2011 Shooter Electronic Arts 2.85
## 105 PS2 2003 Racing Electronic Arts 3.27
## 106 PS 1998 Fighting Sony Computer Entertainment 3.27
## 107 PS 1998 Platform Sony Computer Entertainment 3.68
## 108 GC 2001 Fighting Nintendo 4.41
## 109 WiiU 2014 Racing Nintendo 3.13
## 110 PS4 2015 Role-Playing Bethesda Softworks 2.47
## 111 GC 2003 Racing Nintendo 4.12
## 112 Wii 2012 Misc Ubisoft 4.14
## 113 PS3 2013 Sports Electronic Arts 0.78
## 114 PS2 2004 Racing Electronic Arts 2.71
## 115 PS2 2002 Shooter Electronic Arts 2.93
## 116 PS3 2011 Action Sony Computer Entertainment 2.77
## 117 PS 1996 Platform Sony Computer Entertainment 3.23
## 118 Wii 2010 Sports 505 Games 3.50
## 119 X360 2008 Shooter Microsoft Game Studios 4.15
## 120 PS3 2009 Action Sony Computer Entertainment 3.27
## 121 PS3 2007 Shooter Activision 3.10
## 122 PS3 2011 Sports Electronic Arts 0.84
## 123 DS 2005 Misc Nintendo 1.67
## 124 PS3 2010 Action Take-Two Interactive 2.79
## 125 PS4 2014 Sports Electronic Arts 0.79
## 126 Wii 2010 Platform Nintendo 3.25
## 127 PS3 2011 Role-Playing Bethesda Softworks 2.55
## 128 NES 1986 Action Nintendo 3.74
## 129 PS3 2012 Action Ubisoft 2.64
## 130 XB 2001 Shooter Microsoft Game Studios 4.98
## 131 GBA 2004 Role-Playing Nintendo 2.57
## 132 PS2 2002 Role-Playing Sony Computer Entertainment 3.64
## 133 GB 2000 Role-Playing Nintendo 2.55
## 134 X360 2009 Shooter Microsoft Game Studios 4.34
## 135 X360 2010 Action Take-Two Interactive 3.70
## 136 GC 2002 Platform Nintendo 4.01
## 137 SNES 1992 Fighting Capcom 2.47
## 138 PC 2004 Role-Playing Activision 0.07
## 139 PS 1999 Action GT Interactive 3.11
## 140 X360 2010 Sports Microsoft Game Studios 3.92
## 141 X360 2011 Shooter Microsoft Game Studios 4.05
## 142 X360 2006 Shooter Microsoft Game Studios 3.54
## 143 PS2 2001 Action Konami Digital Entertainment 2.45
## 144 GEN 1992 Platform Sega 4.47
## 145 PS3 2008 Action Konami Digital Entertainment 2.63
## 146 PS 1998 Action Konami Digital Entertainment 3.18
## 147 PS3 2013 Action Sony Computer Entertainment Europe 2.41
## 148 PS2 2006 Role-Playing Square Enix 1.88
## 149 PS3 2008 Platform Sony Computer Entertainment 2.80
## 150 DS 2009 Role-Playing Nintendo 0.66
## 151 Wii 2007 Action LucasArts 3.66
## 152 PS 1998 Action Virgin Interactive 1.88
## 153 PS 1996 Fighting Sony Computer Entertainment 2.26
## 154 DS 2006 Simulation 505 Games 3.13
## 155 PS4 2014 Shooter Activision 2.49
## 156 NES 1988 Puzzle Nintendo 2.97
## 157 PS3 2009 Action Ubisoft 2.54
## 158 N64 1999 Fighting Nintendo 2.95
## 159 X360 2007 Adventure Ubisoft 3.28
## 160 PS3 2011 Action Warner Bros. Interactive Entertainment 2.70
## 161 X360 2009 Racing Microsoft Game Studios 2.99
## 162 PSP 2008 Role-Playing Capcom 0.47
## 163 GBA 2001 Platform Nintendo 3.14
## 164 GBA 2001 Racing Nintendo 2.62
## 165 GBA 2001 Platform Nintendo 3.21
## 166 N64 1999 Strategy Nintendo 3.18
## 167 PS3 2008 Shooter Activision 2.72
## 168 PS2 2001 Platform Universal Interactive 2.07
## 169 PS3 2014 Misc Sony Computer Entertainment 1.97
## 170 PS3 2009 Role-Playing Square Enix 1.74
## 171 GB 1989 Puzzle Nintendo 2.18
## 172 GB 1999 Misc Nintendo 3.02
## 173 X360 2012 Action Ubisoft 3.13
## 174 PS 2000 Role-Playing SquareSoft 1.62
## 175 PS2 2003 Role-Playing Electronic Arts 1.92
## 176 N64 1999 Platform Nintendo 3.33
## 177 X360 2009 Action Ubisoft 3.10
## 178 DS 2007 Puzzle Nintendo 1.22
## 179 PS 1997 Action Eidos Interactive 2.30
## 181 PS2 2004 Role-Playing Square Enix 0.65
## 182 PC 2012 Role-Playing Activision 2.43
## 183 GBA 2003 Platform Nintendo 2.93
## 184 WiiU 2012 Platform Nintendo 2.32
## 185 GB 1994 Platform Nintendo 2.49
## 186 X360 2012 Action Electronic Arts 1.08
## 187 DS 2007 Action Nintendo 1.90
## 188 SNES 1995 Platform Nintendo 2.10
## 189 3DS 2013 Simulation Nintendo 0.96
## 190 DS 2008 Sports Sega 1.64
## 191 PS2 2003 Shooter Electronic Arts 1.98
## 192 GB 1992 Platform Nintendo 2.71
## 193 X360 2010 Role-Playing Microsoft Game Studios 3.59
## 194 XOne 2014 Shooter Activision 3.21
## 195 PC 1996 Simulation Microsoft Game Studios 3.22
## 196 PS2 2006 Misc RedOctane 3.81
## 197 PS3 2009 Action Capcom 1.96
## 198 XOne 2014 Action Take-Two Interactive 2.66
## 199 PSP 2006 Action Take-Two Interactive 1.70
## 200 PS3 2010 Sports Electronic Arts 0.60
## 201 GB 1999 Platform Nintendo 3.40
## 202 PS 1996 Action Virgin Interactive 2.05
## 203 PS 1999 Sports Activision 3.42
## 204 WiiU 2014 Fighting Nintendo 2.59
## 205 PS 1999 Strategy Eidos Interactive 2.79
## 206 PS 1998 Platform Sony Computer Entertainment 3.36
## 207 Wii 2007 Shooter Nintendo 3.06
## 208 PS2 2007 Misc Activision 3.49
## 209 X360 2008 Role-Playing Bethesda Softworks 3.39
## 210 DS 2007 Role-Playing Nintendo 1.85
## 211 PS3 2007 Action Sony Computer Entertainment 2.31
## 212 PS2 2005 Sports Electronic Arts 3.98
## 213 DS 2007 Action LucasArts 2.89
## 214 N64 1997 Racing Nintendo 2.91
## 215 PSP 2010 Role-Playing Capcom 0.00
## 216 NES 1990 Puzzle Nintendo 2.62
## 217 PS3 2010 Action Sony Computer Entertainment 2.74
## 218 PC 2010 Strategy Activision 2.56
## 219 PS3 2007 Adventure Ubisoft 1.91
## 220 PS3 2014 Sports Electronic Arts 0.57
## 221 PS 1999 Racing Sony Computer Entertainment 2.57
## 222 PS4 2016 Sports Electronic Arts 0.28
## 223 X360 2011 Action Warner Bros. Interactive Entertainment 2.99
## 224 PS 2000 Action Atari 2.36
## 225 PS2 2003 Racing Vivendi Games 1.73
## 226 PS 2000 Sports Activision 3.05
## 227 Wii 2008 Simulation Nintendo 1.87
## 228 PS2 2002 Action Electronic Arts 1.94
## 229 X360 2011 Racing Microsoft Game Studios 2.08
## 230 PS 1996 Action Eidos Interactive 2.29
## 231 Wii 2007 Misc Activision 3.06
## 232 SNES 1991 Action Nintendo 2.42
## 233 GC 2002 Action Nintendo 2.60
## 234 Wii 2009 Sports Sega 1.89
## 235 3DS 2013 Action Nintendo 1.78
## 236 WiiU 2015 Shooter Nintendo 1.55
## 237 PS4 2014 Action Sony Computer Entertainment 1.78
## 238 X360 2007 Misc Activision 3.19
## 239 PS2 2004 Sports Electronic Arts 4.18
## 240 2600 1981 Platform Activision 4.21
## 241 PS2 2006 Sports Electronic Arts 3.63
## 242 PS2 2002 Action Activision 2.71
## 243 PS 2000 Role-Playing Enix Corporation 0.20
## 244 PS4 2015 Action Sony Computer Entertainment 1.96
## 245 PS3 2014 Shooter Activision 1.54
## 246 PS2 2005 Action Sony Computer Entertainment 2.71
## 247 WiiU 2012 Misc Nintendo 2.55
## 248 Wii 2010 Misc Ubisoft 2.67
## 249 PS2 2001 Sports Activision 2.66
## 250 PS2 2006 Sports Konami Digital Entertainment 0.10
## 251 X360 2006 Role-Playing Take-Two Interactive 2.82
## 252 NES 1987 Adventure Nintendo 2.19
## 253 PS2 2005 Racing Electronic Arts 2.03
## 254 PS3 2006 Shooter Sony Computer Entertainment 1.73
## 255 GEN 1991 Platform Sega 3.03
## 256 PS2 2005 Role-Playing Square Enix 2.20
## 257 X360 2013 Sports Electronic Arts 0.92
## 258 X360 2014 Shooter Activision 2.75
## 259 2600 1980 Shooter Atari 4.00
## 260 X360 2008 Role-Playing Microsoft Game Studios 2.51
## 261 XOne 2015 Shooter Microsoft Game Studios 2.64
## 262 WiiU 2013 Platform Nintendo 2.11
## 263 PS3 2009 Action Eidos Interactive 2.23
## 264 PS3 2011 Action Ubisoft 1.41
## 265 GBA 2001 Misc Namco Bandai Games 3.00
## 266 PS2 2004 Action Konami Digital Entertainment 1.46
## 267 PSP 2006 Platform Sony Computer Entertainment 2.45
## 268 PC 1995 Strategy Activision 1.70
## 269 3DS 2011 Action Nintendo 2.03
## 270 PS2 2005 Sports Electronic Arts 0.78
## 271 PS2 2003 Misc Sony Computer Entertainment 0.88
## 272 PS4 2016 Shooter Sony Computer Entertainment 1.30
## 273 PS3 2007 Racing Sony Computer Entertainment 1.28
## 274 X360 2011 Action Ubisoft 2.25
## 275 PS3 2009 Fighting Capcom 2.02
## 276 X360 2011 Sports Electronic Arts 0.84
## 277 NES 1989 Action Palcom 3.38
## 278 NES 1984 Racing Nintendo 2.04
## 279 PS 1997 Action Hasbro Interactive 3.79
## 280 PS2 2002 Sports Electronic Arts 3.36
## 281 PS4 2014 Action Ubisoft 1.40
## 282 PC 1997 Shooter Vivendi Games 4.03
## 283 SNES 1995 Platform Nintendo 1.65
## 284 PS2 2006 Sports Electronic Arts 0.71
## 285 Wii 2011 Action Nintendo 2.14
## 286 SNES 1992 Fighting Capcom 1.42
## 287 Wii 2007 Misc Take-Two Interactive 2.13
## 288 XOne 2015 Role-Playing Bethesda Softworks 2.45
## 289 PC 2007 Role-Playing Activision 2.57
## 290 X360 2010 Role-Playing Bethesda Softworks 2.65
## 291 PS2 2007 Action Sony Computer Entertainment 2.32
## 292 X360 2007 Racing Microsoft Game Studios 2.35
## 293 PS2 2005 Sports Konami Digital Entertainment 0.12
## 294 PS 1996 Misc Sony Computer Entertainment 2.28
## 295 PS2 2000 Fighting Namco Bandai Games 1.68
## 296 PS4 2014 Shooter Ubisoft 1.12
## 297 N64 1997 Shooter Nintendo 2.78
## 298 PS4 2014 Misc Sony Computer Entertainment Europe 1.38
## 299 NES 1984 Sports Nintendo 1.22
## 300 PS3 2008 Role-Playing Bethesda Softworks 2.15
## 301 DS 2007 Puzzle Nintendo 0.92
## 302 X360 2009 Shooter Electronic Arts 2.67
## 303 PS2 2005 Misc Namco Bandai Games 2.08
## 304 Wii 2009 Sports Electronic Arts 2.10
## 305 PS4 2014 Action Ubisoft 1.18
## 306 GB 1994 Platform Nintendo 1.97
## 307 PS2 2003 Sports Activision 2.29
## 308 PS3 2013 Action Ubisoft 1.33
## 309 3DS 2014 Role-Playing Nintendo 0.67
## 310 PS3 2006 Racing Sony Computer Entertainment 1.53
## 311 PC 2011 Role-Playing Bethesda Softworks 1.15
## 312 PS2 2005 Fighting Namco Bandai Games 0.93
## 313 NES 1988 Role-Playing Enix Corporation 0.10
## 314 PS3 2010 Sports Sony Computer Entertainment 2.12
## 315 PS4 2015 Sports Take-Two Interactive 2.48
## 316 PS2 2004 Sports Konami Digital Entertainment 0.16
## 317 DS 2007 Misc Nintendo 0.87
## 318 PS 1995 Misc Sony Computer Entertainment 2.12
## 319 GB 1992 Action Nintendo 2.21
## 320 DS 2009 Role-Playing Nintendo 2.26
## 321 Wii 2007 Misc Nintendo 1.06
## 322 3DS 2011 Simulation Nintendo 1.44
## 323 PS4 2015 Action Warner Bros. Interactive Entertainment 1.49
## 324 Wii 2011 Sports Sega 1.14
## 325 X360 2008 Action Activision 2.40
## 326 PS 1996 Action Virgin Interactive 1.82
## 327 PSP 2007 Platform Sony Computer Entertainment 1.40
## 328 Wii 2013 Misc Ubisoft 1.98
## 329 PC 2002 Simulation Electronic Arts 2.03
## 330 Wii 2007 Platform Nintendo 1.98
## 331 PS 2001 Action Electronic Arts 1.37
## 332 PS4 2015 Role-Playing Namco Bandai Games 0.96
## 333 PS 1999 Action Eidos Interactive 1.30
## 334 PS 2000 Platform Sony Computer Entertainment 1.93
## 335 PS2 2004 Sports Electronic Arts 0.58
## 336 GB 1998 Strategy Nintendo 1.49
## 337 PS3 2013 Shooter Electronic Arts 1.30
## 338 DS 2007 Simulation Electronic Arts 1.59
## 339 DS 2009 Misc Nintendo 0.00
## 340 PS2 2002 Sports Activision 2.13
## 341 PSP 2005 Racing Take-Two Interactive 1.65
## 342 N64 1998 Platform Nintendo 1.87
## 343 PS2 2002 Shooter Sony Computer Entertainment 2.53
## 344 Wii 2008 Misc Activision 2.33
## 345 PS3 2013 Racing Sony Computer Entertainment 0.71
## 346 PS2 2001 Platform Sony Computer Entertainment 2.08
## 347 N64 1999 Simulation Nintendo 2.23
## 348 PS3 2009 Sports Electronic Arts 0.60
## 349 PS2 2007 Sports Konami Digital Entertainment 0.05
## 350 PS4 2013 Shooter Activision 1.78
## 351 PS2 2005 Action Capcom 2.08
## 352 PS4 2016 Shooter Ubisoft 1.28
## 353 PS2 2004 Shooter LucasArts 1.93
## 354 PC 1994 Shooter Virgin Interactive 2.05
## 355 PS2 2001 Racing Electronic Arts 2.02
## 356 DS 2007 Simulation 505 Games 1.61
## 357 GC 2001 Action Nintendo 2.38
## 358 PS2 2005 Shooter LucasArts 2.18
## 359 PS 2000 Fighting THQ 2.01
## 360 PS 1997 Platform Fox Interactive 1.57
## 361 PS2 2006 Action Take-Two Interactive 1.56
## 362 PS2 2002 Action Sony Computer Entertainment 1.23
## 363 PS 1997 Action Eidos Interactive 1.66
## 364 PS2 2001 Shooter Electronic Arts 1.90
## 365 PS2 2005 Action Eidos Interactive 1.98
## 366 X360 2013 Shooter Electronic Arts 2.14
## 367 X360 2010 Sports Electronic Arts 0.71
## 368 PS 2000 Action THQ 1.96
## 369 PS 1999 Platform Sony Computer Entertainment 2.14
## 370 X360 2008 Shooter Electronic Arts 2.66
## 371 DS 2009 Sports Sega 1.22
## 372 X360 2009 Action Capcom 2.11
## 373 SNES 1996 Platform Nintendo 1.17
## 374 X360 2010 Action Ubisoft 2.84
## 375 NES 1985 Action Nintendo 1.64
## 376 X360 2009 Action Eidos Interactive 2.20
## 377 DS 2006 Misc Nintendo 0.59
## 379 XOne 2015 Shooter Electronic Arts 1.94
## 380 X360 2010 Shooter Electronic Arts 2.09
## 381 DS 2008 Misc Activision 2.11
## 382 XOne 2014 Action Ubisoft 2.26
## 383 PS3 2012 Shooter Ubisoft 0.88
## 384 3DS 2013 Role-Playing Capcom 0.00
## 385 X360 2009 Shooter Take-Two Interactive 2.39
## 386 PS2 2002 Fighting Namco Bandai Games 1.55
## 387 PS4 2013 Shooter Electronic Arts 1.34
## 388 PS3 2011 Platform Sony Computer Entertainment 1.82
## 389 PS 1998 Action Take-Two Interactive 1.13
## 390 SNES 1994 Role-Playing SquareSoft 0.86
## 391 PS2 2004 Action Activision 1.75
## 392 GB 1990 Racing Nintendo 1.73
## 393 PS2 2002 Sports Electronic Arts 0.46
## 394 PS 2000 Misc Sony Computer Entertainment 1.56
## 395 X360 2008 Action Warner Bros. Interactive Entertainment 2.03
## 396 PS4 2015 Action Konami Digital Entertainment 1.08
## 397 DS 2009 Action Nintendo 1.43
## 398 PS 1998 Fighting Acclaim Entertainment 2.47
## 399 N64 2000 Action Nintendo 1.90
## 400 DS 2008 Puzzle Nintendo 0.65
## 401 PS 1998 Adventure THQ 1.63
## 402 X360 2013 Action Ubisoft 1.90
## 403 DS 2006 Misc Nintendo 0.00
## 404 PS2 2002 Shooter Electronic Arts 1.45
## 405 PS2 2002 Platform Sony Computer Entertainment 1.44
## 406 Wii 2012 Misc Nintendo 1.15
## 407 PS2 2005 Action LucasArts 1.47
## 408 PS2 2001 Shooter Take-Two Interactive 1.99
## 409 PS2 2003 Action Electronic Arts 1.50
## 410 PS4 2015 Action Ubisoft 0.80
## 411 XOne 2014 Shooter Activision 2.13
## 412 PS2 2003 Action Activision 1.89
## 413 Wii 2008 Misc Nintendo 1.36
## 414 PSP 2009 Racing Sony Computer Entertainment 0.50
## 415 3DS 2015 Action Capcom 0.25
## 416 PS 1995 Fighting Sony Computer Entertainment 0.95
## 417 XOne 2015 Sports Electronic Arts 0.88
## 418 PS3 2011 Adventure Take-Two Interactive 1.27
## 419 PS4 2015 Sports Electronic Arts 2.33
## 420 3DS 2014 Role-Playing Nintendo 0.03
## 421 PS 1999 Shooter Electronic Arts 1.72
## 422 NES 1983 Sports Nintendo 0.73
## 423 SNES 1995 Fighting Nintendo 2.26
## 424 PS 2000 Fighting THQ 1.76
## 425 PSP 2007 Role-Playing Square Enix 1.35
## 426 PSP 2008 Action Sony Computer Entertainment 1.48
## 427 SNES 1995 Role-Playing Enix Corporation 0.00
## 428 X360 2010 Misc MTV Games 2.15
## 429 PS2 2003 Action Atari 1.78
## 430 WiiU 2015 Platform Nintendo 1.18
## 431 PS3 2010 Role-Playing Bethesda Softworks 1.52
## 433 DS 2008 Misc Nintendo 0.58
## 434 PS2 2001 Simulation Sony Computer Entertainment Europe 2.06
## 435 DS 2008 Adventure Disney Interactive Studios 1.88
## 436 GC 2001 Simulation Nintendo 1.92
## 437 DS 2008 Action Warner Bros. Interactive Entertainment 1.79
## 438 DS 2005 Platform Sega 1.22
## 439 PS3 2012 Shooter Capcom 0.88
## 440 XOne 2014 Shooter Microsoft Game Studios 1.89
## 441 PS2 2007 Sports Electronic Arts 0.68
## 442 PS 2000 Action Activision 1.70
## 443 PS 1998 Racing Electronic Arts 2.14
## 444 N64 1999 Racing Nintendo 2.31
## 445 DS 2006 Misc Nintendo 0.91
## 446 PS3 2007 Role-Playing Ubisoft 1.69
## 447 NES 1990 Role-Playing Enix Corporation 0.08
## 448 PS3 2010 Adventure Sony Computer Entertainment 1.29
## 449 X360 2010 Role-Playing Electronic Arts 1.99
## 450 X360 2014 Sports Electronic Arts 0.78
## 451 PS2 2002 Fighting Atari 2.17
## 452 PS2 2001 Sports Electronic Arts 2.50
## 453 NES 1986 Sports Namco Bandai Games 1.92
## 454 X360 2012 Shooter Take-Two Interactive 1.89
## 455 3DS 2013 Action Nintendo 1.40
## 456 GB 1994 Platform Nintendo 1.57
## 457 PC 2002 Simulation Electronic Arts 1.72
## 458 X360 2012 Role-Playing Electronic Arts 1.94
## 459 X360 2008 Action Activision 1.91
## 460 X360 2012 Shooter Ubisoft 1.38
## 461 Wii 2010 Platform Disney Interactive Studios 2.06
## 462 X360 2008 Action THQ 1.94
## 463 PS 1995 Platform Ubisoft 1.54
## 464 PS3 2009 Shooter Sony Computer Entertainment 1.40
## 465 XB 2002 Action Ubisoft 1.85
## 466 NES 1987 Fighting Nintendo 2.03
## 467 PS2 2002 Sports THQ 1.45
## 468 XOne 2015 Shooter Microsoft Game Studios 2.38
## 469 X360 2012 Sports Take-Two Interactive 2.60
## 470 PS2 2007 Fighting Atari 1.15
## 472 PS4 2014 Action Warner Bros. Interactive Entertainment 1.01
## 473 SNES 1993 Shooter Nintendo 1.61
## 474 PC 2000 Misc Electronic Arts 1.67
## 475 PS2 2002 Sports Konami Digital Entertainment 0.12
## 476 PS2 2001 Action Capcom 1.36
## 477 3DS 2015 Simulation Nintendo 0.47
## 478 PS3 2010 Shooter Electronic Arts 1.33
## 479 PC 2014 Simulation Electronic Arts 0.96
## 480 PC 2011 Role-Playing Electronic Arts 1.58
## 481 PS2 2003 Platform Sega 1.04
## 482 DS 2008 Platform Nintendo 1.57
## 483 PS2 2002 Action Eidos Interactive 1.36
## 484 X360 2009 Fighting Capcom 1.82
## 485 N64 1996 Racing Nintendo 1.98
## 486 PS2 2003 Shooter Sony Computer Entertainment 2.22
## 487 PS2 2005 Fighting THQ 1.45
## 488 PS3 2009 Action Sony Computer Entertainment 1.76
## 489 GBA 2001 Puzzle Atari 2.07
## 490 X360 2007 Role-Playing Microsoft Game Studios 1.83
## 491 Wii 2006 Puzzle Nintendo 0.87
## 492 Wii 2007 Simulation 505 Games 1.43
## 493 GBA 2002 Platform Nintendo 1.75
## 494 PS4 2013 Sports Electronic Arts 0.61
## 495 XOne 2014 Shooter Electronic Arts 1.84
## 496 PS2 2004 Misc Sega 1.54
## 497 X360 2008 Sports Sega 1.75
## 498 PS2 2003 Sports Konami Digital Entertainment 0.08
## 499 PS3 2012 Racing Electronic Arts 0.71
## 500 PS2 2001 Sports Sony Computer Entertainment 0.99
## 501 PS2 2004 Shooter Activision 1.51
## 502 Wii 2011 Sports Majesco Entertainment 1.54
## 503 PS 1999 Shooter Sony Computer Entertainment 2.03
## 504 DS 2007 Simulation Ubisoft 1.30
## 505 PS 1998 Racing Codemasters 0.09
## 506 XOne 2013 Shooter Activision 1.87
## 507 X360 2012 Sports Electronic Arts 2.53
## 508 XB 2002 Role-Playing Ubisoft 2.09
## 509 PS3 2011 Fighting Warner Bros. Interactive Entertainment 1.98
## 510 SNES 1990 Racing Nintendo 1.37
## 511 N64 1997 Platform Nintendo 1.29
## 512 PC 1996 Strategy Virgin Interactive 1.37
## 513 Wii 2011 Action Activision 1.40
## 514 PS3 2015 Sports Electronic Arts 0.40
## 515 PS3 2010 Action Ubisoft 1.87
## 516 X360 2007 Shooter Take-Two Interactive 1.65
## 517 X360 2009 Sports Electronic Arts 2.52
## 518 PS3 2010 Shooter Electronic Arts 1.28
## 519 PS2 2002 Fighting THQ 1.32
## 520 GC 2002 Shooter Nintendo 1.96
## 521 GBA 2003 Action THQ 1.59
## 522 PC 1994 Adventure Red Orb 0.02
## 523 PS3 2010 Racing Electronic Arts 1.05
## 524 DS 2007 Simulation Ubisoft 1.32
## 525 PS2 2003 Fighting THQ 1.32
## 526 X360 2008 Action LucasArts 1.74
## 527 DS 2006 Platform Nintendo 1.47
## 528 PS 1997 Sports Sony Computer Entertainment 0.29
## 529 PS3 2011 Shooter Sony Computer Entertainment 1.45
## 530 PS 1998 Platform Sony Computer Entertainment 1.96
## 531 PS2 2001 Fighting THQ 1.19
## 532 SNES 1992 Role-Playing Enix Corporation 0.00
## 533 PS 1996 Fighting GT Interactive 1.98
## 534 PC 2011 Shooter Electronic Arts 0.89
## 535 PS2 2001 Sports Electronic Arts 2.19
## 536 DS 2009 Puzzle Nintendo 0.30
## 537 3DS 2011 Role-Playing Nintendo 0.46
## 538 PS2 2003 Platform Sony Computer Entertainment 1.68
## 539 PS4 2014 Action Sony Computer Entertainment 1.27
## 540 PS2 2003 Platform Sony Computer Entertainment 1.44
## 541 PS3 2009 Fighting Namco Bandai Games 1.20
## 542 PS2 2003 Simulation Electronic Arts 1.41
## 543 Wii 2007 Platform Sega 1.24
## 544 X360 2011 Action THQ 1.25
## 545 2600 1980 Shooter Atari 2.56
## 546 SNES 1992 Misc Nintendo 1.43
## 547 PS4 2013 Action Ubisoft 1.07
## 548 N64 2000 Strategy Nintendo 1.02
## 549 NES 1986 Action Nintendo 1.33
## 550 X360 2011 Adventure Take-Two Interactive 1.52
## 551 X360 2006 Shooter Activision 1.49
## 552 GBA 2002 Action Nintendo 1.75
## 553 PS2 2001 Action Virgin Interactive 0.99
## 554 PS4 2015 Fighting Warner Bros. Interactive Entertainment 1.47
## 555 N64 1998 Misc Nintendo 1.25
## 556 X360 2011 Sports Electronic Arts 2.42
## 557 PS2 2006 Action LucasArts 1.85
## 558 X360 2010 Sports Electronic Arts 2.38
## 559 DS 2010 Puzzle Nintendo 1.63
## 560 X360 2010 Sports Electronic Arts 1.46
## 561 PS2 2004 Racing Electronic Arts 1.23
## 562 3DS 2014 Role-Playing Level 5 0.00
## 563 PS3 2009 Racing Electronic Arts 0.69
## 564 PS3 2011 Role-Playing Square Enix 0.78
## 565 GEN 1992 Fighting Arena Entertainment 1.95
## 566 PS2 2005 Shooter Activision 1.48
## 567 X360 2008 Misc Activision 1.78
## 568 PS 1998 Shooter Electronic Arts 1.44
## 569 XB 2004 Role-Playing Microsoft Game Studios 1.99
## 570 DS 2006 Action Disney Interactive Studios 1.59
## 571 PS2 2003 Action Ubisoft 1.15
## 572 Wii 2012 Action Activision 1.56
## 573 PSP 2006 Shooter Electronic Arts 0.86
## 574 NES 1986 Platform Nintendo 0.00
## 575 N64 1996 Action Nintendo 2.00
## 576 X360 2007 Action LucasArts 1.53
## 577 PS2 2000 Racing Take-Two Interactive 2.00
## 578 PSP 2006 Fighting Sony Computer Entertainment 0.76
## 579 X360 2009 Strategy Microsoft Game Studios 1.53
## 580 PS3 2009 Action Sony Computer Entertainment 1.70
## 581 PS2 2004 Sports Sega 2.15
## 582 Wii 2007 Sports Nintendo 1.07
## 583 X360 2010 Shooter Electronic Arts 1.55
## 584 X360 2009 Sports Electronic Arts 0.59
## 585 X360 2011 Sports Take-Two Interactive 2.31
## 586 DS 2008 Simulation Nintendo 0.63
## 587 PS2 2002 Action Electronic Arts 0.90
## 588 Wii 2010 Platform Nintendo 1.02
## 589 GEN 1990 Action Sega 1.86
## 590 PS3 2008 Sports Electronic Arts 0.48
## 591 PS3 2007 Platform Sony Computer Entertainment 0.93
## 592 PS2 2004 Sports Electronic Arts 2.03
## 593 PSP 2009 Platform Sony Computer Entertainment 0.64
## 594 PS4 2013 Shooter Sony Computer Entertainment 0.89
## 595 X360 2009 Action Take-Two Interactive 1.04
## 596 PSP 2007 Role-Playing Capcom 0.37
## 597 PS2 2006 Fighting THQ 1.40
## 598 PS2 2004 Platform Sony Computer Entertainment 1.31
## 599 DS 2010 Misc Nintendo 0.28
## 600 X360 2009 Role-Playing Electronic Arts 1.76
## 601 PS2 2007 Sports Electronic Arts 2.14
## 602 GC 2001 Platform Sega 1.70
## 603 NES 1987 Role-Playing Enix Corporation 0.15
## 604 PS3 2012 Sports Electronic Arts 2.11
## 605 GC 2003 Role-Playing Nintendo 1.21
## 606 Wii 2008 Sports Konami Digital Entertainment 1.13
## 607 X360 2008 Sports Electronic Arts 2.21
## 609 PS2 2001 Racing Acclaim Entertainment 1.13
## 610 N64 2000 Action Nintendo 1.55
## 611 Wii 2007 Misc Midway Games 1.50
## 612 NES 1986 Role-Playing Capcom 0.49
## 613 PS3 2013 Action Square Enix 0.60
## 614 X360 2006 Role-Playing Activision 2.29
## 615 PS2 2008 Sports Konami Digital Entertainment 0.13
## 616 N64 1999 Misc Nintendo 1.28
## 617 PS3 2011 Action THQ 0.86
## 618 XB 2003 Action Take-Two Interactive 1.84
## 619 Wii 2010 Action Warner Bros. Interactive Entertainment 1.29
## 620 PS2 2002 Fighting Midway Games 1.81
## 621 PS3 2008 Shooter Sony Computer Entertainment 1.15
## 622 X360 2008 Racing Disney Interactive Studios 1.38
## 623 PS 1998 Action Eidos Interactive 1.15
## 624 PS3 2012 Sports Take-Two Interactive 1.72
## 626 X360 2013 Sports Take-Two Interactive 2.10
## 627 GC 2002 Misc Nintendo 1.13
## 628 Wii 2010 Misc THQ 1.67
## 629 PS3 2008 Racing Take-Two Interactive 1.55
## 630 SNES 1992 Role-Playing SquareSoft 0.00
## 631 PS 1997 Role-Playing SquareSoft 0.93
## 632 PS 1996 Racing Sony Computer Entertainment 2.12
## 633 X360 2011 Shooter Microsoft Game Studios 1.44
## 634 PSP 2006 Racing Electronic Arts 0.87
## 635 PS2 2003 Simulation Electronic Arts 1.07
## 636 PC 1997 Adventure Red Orb 1.52
## 637 X360 2008 Shooter Ubisoft 1.56
## 638 DC 1998 Platform Sega 1.26
## 639 NES 1988 Sports Nintendo 1.27
## 640 PS3 2010 Sports Konami Digital Entertainment 0.29
## 641 PS2 2003 Fighting Atari 1.63
## 642 PS2 2001 Racing Sony Computer Entertainment 2.07
## 643 PS 1998 Action Capcom 0.81
## 644 XOne 2014 Misc Microsoft Game Studios 1.43
## 645 PS2 2007 Racing Electronic Arts 0.69
## 646 XOne 2015 Sports Electronic Arts 2.07
## 647 PS 1996 Puzzle JVC 2.10
## 648 NES 1987 Fighting Nintendo 0.77
## 649 PC 1997 Strategy Electronic Arts 2.30
## 651 PS4 2015 Racing Electronic Arts 0.49
## 652 X360 2010 Sports 505 Games 1.74
## 654 PC 1994 Misc Hasbro Interactive 1.49
## 655 PS3 2013 Action Warner Bros. Interactive Entertainment 1.07
## 656 X360 2011 Action Deep Silver 1.48
## 657 PS2 2005 Misc RedOctane 1.67
## 658 PS3 2007 Action LucasArts 1.02
## 659 X360 2011 Misc Microsoft Game Studios 1.73
## 660 N64 1998 Fighting THQ 1.94
## 661 PS4 2015 Action Sony Computer Entertainment 1.00
## 662 PS4 2014 Sports Take-Two Interactive 1.46
## 663 PS3 2010 Sports Electronic Arts 2.04
## 664 PS2 2001 Misc Konami Digital Entertainment 1.16
## 665 X360 2007 Sports Electronic Arts 2.18
## 666 PC 2004 Shooter Vivendi Games 2.28
## 667 PS2 2004 Action THQ 0.96
## 668 PS2 2004 Sports Activision 1.25
## 669 PS3 2009 Sports Electronic Arts 2.03
## 670 X360 2011 Sports Microsoft Game Studios 1.38
## 671 GB 1995 Platform Nintendo 0.69
## 672 DS 2010 Action Warner Bros. Interactive Entertainment 1.07
## 673 GB 1996 Platform Nintendo 1.39
## 674 GB 1998 Role-Playing Eidos Interactive 0.00
## 675 X360 2008 Racing Take-Two Interactive 1.68
## 676 Wii 2013 Platform Activision 1.32
## 677 PS2 2007 Fighting THQ 0.92
## 678 Wii 2008 Sports Ubisoft 1.20
## 679 PS2 2001 Action Capcom 1.08
## 680 X360 2010 Simulation Electronic Arts 1.27
## 681 3DS 2015 Action Nintendo 1.14
## 682 XOne 2015 Sports Take-Two Interactive 1.93
## 683 Wii 2010 Misc Ubisoft 1.57
## 684 N64 2000 Sports Nintendo 0.78
## 685 PS 1997 Action Take-Two Interactive 0.79
## 686 PS2 2004 Shooter Electronic Arts 0.85
## 687 DS 2004 Puzzle Nintendo 0.52
## 688 PS 1999 Racing Electronic Arts 1.58
## 689 SNES 1995 Role-Playing SquareSoft 0.28
## 690 PS 1998 Sports 989 Studios 1.65
## 691 X360 2013 Action Warner Bros. Interactive Entertainment 1.24
## 692 PC 2012 Action NCSoft 0.95
## 693 DS 2008 Role-Playing Nintendo 0.95
## 694 PS3 2011 Action Deep Silver 1.08
## 695 PC 1997 Action Eidos Interactive 0.91
## 696 PS3 2013 Action Sony Computer Entertainment 1.23
## 697 XB 2004 Racing Electronic Arts 1.38
## 698 PS3 2009 Sports Konami Digital Entertainment 0.30
## 699 Wii 2014 Misc Ubisoft 1.11
## 700 3DS 2015 Action Level 5 0.00
## 701 NES 1983 Platform Nintendo 0.51
## 702 PS2 2008 Sports Electronic Arts 0.38
## 703 PS3 2008 Action LucasArts 1.01
## 704 PS3 2012 Shooter Take-Two Interactive 1.05
## 705 PS 1997 Racing Codemasters 0.07
## 706 3DS 2012 Role-Playing Nintendo 1.12
## 707 PS3 2009 Misc Sega 1.34
## 708 Wii 2006 Misc Sega 1.07
## 709 GBA 2002 Platform Nintendo 1.22
## 710 GBA 2001 Platform Nintendo 0.90
## 711 PS3 2007 Misc Activision 1.40
## 713 Wii 2007 Action Capcom 1.34
## 714 PSV 2014 Misc Sony Computer Entertainment Europe 0.28
## 715 PS2 2002 Adventure Capcom 0.62
## 716 PS 1997 Sports UEP Systems 1.52
## 717 GC 2004 Role-Playing Nintendo 1.48
## 718 PS3 2011 Sports Electronic Arts 1.93
## 719 Wii 2009 Role-Playing Nintendo 0.67
## 720 PSP 2008 Fighting Square Enix 0.51
## 721 GBA 2001 Platform Sega 1.19
## 722 GBA 2001 Platform Vivendi Games 1.29
## 723 NES 1990 Action Konami Digital Entertainment 1.74
## 724 DS 2008 Action Activision 1.42
## 725 PS2 2009 Simulation Konami Digital Entertainment 1.09
## 726 WiiU 2013 Platform Nintendo 1.27
## 727 PS2 2003 Action Ubisoft 0.88
## 728 DS 2009 Puzzle Warner Bros. Interactive Entertainment 1.71
## 729 GB 1998 Adventure Nintendo 1.00
## 730 X360 2010 Racing Electronic Arts 1.03
## 731 X360 2010 Shooter Take-Two Interactive 1.45
## 732 XOne 2013 Action Ubisoft 1.47
## 733 PS2 2006 Action Capcom 1.06
## 734 X360 2008 Misc Electronic Arts 1.78
## 735 2600 1981 Action Parker Bros. 2.06
## 736 X360 2007 Misc Activision 2.01
## 737 GB 2000 Platform Nintendo 1.11
## 738 NES 1986 Sports Namco Bandai Games 0.15
## 739 Wii 2008 Platform Sega 1.28
## 740 DS 2007 Puzzle Disney Interactive Studios 1.06
## 741 PS3 2011 Action Konami Digital Entertainment 0.34
## 742 X360 2006 Action THQ 1.17
## 743 XB 2003 Role-Playing Activision 1.68
## 744 GB 1992 Misc Nintendo 0.87
## 745 GB 2000 Platform Nintendo 1.04
## 746 PS3 2012 Action Square Enix 0.59
## 747 GB 2000 Role-Playing Konami Digital Entertainment 0.00
## 748 PS2 2002 Racing THQ 1.92
## 749 XOne 2013 Racing Microsoft Game Studios 1.21
## 750 X360 2013 Sports Electronic Arts 1.97
## 751 DS 2006 Role-Playing Nintendo 1.29
## 752 GBA 2003 Role-Playing Nintendo 1.48
## 753 X360 2010 Role-Playing Square Enix 1.27
## 754 N64 1998 Simulation Nintendo 1.60
## 755 NES 1984 Sports Nintendo 0.48
## 756 PC 2001 Simulation Electronic Arts 1.23
## 757 Wii 2009 Sports Ubisoft 1.51
## 758 PS 2000 Shooter Sony Computer Entertainment 1.50
## 759 PS4 2015 Shooter Ubisoft 0.54
## 760 NES 1987 Sports Nintendo 0.14
## 761 XOne 2014 Sports Electronic Arts 0.60
## 762 PSP 2007 Shooter Activision 0.52
## 763 SNES 1996 Role-Playing Nintendo 0.66
## 764 NES 1983 Misc Nintendo 0.01
## 765 NES 1988 Racing Nintendo 1.47
## 766 PC 1992 Simulation Maxis 1.20
## 767 2600 1981 Shooter Imagic 1.99
## 768 PS2 2004 Simulation Konami Digital Entertainment 1.04
## 769 DS 2006 Puzzle Nintendo 0.64
## 770 GBA 2003 Role-Playing SquareSoft 0.82
## 771 PS4 2016 Action Ubisoft 0.59
## 772 DS 2010 Action Disney Interactive Studios 0.93
## 773 DS 2006 Role-Playing Square Enix 0.91
## 774 Wii 2010 Platform Nintendo 1.47
## 775 XB 2001 Racing Microsoft Game Studios 1.37
## 776 GB 1989 Sports Nintendo 0.83
## 777 PS3 2011 Sports Take-Two Interactive 1.61
## 778 PS3 2009 Shooter Take-Two Interactive 1.20
## 779 N64 2000 Sports Activision 1.68
## 780 PS3 2008 Sports Konami Digital Entertainment 0.11
## 781 PS2 2002 Racing Electronic Arts 1.68
## 782 Wii 2010 Sports Nintendo 0.90
## 784 PS2 2003 Action Tecmo Koei 0.63
## 785 X360 2011 Fighting Warner Bros. Interactive Entertainment 1.63
## 786 PS 1998 Role-Playing SquareSoft 0.94
## 787 PS2 2002 Platform THQ 1.17
## 788 XB 2002 Action Microsoft Game Studios 1.54
## 789 PSP 2005 Racing Electronic Arts 1.77
## 790 X360 2011 Shooter Valve Software 1.41
## 791 PS2 2005 Action Capcom 0.99
## 792 PS 1997 Sports ASCII Entertainment 0.00
## 793 X360 2006 Action Capcom 1.16
## 794 PS2 2003 Action THQ 1.26
## 795 X360 2010 Action Take-Two Interactive 1.84
## 796 Wii 2009 Misc Mindscape 1.97
## 797 DS 2006 Simulation Electronic Arts 0.92
## 798 PS4 2015 Shooter Electronic Arts 0.70
## 799 PSP 2010 Action Konami Digital Entertainment 0.46
## 800 PC 2010 Role-Playing Activision 1.77
## 801 PS2 2002 Puzzle THQ 1.11
## 802 PS3 2008 Racing Electronic Arts 0.63
## 803 Wii 2007 Simulation Konami Digital Entertainment 1.36
## 804 GC 2003 Misc Nintendo 0.97
## 805 PS3 2010 Action Take-Two Interactive 0.59
## 806 PC 1998 Strategy Electronic Arts 2.04
## 807 PC 1994 Strategy Activision 0.89
## 808 PS3 2010 Sports Electronic Arts 0.79
## 809 PS 2002 Shooter Take-Two Interactive 1.54
## 810 PSP 2010 Role-Playing Square Enix 0.63
## 811 X360 2009 Fighting THQ 1.48
## 812 PS3 2011 Role-Playing Namco Bandai Games 0.75
## 813 GBA 2001 Strategy Konami Digital Entertainment 1.64
## 814 X360 2007 Racing Electronic Arts 1.04
## 815 PS3 2010 Simulation Electronic Arts 0.73
## 816 X360 2010 Action Ubisoft 1.20
## 817 GBA 2005 Role-Playing Nintendo 0.71
## 818 GBA 2004 Action THQ 1.15
## 819 PS 1998 Racing Namco Bandai Games 0.68
## 820 PS2 2003 Fighting Namco Bandai Games 1.06
## 821 3DS 2013 Role-Playing Nintendo 0.89
## 822 PS3 2007 Racing Electronic Arts 0.73
## 823 DS 2008 Misc Take-Two Interactive 1.23
## 824 PS3 2013 Sports Take-Two Interactive 1.43
## 825 DS 2005 Role-Playing Nintendo 1.16
## 826 GC 2002 Misc Infogrames 1.47
## 827 PS3 2013 Role-Playing Activision 0.71
## 828 GEN 1992 Sports Arena Entertainment 1.75
## 829 X360 2007 Racing Microsoft Game Studios 0.48
## 830 DS 2009 Role-Playing Square Enix 1.11
## 831 X360 2011 Misc Microsoft Game Studios 1.45
## 832 Wii 2008 Misc Ubisoft 0.73
## 833 PS2 2006 Shooter Sony Computer Entertainment 1.74
## 834 PS2 2005 Action Ubisoft 0.71
## 835 GBA 2003 Platform Nintendo 1.20
## 836 PS3 2011 Action Electronic Arts 0.58
## 837 PS4 2014 Sports Electronic Arts 1.53
## 838 N64 1998 Sports Nintendo 1.25
## 839 X360 2011 Misc Ubisoft 1.47
## 840 PS2 2003 Sports Electronic Arts 1.57
## 841 PS3 2008 Action Electronic Arts 1.05
## 842 X360 2005 Shooter Activision 1.81
## 843 X360 2014 Sports Electronic Arts 1.76
## 844 X360 2012 Racing Microsoft Game Studios 0.82
## 845 DS 2007 Puzzle Midway Games 0.49
## 846 XOne 2016 Shooter Ubisoft 1.20
## 847 PS3 2013 Action Warner Bros. Interactive Entertainment 0.77
## 848 3DS 2012 Role-Playing Nintendo 0.89
## 849 PS4 2014 Racing Sony Computer Entertainment 0.35
## 850 SNES 1993 Fighting Nintendo 0.52
## 851 PS3 2008 Fighting Midway Games 1.48
## 852 PS 1997 Action Activision 0.95
## 853 GB 1989 Sports Nintendo 0.75
## 854 GBA 2002 Action Electronic Arts 1.21
## 855 PS 2002 Action Electronic Arts 0.75
## 856 SNES 1991 Simulation Nintendo 0.93
## 857 XOne 2013 Shooter Electronic Arts 1.25
## 858 X360 2012 Shooter Capcom 1.11
## 859 PS4 2014 Role-Playing Electronic Arts 0.72
## 860 DS 2010 Platform Sega 0.99
## 861 PS2 2002 Platform Universal Interactive 0.74
## 862 Wii 2008 Shooter Activision 1.20
## 863 PS2 2003 Action Capcom 0.71
## 864 PS3 2008 Racing Electronic Arts 1.01
## 865 2600 1981 Action Atari 1.84
## 866 X360 2013 Shooter Take-Two Interactive 1.22
## 867 PSP 2004 Sports Sony Computer Entertainment 0.50
## 868 NES 1986 Racing Nintendo 1.13
## 869 NES 1985 Sports Nintendo 0.18
## 870 DS 2006 Platform Nintendo 0.79
## 871 X360 2006 Shooter Ubisoft 1.09
## 872 X360 2014 Shooter Activision 1.30
## 873 PS2 2003 Racing Vivendi Games 0.74
## 874 XB 2005 Action Take-Two Interactive 1.26
## 875 PC 1994 Shooter LucasArts 1.09
## 876 PS2 2003 Sports Electronic Arts 1.69
## 877 PS2 2003 Fighting Electronic Arts 0.95
## 878 X360 2008 Sports Electronic Arts 0.49
## 879 PC 1999 Misc Disney Interactive Studios 1.94
## 880 PS 2001 Adventure THQ 0.59
## 881 GB 1989 Puzzle Nintendo 0.96
## 882 PS2 2004 Fighting Atari 1.09
## 883 PS 1997 Racing Sony Computer Entertainment 1.41
## 884 PS2 2002 Shooter Ubisoft 1.42
## 885 PS2 2004 Role-Playing Activision 1.00
## 886 X360 2013 Action Warner Bros. Interactive Entertainment 1.15
## 887 PS3 2008 Misc Activision 1.10
## 888 SNES 1993 Fighting Acclaim Entertainment 1.48
## 889 SAT 1995 Fighting Sega 0.34
## 890 GB 1998 Puzzle Nintendo 1.06
## 891 X360 2008 Fighting Midway Games 1.53
## 892 PS3 2014 Action Ubisoft 0.56
## 893 Wii 2008 Sports Nintendo 1.51
## 894 X360 2013 Action Square Enix 0.86
## 895 GB 2001 Action Nintendo 0.92
## 896 X360 2009 Racing Electronic Arts 0.73
## 897 Wii 2008 Misc Electronic Arts 0.87
## 898 PS2 2001 Shooter THQ 0.76
## 899 PC 2003 Simulation Electronic Arts 1.03
## 900 PS2 2004 Racing THQ 0.94
## 901 PS 1996 Misc Sony Computer Entertainment 0.26
## 902 Wii 2009 Misc Disney Interactive Studios 1.06
## 903 N64 2000 Misc Nintendo 0.72
## 904 Wii 2008 Action LucasArts 1.14
## 905 Wii 2008 Misc Midway Games 1.30
## 906 PS4 2015 Shooter Activision 0.77
## 907 Wii 2011 Action LucasArts 1.08
## 908 GC 2001 Simulation LucasArts 1.03
## 909 PS3 2012 Shooter Take-Two Interactive 0.59
## 910 PS4 2013 Racing Electronic Arts 0.73
## 911 PS3 2008 Sports Electronic Arts 1.56
## 912 3DS 2013 Role-Playing Nintendo 0.21
## 913 PS3 2009 Platform Sony Computer Entertainment 1.05
## 914 PS 1999 Role-Playing Konami Digital Entertainment 1.37
## 915 PS2 2004 Fighting Midway Games 0.92
## 916 PS 1999 Sports Sony Computer Entertainment 0.25
## 917 PS2 2005 Shooter Electronic Arts 0.89
## 918 PS 1998 Fighting THQ 1.42
## 919 PS2 2007 Misc Disney Interactive Studios 0.47
## 920 GC 2002 Adventure Nintendo 0.96
## 921 PS 1998 Sports Electronic Arts 0.22
## 922 PS2 2001 Action THQ 0.53
## 923 3DS 2013 Platform Nintendo 0.73
## 924 GB 2001 Adventure Nintendo 0.87
## 925 XB 2005 Sports Electronic Arts 1.75
## 926 PS2 2004 Platform Activision 1.12
## 927 PS 1999 Role-Playing Sony Computer Entertainment 0.94
## 928 N64 1997 Platform Acclaim Entertainment 1.37
## 929 PS2 2004 Misc Sony Computer Entertainment 0.00
## 930 PS4 2014 Platform Sony Computer Entertainment 0.64
## 931 PS2 2001 Sports Electronic Arts 0.91
## 932 DS 2009 Action Disney Interactive Studios 1.34
## 933 PS 1999 Role-Playing SquareSoft 0.62
## 934 Wii 2010 Action Activision 0.85
## 935 3DS 2013 Misc Nintendo 0.61
## 936 PS2 2004 Platform Sony Computer Entertainment 1.33
## 937 Wii 2007 Misc Ubisoft 0.83
## 938 GBA 2004 Role-Playing Square Enix 1.26
## 939 NES 1984 Action Nintendo 0.80
## 940 PS3 2011 Action Sony Computer Entertainment 1.05
## 941 PS2 2001 Racing Unknown 0.00
## 942 PS3 2009 Role-Playing Namco Bandai Games 0.97
## 943 PS2 2005 Sports Electronic Arts 1.53
## 944 N64 1998 Simulation Nintendo 0.83
## 945 GBA 2005 Misc THQ 1.31
## 946 PC 2012 Role-Playing Activision 0.84
## 947 PS 1996 Racing Sony Computer Entertainment 1.33
## 948 PS4 2015 Action Square Enix 0.46
## 949 SNES 1993 Role-Playing SquareSoft 0.25
## 950 X360 2007 Shooter Electronic Arts 1.09
## 951 PS 1995 Simulation Sony Computer Entertainment 0.92
## 952 3DS 2014 Platform Nintendo 0.61
## 953 GEN 1994 Platform Sega 1.24
## 954 PS2 2001 Misc Namco Bandai Games 1.73
## 955 PC 2001 Simulation Electronic Arts 1.81
## 956 Wii 2007 Shooter Nintendo 0.91
## 957 DS 2010 Role-Playing Nintendo 0.22
## 958 PS4 2014 Action Bethesda Softworks 0.55
## 959 PS2 2003 Simulation Konami Digital Entertainment 1.05
## 960 DC 2000 Racing Sega 1.10
## 961 PS2 2002 Fighting Sega 0.78
## 962 PS2 2004 Platform Sony Computer Entertainment 0.88
## 963 PS2 2008 Misc Activision 1.00
## 964 GBA 2002 Platform Sega 0.93
## 965 X360 2006 Sports Electronic Arts 1.66
## 966 PS3 2010 Action Take-Two Interactive 1.41
## 967 PS 1999 Sports 989 Studios 1.00
## 968 PS3 2015 Shooter Activision 0.49
## 969 SNES 1994 Platform Virgin Interactive 1.26
## 970 PS3 2013 Adventure Sony Computer Entertainment 0.52
## 971 X360 2012 Action Microsoft Game Studios 1.05
## 972 PS2 2003 Racing Take-Two Interactive 1.25
## 973 DS 2006 Role-Playing Square Enix 0.23
## 974 PS 2001 Action THQ 1.12
## 975 PS2 2004 Action Sony Computer Entertainment 0.39
## 976 3DS 2011 Puzzle Nintendo 0.32
## 977 PS3 2010 Action Square Enix 0.45
## 978 PS3 2012 Role-Playing Capcom 0.41
## 979 WiiU 2013 Action Nintendo 0.93
## 980 PS2 2005 Action Vivendi Games 0.85
## 981 Wii 2007 Misc Disney Interactive Studios 1.16
## 982 WiiU 2013 Misc Nintendo 0.31
## 983 PS3 2013 Sports Electronic Arts 1.59
## 984 SNES 1991 Role-Playing Square 0.24
## 985 N64 2000 Platform Nintendo 0.63
## 986 XB 2001 Fighting Microsoft Game Studios 1.19
## 987 PS3 2009 Fighting THQ 1.07
## 988 GB 1991 Adventure Nintendo 0.85
## 989 PS 1998 Fighting Acclaim Entertainment 1.27
## 990 PS2 2004 Platform THQ 1.06
## 991 GBA 2001 Role-Playing Nintendo 0.93
## 992 GEN 1994 Platform Sega 1.02
## 993 NES 1986 Platform Nintendo 0.53
## 994 PS2 2004 Fighting Electronic Arts 0.86
## 995 XB 2002 Shooter Ubisoft 1.23
## 996 PS2 2002 Action Take-Two Interactive 0.86
## 997 PS3 2013 Shooter Take-Two Interactive 0.72
## 998 X360 2012 Action Square Enix 0.68
## 999 GBA 2007 Action THQ 1.26
## 1000 X360 2015 Shooter Activision 1.11
## 1001 PS2 2004 Simulation Electronic Arts 0.52
## 1002 PS3 2007 Sports Electronic Arts 0.35
## 1003 PS2 2001 Simulation Activision 0.61
## 1004 PS 1998 Sports Electronic Arts 1.68
## 1005 PS3 2013 Role-Playing Square Enix 0.90
## 1006 XB 2004 Shooter Activision 1.24
## 1007 PS2 2001 Sports Konami Digital Entertainment 0.06
## 1008 X360 2007 Shooter Microsoft Game Studios 1.00
## 1009 NES 1991 Puzzle Nintendo 0.70
## 1010 SNES 1993 Platform Capcom 0.94
## 1011 NES 1993 Platform Nintendo 0.79
## 1012 DS 2009 Simulation 505 Games 0.83
## 1013 PS2 2008 Simulation Konami Digital Entertainment 0.85
## 1014 GBA 2004 Misc THQ 1.25
## 1015 PS 1999 Adventure LucasArts 0.72
## 1016 PS2 2002 Role-Playing Namco Bandai Games 0.63
## 1017 PS3 2011 Shooter Valve 0.83
## 1018 Wii 2009 Misc MTV Games 1.19
## 1019 XOne 2015 Racing Microsoft Game Studios 0.69
## 1020 Wii 2010 Platform Sega 0.96
## 1021 N64 1996 Racing Nintendo 1.69
## 1022 PS 1998 Sports Electronic Arts 1.66
## 1023 PS4 2014 Role-Playing Activision 0.49
## 1024 PSV 2011 Shooter Sony Computer Entertainment 0.59
## 1025 PS3 2014 Shooter Activision 0.67
## 1026 PS2 2001 Sports Electronic Arts 0.85
## 1027 PS4 2016 Shooter Activision 0.64
## 1028 PS 1998 Action 989 Studios 1.48
## 1029 GB 2001 Action Electronic Arts 0.94
## 1030 Wii 2013 Action Disney Interactive Studios 1.15
## 1031 GBA 2002 Platform Universal Interactive 0.95
## 1032 X360 2012 Action Bethesda Softworks 1.06
## 1033 PS2 2003 Action Take-Two Interactive 0.85
## 1034 PS4 2015 Shooter Sony Computer Entertainment 0.61
## 1035 PS4 2015 Role-Playing Bethesda Softworks 0.66
## 1036 PS2 2008 Shooter Activision 0.61
## 1037 DS 2008 Simulation Ubisoft 0.70
## 1038 PC 2011 Shooter Activision 0.41
## 1039 XB 2004 Sports Electronic Arts 1.61
## 1040 PS2 2003 Role-Playing Ubisoft 0.80
## 1041 PC 2010 Simulation Electronic Arts 0.59
## 1042 Wii 2009 Puzzle Warner Bros. Interactive Entertainment 1.43
## 1043 PS 1998 Platform Activision 0.99
## 1044 DS 2007 Misc Mindscape 1.15
## 1045 PS2 2004 Simulation Sony Computer Entertainment Europe 0.88
## 1046 XB 2003 Racing Electronic Arts 1.09
## 1047 DS 2006 Misc Nintendo 0.00
## 1048 GBA 2001 Puzzle THQ 1.25
## 1049 Wii 2009 Sports Activision Value 1.58
## 1050 PS4 2014 Racing Ubisoft 0.34
## 1051 PS2 2009 Sports Electronic Arts 0.23
## 1052 Wii 2008 Sports Namco Bandai Games 0.99
## 1053 DS 2007 Puzzle Nintendo 0.49
## 1054 Wii 2011 Platform Nintendo 0.62
## 1055 SNES 1993 Puzzle Banpresto 0.00
## 1056 DS 2007 Action D3Publisher 0.69
## 1057 PS2 2006 Sports Electronic Arts 1.41
## 1058 PS2 2005 Shooter Sony Computer Entertainment 1.22
## 1059 XOne 2014 Sports Take-Two Interactive 1.36
## 1060 PS3 2008 Action THQ 0.88
## 1061 X360 2013 Action Deep Silver 1.01
## 1062 PS 1999 Misc Sony Computer Entertainment 0.94
## 1063 PS3 2009 Role-Playing Electronic Arts 0.96
## 1064 X360 2015 Sports Electronic Arts 0.55
## 1065 N64 1997 Fighting THQ 1.37
## 1066 PS 1998 Fighting THQ 1.10
## 1067 GBA 2001 Action Electronic Arts 0.87
## 1068 X360 2008 Racing Electronic Arts 0.79
## 1069 GBA 2002 Role-Playing Infogrames 1.52
## 1070 PC 2010 Strategy Take-Two Interactive 0.98
## 1071 GC 2005 Action Capcom 0.98
## 1072 PSV 2012 Action Activision 0.80
## 1073 PSP 2007 Shooter LucasArts 0.90
## 1074 PS2 2006 Misc Oxygen Interactive 0.82
## 1075 PS 1997 Sports Sony Computer Entertainment 1.58
## 1076 X360 2012 Action Warner Bros. Interactive Entertainment 0.90
## 1077 GB 1992 Puzzle Nintendo 0.59
## 1078 PS 1997 Shooter Namco Bandai Games 0.38
## 1079 PC 2003 Simulation Electronic Arts 1.67
## 1080 Wii 2008 Action LucasArts 1.23
## 1081 Wii 2007 Simulation Electronic Arts 0.91
## 1082 GBA 2002 Action Nintendo 1.18
## 1083 Wii 2008 Sports Ubisoft 0.94
## 1084 PS2 2003 Sports Electronic Arts 0.93
## 1085 Wii 2008 Sports THQ 0.45
## 1086 PS 2000 Sports Electronic Arts 1.58
## 1087 PS3 2006 Fighting Electronic Arts 0.81
## 1088 PS4 2013 Platform Sony Computer Entertainment Europe 0.43
## 1089 XB 2005 Shooter Activision 1.22
## 1090 NES 1989 Platform Capcom 0.91
## 1091 PS 2001 Sports Activision 1.09
## 1092 GBA 2001 Adventure THQ 0.59
## 1093 PC 2013 Strategy Activision 0.82
## 1094 XB 2003 Racing Microsoft Game Studios 0.97
## 1095 PS2 2001 Racing Midway Games 1.13
## 1096 PS2 2003 Sports Electronic Arts 1.35
## 1097 PS2 2003 Platform THQ 1.08
## 1098 PS4 2015 Action Warner Bros. Interactive Entertainment 0.63
## 1099 PS3 2007 Action Sony Computer Entertainment 0.57
## 1100 GEN 1992 Fighting Sega 1.00
## 1101 PS2 2000 Sports Electronic Arts 0.78
## 1102 X360 2012 Shooter Take-Two Interactive 0.86
## 1103 PS2 2004 Sports Midway Games 0.81
## 1104 X360 2006 Racing Electronic Arts 0.76
## 1105 PS2 2002 Sports Electronic Arts 1.25
## 1106 PS2 2005 Fighting Atari 0.96
## 1107 2600 1981 Puzzle Atari 1.54
## 1108 GC 2004 Misc Nintendo 0.90
## 1109 SNES 1991 Shooter Nintendo 1.06
## 1110 Wii 2011 Misc Namco Bandai Games 0.48
## 1111 PS2 2004 Role-Playing Enix Corporation 0.00
## 1112 X360 2008 Shooter Electronic Arts 1.09
## 1113 DS 2007 Role-Playing Square Enix 0.32
## 1114 GBA 2004 Platform Nintendo 0.80
## 1115 Wii 2011 Action Disney Interactive Studios 0.76
## 1116 2600 1982 Puzzle Atari 1.52
## 1117 PS 1999 Shooter Red Storm Entertainment 0.93
## 1118 NES 1986 Action Capcom 0.74
## 1119 PS2 2002 Sports Electronic Arts 0.80
## 1120 PS2 2005 Sports Electronic Arts 1.44
## 1121 PS2 2004 Action Ubisoft 0.54
## 1122 X360 2010 Simulation Microsoft Game Studios 1.02
## 1123 PS4 2015 Adventure Sony Computer Entertainment Europe 0.44
## 1124 XB 2004 Sports Sega 1.54
## 1125 X360 2006 Simulation Microsoft Game Studios 0.45
## 1126 GC 2001 Strategy Nintendo 0.78
## 1128 PS3 2011 Platform Sega 0.60
## 1129 PS2 2003 Sports Electronic Arts 1.18
## 1130 PS 1999 Platform Sony Computer Entertainment 0.71
## 1131 X360 2014 Sports Take-Two Interactive 1.33
## 1132 PS2 2004 Sports Electronic Arts 1.32
## 1133 X360 2010 Action Square Enix 0.59
## 1135 PS2 2005 Sports Activision 0.80
## 1136 X360 2011 Shooter Bethesda Softworks 0.82
## 1137 DS 2006 Sports Nintendo 0.99
## 1138 GC 2003 Racing Nintendo 1.01
## 1139 PS 1998 Racing Electronic Arts 0.90
## 1140 Wii 2006 Role-Playing Nintendo 0.80
## 1141 PS2 2004 Sports Electronic Arts 0.79
## 1142 X360 2013 Shooter Microsoft Game Studios 0.92
## 1143 GB 1989 Sports Nintendo 0.66
## 1144 GB 1998 Strategy Konami Digital Entertainment 0.00
## 1145 GC 2005 Sports Nintendo 0.98
## 1146 PS2 2005 Misc Sony Computer Entertainment 0.00
## 1147 DS 2007 Action THQ 1.50
## 1148 XOne 2014 Shooter Ubisoft 0.79
## 1149 Wii 2008 Simulation Konami Digital Entertainment 0.95
## 1150 DS 2011 Misc Activision 0.40
## 1151 PS2 2005 Action Take-Two Interactive 1.30
## 1152 X360 2008 Action Ubisoft 0.71
## 1153 N64 1998 Racing Video System 0.46
## 1154 2600 1981 Shooter Activision 1.49
## 1155 PS 1999 Action Konami Digital Entertainment 0.71
## 1156 DS 2008 Role-Playing Square Enix 0.19
## 1157 PS4 2016 Action Hello Games 0.58
## 1158 GC 2003 Platform Sega 1.05
## 1159 PS2 2004 Sports Global Star 1.26
## 1160 PC 1996 Role-Playing Activision 0.01
## 1161 GC 2006 Action Nintendo 1.15
## 1162 PS 1996 Fighting Sony Computer Entertainment 0.61
## 1163 PS3 2008 Action Capcom 0.58
## 1164 2600 1982 Platform Atari 1.48
## 1165 PS3 2007 Sports Konami Digital Entertainment 0.04
## 1166 X360 2008 Fighting Ubisoft 0.92
## 1167 X360 2010 Action Warner Bros. Interactive Entertainment 0.95
## 1168 PS 1999 Racing Electronic Arts 0.88
## 1169 PS4 2014 Shooter Bethesda Softworks 0.47
## 1170 Wii 2008 Sports Take-Two Interactive 0.87
## 1171 DS 2008 Misc Activision 0.85
## 1172 DS 2008 Simulation Electronic Arts 0.81
## 1173 PS 2000 Misc Sony Computer Entertainment 0.88
## 1174 X360 2012 Racing Electronic Arts 0.62
## 1175 Wii 2009 Misc Activision 0.94
## 1176 DS 2008 Misc Disney Interactive Studios 0.64
## 1177 3DS 2012 Action Square Enix 0.88
## 1178 DS 2007 Action Disney Interactive Studios 1.06
## 1179 DS 2009 Role-Playing Nintendo 0.58
## 1180 GBA 2002 Platform Vivendi Games 0.85
## 1181 PS2 2009 Sports Konami Digital Entertainment 0.10
## 1182 PS2 2001 Sports Electronic Arts 0.77
## 1183 PS2 2002 Shooter Gotham Games 0.98
## 1184 GC 2005 Misc Nintendo 0.95
## 1185 PS3 2012 Sports Konami Digital Entertainment 0.18
## 1186 PS2 2000 Racing Take-Two Interactive 0.77
## 1187 PS2 2006 Fighting Electronic Arts 1.07
## 1188 NES 1988 Platform Nintendo 0.59
## 1189 PS 1995 Action Sony Computer Entertainment 1.32
## 1190 PS4 2016 Role-Playing Namco Bandai Games 0.58
## 1191 SNES 1990 Action Capcom 0.67
## 1192 GB 2001 Role-Playing Enix Corporation 0.00
## 1193 GBA 2003 Misc Nintendo 0.68
## 1194 PS4 2013 Action Warner Bros. Interactive Entertainment 0.59
## 1195 X360 2010 Action Take-Two Interactive 0.84
## 1196 PS3 2012 Action Bethesda Softworks 0.72
## 1197 PS2 2002 Racing Atari 0.76
## 1198 XB 2003 Shooter Ubisoft 0.91
## 1199 Wii 2008 Sports Atari 0.79
## 1200 PS3 2010 Shooter Take-Two Interactive 0.85
## 1201 N64 2000 Action Electronic Arts 1.13
## 1202 PS 2001 Action Activision 0.57
## 1203 XOne 2014 Action Ubisoft 0.90
## 1204 PS3 2010 Action LucasArts 0.80
## 1205 PS3 2011 Role-Playing Namco Bandai Games 0.60
## 1206 PC 1999 Strategy Westwood Studios 1.55
## 1207 DS 2011 Strategy Warner Bros. Interactive Entertainment 1.07
## 1208 WiiU 2015 Misc Nintendo 0.69
## 1209 XOne 2013 Action Microsoft Game Studios 1.06
## 1210 Wii 2007 Action Capcom 0.68
## 1211 3DS 2015 Role-Playing Nintendo 0.71
## 1212 PS2 2000 Role-Playing Sony Computer Entertainment 0.83
## 1213 PC 2003 Strategy Activision 0.58
## 1214 X360 2006 Shooter Ubisoft 1.40
## 1215 DS 2008 Adventure Disney Interactive Studios 0.86
## 1216 PS2 2005 Sports Electronic Arts 1.26
## 1217 PS 1996 Shooter Fox Interactive 0.85
## 1218 PC 2012 Shooter Activision 0.63
## 1219 PS3 2009 Fighting Electronic Arts 0.92
## 1220 Wii 2008 Simulation Electronic Arts 0.71
## 1221 DS 2007 Action Electronic Arts 0.57
## 1222 SNES 1994 Fighting Acclaim Entertainment 1.19
## 1223 PS 1998 Sports 989 Studios 1.44
## 1224 Wii 2009 Shooter Activision 0.95
## 1225 XOne 2016 Sports Electronic Arts 0.17
## 1226 GC 2003 Sports Nintendo 1.09
## 1227 PS 1997 Sports Electronic Arts 0.85
## 1228 WiiU 2014 Platform Nintendo 0.73
## 1229 X360 2011 Shooter Electronic Arts 0.94
## 1230 PSP 2007 Racing Sega 0.44
## 1231 PS 1997 Fighting Electronic Arts 1.07
## 1232 PS2 2002 Sports Electronic Arts 0.36
## 1233 PS 1996 Racing Electronic Arts 1.43
## 1234 NES 1984 Racing Nintendo 0.00
## 1235 NES 1984 Shooter Namco Bandai Games 0.18
## 1236 PS 1998 Racing Electronic Arts 1.45
## 1237 PS 1998 Sports Electronic Arts 1.43
## 1238 PS3 2010 Action Take-Two Interactive 0.50
## 1239 PS3 2006 Shooter Activision 0.60
## 1240 GC 2002 Puzzle Atari 1.11
## 1241 PS2 2002 Action Namco Bandai Games 1.26
## 1242 XOne 2014 Sports Electronic Arts 1.30
## 1243 Wii 2010 Racing Sega 0.65
## 1244 X360 2011 Action LucasArts 0.84
## 1245 PC 2011 Sports Sega 0.02
## 1246 3DS 2013 Role-Playing GungHo 0.00
## 1247 NES 1988 Action Capcom 0.93
## 1248 PS 2001 Fighting Electronic Arts 0.23
## 1249 PS 1997 Sports Electronic Arts 1.41
## 1250 PS2 2007 Action Electronic Arts 0.35
## 1251 PS 1997 Misc Hasbro Interactive 1.18
## 1252 GC 2003 Fighting Namco Bandai Games 0.99
## 1253 PS3 2011 Shooter Sony Computer Entertainment 0.64
## 1254 PS2 2000 Racing Crave Entertainment 0.66
## 1255 PC 2010 Role-Playing Square Enix 0.86
## 1256 PS 1998 Sports Midway Games 1.41
## 1257 PS2 2002 Shooter THQ 0.49
## 1258 DS 2010 Puzzle Warner Bros. Interactive Entertainment 1.08
## 1259 PS2 2000 Sports Electronic Arts 1.19
## 1260 N64 2000 Fighting THQ 1.20
## 1261 NES 1985 Platform Nintendo 0.46
## 1262 SCD 1993 Platform Sega 1.00
## 1263 NES 1986 Platform Hudson Soft 0.00
## 1264 X360 2010 Action Capcom 0.75
## 1265 PS3 2008 Misc MTV Games 1.13
## 1266 PS 1998 Action Namco Bandai Games 1.21
## 1267 Wii 2009 Misc Disney Interactive Studios 1.08
## 1268 GC 2003 Role-Playing Nintendo 0.72
## 1269 XB 2002 Shooter Electronic Arts 1.00
## 1270 PS2 2008 Sports Electronic Arts 1.22
## 1271 DS 2008 Adventure THQ 1.00
## 1272 N64 2000 Platform Nintendo 0.82
## 1273 PS2 2006 Misc Sony Computer Entertainment 0.00
## 1274 X360 2008 Action Activision 0.82
## 1275 Wii 2010 Simulation Electronic Arts 0.61
## 1276 Wii 2009 Sports Nintendo 0.37
## 1277 DS 2006 Adventure THQ 0.43
## 1278 PS2 2006 Shooter Square Enix 0.47
## 1279 NES 1990 Sports Nintendo 0.28
## 1280 N64 1999 Fighting THQ 1.20
## 1281 GB 1997 Platform Nintendo 0.70
## 1282 PS3 2011 Role-Playing Electronic Arts 0.78
## 1283 PS2 2005 Sports Take-Two Interactive 0.72
## 1284 PS2 2004 Fighting Electronic Arts 1.08
## 1285 XB 2004 Action Ubisoft 0.82
## 1286 DS 2007 Simulation Ubisoft 0.39
## 1287 PSV 2012 Action Ubisoft 0.58
## 1288 PS3 2008 Fighting Ubisoft 0.72
## 1289 N64 1999 Action Nintendo 0.62
## 1290 GBA 2003 Platform THQ 1.04
## 1291 X360 2006 Fighting Electronic Arts 1.33
## 1292 PS3 2013 Action Konami Digital Entertainment 0.45
## 1293 DS 2008 Role-Playing Square Enix 0.69
## 1294 X360 2010 Action LucasArts 0.95
## 1295 Wii 2008 Shooter Sega 0.78
## 1296 DS 2007 Adventure Disney Interactive Studios 1.15
## 1297 PSV 2012 Platform Sony Computer Entertainment 0.40
## 1298 PS 1998 Role-Playing SquareSoft 0.29
## 1299 GBA 2004 Platform THQ 1.02
## 1300 X360 2012 Shooter Ubisoft 0.93
## 1301 X360 2008 Shooter Electronic Arts 0.81
## 1302 PS2 2003 Misc Midway Games 0.72
## 1303 DS 2008 Platform THQ 0.46
## 1305 X360 2011 Shooter THQ 0.83
## 1306 GC 2001 Puzzle Atari 0.95
## 1307 2600 1981 Platform Coleco 1.36
## 1308 PS 1998 Fighting GT Interactive 0.81
## 1309 GC 2005 Sports Nintendo 0.93
## 1310 PS3 2012 Role-Playing Electronic Arts 0.63
## 1311 Wii 2012 Action Warner Bros. Interactive Entertainment 0.94
## 1312 PS3 2012 Action Electronic Arts 0.47
## 1313 PS 1998 Fighting THQ 1.17
## 1314 PSP 2006 Fighting Sega 0.53
## 1315 3DS 2013 Platform Nintendo 0.51
## 1316 PS2 2004 Action Capcom 0.37
## 1317 X360 2013 Role-Playing Activision 0.89
## 1318 XOne 2015 Action Warner Bros. Interactive Entertainment 0.86
## 1319 PS3 2008 Shooter Take-Two Interactive 0.75
## 1320 PS2 2004 Shooter Take-Two Interactive 0.71
## 1321 PC 2011 Strategy Ubisoft 0.00
## 1322 PS2 2003 Action Capcom 0.54
## 1323 Wii 2007 Misc Electronic Arts 0.53
## 1324 GB 1996 Simulation Namco Bandai Games 0.00
## 1325 NES 1984 Misc Nintendo 0.00
## 1326 SNES 1993 Fighting Namco Bandai Games 0.00
## 1327 GB 1997 Simulation Namco Bandai Games 0.00
## 1328 N64 1999 Misc Namco Bandai Games 1.24
## 1329 Wii 2008 Puzzle Electronic Arts 0.97
## 1330 DS 2010 Role-Playing Square Enix 0.11
## 1331 PS2 2005 Sports Activision 1.38
## 1332 DS 2007 Misc Ubisoft 0.37
## 1333 DS 2007 Misc Rising Star Games 0.79
## 1334 PS2 2007 Misc Sony Computer Entertainment 0.04
## 1335 PSP 2006 Racing Sega 0.73
## 1336 PC 2013 Simulation Electronic Arts 0.48
## 1337 SNES 1996 Platform Nintendo 0.26
## 1338 PS3 2014 Shooter Ubisoft 0.33
## 1339 X360 2007 Fighting THQ 0.92
## 1340 X360 2010 Racing Microsoft Game Studios 0.92
## 1341 Wii 2006 Misc Ubisoft 1.23
## 1342 PS3 2013 Racing Electronic Arts 0.33
## 1343 PS2 2004 Sports Electronic Arts 1.03
## 1344 PS3 2011 Shooter Electronic Arts 0.73
## 1345 PS2 2002 Sports Electronic Arts 1.16
## 1346 PS 1999 Action Hasbro Interactive 0.80
## 1347 X360 2013 Action Disney Interactive Studios 0.96
## 1348 Wii 2009 Action Activision 0.91
## 1349 X360 2009 Misc Sega 0.85
## 1350 Wii 2008 Sports Electronic Arts 0.81
## 1351 GB 1988 Platform Capcom 0.82
## 1352 GBA 2004 Platform Nintendo 0.00
## 1353 PS 1999 Sports Electronic Arts 0.79
## 1354 3DS 2013 Role-Playing Square Enix 0.07
## 1355 PS2 2002 Sports Activision 0.70
## 1356 PS3 2010 Fighting THQ 0.80
## 1357 PS2 2005 Sports Electronic Arts 1.35
## 1358 GBA 2004 Action Nintendo 0.89
## 1359 PS2 2004 Sports Electronic Arts 1.15
## 1360 X360 2011 Platform Sega 0.71
## 1361 SNES 1994 Action Nintendo 0.57
## 1362 NES 1987 Sports Namco Bandai Games 0.12
## 1363 X360 2008 Action Electronic Arts 0.89
## 1364 GC 2002 Action Capcom 0.63
## 1365 DS 2009 Role-Playing Nintendo 0.00
## 1366 PS4 2014 Action Square Enix 0.47
## 1367 PSP 2006 Action LucasArts 0.58
## 1368 Wii 2010 Action Disney Interactive Studios 0.64
## 1369 X360 2009 Fighting Electronic Arts 0.95
## 1370 GC 2005 Action Eidos Interactive 1.09
## 1371 X360 2013 Fighting Warner Bros. Interactive Entertainment 0.97
## 1372 PS3 2014 Sports Electronic Arts 1.07
## 1373 GEN 1994 Platform Virgin Interactive 0.97
## 1374 PSP 2004 Racing Sony Computer Entertainment 0.36
## 1375 Wii 2010 Action Nintendo 0.87
## 1376 PS 1999 Fighting Electronic Arts 1.02
## 1377 PS2 2003 Racing Sony Computer Entertainment 0.00
## 1378 PS2 2001 Racing Sony Computer Entertainment 1.19
## 1379 PS2 2004 Racing Electronic Arts 0.69
## 1380 Wii 2010 Shooter Activision 0.82
## 1381 XB 2002 Action Activision 1.07
## 1382 PS2 2008 Racing Electronic Arts 0.38
## 1383 PS 1996 Sports Sony Computer Entertainment 1.15
## 1384 PS3 2008 Action Ubisoft 0.43
## 1385 GBA 2004 Platform THQ 0.74
## 1386 NES 1990 Role-Playing SquareSoft 0.00
## 1387 PC 2013 Shooter Electronic Arts 0.38
## 1388 PS2 2002 Racing Codemasters 0.03
## 1389 PS 2001 Sports Electronic Arts 0.78
## 1390 PS4 2016 Shooter Bethesda Softworks 0.49
## 1391 DS 2007 Role-Playing Square Enix 0.34
## 1392 DS 2009 Action Activision 1.27
## 1393 PS3 2011 Shooter Square Enix 0.50
## 1394 SNES 1994 Sports Acclaim Entertainment 1.19
## 1395 NES 1991 Action Konami Digital Entertainment 1.05
## 1396 PS2 2005 Action Tecmo Koei 0.24
## 1397 Wii 2007 Action Disney Interactive Studios 0.87
## 1398 PS3 2012 Action THQ 0.51
## 1399 X360 2011 Shooter Square Enix 0.76
## 1400 XB 2003 Action Activision 0.96
## 1401 PSP 2005 Simulation Electronic Arts 0.49
## 1402 N64 2000 Role-Playing Nintendo 0.58
## 1403 3DS 2012 Role-Playing Nintendo 0.50
## 1404 X360 2014 Shooter Electronic Arts 0.87
## 1405 PS 1998 Shooter Take-Two Interactive 0.77
## 1406 PSV 2012 Role-Playing Atlus 0.46
## 1407 PS3 2010 Action Capcom 0.43
## 1408 Wii 2009 Misc Electronic Arts 0.71
## 1409 Wii 2007 Adventure Disney Interactive Studios 1.24
## 1410 DS 2009 Puzzle 505 Games 0.80
## 1411 PS2 2001 Sports Acclaim Entertainment 0.67
## 1412 X360 2011 Action Electronic Arts 0.63
## 1413 PS2 2008 Action LucasArts 0.60
## 1414 PS3 2014 Action Ubisoft 0.46
## 1415 PS3 2006 Racing Namco Bandai Games 0.24
## 1416 PS 1998 Misc Activision 0.76
## 1417 XOne 2014 Racing Microsoft Game Studios 0.50
## 1418 PS3 2008 Racing Sony Computer Entertainment 0.43
## 1419 DS 2010 Platform Sega 0.74
## 1420 XB 2004 Role-Playing Activision 0.99
## 1421 PS3 2010 Action Warner Bros. Interactive Entertainment 0.55
## 1422 N64 1998 Strategy Nintendo 0.00
## 1423 PS3 2014 Sports Take-Two Interactive 0.86
## 1424 XB 2004 Shooter Ubisoft 0.86
## 1425 GBA 2003 Platform Vivendi Games 0.63
## 1426 X360 2008 Racing Electronic Arts 0.63
## 1427 PS2 2008 Misc Sony Computer Entertainment 0.23
## 1428 NES 1986 Shooter Konami Digital Entertainment 0.27
## 1429 SNES 1996 Role-Playing Enix Corporation 0.00
## 1430 2600 1981 Shooter Atari 1.26
## 1431 3DS 2014 Platform Nintendo 0.47
## 1432 XOne 2013 Action Microsoft Game Studios 0.82
## 1433 PS2 2002 Shooter Electronic Arts 0.67
## 1435 PS3 2011 Fighting Capcom 0.81
## 1436 PS 1999 Simulation Konami Digital Entertainment 0.00
## 1437 PS3 2010 Racing Codemasters 0.25
## 1438 PS 1997 Sports Electronic Arts 1.29
## 1439 PSP 2008 Sports Electronic Arts 0.23
## 1440 DS 2007 Misc Atari 1.18
## 1441 PSP 2007 Sports Electronic Arts 0.20
## 1442 DS 2009 Action Take-Two Interactive 0.59
## 1443 X360 2010 Action Microsoft Game Studios 0.66
## 1444 PS3 2008 Shooter Electronic Arts 0.76
## 1445 XOne 2015 Fighting Warner Bros. Interactive Entertainment 1.00
## 1446 PS2 2004 Action Electronic Arts 0.22
## 1447 XB 2003 Racing Vivendi Games 0.70
## 1448 X360 2008 Action Capcom 0.79
## 1449 PS3 2008 Shooter Ubisoft 0.66
## 1450 PSP 2005 Role-Playing Capcom 0.24
## 1451 X360 2011 Action Electronic Arts 0.70
## 1452 PS 1997 Role-Playing SquareSoft 0.15
## 1453 PS2 2004 Misc Sony Computer Entertainment 0.00
## 1454 X360 2007 Sports Electronic Arts 0.31
## 1455 PS3 2011 Adventure Sony Computer Entertainment 0.67
## 1456 PS2 2002 Racing Atari 0.95
## 1457 DS 2005 Role-Playing Nintendo 0.77
## 1458 X360 2006 Shooter Capcom 1.09
## 1459 GEN 1994 Fighting Acclaim Entertainment 1.03
## 1460 XB 2005 Shooter Activision 0.85
## 1461 GC 2004 Platform Nintendo 0.84
## 1462 PS2 2006 Racing Electronic Arts 1.22
## 1463 PS2 2003 Shooter Take-Two Interactive 0.65
## 1464 PC 2000 Strategy Electronic Arts 1.32
## 1465 PS2 2004 Sports Electronic Arts 1.10
## 1466 PS3 2007 Fighting THQ 0.62
## 1467 PS2 2004 Platform Sony Computer Entertainment 1.27
## 1468 X360 2010 Sports Ubisoft 0.79
## 1469 PS3 2011 Shooter Bethesda Softworks 0.47
## 1470 X360 2013 Platform Activision 0.86
## 1471 PS4 2013 Sports Take-Two Interactive 0.89
## 1472 GBA 2002 Action Activision 0.92
## 1473 N64 1998 Fighting Acclaim Entertainment 1.08
## 1474 GB 2000 Sports Activision 0.90
## 1475 GBA 2003 Simulation Electronic Arts 0.93
## 1476 PS 2000 Sports Electronic Arts 0.74
## 1477 GC 2004 Shooter Nintendo 0.87
## 1478 X360 2010 Fighting THQ 0.90
## 1479 PS3 2013 Role-Playing Square Enix 0.43
## 1480 PS2 2004 Racing TDK Mediactive 0.65
## 1481 DS 2007 Simulation Ubisoft 0.71
## 1482 DS 2010 Role-Playing Nintendo 0.51
## 1483 XOne 2014 Action Warner Bros. Interactive Entertainment 0.72
## 1484 PSP 2005 Racing Electronic Arts 0.69
## 1485 PS3 2008 Action Warner Bros. Interactive Entertainment 0.72
## 1486 PS3 2014 Role-Playing Namco Bandai Games 0.40
## 1487 PC 2008 Role-Playing Activision 0.01
## 1488 PS3 2014 Role-Playing Square Enix 0.52
## 1489 X360 2014 Action Warner Bros. Interactive Entertainment 0.69
## 1490 PS 1998 Racing Codemasters 0.03
## 1491 NES 1985 Puzzle Nintendo 0.73
## 1492 PS2 2002 Sports Atari 1.06
## 1493 PS 1997 Fighting Eidos Interactive 0.73
## 1494 GBA 2003 Role-Playing Capcom 0.31
## 1495 PS3 2010 Shooter Sony Computer Entertainment 0.77
## 1496 PS 1996 Sports Electronic Arts 0.73
## 1497 DS 2011 Racing Disney Interactive Studios 0.72
## 1498 X360 2012 Action Activision 0.75
## 1500 PS 1996 Racing ASC Games 0.73
## 1501 PS2 2002 Racing Bethesda Softworks 0.64
## 1502 X360 2009 Misc MTV Games 0.97
## 1503 X360 2009 Fighting Namco Bandai Games 0.71
## 1504 X360 2009 Action Activision 0.84
## 1505 Wii 2009 Misc Zoo Games 1.22
## 1506 PS2 2005 Platform Activision 0.78
## 1507 PS 1999 Adventure THQ 0.57
## 1508 DS 2009 Strategy Warner Bros. Interactive Entertainment 0.81
## 1509 2600 1983 Platform Activision 1.22
## 1510 PS2 2002 Shooter Acclaim Entertainment 0.64
## 1511 Wii 2008 Misc Disney Interactive Studios 0.68
## 1512 Wii 2008 Sports Ubisoft 1.11
## 1513 XB 2004 Racing Electronic Arts 0.84
## 1515 GBA 2002 Role-Playing Konami Digital Entertainment 0.94
## 1516 PS3 2011 Action Electronic Arts 0.45
## 1517 PS2 2006 Sports Electronic Arts 1.07
## 1518 PS3 2013 Action Deep Silver 0.56
## 1519 PS2 2005 Misc Sony Computer Entertainment 0.27
## 1520 Wii 2007 Sports Electronic Arts 0.69
## 1521 PS 1997 Racing Accolade 1.05
## 1522 SNES 1995 Role-Playing SquareSoft 0.00
## 1523 Wii 2010 Sports Electronic Arts 0.78
## 1524 PS 1999 Role-Playing Namco Bandai Games 0.56
## 1525 XOne 2015 Adventure Square Enix 0.53
## 1526 Wii 2006 Racing Electronic Arts 0.46
## 1527 WiiU 2015 Platform Nintendo 0.61
## 1528 GBA 2002 Role-Playing Capcom 0.39
## 1529 PS3 2012 Sports Electronic Arts 0.11
## 1530 GC 2002 Action Capcom 0.54
## 1531 X360 2005 Racing Electronic Arts 1.00
## 1532 XOne 2015 Shooter Ubisoft 0.73
## 1533 GBA 2003 Platform TDK Mediactive 0.93
## 1534 PS2 2004 Shooter Atari 0.63
## 1535 Wii 2008 Misc Activision 1.04
## 1536 DS 2008 Adventure Nintendo 0.76
## 1537 PS3 2008 Role-Playing Sega 0.71
## 1538 PS2 2005 Racing Take-Two Interactive 1.22
## 1539 PS2 2004 Role-Playing Sony Online Entertainment 0.63
## 1540 X360 2014 Action Ubisoft 0.72
## 1541 DS 2008 Simulation Ubisoft 0.55
## 1542 PS4 2014 Action Konami Digital Entertainment 0.45
## 1543 GB 1989 Misc Nintendo 0.00
## 1544 XOne 2015 Action Ubisoft 0.61
## 1545 PS 1999 Action 3DO 1.10
## 1546 X360 2012 Action THQ 0.72
## 1547 PS 1999 Racing 989 Studios 1.07
## 1548 PS2 2003 Action Take-Two Interactive 0.63
## 1549 3DS 2012 Action Nintendo 0.48
## 1550 PS2 2001 Action Konami Digital Entertainment 0.62
## 1551 PS3 2008 Action Eidos Interactive 0.45
## 1552 PS 1997 Platform Konami Digital Entertainment 0.58
## 1553 PC 2005 Simulation Electronic Arts 1.22
## 1554 PS2 2008 Action Warner Bros. Interactive Entertainment 0.72
## 1555 PS 1995 Racing Electronic Arts 0.71
## 1556 3DS 2012 Role-Playing Nintendo 0.44
## 1557 2600 1981 Shooter Imagic 1.18
## 1558 X360 2008 Sports Take-Two Interactive 1.00
## 1559 X360 2011 Fighting THQ 0.74
## 1560 XB 2003 Sports Activision 0.85
## 1561 NES 1984 Shooter Nintendo 0.68
## 1562 XOne 2015 Role-Playing Bethesda Softworks 0.77
## 1563 Wii 2008 Sports Deep Silver 0.96
## 1564 PS2 2002 Role-Playing Atari 0.49
## 1565 Wii 2007 Sports Take-Two Interactive 0.39
## 1566 GC 2003 Platform Sega 0.87
## 1567 PS2 2004 Action Sony Computer Entertainment 0.62
## 1568 PS 1994 Fighting Sony Computer Entertainment 0.39
## 1569 3DS 2016 Action Level 5 0.00
## 1570 DS 2008 Action Activision 0.56
## 1571 DS 2005 Simulation Atari 0.10
## 1572 PC 2010 Sports Sega 0.00
## 1573 PS 1998 Puzzle THQ 0.05
## 1574 DS 2007 Simulation Square Enix 0.54
## 1575 WiiU 2014 Action Nintendo 0.61
## 1576 PS3 2006 Racing Electronic Arts 0.49
## 1577 PC 2003 Sports Eidos Interactive 0.00
## 1578 PS 1998 Sports Codemasters 0.02
## 1579 DS 2007 Action THQ 0.50
## 1580 PS 1998 Misc Hasbro Interactive 0.99
## 1581 X360 2012 Action Warner Bros. Interactive Entertainment 0.63
## 1582 Wii 2007 Sports RTL 0.45
## 1583 PS3 2008 Shooter Sony Computer Entertainment 0.94
## 1584 PS 2000 Sports Electronic Arts 0.70
## 1585 PS2 2008 Action LucasArts 0.49
## 1587 PS3 2007 Shooter Ubisoft 0.47
## 1588 NES 1988 Role-Playing Namco Bandai Games 0.00
## 1589 NES 1987 Role-Playing Namco Bandai Games 0.00
## 1590 PS 1996 Sports Natsume 0.99
## 1591 PS3 2013 Fighting Warner Bros. Interactive Entertainment 0.48
## 1592 GC 2005 Role-Playing Nintendo 0.71
## 1593 PS2 2006 Shooter Electronic Arts 1.01
## 1594 PC 2002 Strategy Atari 1.19
## 1595 PS2 2003 Action Eidos Interactive 0.61
## 1596 PS2 2004 Action Ubisoft 0.52
## 1597 PS 1998 Racing Electronic Arts 1.05
## 1598 PS2 2005 Shooter Sony Computer Entertainment 0.85
## 1599 PS2 2001 Role-Playing Virgin Interactive 0.61
## 1600 DS 2007 Action Activision 1.12
## 1601 PS3 2011 Role-Playing Namco Bandai Games 0.29
## 1602 DS 2007 Racing Nintendo 1.10
## 1603 PS3 2009 Action Activision 0.65
## 1604 PSP 2009 Action Ubisoft 0.43
## 1605 PS 1997 Platform GT Interactive 0.75
## 1606 XOne 2015 Role-Playing Namco Bandai Games 0.66
## 1607 PS2 2000 Action Namco Bandai Games 0.24
## 1608 PS2 2008 Fighting THQ 0.69
## 1609 GB 1992 Puzzle Nintendo 0.56
## 1610 XB 2005 Action Activision 0.82
## 1611 Wii 2007 Action D3Publisher 0.55
## 1612 PS2 2001 Platform Konami Digital Entertainment 0.60
## 1613 PS3 2010 Sports Electronic Arts 0.30
## 1614 XB 2004 Action Microsoft Game Studios 0.92
## 1615 XB 2002 Platform Universal Interactive 0.59
## 1616 PS2 2004 Racing Atari 0.60
## 1617 PS 2003 Misc Sony Computer Entertainment 0.69
## 1618 PC 2014 Simulation Focus Home Interactive 0.08
## 1619 X360 2008 Misc Activision 1.00
## 1620 PS3 2007 Shooter Electronic Arts 0.25
## 1621 GB 2000 Puzzle Nintendo 0.29
## 1622 GBA 2003 Platform THQ 0.88
## 1623 PS 1998 Racing Activision 0.68
## 1624 NES 1986 Platform Konami Digital Entertainment 0.54
## 1625 GBA 2004 Platform Nintendo 0.79
## 1626 PS3 2009 Action Sega 0.44
## 1627 GBA 2003 Puzzle Nintendo 0.40
## 1628 PSP 2005 Shooter LucasArts 1.05
## 1629 PS4 2016 Sports Electronic Arts 0.92
## 1630 Wii 2008 Puzzle Electronic Arts 0.72
## 1631 PC 2015 Role-Playing Bethesda Softworks 0.50
## 1632 Wii 2007 Simulation Electronic Arts 0.45
## 1633 PS3 2012 Action Warner Bros. Interactive Entertainment 0.50
## 1634 PS3 2010 Fighting Namco Bandai Games 0.42
## 1635 GC 2004 Sports Nintendo 0.58
## 1636 PS 1997 Puzzle Sony Computer Entertainment 0.13
## 1637 GB 1997 Misc Nintendo 0.76
## 1638 GB 1999 Misc Nintendo 0.79
## 1639 NES 1984 Puzzle Namco Bandai Games 0.27
## 1640 PS2 2006 Adventure Alchemist 0.59
## 1641 PS3 2011 Racing Codemasters 0.12
## 1642 PSP 2006 Racing THQ 0.72
## 1643 PS 1997 Sports Electronic Arts 1.13
## 1644 PS 1997 Role-Playing SquareSoft 0.00
## 1645 GBA 2002 Role-Playing Nintendo 0.61
## 1646 PS 1996 Simulation Maxis 0.68
## 1647 XB 2001 Shooter Take-Two Interactive 0.98
## 1648 PS 1998 Fighting Electronic Arts 0.68
## 1649 PS2 2002 Sports Sega 0.59
## 1651 3DS 2011 Fighting Capcom 0.55
## 1652 PS2 2006 Racing THQ 1.01
## 1653 XB 2001 Misc Microsoft Game Studios 0.93
## 1654 XB 2004 Shooter Activision 0.78
## 1655 PSP 2010 Sports Electronic Arts 0.13
## 1656 PS2 2002 Platform Sony Computer Entertainment 1.03
## 1657 DS 2009 Action Activision 0.66
## 1658 SNES 1992 Platform Capcom 0.66
## 1659 PS 2001 Role-Playing Enix Corporation 0.00
## 1660 PS 1999 Action LucasArts 0.66
## 1661 PS 2000 Action Virgin Interactive 0.34
## 1662 GC 2003 Racing Electronic Arts 0.69
## 1663 GBA 2007 Misc N/A 0.87
## 1664 PS 1997 Racing Electronic Arts 0.67
## 1665 PSP 2006 Sports Electronic Arts 0.24
## 1666 PSP 2005 Sports Konami Digital Entertainment 0.01
## 1667 PS2 2002 Action Black Label Games 0.59
## 1668 PS3 2011 Action LucasArts 0.52
## 1669 PS2 2004 Racing SouthPeak Games 1.00
## 1670 GC 2004 Strategy Nintendo 0.48
## 1671 Wii 2015 Misc Ubisoft 0.52
## 1672 Wii 2008 Misc Disney Interactive Studios 0.77
## 1673 XOne 2015 Shooter Electronic Arts 0.72
## 1674 PS4 2015 Sports Take-Two Interactive 0.41
## 1675 SNES 1993 Fighting Namco Bandai Games 0.00
## 1676 NES 1986 Shooter Konami Digital Entertainment 0.00
## 1677 NES 1986 Platform Konami Digital Entertainment 0.00
## 1678 DC 1999 Sports Sega 1.12
## 1679 GB 1989 Shooter Nintendo 0.40
## 1680 XB 2003 Action Atari 0.72
## 1681 PS2 2001 Sports Electronic Arts 0.59
## 1682 DS 2006 Puzzle Nintendo 0.74
## 1683 Wii 2009 Adventure Nintendo 0.55
## 1684 PS3 2012 Action Namco Bandai Games 0.01
## 1685 PS3 2013 Sports Take-Two Interactive 0.49
## 1686 PSP 2006 Action Konami Digital Entertainment 0.38
## 1687 PS 1997 Simulation Electronic Arts 0.66
## 1688 WiiU 2014 Puzzle Nintendo 0.56
## 1689 PSP 2007 Fighting THQ 0.45
## 1690 GBA 2003 Racing THQ 0.86
## 1691 Wii 2008 Sports Konami Digital Entertainment 0.09
## 1692 GBA 2002 Platform THQ 0.92
## 1693 3DS 2012 Sports Sega 0.18
## 1694 PS2 2006 Action Vivendi Games 0.99
## 1695 N64 1998 Sports Nintendo 1.02
## 1696 NES 1990 Platform Capcom 0.68
## 1697 PS 1999 Racing Ubisoft 0.99
## 1699 XOne 2013 Sports Electronic Arts 0.41
## 1700 GC 2002 Action Activision 0.86
## 1701 GBA 2004 Role-Playing Nintendo 0.64
## 1702 PS4 2016 Sports Take-Two Interactive 0.83
## 1703 3DS 2015 Role-Playing Nintendo 0.46
## 1704 X360 2012 Misc Ubisoft 0.90
## 1705 PS 1999 Adventure Konami Digital Entertainment 0.66
## 1706 2600 1982 Racing Atari 1.10
## 1707 PS3 2012 Action Capcom 0.48
## 1708 PSP 2008 Action LucasArts 0.40
## 1709 NES 1988 Sports Namco Bandai Games 0.10
## 1710 DC 1999 Adventure Sega 0.52
## 1711 GB 2000 Sports Nintendo 0.50
## 1712 GBA 2001 Sports Activision 0.85
## 1713 PS3 2011 Fighting THQ 0.53
## 1714 PS3 2009 Fighting THQ 0.48
## 1715 DS 2011 Strategy Mastertronic 0.95
## 1716 PS3 2006 Platform Sega 0.41
## 1717 SNES 1991 Platform Capcom 0.50
## 1718 PC 2008 Strategy Electronic Arts 0.03
## 1719 PS 1996 Simulation Electronic Arts 0.65
## 1720 X360 2011 Sports Ubisoft 0.70
## 1721 PS3 2008 Shooter Electronic Arts 0.74
## 1722 PS2 2005 Shooter Activision 0.98
## 1723 PS2 2002 Platform Electronic Arts 0.57
## 1724 Wii 2008 Platform Nintendo 0.60
## 1725 DS 2007 Platform Sega 0.54
## 1726 X360 2012 Action Electronic Arts 0.58
## 1727 NES 1990 Platform Capcom 0.68
## 1728 PS4 2016 Platform Sony Computer Entertainment 0.32
## 1729 N64 1997 Action Ocean 0.74
## 1730 SNES 1993 Role-Playing SquareSoft 0.00
## 1731 PS2 2003 Sports Zoo Digital Publishing 0.57
## 1732 PS 1998 Sports 989 Studios 0.65
## 1733 PS 1996 Racing Sony Computer Entertainment 0.16
## 1734 XB 2003 Shooter Electronic Arts 0.76
## 1735 PC 2012 Sports Sega 0.00
## 1736 PS 1996 Racing Psygnosis 0.65
## 1737 X360 2008 Platform Electronic Arts 0.51
## 1738 XOne 2015 Shooter Activision 0.82
## 1739 GBA 2004 Puzzle Nintendo 0.68
## 1740 PS3 2008 Action Activision 0.43
## 1741 Wii 2009 Sports Electronic Arts 0.78
## 1742 PC 2010 Role-Playing Bethesda Softworks 0.58
## 1743 PSV 2012 Racing Electronic Arts 0.38
## 1744 PSP 2007 Role-Playing Square Enix 0.45
## 1745 PS2 2006 Racing Take-Two Interactive 0.97
## 1746 PS2 2004 Shooter Ubisoft 0.57
## 1747 PS3 2007 Misc Sony Computer Entertainment 0.45
## 1748 PS 1997 Fighting Sony Computer Entertainment 0.39
## 1749 DS 2011 Action LucasArts 0.66
## 1750 PS2 2001 Racing Electronic Arts 0.57
## 1751 N64 1999 Shooter Nintendo 0.78
## 1752 SNES 1993 Platform Capcom 0.57
## 1753 GBA 2002 Role-Playing Konami Digital Entertainment 0.84
## 1754 SAT 1995 Racing Sega 0.21
## 1755 PS 1997 Racing Eidos Interactive 0.65
## 1756 PSP 2007 Shooter Electronic Arts 0.50
## 1757 X360 2010 Shooter City Interactive 0.54
## 1758 PS3 2011 Misc Ubisoft 0.52
## 1759 XB 2005 Action Eidos Interactive 0.83
## 1760 PSP 2009 Sports Electronic Arts 0.15
## 1761 X360 2014 Shooter Electronic Arts 0.51
## 1762 PC 2008 Simulation Sega 0.00
## 1763 PS3 2011 Simulation Konami Digital Entertainment 0.52
## 1764 PS2 2001 Action Midway Games 0.56
## 1765 PS3 2007 Action Eidos Interactive 0.57
## 1766 PS2 2004 Shooter Empire Interactive 0.56
## 1767 2600 1980 Misc Activision 1.07
## 1768 PS3 2010 Action Take-Two Interactive 0.44
## 1769 Wii 2009 Platform Sega 0.69
## 1770 PC 2007 Shooter Activision 0.00
## 1771 GB 1990 Puzzle Nintendo 0.51
## 1772 SNES 1995 Sports ASCII Entertainment 0.00
## 1773 NES 1986 Action Hudson Soft 0.00
## 1774 DS 2008 Misc Disney Interactive Studios 0.50
## 1775 PS3 2011 Platform Sony Computer Entertainment 0.75
## 1776 GC 2003 Misc Nintendo 0.50
## 1777 PS3 2011 Fighting Electronic Arts 0.45
## 1778 SNES 1993 Role-Playing Enix Corporation 0.00
## 1779 PS2 2003 Platform THQ 0.56
## 1780 PS 1998 Shooter Success 0.64
## 1781 PS 1997 Puzzle Compile 0.00
## 1782 3DS 2011 Action Nintendo 0.47
## 1783 PS 2000 Action Take-Two Interactive 0.64
## 1784 PS2 2003 Action Activision 0.44
## 1785 PS2 2005 Action Sony Computer Entertainment 0.78
## 1786 PS 1998 Role-Playing SquareSoft 0.25
## 1787 PS3 2007 Sports Sony Computer Entertainment 0.31
## 1788 PS2 2005 Simulation Konami Digital Entertainment 0.95
## 1789 PS3 2008 Platform Electronic Arts 0.31
## 1790 Wii 2009 Platform Ubisoft 0.26
## 1791 N64 1998 Shooter Acclaim Entertainment 0.90
## 1792 NES 1986 Action Capcom 0.71
## 1793 SNES 1990 Simulation Nintendo 0.46
## 1794 DC 2000 Action Eidos Interactive 0.41
## 1795 GB 1991 Racing Nintendo 0.58
## 1796 XB 2003 Action Electronic Arts 0.71
## 1797 GBA 2005 Action Eidos Interactive 0.82
## 1798 PS2 2005 Role-Playing Take-Two Interactive 0.00
## 1799 X360 2009 Misc Activision 0.65
## 1800 PS2 2001 Simulation Atari 0.12
## 1801 GC 2004 Racing Electronic Arts 0.70
## 1802 XB 2002 Simulation Microsoft Game Studios 1.01
## 1803 PS3 2010 Racing Sony Computer Entertainment 0.50
## 1804 3DS 2011 Action LucasArts 0.61
## 1805 PS 1999 Sports ASCII Entertainment 0.00
## 1806 GBA 2006 Racing THQ 0.81
## 1807 3DS 2012 Role-Playing Nintendo 0.33
## 1808 XB 2004 Shooter Ubisoft 0.99
## 1809 PS4 2014 Sports Take-Two Interactive 0.38
## 1810 NES 1983 Platform Nintendo 0.23
## 1811 PS 1998 Misc Sony Computer Entertainment 0.63
## 1812 X360 2013 Sports Take-Two Interactive 0.64
## 1813 PS4 2014 Shooter Sega 0.34
## 1814 PS3 2009 Action Sega 0.21
## 1815 GBA 2005 Role-Playing Nintendo 0.81
## 1816 PS3 2009 Misc MTV Games 0.67
## 1817 X360 2011 Action Electronic Arts 0.72
## 1818 2600 1982 Shooter Atari 1.05
## 1819 PS2 2001 Racing Activision 0.55
## 1820 N64 1996 Simulation Nintendo 0.56
## 1821 X360 2010 Shooter Microsoft Game Studios 0.63
## 1822 PS3 2013 Role-Playing Square Enix 0.36
## 1823 PS3 2010 Action Konami Digital Entertainment 0.50
## 1824 X360 2011 Misc Ubisoft 0.84
## 1825 X360 2014 Action Disney Interactive Studios 0.62
## 1826 PSP 2005 Shooter Sony Computer Entertainment 1.03
## 1827 XB 2005 Shooter Activision 0.66
## 1828 NES 1992 Puzzle Nintendo 0.41
## 1829 PS2 2009 Misc Activision 0.28
## 1830 PC 2007 Sports Russel 0.00
## 1831 XB 2004 Action Activision 0.82
## 1832 XB 2003 Shooter Microsoft Game Studios 0.85
## 1833 PS4 2015 Action Warner Bros. Interactive Entertainment 0.32
## 1834 PS2 2007 Action Activision 0.63
## 1835 PS3 2008 Racing Codemasters 0.31
## 1836 PS2 2007 Misc RedOctane 0.92
## 1837 XOne 2014 Shooter Microsoft Game Studios 0.62
## 1839 XB 2005 Action Ubisoft 0.68
## 1840 NES 1983 Platform Nintendo 0.33
## 1841 PS 1995 Role-Playing Sony Computer Entertainment 0.00
## 1842 GEN 1994 Sports Acclaim Entertainment 0.95
## 1843 Wii 2007 Racing Electronic Arts 0.54
## 1844 WiiU 2013 Strategy Nintendo 0.45
## 1845 PS 1999 Role-Playing SquareSoft 0.18
## 1846 PSP 2004 Puzzle Ubisoft 0.52
## 1847 PS3 2010 Action Disney Interactive Studios 0.51
## 1848 PS3 2009 Misc Activision 0.53
## 1849 2600 1981 Shooter Activision 1.03
## 1850 X360 2007 Shooter Electronic Arts 0.45
## 1851 3DS 2015 Action Nintendo 0.52
## 1852 2600 1982 Platform Atari 1.03
## 1853 PS 1997 Sports Electronic Arts 0.61
## 1854 PS3 2012 Action Warner Bros. Interactive Entertainment 0.36
## 1855 DS 2007 Simulation Ubisoft 0.47
## 1856 PS3 2010 Fighting THQ 0.44
## 1857 GB 1999 Strategy Konami Digital Entertainment 0.00
## 1858 NES 1984 Puzzle Hudson Soft 0.00
## 1859 GB 1989 Role-Playing SquareSoft 0.00
## 1860 NES 1989 Role-Playing Namco Bandai Games 0.00
## 1861 N64 1998 Racing Nintendo 0.45
## 1862 NES 1983 Platform Nintendo 0.51
## 1863 Wii 2008 Shooter Electronic Arts 0.92
## 1864 PS2 2001 Sports Electronic Arts 0.52
## 1865 PS2 2006 Misc Sony Computer Entertainment 0.12
## 1866 PS2 2006 Misc Sony Computer Entertainment 0.00
## 1867 GC 2003 Role-Playing Nintendo 0.54
## 1868 PSP 2005 Role-Playing Activision 0.54
## 1869 PS 1998 Role-Playing Sony Computer Entertainment 0.26
## 1870 PS3 2013 Role-Playing Square Enix 0.31
## 1871 PSP 2008 Action LucasArts 0.43
## 1872 DS 2008 Simulation Ubisoft 0.63
## 1873 PSP 2007 Action Electronic Arts 0.24
## 1874 PS2 2006 Adventure Sega 0.05
## 1875 X360 2009 Sports Electronic Arts 0.82
## 1876 GBA 2003 Role-Playing Atari 0.78
## 1877 PS3 2007 Fighting Sega 0.29
## 1878 DC 2000 Sports Sega 1.02
## 1879 PS 1998 Simulation Konami Digital Entertainment 0.00
## 1880 PSP 2005 Misc Sony Computer Entertainment 0.75
## 1881 DS 2006 Action LucasArts 0.96
## 1882 XB 2003 Sports Electronic Arts 1.02
## 1883 PC 2009 Strategy Sega 0.01
## 1884 PS2 2006 Action Electronic Arts 0.89
## 1885 Wii 2009 Sports Electronic Arts 0.61
## 1886 PS2 2002 Shooter LucasArts 0.53
## 1887 PS 1997 Simulation Taito 0.00
## 1888 PS3 2010 Action Electronic Arts 0.64
## 1889 DS 2010 Racing Sega 0.44
## 1890 PS3 2012 Action Activision 0.35
## 1891 Wii 2007 Adventure Nintendo 0.44
## 1892 PS 1998 Sports Midway Games 0.60
## 1893 X360 2010 Racing Sega 0.74
## 1894 PS2 2003 Racing Electronic Arts 0.53
## 1895 PS3 2008 Action Ubisoft 0.47
## 1896 PS2 2002 Platform THQ 0.53
## 1897 PC 2015 Action Take-Two Interactive 0.36
## 1898 Wii 2009 Sports THQ 0.87
## 1899 PS2 2002 Sports Agetec 0.53
## 1900 DS 2009 Adventure Electronic Arts 0.55
## 1901 Wii 2009 Action Capcom 0.48
## 1902 X360 2012 Action Electronic Arts 1.02
## 1903 PSP 2009 Action Take-Two Interactive 0.28
## 1904 Wii 2010 Sports Electronic Arts 0.26
## 1905 PS3 2007 Shooter Electronic Arts 0.28
## 1906 2600 1982 Platform Atari 1.01
## 1907 X360 2008 Action Eidos Interactive 0.53
## 1908 PS2 2004 Shooter Ubisoft 0.64
## 1909 PS3 2011 Racing Codemasters 0.27
## 1910 WiiU 2013 Platform Nintendo 0.47
## 1911 DS 2008 Simulation Electronic Arts 0.67
## 1912 PS 1998 Sports Midway Games 0.60
## 1913 GBA 2003 Fighting Atari 0.77
## 1914 GBA 2002 Platform Ubisoft 0.77
## 1915 GC 2005 Shooter Nintendo 0.68
## 1916 PS3 2008 Fighting Namco Bandai Games 0.49
## 1917 X360 2011 Fighting Capcom 0.79
## 1918 X360 2013 Sports Electronic Arts 1.01
## 1919 PS 1999 Misc Sony Computer Entertainment 0.00
## 1920 PS2 2006 Shooter Activision 0.89
## 1921 DS 2008 Simulation Ubisoft 0.65
## 1922 X360 2010 Action Take-Two Interactive 0.57
## 1923 X360 2008 Action Take-Two Interactive 0.53
## 1924 SAT 1994 Fighting Sega 0.17
## 1925 PC 1999 Sports Eidos Interactive 0.00
## 1926 PS2 2009 Fighting THQ 0.53
## 1927 X360 2007 Sports Konami Digital Entertainment 0.08
## 1928 DS 2005 Platform Nintendo 0.72
## 1929 PS 1997 Sports Electronic Arts 0.59
## 1930 PS2 2005 Fighting Namco Bandai Games 0.74
## 1931 PS3 2013 Platform Activision 0.43
## 1932 PS3 2012 Racing Codemasters 0.12
## 1933 PSP 2005 Sports Sony Computer Entertainment 0.10
## 1934 Wii 2011 Action Disney Interactive Studios 0.67
## 1935 PS 1995 Racing Sony Computer Entertainment 0.17
## 1936 X360 2011 Action Disney Interactive Studios 0.54
## 1937 PS 1999 Racing Electronic Arts 0.59
## 1938 PS 1998 Sports Electronic Arts 0.59
## 1939 PS2 2006 Fighting Midway Games 0.88
## 1940 X360 2010 Shooter Sega 0.55
## 1941 PS2 2002 Racing Electronic Arts 0.52
## 1942 DS 2008 Misc GSP 0.23
## 1943 X360 2010 Action THQ 0.67
## 1944 PS3 2007 Racing Codemasters 0.16
## 1945 DS 2007 Shooter Activision 0.96
## 1946 PS 1998 Misc D3Publisher 0.00
## 1947 Wii 2008 Sports Sega 0.28
## 1948 PS2 2005 Sports Electronic Arts 0.52
## 1949 PS3 2012 Action Square Enix 0.31
## 1950 X360 2008 Shooter Electronic Arts 0.65
## 1951 PS 1999 Strategy Microprose 0.18
## 1952 PS2 2003 Action Universal Interactive 0.52
## 1953 PS3 2008 Action Activision 0.44
## 1954 N64 1998 Sports Midway Games 1.02
## 1955 N64 1997 Sports Acclaim Entertainment 1.01
## 1956 X360 2009 Misc Activision 0.56
## 1957 DS 2007 Platform Take-Two Interactive 0.97
## 1958 PC 2001 Role-Playing Vivendi Games 1.03
## 1959 PS4 2016 Fighting Namco Bandai Games 0.39
## 1960 GBA 2004 Action Activision 0.76
## 1961 PS3 2007 Sports Sega 0.23
## 1962 PS2 2002 Racing Play It 0.52
## 1963 PS3 2007 Simulation Sony Computer Entertainment 0.49
## 1964 DS 2007 Adventure Capcom 0.32
## 1965 X360 2014 Action Ubisoft 0.58
## 1966 2600 1981 Shooter Imagic 0.99
## 1967 PSP 2006 Shooter Sony Computer Entertainment 0.81
## 1968 Wii 2014 Action Activision 0.42
## 1969 PS3 2010 Shooter Sega 0.41
## 1970 2600 1980 Misc Atari 0.99
## 1971 Wii 2010 Misc Ubisoft 0.27
## 1972 NES 1986 Platform Hudson Soft 0.00
## 1973 PS 1996 Role-Playing Sony Computer Entertainment 0.00
## 1974 NES 1985 Fighting Namco Bandai Games 0.00
## 1975 SNES 1996 Sports ASCII Entertainment 0.00
## 1976 PS3 2012 Action THQ 0.55
## 1977 PS2 2002 Sports Sega 0.51
## 1978 PS4 2015 Fighting Namco Bandai Games 0.30
## 1979 XB 2001 Racing Electronic Arts 0.78
## 1980 PS 2000 Sports Acclaim Entertainment 0.91
## 1981 DS 2007 Simulation Ubisoft 0.45
## 1982 X360 2009 Fighting THQ 0.56
## 1983 XB 2005 Racing Microsoft Game Studios 0.52
## 1984 X360 2006 Platform Sega 0.44
## 1985 Wii 2009 Adventure Electronic Arts 0.62
## 1986 PS 1998 Simulation Sony Computer Entertainment 0.19
## 1987 DS 2012 Role-Playing Nintendo 0.58
## 1988 X360 2007 Action Electronic Arts 0.54
## 1989 Wii 2008 Action Warner Bros. Interactive Entertainment 0.46
## 1990 PS2 2003 Sports Electronic Arts 0.51
## 1992 Wii 2007 Fighting Atari 0.33
## 1993 DS 2010 Action Disney Interactive Studios 0.58
## 1994 PS 1997 Role-Playing Namco Bandai Games 0.09
## 1995 PS 2000 Racing Acclaim Entertainment 0.58
## 1996 DS 2009 Adventure Disney Interactive Studios 0.57
## 1997 PS 1996 Action Virgin Interactive 0.45
## 1998 GC 2003 Fighting Nintendo 0.44
## 1999 PS2 2006 Simulation Konami Digital Entertainment 0.87
## 2000 X360 2011 Shooter Bethesda Softworks 0.59
## 2001 GBA 2001 Racing Nintendo 0.39
## 2002 N64 1997 Puzzle Hudson Soft 0.50
## 2003 PS 1998 Racing Acclaim Entertainment 0.91
## 2004 X360 2009 Action Activision 0.62
## 2005 PS4 2015 Racing Slightly Mad Studios 0.17
## 2006 XB 2005 Racing Electronic Arts 0.53
## 2007 DS 2011 Platform Nintendo 0.52
## 2008 XOne 2013 Action Warner Bros. Interactive Entertainment 0.61
## 2009 DS 2010 Simulation Activision 0.68
## 2010 PS3 2007 Shooter Ubisoft 0.34
## 2011 PSP 2009 Racing Sony Computer Entertainment 0.16
## 2012 PSP 2005 Racing Sony Computer Entertainment 0.47
## 2013 PS4 2014 Sports Electronic Arts 0.46
## 2014 PS2 2005 Racing THQ 0.86
## 2015 PS3 2008 Platform Sega 0.56
## 2016 Wii 2007 Sports Electronic Arts 0.94
## 2017 PS3 2011 Platform Ubisoft 0.33
## 2018 Wii 2012 Action Disney Interactive Studios 0.72
## 2019 PS2 2003 Sports Electronic Arts 0.50
## 2021 NES 1985 Puzzle Hudson Soft 0.18
## 2022 Wii 2007 Action Electronic Arts 0.45
## 2023 PC 1996 Action Eidos Interactive 0.96
## 2024 Wii 2008 Misc MTV Games 0.94
## 2025 PS 1998 Fighting Virgin Interactive 0.38
## 2026 X360 2011 Shooter Electronic Arts 0.61
## 2027 Wii 2007 Sports Electronic Arts 0.32
## 2028 Wii 2007 Fighting Tomy Corporation 0.45
## 2029 X360 2007 Shooter Ubisoft 0.87
## 2030 WiiU 2012 Action Ubisoft 0.53
## 2031 GC 2004 Platform Activision 0.73
## 2032 DS 2007 Simulation Ubisoft 0.51
## 2033 PS3 2010 Role-Playing Namco Bandai Games 0.28
## 2034 SNES 1993 Action Capcom 0.39
## 2035 Wii 2008 Platform THQ 0.51
## 2036 PS 1997 Action Electronic Arts 0.57
## 2037 X360 2007 Simulation Atari 0.69
## 2038 XB 2006 Sports Electronic Arts 0.97
## 2039 PS3 2014 Action Disney Interactive Studios 0.44
## 2040 PS2 2004 Action Electronic Arts 0.50
## 2041 PS 1998 Puzzle Hasbro Interactive 0.56
## 2042 WiiU 2014 Action Nintendo 0.34
## 2043 X360 2008 Action Ubisoft 0.54
## 2044 PSP 2010 Action Sony Computer Entertainment 0.41
## 2045 3DS 2011 Platform Sega 0.44
## 2046 X360 2008 Action Tecmo Koei 0.65
## 2047 SNES 1995 Sports Acclaim Entertainment 0.87
## 2048 PC 2003 Sports Eidos Interactive 0.00
## 2049 Wii 2010 Misc Activision 0.48
## 2050 DS 2006 Misc Sega 0.00
## 2051 PS 1997 Simulation Tecmo Koei 0.12
## 2052 PS3 2014 Action Warner Bros. Interactive Entertainment 0.33
## 2053 PS3 2009 Racing Codemasters 0.27
## 2054 PS4 2014 Platform Ubisoft 0.21
## 2055 Wii 2009 Shooter Electronic Arts 0.93
## 2056 PS2 2003 Racing Empire Interactive 0.49
## 2057 PS 1997 Role-Playing Capcom 0.29
## 2058 X360 2008 Sports Konami Digital Entertainment 0.13
## 2059 PS2 2000 Fighting Tecmo Koei 0.30
## 2060 NES 1985 Shooter Capcom 0.65
## 2061 N64 2000 Racing Nintendo 0.65
## 2062 NES 1991 Sports Nintendo 0.41
## 2063 GB 1997 Misc Nintendo 0.63
## 2064 PS2 2004 Misc Sammy Corporation 0.00
## 2065 XB 2003 Fighting Namco Bandai Games 0.78
## 2066 PS3 2008 Shooter Ubisoft 0.49
## 2067 X360 2012 Action THQ 0.72
## 2068 X360 2006 Sports Konami Digital Entertainment 0.08
## 2069 PS 1995 Racing Electronic Arts 0.56
## 2070 PS 2000 Sports Sony Computer Entertainment 0.56
## 2071 PSV 2013 Shooter Sony Computer Entertainment Europe 0.25
## 2072 PS 1996 Sports Electronic Arts 0.55
## 2073 PS2 2002 Action Tecmo Koei 0.13
## 2074 DS 2005 Strategy THQ 0.86
## 2075 PS3 2013 Misc Ubisoft 0.51
## 2076 PS3 2013 Action Electronic Arts 0.44
## 2077 Wii 2010 Misc THQ 0.89
## 2078 PS3 2013 Action Disney Interactive Studios 0.48
## 2079 X360 2011 Role-Playing Namco Bandai Games 0.64
## 2080 DS 2008 Puzzle Ubisoft 0.17
## 2081 PS 2000 Misc Sony Computer Entertainment 0.55
## 2082 X360 2013 Action Electronic Arts 0.64
## 2083 DS 2005 Adventure Capcom 0.49
## 2084 XB 2000 Sports Microsoft Game Studios 0.74
## 2085 GC 2003 Racing Vivendi Games 0.77
## 2086 DS 2008 Simulation Electronic Arts 0.59
## 2088 X360 2013 Action Ubisoft 0.57
## 2089 PSP 2006 Simulation Namco Bandai Games 0.37
## 2090 X360 2011 Sports Electronic Arts 0.94
## 2091 PS3 2011 Action Disney Interactive Studios 0.36
## 2092 Wii 2009 Misc Activision 0.60
## 2093 Wii 2009 Racing THQ 0.61
## 2094 PS 1998 Platform GT Interactive 0.55
## 2095 PS3 2009 Simulation Sony Computer Entertainment 0.35
## 2096 Wii 2009 Action Warner Bros. Interactive Entertainment 0.88
## 2097 PSP 2008 Racing Take-Two Interactive 0.52
## 2098 PS2 2000 Action Sony Computer Entertainment 0.30
## 2099 PS3 2008 Misc Activision 0.73
## 2100 Wii 2007 Fighting THQ 0.38
## 2101 Wii 2009 Sports Electronic Arts 0.23
## 2102 GC 2005 Platform Sega 0.76
## 2103 PC 2012 Simulation Focus Home Interactive 0.00
## 2104 PC 2008 Role-Playing Bethesda Softworks 0.02
## 2105 DS 2006 Racing THQ 0.85
## 2106 PSP 2008 Sports Konami Digital Entertainment 0.02
## 2107 PC 2012 Shooter Ubisoft 0.21
## 2108 Wii 2010 Role-Playing Nintendo 0.49
## 2109 X360 2013 Misc Ubisoft 0.72
## 2110 GBA 2005 Misc Nintendo 0.50
## 2111 PS3 2010 Racing Sega 0.36
## 2112 NES 1993 Puzzle Nintendo 0.62
## 2113 N64 1998 Racing Electronic Arts 0.94
## 2116 DS 2010 Role-Playing Square Enix 0.56
## 2117 PS3 2014 Role-Playing Ubisoft 0.42
## 2118 PS3 2011 Racing Ubisoft 0.24
## 2119 PS3 2012 Shooter 505 Games 0.38
## 2120 X360 2014 Shooter Ubisoft 0.45
## 2121 PC 2005 Action Take-Two Interactive 0.00
## 2122 PS3 2013 Action Ubisoft 0.34
## 2123 PS3 2013 Action Konami Digital Entertainment 0.03
## 2124 X360 2015 Sports Electronic Arts 0.82
## 2125 PS2 2009 Sports Electronic Arts 0.88
## 2126 X360 2009 Action Electronic Arts 0.62
## 2127 DS 2006 Simulation Namco Bandai Games 0.09
## 2128 PS4 2015 Role-Playing Square Enix 0.37
## 2129 PS3 2007 Sports Electronic Arts 0.89
## 2130 Wii 2008 Platform THQ 0.50
## 2131 XB 2005 Sports Electronic Arts 0.73
## 2132 PC 2012 Role-Playing Electronic Arts 0.40
## 2133 X360 2009 Sports Take-Two Interactive 0.88
## 2134 GBA 2003 Strategy Nintendo 0.49
## 2136 X360 2011 Action Activision 0.53
## 2137 Wii 2010 Sports Disney Interactive Studios 0.56
## 2138 PS2 2003 Sports Electronic Arts 0.47
## 2139 PS2 2007 Action Take-Two Interactive 0.78
## 2140 X360 2015 Sports Take-Two Interactive 0.77
## 2141 XB 2004 Sports Electronic Arts 0.33
## 2142 Wii 2012 Action Warner Bros. Interactive Entertainment 0.52
## 2143 SNES 1992 Role-Playing SquareSoft 0.00
## 2144 2600 1981 Platform Atari 0.90
## 2145 GC 2006 Action LucasArts 0.75
## 2147 PSV 2013 Role-Playing Square Enix 0.21
## 2148 PS 2000 Shooter Electronic Arts 0.54
## 2149 DS 2005 Simulation Electronic Arts 0.82
## 2150 PS2 2002 Role-Playing Sony Computer Entertainment 0.38
## 2151 PS 1999 Misc Sony Computer Entertainment 0.54
## 2152 PS3 2012 Action Sony Computer Entertainment 0.50
## 2153 PS 1999 Simulation Konami Digital Entertainment 0.00
## 2154 DS 2011 Misc THQ 0.72
## 2155 Wii 2012 Role-Playing Square Enix 0.00
## 2156 DS 2011 Action Disney Interactive Studios 0.37
## 2157 PSP 2006 Adventure Sony Computer Entertainment 0.30
## 2158 N64 1996 Fighting GT Interactive 0.72
## 2159 NES 1986 Shooter Hudson Soft 0.32
## 2160 X360 2008 Platform Sega 0.54
## 2161 PS3 2010 Shooter Capcom 0.29
## 2162 PS2 2000 Sports Electronic Arts 0.47
## 2163 3DS 2012 Role-Playing Square Enix 0.00
## 2164 DS 2008 Sports Ubisoft 0.30
## 2165 PS3 2012 Shooter Ubisoft 0.41
## 2166 DS 2006 Action Capcom 0.39
## 2167 PS2 2002 Platform Sony Computer Entertainment 0.36
## 2168 XB 2002 Fighting Midway Games 0.77
## 2169 PC 2011 Action Namco Bandai Games 0.25
## 2170 3DS 2011 Simulation Nintendo 0.40
## 2171 PS3 2013 Fighting Namco Bandai Games 0.32
## 2172 X360 2015 Action Warner Bros. Interactive Entertainment 0.47
## 2173 XB 2004 Sports Global Star 0.88
## 2175 PS2 2004 Misc Play It 0.80
## 2176 PS2 2005 Action Ubisoft 0.36
## 2177 GC 2003 Platform THQ 0.74
## 2178 X360 2014 Role-Playing Ubisoft 0.57
## 2179 DS 2008 Action Koch Media 0.65
## 2180 PS3 2008 Misc Sony Computer Entertainment 0.27
## 2181 Wii 2011 Racing Disney Interactive Studios 0.46
## 2182 PS 1996 Role-Playing Sony Computer Entertainment 0.26
## 2183 PS2 2000 Strategy Electronic Arts 0.27
## 2184 GBA 2003 Misc Konami Digital Entertainment 0.68
## 2185 PS 1999 Sports Electronic Arts 0.53
## 2186 PS3 2009 Action Electronic Arts 0.54
## 2187 PS3 2011 Action Activision 0.39
## 2188 Wii 2009 Misc Activision 0.41
## 2189 PS4 2015 Shooter Take-Two Interactive 0.35
## 2190 PS3 2008 Fighting THQ 0.51
## 2191 X360 2010 Shooter Electronic Arts 0.62
## 2192 Wii 2009 Sports Activision 0.70
## 2193 X360 2014 Action Warner Bros. Interactive Entertainment 0.48
## 2194 Wii 2011 Misc Nintendo 0.24
## 2195 PS2 2004 Shooter Sony Computer Entertainment 0.79
## 2196 PS3 2011 Action Square Enix 0.27
## 2197 PS2 2003 Racing Codemasters 0.01
## 2198 3DS 2011 Shooter Nintendo 0.48
## 2199 GC 2004 Platform THQ 0.73
## 2200 X360 2013 Misc Ubisoft 0.69
## 2201 PS 1996 Misc GT Interactive 0.52
## 2202 Wii 2006 Racing THQ 0.83
## 2203 PC 2012 Action Ubisoft 0.28
## 2204 PS2 2003 Action Konami Digital Entertainment 0.46
## 2205 3DS 2012 Sports Nintendo 0.26
## 2206 X360 2012 Action Namco Bandai Games 0.48
## 2207 X360 2009 Action Sega 0.51
## 2208 PS2 2005 Shooter THQ 0.78
## 2209 XB 2005 Sports Electronic Arts 0.70
## 2210 PS 1999 Role-Playing SquareSoft 0.10
## 2211 X360 2009 Sports Electronic Arts 0.87
## 2212 PS 1999 Sports Sony Computer Entertainment 0.52
## 2213 WiiU 2016 Action Nintendo 0.48
## 2214 PS2 2006 Action Take-Two Interactive 0.75
## 2215 XB 2003 Action Ubisoft 0.57
## 2216 PSP 2008 Role-Playing Sega 0.19
## 2217 PS2 2003 Sports Sony Computer Entertainment 0.46
## 2218 PS2 2006 Sports Sony Computer Entertainment 0.78
## 2219 PS2 2002 Sports Electronic Arts 0.46
## 2220 X360 2009 Shooter Codemasters 0.36
## 2221 Wii 2010 Sports Take-Two Interactive 0.78
## 2222 PS3 2009 Misc Sony Computer Entertainment 0.16
## 2223 GBA 2005 Misc N/A 0.67
## 2224 XB 2002 Sports Activision 0.59
## 2225 PC 2012 Shooter Take-Two Interactive 0.42
## 2226 Wii 2009 Sports Electronic Arts 0.29
## 2227 PS3 2008 Role-Playing Sony Computer Entertainment 0.33
## 2228 PS3 2012 Sports Electronic Arts 0.35
## 2229 Wii 2008 Racing Sega 0.50
## 2230 PS3 2015 Action Warner Bros. Interactive Entertainment 0.34
## 2231 DS 2007 Simulation Game Factory 0.85
## 2232 GBA 2004 Racing THQ 0.67
## 2233 2600 1981 Action Parker Bros. 0.87
## 2234 NES 1991 Platform Capcom 0.51
## 2235 NES 1987 Platform Konami Digital Entertainment 0.45
## 2236 N64 1999 Platform Activision 0.71
## 2237 GBA 2003 Action Unknown 0.67
## 2238 PS2 2007 Sports Sony Computer Entertainment 0.77
## 2239 X360 2014 Action Activision 0.54
## 2240 GC 2006 Racing THQ 0.72
## 2241 PS3 2008 Shooter Ubisoft 0.44
## 2242 DS 2010 Role-Playing Level 5 0.00
## 2243 WiiU 2016 Fighting Namco Bandai Games 0.47
## 2244 PS 1999 Racing Ubisoft 0.52
## 2245 PS2 2003 Action Konami Digital Entertainment 0.45
## 2246 PS2 2001 Simulation Titus 0.45
## 2247 X360 2006 Role-Playing Microsoft Game Studios 0.30
## 2248 PS 2000 Action Electronic Arts 0.51
## 2249 X360 2010 Sports Electronic Arts 0.86
## 2250 PS 1997 Sports Electronic Arts 0.51
## 2251 X360 2012 Sports Electronic Arts 0.17
## 2252 PS3 2010 Sports Electronic Arts 0.52
## 2253 PSP 2006 Action THQ 0.55
## 2254 X360 2008 Fighting THQ 0.58
## 2255 X360 2010 Action Electronic Arts 0.63
## 2256 X360 2011 Misc Activision 0.87
## 2257 PS 1996 Sports Acclaim Entertainment 0.51
## 2258 Wii 2008 Action Activision 0.50
## 2259 N64 1999 Fighting Electronic Arts 0.63
## 2260 NES 1985 Platform Nintendo 0.39
## 2261 PC 2008 Adventure Ubisoft 0.01
## 2262 3DS 2013 Adventure Nintendo 0.16
## 2263 X360 2013 Shooter Electronic Arts 0.51
## 2264 PS4 2014 Action Warner Bros. Interactive Entertainment 0.37
## 2265 PS3 2011 Action Tecmo Koei 0.25
## 2266 PS3 2014 Action Bethesda Softworks 0.26
## 2267 PS3 2012 Sports Sony Computer Entertainment 0.86
## 2268 GC 2006 Racing Sega 0.71
## 2269 PS2 2003 Racing Empire Interactive 0.45
## 2270 PS 1996 Fighting Sony Computer Entertainment 0.12
## 2271 X360 2007 Role-Playing Microsoft Game Studios 0.45
## 2272 PS4 2015 Sports Sony Computer Entertainment 0.67
## 2273 PS3 2009 Shooter Codemasters 0.23
## 2274 PS3 2011 Shooter THQ 0.32
## 2275 Wii 2007 Sports Bethesda Softworks 0.85
## 2276 PS2 2002 Sports Activision 0.45
## 2277 PS3 2009 Action Ubisoft 0.32
## 2278 3DS 2012 Action Marvelous Entertainment 0.41
## 2279 X360 2008 Strategy Ubisoft 0.58
## 2280 PS2 2002 Sports Electronic Arts 0.45
## 2281 PS2 2003 Racing Genki 0.35
## 2282 PS3 2009 Action Activision 0.47
## 2283 PS 2000 Racing Codemasters 0.02
## 2284 N64 1998 Platform Hasbro Interactive 0.72
## 2285 PS3 2009 Racing THQ 0.52
## 2286 X360 2015 Adventure Mojang 0.46
## 2288 X360 2009 Role-Playing Activision 0.68
## 2289 DS 2008 Shooter Activision 0.57
## 2290 SNES 1994 Simulation Hudson Soft 0.00
## 2291 XB 2004 Misc Sega 0.61
## 2292 PS3 2009 Misc Activision 0.42
## 2293 XOne 2014 Role-Playing Electronic Arts 0.55
## 2294 PS3 2007 Action Electronic Arts 0.38
## 2295 PS2 2002 Sports Electronic Arts 0.44
## 2297 SNES 1996 Racing ASCII Entertainment 0.00
## 2298 PS2 2004 Sports Sony Computer Entertainment 0.44
## 2299 PS3 2011 Shooter Sony Computer Entertainment 0.66
## 2300 PS2 2005 Racing Electronic Arts 0.75
## 2301 PS3 2008 Misc Sony Computer Entertainment 0.28
## 2302 Wii 2008 Sports Atari 0.38
## 2303 PS 1995 Racing Psygnosis 0.50
## 2304 DS 2008 Puzzle Midway Games 0.30
## 2305 PS3 2013 Shooter Electronic Arts 0.26
## 2306 PS 1999 Action 989 Studios 0.50
## 2307 PS2 2006 Sports Sony Computer Entertainment 0.17
## 2308 XB 2003 Platform Sega 0.41
## 2309 PSP 2009 Shooter Sony Computer Entertainment 0.27
## 2310 PS3 2011 Sports Electronic Arts 0.52
## 2311 DS 2008 Action LucasArts 0.51
## 2312 N64 1998 Sports Electronic Arts 0.84
## 2313 PS2 2007 Platform Activision 0.74
## 2314 XB 2002 Shooter Electronic Arts 0.65
## 2315 Wii 2008 Misc Sega 0.42
## 2316 PC 2014 Role-Playing Bethesda Softworks 0.32
## 2317 PS3 2008 Racing Disney Interactive Studios 0.42
## 2318 Wii 2008 Sports Electronic Arts 0.29
## 2319 DS 2008 Role-Playing Nintendo 0.84
## 2320 PS3 2012 Action Sony Computer Entertainment 0.42
## 2321 XB 2004 Role-Playing Activision 0.62
## 2322 XB 2004 Sports Electronic Arts 0.81
## 2323 PS2 2003 Sports Electronic Arts 0.44
## 2324 X360 2010 Sports THQ 0.73
## 2325 GBA 2005 Platform Activision 0.62
## 2326 PS3 2009 Shooter Ubisoft 0.35
## 2327 PSP 2006 Shooter Sony Computer Entertainment 0.44
## 2328 Wii 2007 Sports Electronic Arts 0.82
## 2329 PS2 2005 Sports Unknown 0.74
## 2330 PS4 2015 Action Warner Bros. Interactive Entertainment 0.32
## 2331 GBA 2001 Platform Konami Digital Entertainment 0.60
## 2332 DS 2008 Role-Playing Sega 0.51
## 2333 PS2 2005 Sports Electronic Arts 0.74
## 2334 GBA 2004 Adventure Nintendo 0.46
## 2335 PS3 2012 Platform Sony Computer Entertainment 0.60
## 2336 GBA 2004 Strategy Nintendo 0.42
## 2337 GB 2001 Strategy Nintendo 0.00
## 2338 GC 2003 Action THQ 0.69
## 2339 Wii 2008 Adventure Ubisoft 0.36
## 2340 PS 1997 Simulation Sony Computer Entertainment 0.16
## 2341 Wii 2009 Racing Codemasters 0.15
## 2342 PS2 2001 Sports Sega 0.44
## 2343 PS4 2016 Sports Electronic Arts 0.28
## 2344 PSP 2011 Fighting Square Enix 0.21
## 2345 3DS 2013 Action Warner Bros. Interactive Entertainment 0.42
## 2346 X360 2010 Racing Codemasters 0.18
## 2347 Wii 2006 Racing Ubisoft 0.81
## 2348 PC 2009 Shooter Activision 0.01
## 2349 WiiU 2013 Sports Nintendo 0.39
## 2350 X360 2012 Role-Playing Electronic Arts 0.55
## 2351 Wii 2011 Shooter Activision 0.60
## 2352 PS 2000 Sports Sony Computer Entertainment 0.49
## 2353 PS2 2006 Misc Sony Computer Entertainment 0.00
## 2354 SNES 1995 Role-Playing SquareSoft 0.00
## 2355 PS 1996 Platform Capcom 0.44
## 2356 X360 2010 Fighting THQ 0.44
## 2357 X360 2012 Action Square Enix 0.38
## 2358 PC 2008 Action Take-Two Interactive 0.01
## 2359 DS 2008 Misc Pinnacle 0.00
## 2360 X360 2011 Misc Ubisoft 0.62
## 2361 Wii 2009 Action Atari 0.60
## 2362 X360 2010 Misc MTV Games 0.73
## 2363 3DS 2012 Action Capcom 0.30
## 2364 PS2 2005 Action Take-Two Interactive 0.43
## 2365 PS2 2007 Misc Sony Computer Entertainment 0.32
## 2366 Wii 2009 Simulation Nintendo 0.47
## 2367 PS 1996 Shooter CTO SpA 0.49
## 2368 XOne 2015 Action Square Enix 0.42
## 2369 PSP 2004 Strategy Konami Digital Entertainment 0.32
## 2370 Wii 2008 Simulation 505 Games 0.51
## 2371 PS3 2012 Fighting Namco Bandai Games 0.28
## 2372 PS2 2004 Sports Global Star 0.43
## 2373 X360 2008 Racing Codemasters 0.33
## 2374 PSP 2009 Role-Playing Sega 0.08
## 2375 XB 2003 Simulation Microsoft Game Studios 0.65
## 2376 PS 2001 Shooter TalonSoft 0.49
## 2377 PS 1995 Platform Crystal Dynamics 0.49
## 2378 XOne 2013 Sports Take-Two Interactive 0.70
## 2379 X360 2007 Racing Codemasters 0.38
## 2380 SNES 1994 Sports ASCII Entertainment 0.00
## 2381 Wii 2010 Sports Ubisoft 0.71
## 2382 X360 2009 Shooter THQ 0.48
## 2383 XB 2003 Shooter Ubisoft 0.61
## 2384 PS3 2008 Shooter Electronic Arts 0.29
## 2385 PS 1997 Racing Infogrames 0.43
## 2386 PS2 2008 Role-Playing Square Enix 0.73
## 2387 Wii 2010 Puzzle THQ 0.61
## 2388 PS3 2012 Action Electronic Arts 0.82
## 2389 PS3 2012 Role-Playing Electronic Arts 0.37
## 2390 PS 1996 Sports Sony Computer Entertainment 0.48
## 2391 PS3 2008 Sports Sega 0.14
## 2392 Wii 2009 Shooter Sega 0.46
## 2393 PS2 2006 Sports Activision 0.72
## 2394 PS4 2013 Fighting Warner Bros. Interactive Entertainment 0.46
## 2395 PS 1998 Sports Electronic Arts 0.48
## 2396 PSP 2008 Misc Sony Computer Entertainment 0.20
## 2397 X360 2008 Shooter Ubisoft 0.47
## 2398 PS2 2005 Fighting Electronic Arts 0.72
## 2399 DS 2009 Misc Disney Interactive Studios 0.59
## 2400 DS 2009 Action Warner Bros. Interactive Entertainment 0.63
## 2401 XB 2002 Shooter SCi 0.48
## 2402 PS2 2002 Sports Electronic Arts 0.43
## 2403 PS 2000 Role-Playing Crave Entertainment 0.30
## 2404 PSP 2006 Puzzle Sony Computer Entertainment 0.12
## 2405 PS2 2007 Action Tecmo Koei 0.11
## 2406 X360 2010 Misc Activision 0.47
## 2407 2600 1982 Misc Quelle 0.81
## 2408 PS3 2012 Role-Playing Namco Bandai Games 0.20
## 2409 PS2 2007 Misc Sony Computer Entertainment 0.10
## 2410 3DS 2015 Action mixi, Inc 0.00
## 2411 Wii 2007 Action Eidos Interactive 0.12
## 2412 PSP 2006 Sports Konami Digital Entertainment 0.01
## 2413 PS3 2012 Action THQ 0.35
## 2414 PS3 2009 Action Sony Computer Entertainment 0.34
## 2415 DS 2007 Role-Playing Square Enix 0.54
## 2417 PS2 2002 Fighting Rage Software 0.42
## 2418 3DS 2015 Role-Playing Square Enix 0.00
## 2419 PS 2001 Racing Empire Interactive 0.48
## 2420 N64 1997 Sports Electronic Arts 0.81
## 2421 PS 1998 Sports Sony Computer Entertainment 0.48
## 2422 PS3 2008 Fighting Atari 0.22
## 2424 DS 2008 Platform Nintendo 0.61
## 2425 X360 2010 Sports Electronic Arts 0.32
## 2426 PS2 2003 Action Tecmo Koei 0.17
## 2427 PS3 2009 Action Ubisoft Annecy 0.52
## 2428 X360 2014 Racing Microsoft Game Studios 0.35
## 2429 PS3 2009 Sports Electronic Arts 0.46
## 2430 DS 2007 Sports Electronic Arts 0.10
## 2431 PS 1999 Action 3DO 0.47
## 2432 Wii 2009 Racing Electronic Arts 0.46
## 2433 Wii 2008 Sports Electronic Arts 0.78
## 2434 X360 2007 Sports Take-Two Interactive 0.79
## 2435 XOne 2016 Action Ubisoft 0.46
## 2436 PS 1996 Fighting Virgin Interactive 0.14
## 2437 XB 2004 Sports Electronic Arts 0.64
## 2438 PS3 2010 Shooter Electronic Arts 0.44
## 2439 Wii 2007 Simulation Ubisoft 0.74
## 2440 NES 1989 Platform Konami Digital Entertainment 0.40
## 2441 DS 2007 Action Electronic Arts 0.28
## 2442 PS 1997 Action GT Interactive 0.47
## 2443 PSP 2005 Racing Electronic Arts 0.70
## 2444 PS3 2014 Sports Take-Two Interactive 0.36
## 2445 XOne 2016 Shooter Activision 0.52
## 2446 PS2 2007 Action THQ 0.31
## 2447 PS 1995 Sports Sony Computer Entertainment 0.47
## 2448 PS2 2002 Racing Acclaim Entertainment 0.42
## 2449 3DS 2016 Action Nintendo 0.26
## 2450 PS2 2000 Fighting Virgin Interactive 0.32
## 2451 Wii 2010 Misc Konami Digital Entertainment 0.52
## 2452 X360 2012 Shooter 505 Games 0.46
## 2453 PS4 2014 Action Square Enix 0.28
## 2454 GC 2004 Action Activision 0.65
## 2455 DS 2010 Role-Playing Nintendo 0.56
## 2456 PS3 2010 Sports Electronic Arts 0.37
## 2457 PS3 2012 Action Capcom 0.42
## 2458 PS4 2016 Action Sony Computer Entertainment 0.68
## 2459 PS3 2009 Sports Take-Two Interactive 0.75
## 2460 WiiU 2015 Role-Playing Nintendo 0.36
## 2461 DS 2008 Simulation Ubisoft 0.46
## 2462 GC 2004 Action THQ 0.65
## 2463 PS3 2010 Sports Electronic Arts 0.79
## 2464 PS3 2011 Action Electronic Arts 0.40
## 2465 PS2 2003 Racing Acclaim Entertainment 0.41
## 2466 Wii 2007 Simulation Rising Star Games 0.69
## 2467 NES 1987 Role-Playing SquareSoft 0.32
## 2468 PS3 2012 Fighting Capcom 0.42
## 2469 PS 2001 Sports THQ 0.47
## 2470 X360 2011 Shooter Take-Two Interactive 0.52
## 2471 PS2 2002 Racing Empire Interactive 0.41
## 2472 PS4 2015 Shooter Take-Two Interactive 0.36
## 2473 PS2 2005 Role-Playing Sony Computer Entertainment 0.24
## 2474 PS2 2004 Sports Sega 0.41
## 2475 GBA 2004 Adventure Nintendo 0.60
## 2476 PSV 2014 Sports Electronic Arts 0.13
## 2477 PS3 2007 Shooter Namco Bandai Games 0.32
## 2478 PS2 2007 Action D3Publisher 0.09
## 2479 X360 2013 Racing Electronic Arts 0.37
## 2480 PS 1999 Puzzle Atari 0.46
## 2481 Wii 2008 Fighting THQ 0.44
## 2482 PS 1999 Simulation Sony Computer Entertainment 0.22
## 2483 PS2 2000 Action THQ 0.24
## 2484 DS 2008 Strategy Ubisoft 0.38
## 2486 GBA 2004 Action Disney Interactive Studios 0.60
## 2487 PSV 2014 Shooter Take-Two Interactive 0.43
## 2488 PS2 2000 Sports Electronic Arts 0.27
## 2489 XB 2003 Shooter Microsoft Game Studios 0.62
## 2490 X360 2012 Misc Microsoft Game Studios 0.57
## 2491 GB 2000 Misc Konami Digital Entertainment 0.00
## 2492 PS 1998 Misc Unknown 0.46
## 2493 PS 1997 Adventure Capcom 0.39
## 2494 PS3 2011 Sports Electronic Arts 0.78
## 2495 PS2 2005 Platform Sony Computer Entertainment 0.69
## 2496 Wii 2008 Misc Ubisoft 0.77
## 2497 X360 2008 Strategy Take-Two Interactive 0.58
## 2499 DS 2007 Puzzle Scholastic Inc. 0.77
## 2500 PS3 2012 Action Activision 0.31
## 2501 PS3 2010 Fighting Namco Bandai Games 0.42
## 2502 PS 1998 Platform Sony Computer Entertainment 0.46
## 2503 PS 1996 Adventure Interplay 0.46
## 2504 Wii 2009 Sports Hudson Soft 0.33
## 2505 XB 2002 Shooter Electronic Arts 0.58
## 2506 XOne 2016 Sports Electronic Arts 0.72
## 2507 PSP 2005 Sports Activision 0.46
## 2508 GC 2001 Sports Activision 0.64
## 2509 PS2 2006 Role-Playing Activision 0.69
## 2510 Wii 2009 Action LucasArts 0.44
## 2511 X360 2010 Misc Activision 0.64
## 2512 PS4 2016 Fighting Capcom 0.35
## 2513 XB 2002 Racing Electronic Arts 0.68
## 2514 NES 1984 Puzzle Nintendo 0.42
## 2515 N64 1996 Fighting Nintendo 0.61
## 2516 XB 2001 Sports Microsoft Game Studios 0.69
## 2517 2600 1981 Action Mystique 0.76
## 2518 PSP 2005 Adventure Sony Computer Entertainment 0.19
## 2519 PS3 2013 Action Capcom 0.24
## 2520 3DS 2011 Role-Playing Namco Bandai Games 0.42
## 2521 PS2 2002 Platform THQ 0.40
## 2522 PS3 2010 Misc Activision 0.33
## 2523 Wii 2010 Misc Electronic Arts 0.47
## 2524 PS3 2015 Sports Electronic Arts 0.56
## 2525 X360 2007 Shooter Midway Games 0.40
## 2526 DS 2008 Simulation Ubisoft 0.40
## 2527 PS2 2008 Role-Playing Atlus 0.34
## 2528 PS3 2008 Misc Sony Computer Entertainment 0.29
## 2530 PS4 2013 Sports Electronic Arts 0.62
## 2531 PS3 2012 Action Sony Computer Entertainment 0.67
## 2532 GB 2000 Role-Playing Enix Corporation 0.00
## 2533 DS 2006 Action Disney Interactive Studios 0.73
## 2534 PS2 2000 Fighting Midway Games 0.40
## 2535 SNES 1994 Adventure ChunSoft 0.00
## 2536 PSP 2007 Misc Sony Computer Entertainment 0.33
## 2537 PS 2000 Role-Playing Namco Bandai Games 0.06
## 2538 SNES 1994 Puzzle Hudson Soft 0.00
## 2539 PS 2000 Racing Electronic Arts 0.45
## 2540 Wii 2010 Sports Electronic Arts 0.77
## 2541 GC 2004 Action Nintendo 0.63
## 2542 PS 1999 Sports Konami Digital Entertainment 0.00
## 2543 PS4 2015 Misc Activision 0.32
## 2544 PS 1999 Role-Playing Enix Corporation 0.07
## 2545 PSP 2011 Role-Playing Unknown 0.00
## 2546 X360 2009 Sports Konami Digital Entertainment 0.12
## 2547 N64 1999 Action 3DO 0.68
## 2548 NES 1987 Platform Capcom 0.45
## 2549 PS2 2004 Shooter Ubisoft 0.40
## 2550 PS3 2014 Action Warner Bros. Interactive Entertainment 0.33
## 2551 SNES 1994 Role-Playing Nintendo 0.00
## 2552 X360 2009 Racing Codemasters 0.32
## 2553 3DS 2012 Puzzle Level 5 0.20
## 2554 PS 1998 Puzzle Atari 0.45
## 2555 XOne 2015 Action Warner Bros. Interactive Entertainment 0.43
## 2556 PS3 2009 Sports Electronic Arts 0.75
## 2557 Wii 2008 Action Koch Media 0.52
## 2558 PS 1998 Sports Konami Digital Entertainment 0.00
## 2559 PS2 2007 Role-Playing Square Enix 0.35
## 2560 PS2 2005 Simulation Electronic Arts 0.67
## 2561 X360 2009 Misc Activision 0.52
## 2562 PS3 2013 Sports Electronic Arts 0.75
## 2563 Wii 2009 Action Sega 0.46
## 2564 X360 2011 Fighting Electronic Arts 0.40
## 2565 PS 2000 Misc Eidos Interactive 0.45
## 2566 PS2 2005 Action Sega 0.03
## 2567 GC 2003 Simulation LucasArts 0.62
## 2568 Wii 2011 Misc Ubisoft 0.19
## 2569 PS 1997 Racing Electronic Arts 0.45
## 2570 PS2 2004 Shooter Eidos Interactive 0.39
## 2571 PSP 2006 Simulation Electronic Arts 0.19
## 2572 PS 1999 Role-Playing Square EA 0.45
## 2573 X360 2013 Shooter Sega 0.36
## 2574 PSP 2009 Sports Konami Digital Entertainment 0.09
## 2575 X360 2012 Action Activision 0.48
## 2576 X360 2010 Racing Sega 0.37
## 2577 PS3 2011 Shooter Activision 0.33
## 2578 PS3 2015 Sports Take-Two Interactive 0.44
## 2579 Wii 2008 Sports THQ 0.43
## 2580 PSP 2007 Simulation Electronic Arts 0.08
## 2581 XB 2004 Action Ubisoft 0.48
## 2582 X360 2012 Role-Playing Capcom 0.42
## 2583 X360 2012 Action THQ 0.45
## 2584 PS3 2013 Action Capcom 0.14
## 2585 DS 2007 Misc Ubisoft 0.73
## 2586 PS 2000 Strategy Banpresto 0.00
## 2588 GC 2002 Racing Electronic Arts 0.68
## 2589 Wii 2010 Action LucasArts 0.54
## 2590 X360 2009 Misc Activision 0.51
## 2591 WiiU 2013 Sports Nintendo 0.39
## 2592 PS2 2002 Role-Playing Namco Bandai Games 0.00
## 2593 SNES 1993 Sports Nintendo 0.00
## 2594 PS3 2011 Shooter City Interactive 0.26
## 2595 X360 2009 Action Electronic Arts 0.47
## 2596 PSP 2010 Sports Konami Digital Entertainment 0.05
## 2597 2600 1981 Action 20th Century Fox Video Games 0.74
## 2598 PS2 2006 Fighting Atari 0.66
## 2599 PS3 2012 Adventure Avanquest Software 0.40
## 2600 X360 2011 Platform Ubisoft 0.38
## 2601 PS2 2008 Misc Activision 0.61
## 2602 PS 1994 Racing Sony Computer Entertainment 0.00
## 2603 DS 2007 Role-Playing Square Enix 0.42
## 2604 GC 2003 Role-Playing Ubisoft 0.61
## 2605 PS 1997 Simulation Hudson Entertainment 0.00
## 2606 PSP 2009 Strategy Sony Computer Entertainment 0.17
## 2607 PS 2001 Racing Take-Two Interactive 0.44
## 2608 PS3 2009 Sports Electronic Arts 0.42
## 2609 DS 2008 Action LucasArts 0.62
## 2610 N64 1999 Fighting Electronic Arts 0.63
## 2611 NES 1992 Platform Capcom 0.39
## 2612 X360 2009 Role-Playing Square Enix 0.32
## 2613 PS2 2007 Simulation Konami Digital Entertainment 0.64
## 2614 PS2 2000 Simulation Ubisoft 0.28
## 2615 3DS 2014 Role-Playing Square Enix 0.00
## 2616 Wii 2007 Shooter Sega 0.42
## 2617 X360 2013 Action Deep Silver 0.44
## 2618 DS 2007 Action THQ 0.71
## 2619 N64 1998 Sports Nintendo 0.75
## 2620 Wii 2011 Sports Electronic Arts 0.16
## 2621 X360 2008 Role-Playing Microsoft Game Studios 0.38
## 2622 PS3 2008 Strategy Take-Two Interactive 0.49
## 2623 PS2 2007 Sports Electronic Arts 0.65
## 2624 XB 2003 Sports Electronic Arts 0.24
## 2625 DS 2008 Sports Nintendo 0.22
## 2626 X360 2010 Fighting Namco Bandai Games 0.43
## 2627 Wii 2011 Action Nintendo 0.27
## 2628 3DS 2013 Puzzle Nintendo 0.00
## 2629 X360 2006 Action Ubisoft 0.67
## 2630 2600 1982 Shooter Atari 0.73
## 2631 X360 2008 Misc Microsoft Game Studios 0.12
## 2632 GBA 2002 Platform Vivendi Games 0.56
## 2633 DS 2006 Shooter Nintendo 0.58
## 2634 PC 1992 Adventure Virgin Interactive 0.01
## 2635 PS 1994 Shooter Infogrames 0.43
## 2636 PS2 2007 Misc Sony Computer Entertainment 0.17
## 2637 DS 2009 Puzzle Ubisoft 0.41
## 2638 DS 2008 Adventure THQ 0.72
## 2639 Wii 2009 Misc Nordic Games 0.00
## 2640 PS 1999 Fighting Capcom 0.43
## 2641 PS3 2012 Action Sony Computer Entertainment 0.72
## 2642 PS 1997 Strategy Electronic Arts 0.43
## 2643 DS 2010 Puzzle Nintendo 0.29
## 2644 PS4 2015 Sports Konami Digital Entertainment 0.13
## 2645 PSP 2006 Strategy THQ 0.11
## 2646 PSP 2009 Shooter LucasArts 0.38
## 2647 X360 2011 Sports THQ 0.53
## 2648 X360 2012 Action Capcom 0.55
## 2649 PS2 2006 Sports Take-Two Interactive 0.65
## 2650 PSP 2008 Racing Electronic Arts 0.24
## 2651 X360 2010 Action Disney Interactive Studios 0.41
## 2652 SNES 1993 Role-Playing ChunSoft 0.00
## 2653 2600 1983 Puzzle Atari 0.72
## 2654 GC 2002 Shooter Electronic Arts 0.60
## 2655 X360 2008 Platform Microsoft Game Studios 0.32
## 2656 PS 1998 Sports Sony Computer Entertainment 0.43
## 2657 X360 2009 Action Ubisoft 0.34
## 2658 Wii 2009 Action Electronic Arts 0.28
## 2659 Wii 2009 Misc Activision 0.47
## 2660 X360 2005 Shooter Microsoft Game Studios 0.66
## 2661 2600 1982 Shooter Atari 0.72
## 2662 PS 1996 Racing Electronic Arts 0.43
## 2663 PS 2000 Misc Interplay 0.43
## 2664 XOne 2013 Sports Electronic Arts 0.67
## 2665 2600 1981 Action Men-A-Vision 0.72
## 2666 PSP 2008 Racing Electronic Arts 0.23
## 2667 PS3 2011 Shooter Take-Two Interactive 0.33
## 2668 PSV 2014 Role-Playing Sony Computer Entertainment 0.22
## 2669 PS2 2005 Fighting Electronic Arts 0.64
## 2670 2600 1980 Fighting Activision 0.72
## 2671 PS 1999 Racing Electronic Arts 0.43
## 2672 PS3 2009 Fighting Namco Bandai Games 0.37
## 2673 2600 1983 Action Atari 0.72
## 2674 N64 2001 Platform THQ 0.53
## 2675 GB 1999 Role-Playing Enix Corporation 0.00
## 2676 GBA 2002 Action THQ 0.55
## 2677 DS 2008 Simulation Nobilis 0.61
## 2678 DS 2012 Action Warner Bros. Interactive Entertainment 0.43
## 2679 PSP 2005 Action Sony Computer Entertainment 0.71
## 2680 PS2 2003 Shooter SCi 0.38
## 2681 PS2 2001 Platform Capcom 0.38
## 2682 DS 2004 Racing Nintendo 0.21
## 2683 GBA 2005 Platform Nintendo 0.45
## 2684 PS2 2002 Sports Acclaim Entertainment 0.38
## 2685 PS2 2002 Role-Playing Atari 0.10
## 2686 PS2 2003 Sports Activision Value 0.37
## 2687 PS2 2008 Platform Sega 0.37
## 2688 PS 1996 Racing Psygnosis 0.18
## 2689 PS3 2014 Shooter Electronic Arts 0.22
## 2690 Wii 2010 Adventure Ubisoft 0.22
## 2691 3DS 2011 Simulation Electronic Arts 0.30
## 2692 XB 2004 Racing Atari 0.36
## 2693 PS2 2005 Action LucasArts 0.64
## 2694 PS2 2003 Fighting Gotham Games 0.37
## 2695 PS 1995 Fighting Virgin Interactive 0.17
## 2696 PSV 2012 Fighting Warner Bros. Interactive Entertainment 0.47
## 2697 PS 1998 Sports Konami Digital Entertainment 0.00
## 2698 X360 2010 Shooter Capcom 0.38
## 2699 PS3 2012 Fighting Namco Bandai Games 0.35
## 2700 PC 2011 Shooter Valve Software 0.33
## 2701 DS 2005 Misc Sega 0.70
## 2702 PS4 2014 Sports Konami Digital Entertainment 0.09
## 2703 Wii 2009 Puzzle THQ 0.29
## 2704 PS3 2009 Action Electronic Arts 0.38
## 2705 NES 1988 Role-Playing SquareSoft 0.00
## 2706 N64 2001 Sports Activision 0.59
## 2707 PS2 2002 Misc Namco Bandai Games 0.00
## 2708 GBA 2005 Role-Playing Capcom 0.09
## 2709 PS2 2004 Shooter Sony Computer Entertainment 0.37
## 2710 PS2 2010 Sports Electronic Arts 0.11
## 2711 Wii 2009 Sports Big Ben Interactive 0.67
## 2712 X360 2007 Shooter Eidos Interactive 0.36
## 2713 PC 2011 Action Ubisoft 0.14
## 2714 XB 2004 Fighting Midway Games 0.61
## 2715 DS 2009 Adventure Capcom 0.27
## 2716 GBA 2004 Adventure Disney Interactive Studios 0.54
## 2717 Wii 2014 Sports Electronic Arts 0.24
## 2718 PS2 2002 Fighting Capcom 0.31
## 2719 PSP 2009 Racing Electronic Arts 0.16
## 2720 PS3 2007 Shooter Eidos Interactive 0.29
## 2721 X360 2014 Role-Playing Namco Bandai Games 0.48
## 2722 PS2 2005 Action Activision 0.57
## 2723 PS2 2001 Fighting Acclaim Entertainment 0.37
## 2724 X360 2006 Sports Take-Two Interactive 0.28
## 2725 Wii 2010 Misc Electronic Arts 0.24
## 2726 PS3 2006 Action Sony Computer Entertainment 0.18
## 2727 Wii 2008 Simulation Rising Star Games 0.60
## 2728 GB 1991 Role-Playing SquareSoft 0.00
## 2729 PC 2013 Strategy Sega 0.12
## 2730 XOne 2015 Misc Microsoft Game Studios 0.47
## 2731 DS 2007 Role-Playing Disney Interactive Studios 0.67
## 2732 PS2 2008 Platform THQ 0.21
## 2733 PSP 2008 Fighting THQ 0.41
## 2734 PS3 2009 Misc Activision 0.41
## 2735 PS 2000 Platform Capcom 0.30
## 2736 PSV 2013 Adventure Sony Computer Entertainment Europe 0.17
## 2737 PS3 2010 Misc Activision 0.47
## 2738 PS3 2009 Action Electronic Arts 0.41
## 2739 Wii 2009 Fighting THQ 0.51
## 2740 X360 2008 Action Touchstone 0.46
## 2741 PS3 2012 Action Activision 0.36
## 2742 PS2 2004 Action Activision 0.37
## 2743 N64 1997 Racing GT Interactive 0.63
## 2744 X360 2012 Action Activision 0.43
## 2745 PS2 2001 Shooter Konami Digital Entertainment 0.30
## 2746 PS3 2009 Shooter THQ 0.33
## 2747 PS 1997 Fighting Virgin Interactive 0.28
## 2748 PSP 2005 Sports Electronic Arts 0.69
## 2749 PSP 2005 Shooter Konami Digital Entertainment 0.28
## 2750 XB 2004 Sports Activision 0.48
## 2751 X360 2008 Role-Playing Atari 0.32
## 2752 PS3 2009 Action Activision 0.31
## 2753 DS 2008 Action Activision 0.42
## 2754 PS3 2010 Racing Disney Interactive Studios 0.31
## 2755 PS2 2001 Fighting Capcom 0.22
## 2756 PS2 2006 Sports Electronic Arts 0.62
## 2757 WiiU 2014 Misc Ubisoft 0.40
## 2758 X360 2014 Shooter Take-Two Interactive 0.46
## 2759 PS3 2014 Platform Sony Computer Entertainment 0.20
## 2760 PS3 2009 Role-Playing Activision 0.49
## 2761 DS 2008 Sports Sega 0.29
## 2762 X360 2012 Adventure Avanquest Software 0.55
## 2763 PS3 2011 Action Namco Bandai Games 0.30
## 2764 DS 2006 Fighting Nintendo 0.00
## 2765 PS2 2001 Misc Sony Computer Entertainment 0.36
## 2766 PS3 2010 Role-Playing Sega 0.20
## 2767 PS2 2001 Racing Acclaim Entertainment 0.36
## 2768 PSP 2007 Shooter Ubisoft 0.42
## 2769 X360 2011 Role-Playing Square Enix 0.36
## 2770 3DS 2012 Action Warner Bros. Interactive Entertainment 0.41
## 2771 PSP 2006 Fighting Midway Games 0.67
## 2772 3DS 2015 Role-Playing Nintendo 0.16
## 2773 GBA 2001 Misc Konami Digital Entertainment 0.42
## 2774 PS3 2011 Shooter Bethesda Softworks 0.29
## 2775 WiiU 2013 Action Warner Bros. Interactive Entertainment 0.31
## 2776 PS3 2010 Racing Activision 0.22
## 2778 Wii 2007 Misc Atari 0.68
## 2779 XB 2005 Racing Take-Two Interactive 0.61
## 2780 PC 2011 Action Electronic Arts 0.16
## 2781 GBA 2002 Action Electronic Arts 0.53
## 2782 PS2 2001 Sports Electronic Arts 0.36
## 2783 Wii 2009 Action Activision 0.36
## 2784 PS 1999 Racing Sony Computer Entertainment 0.41
## 2785 PS3 2012 Fighting Namco Bandai Games 0.27
## 2786 XB 2002 Shooter Atari 0.59
## 2788 PS3 2007 Action Disney Interactive Studios 0.17
## 2789 PS3 2007 Sports Electronic Arts 0.22
## 2790 PS3 2012 Fighting Atlus 0.30
## 2791 GBA 2003 Role-Playing Nintendo 0.31
## 2792 DS 2007 Simulation Rising Star Games 0.44
## 2793 PS3 2010 Role-Playing Square Enix 0.28
## 2794 DS 2007 Simulation Electronic Arts 0.63
## 2795 PS 1997 Sports Electronic Arts 0.14
## 2796 SNES 1993 Fighting Namco Bandai Games 0.00
## 2797 GBA 2004 Platform Nintendo 0.40
## 2798 PC 2013 Shooter Activision 0.23
## 2799 GB 1991 Puzzle Nintendo 0.00
## 2800 N64 1998 Fighting GT Interactive 0.55
## 2801 X360 2011 Racing Codemasters 0.11
## 2802 Wii 2009 Sports Electronic Arts 0.63
## 2803 DS 2005 Platform Nintendo 0.37
## 2804 PS 1999 Platform Fox Interactive 0.41
## 2805 DS 2007 Misc Nintendo 0.00
## 2806 XB 2001 Platform Atari 0.54
## 2807 2600 1981 Shooter Atari 0.68
## 2808 X360 2010 Sports Electronic Arts 0.61
## 2809 PC 2014 Role-Playing Electronic Arts 0.32
## 2810 DS 2009 Adventure Activision 0.67
## 2811 X360 2011 Racing Codemasters 0.23
## 2812 X360 2006 Sports Electronic Arts 0.67
## 2813 Wii 2011 Misc Nintendo 0.00
## 2814 XB 2004 Strategy THQ 0.54
## 2815 PS2 2004 Puzzle Namco Bandai Games 0.47
## 2816 GBA 2003 Action Atari 0.52
## 2817 PS3 2012 Action Sony Computer Entertainment 0.47
## 2818 Wii 2009 Action Ubisoft 0.33
## 2819 PS2 2001 Sports Codemasters 0.36
## 2820 X360 2009 Racing THQ 0.52
## 2821 DS 2008 Simulation Ubisoft 0.34
## 2822 X360 2012 Sports Electronic Arts 0.38
## 2823 3DS 2012 Simulation Nintendo 0.16
## 2824 GC 2002 Shooter Electronic Arts 0.56
## 2825 PC 2012 Strategy Take-Two Interactive 0.26
## 2826 DS 2009 Platform Ubisoft 0.35
## 2827 GBA 2005 Action Ubisoft 0.52
## 2828 PS2 2005 Action Activision 0.60
## 2829 Wii 2012 Action Electronic Arts 0.19
## 2830 PSP 2010 Action Unknown 0.00
## 2831 PS4 2014 Role-Playing Square Enix 0.32
## 2832 PS 1998 Strategy Namco Bandai Games 0.00
## 2833 PS 1996 Shooter GT Interactive 0.40
## 2834 PS2 2007 Sports Electronic Arts 0.59
## 2835 XB 2002 Shooter Electronic Arts 0.53
## 2836 PS2 2006 Sports Electronic Arts 0.60
## 2837 PS 1999 Racing Atari 0.40
## 2838 GBA 2005 Action Sega 0.00
## 2840 X360 2007 Sports Spike 0.67
## 2841 PS 2001 Fighting Activision 0.40
## 2842 X360 2013 Action 505 Games 0.35
## 2843 PS2 2001 Misc Sony Computer Entertainment 0.35
## 2844 2600 1982 Platform Atari 0.67
## 2845 PS3 2010 Shooter Activision 0.18
## 2846 PSP 2007 Action D3Publisher 0.23
## 2847 X360 2007 Sports Electronic Arts 0.62
## 2848 GBA 2002 Puzzle Atari 0.51
## 2849 X360 2011 Racing Ubisoft 0.25
## 2850 PS3 2009 Sports Sony Computer Entertainment 0.66
## 2851 WiiU 2012 Role-Playing Nintendo 0.26
## 2852 PS2 2003 Simulation Namco Bandai Games 0.05
## 2853 PS3 2011 Adventure Deep Silver 0.30
## 2854 PS 1998 Action Eidos Interactive 0.40
## 2855 DS 2010 Sports Electronic Arts 0.13
## 2856 PC 2007 Shooter Electronic Arts 0.00
## 2857 PC 2010 Shooter Electronic Arts 0.19
## 2858 XB 2002 Action Electronic Arts 0.45
## 2859 XB 2002 Sports Electronic Arts 0.67
## 2860 Wii 2007 Role-Playing Square Enix 0.18
## 2861 PS3 2013 Sports Sony Computer Entertainment 0.66
## 2862 X360 2011 Simulation Konami Digital Entertainment 0.42
## 2863 PS4 2015 Action Square Enix 0.16
## 2864 PS2 2003 Fighting Sega 0.35
## 2865 PS3 2011 Sports Take-Two Interactive 0.17
## 2866 PS 2000 Action Eidos Interactive 0.23
## 2867 PS3 2007 Action Tecmo Koei 0.18
## 2868 PS2 2002 Racing Jester Interactive 0.35
## 2869 3DS 2014 Role-Playing Nippon Ichi Software 0.33
## 2870 PSP 2007 Sports Electronic Arts 0.60
## 2871 GC 2002 Fighting Atari 0.55
## 2872 PS 2000 Racing Acclaim Entertainment 0.40
## 2873 XB 2005 Adventure Microsoft Game Studios 0.49
## 2874 PS2 2003 Action Konami Digital Entertainment 0.35
## 2875 PSP 2008 Sports Electronic Arts 0.65
## 2876 PS4 2015 Role-Playing Square Enix 0.29
## 2877 GC 2002 Strategy Konami Digital Entertainment 0.49
## 2878 Wii 2009 Misc Warner Bros. Interactive Entertainment 0.42
## 2879 PS3 2010 Sports Sony Computer Entertainment 0.66
## 2880 GC 2002 Platform Universal Interactive 0.55
## 2881 GBA 2004 Action THQ 0.51
## 2882 PS2 2004 Action THQ 0.35
## 2883 3DS 2015 Misc Nintendo 0.00
## 2884 N64 1999 Racing LEGO Media 0.51
## 2885 N64 1999 Fighting Acclaim Entertainment 0.57
## 2886 N64 1997 Action Nintendo 0.39
## 2887 PSP 2010 Action Warner Bros. Interactive Entertainment 0.14
## 2888 SNES 1995 Role-Playing Quest 0.00
## 2889 GC 2003 Puzzle Nintendo 0.20
## 2890 PC 2013 Sports Sega 0.00
## 2891 PS 1995 Fighting Sony Computer Entertainment 0.15
## 2892 PSP 2010 Fighting THQ 0.22
## 2893 PS 1997 Misc Hasbro Interactive 0.39
## 2894 PS 1998 Shooter Acclaim Entertainment 0.39
## 2895 XOne 2015 Action Konami Digital Entertainment 0.37
## 2896 X360 2007 Role-Playing SouthPeak Games 0.41
## 2897 XB 2005 Shooter Activision 0.53
## 2898 X360 2008 Sports Electronic Arts 0.65
## 2899 X360 2008 Sports Electronic Arts 0.50
## 2900 PS3 2013 Shooter Sony Computer Entertainment 0.30
## 2901 PSP 2005 Action Activision 0.35
## 2902 PS3 2014 Sports Electronic Arts 0.15
## 2903 PS3 2012 Sports Sega 0.06
## 2904 X360 2011 Sports Electronic Arts 0.55
## 2905 GC 2003 Sports Activision 0.54
## 2906 X360 2008 Role-Playing Square Enix 0.34
## 2907 SNES 1994 Puzzle Hudson Soft 0.00
## 2908 PS 1998 Strategy Virgin Interactive 0.39
## 2909 DS 2008 Simulation Electronic Arts 0.32
## 2910 XB 2001 Action Activision 0.52
## 2911 X360 2007 Sports Electronic Arts 0.65
## 2912 PS2 2003 Shooter Sony Computer Entertainment 0.34
## 2913 DS 2011 Simulation Activision 0.54
## 2914 GC 2004 Sports Electronic Arts 0.54
## 2915 GBA 2001 Action Majesco Entertainment 0.50
## 2916 PS2 2001 Racing Atari 0.34
## 2917 PS 1997 Sports Electronic Arts 0.39
## 2918 XB 2005 Role-Playing Microsoft Game Studios 0.48
## 2919 PS3 2009 Shooter Activision 0.28
## 2920 DS 2010 Simulation Electronic Arts 0.39
## 2921 WiiU 2014 Action Activision 0.39
## 2922 PS3 2010 Action Ubisoft 0.19
## 2923 PS 1998 Role-Playing SquareSoft 0.04
## 2924 GBA 2001 Strategy Nintendo 0.50
## 2925 DS 2009 Adventure Disney Interactive Studios 0.38
## 2926 DS 2009 Simulation THQ 0.43
## 2927 PSP 2005 Platform Sony Computer Entertainment 0.52
## 2928 PS2 2000 Racing Electronic Arts 0.34
## 2929 PS3 2009 Simulation 505 Games 0.34
## 2930 PS3 2012 Action Sony Computer Entertainment 0.13
## 2931 PS 2000 Sports Electronic Arts 0.39
## 2932 PS2 2004 Action Illusion Softworks 0.34
## 2933 PS2 2000 Simulation Namco Bandai Games 0.16
## 2934 PS3 2015 Action Konami Digital Entertainment 0.21
## 2935 PS2 2002 Shooter Eidos Interactive 0.34
## 2936 X360 2010 Sports Ubisoft 0.38
## 2937 PS3 2008 Sports Sony Computer Entertainment 0.64
## 2938 GBA 2004 Adventure Nintendo 0.37
## 2939 SNES 1994 Role-Playing Nintendo 0.00
## 2940 GBA 2005 Platform Disney Interactive Studios 0.50
## 2941 2600 1981 Action Tigervision 0.65
## 2942 X360 2014 Sports Take-Two Interactive 0.38
## 2943 3DS 2014 Action Warner Bros. Interactive Entertainment 0.28
## 2944 X360 2009 Action Activision 0.42
## 2945 PSP 2007 Action Konami Digital Entertainment 0.26
## 2946 Wii 2010 Action Disney Interactive Studios 0.47
## 2947 X360 2007 Action Activision 0.54
## 2949 PS 1997 Racing Electronic Arts 0.39
## 2950 XB 2005 Shooter Microsoft Game Studios 0.54
## 2951 PS3 2015 Adventure Mojang 0.25
## 2952 PS2 2005 Action Midway Games 0.58
## 2953 PSP 2006 Racing THQ 0.64
## 2954 PS3 2014 Action Activision 0.24
## 2955 GBA 2004 Misc Nintendo 0.50
## 2956 NES 1984 Platform Namco Bandai Games 0.00
## 2957 SNES 1993 Sports Namco Bandai Games 0.00
## 2958 GC 2003 Fighting Atari 0.53
## 2959 PS 1998 Sports Sony Computer Entertainment 0.38
## 2960 PS3 2010 Platform Sony Computer Entertainment 0.52
## 2961 PS3 2013 Action Namco Bandai Games 0.00
## 2962 PC 2013 Action Ubisoft 0.22
## 2963 GC 2002 Action Electronic Arts 0.53
## 2964 PS3 2011 Racing Electronic Arts 0.20
## 2965 GC 2003 Action Electronic Arts 0.53
## 2966 3DS 2015 Misc Nintendo 0.01
## 2967 X360 2007 Racing THQ 0.55
## 2968 X360 2008 Role-Playing Square Enix 0.25
## 2969 DS 2013 Platform Disney Interactive Studios 0.28
## 2970 PC 2011 Simulation Electronic Arts 0.27
## 2971 PS2 2004 Role-Playing Interplay 0.34
## 2972 GBA 2004 Action Activision 0.49
## 2973 XOne 2014 Shooter Electronic Arts 0.39
## 2974 Wii 2012 Action Nintendo 0.34
## 2975 Wii 2009 Action Activision 0.60
## 2976 PS 1997 Action LucasArts 0.38
## 2977 Wii 2011 Role-Playing Nintendo 0.32
## 2978 XB 2003 Sports Electronic Arts 0.62
## 2979 PS3 2008 Action Sega 0.32
## 2980 PS4 2015 Action Disney Interactive Studios 0.21
## 2981 PS3 2007 Platform Activision 0.26
## 2982 XB 2004 Sports Electronic Arts 0.63
## 2983 PS 1997 Fighting GT Interactive 0.38
## 2984 WiiU 2013 Platform Ubisoft 0.26
## 2985 GC 2003 Fighting Tomy Corporation 0.53
## 2986 PS2 2005 Action Ubisoft 0.57
## 2987 PSP 2007 Sports Sony Computer Entertainment 0.21
## 2988 PS4 2014 Action Deep Silver 0.22
## 2989 DS 2010 Role-Playing Nintendo 0.32
## 2990 XB 2005 Action LucasArts 0.54
## 2991 PS4 2014 Shooter 505 Games 0.22
## 2992 XOne 2016 Shooter Bethesda Softworks 0.39
## 2993 PS 1998 Fighting SquareSoft 0.25
## 2994 PS 1998 Role-Playing Konami Digital Entertainment 0.15
## 2995 XOne 2015 Racing Electronic Arts 0.30
## 2996 DS 2007 Racing THQ 0.63
## 2997 XB 2005 Sports Electronic Arts 0.29
## 2998 DS 2009 Adventure GSP 0.19
## 2999 Wii 2006 Shooter Ubisoft 0.55
## 3000 XB 2004 Fighting Electronic Arts 0.51
## 3001 PS2 2006 Racing Sony Computer Entertainment 0.28
## 3002 PC 2008 Role-Playing Electronic Arts 0.00
## 3003 PS2 2002 Role-Playing Atari 0.23
## 3004 Wii 2011 Misc Funbox Media 0.59
## 3005 PS3 2008 Action Touchstone 0.35
## 3006 PS2 2004 Misc Midway Games 0.33
## 3007 DS 2008 Misc Nintendo 0.13
## 3008 PS3 2007 Shooter Midway Games 0.33
## 3009 DS 2007 Role-Playing Square Enix 0.22
## 3010 XB 2003 Shooter Activision 0.49
## 3011 XOne 2013 Racing Electronic Arts 0.45
## 3012 PS3 2012 Action Warner Bros. Interactive Entertainment 0.26
## 3013 PS3 2007 Shooter Take-Two Interactive 0.20
## 3014 PS 1998 Sports Electronic Arts 0.37
## 3015 DS 2010 Adventure Disney Interactive Studios 0.40
## 3016 PS 1996 Shooter Konami Digital Entertainment 0.37
## 3017 PS3 2006 Simulation Ubisoft 0.35
## 3018 XB 2004 Fighting Electronic Arts 0.46
## 3019 XOne 2014 Shooter Bethesda Softworks 0.33
## 3020 Wii 2010 Sports THQ 0.49
## 3021 DS 2006 Misc Rocket Company 0.00
## 3022 PS 1998 Action Sony Computer Entertainment 0.37
## 3023 XB 2005 Shooter Activision 0.48
## 3024 PS2 2002 Simulation Metro 3D 0.22
## 3025 Wii 2008 Racing Electronic Arts 0.27
## 3026 Wii 2008 Misc Namco Bandai Games 0.00
## 3027 PC 2015 Role-Playing Namco Bandai Games 0.20
## 3028 PSP 2005 Sports Sega 0.16
## 3029 PS4 2014 Action Warner Bros. Interactive Entertainment 0.24
## 3030 PSP 2007 Action THQ 0.22
## 3031 PC 2011 Role-Playing Unknown 0.44
## 3032 PS 1999 Role-Playing Sony Computer Entertainment 0.19
## 3033 Wii 2008 Sports Ubisoft 0.00
## 3034 X360 2010 Action Konami Digital Entertainment 0.42
## 3035 PC 2013 Shooter Take-Two Interactive 0.28
## 3036 PS4 2015 Adventure Mojang 0.23
## 3037 Wii 2008 Puzzle Ubisoft 0.18
## 3038 DS 2010 Simulation 505 Games 0.40
## 3039 Wii 2008 Action Activision 0.30
## 3040 Wii 2010 Misc MTV Games 0.56
## 3041 PC 2008 Strategy Electronic Arts 0.01
## 3042 PS2 2003 Platform THQ 0.33
## 3043 PSP 2006 Fighting THQ 0.33
## 3044 DS 2010 Misc Ubisoft 0.00
## 3045 2600 1981 Action Mattel Interactive 0.63
## 3046 DS 2007 Adventure Capcom 0.33
## 3047 X360 2012 Sports Electronic Arts 0.51
## 3048 PS3 2014 Shooter Take-Two Interactive 0.25
## 3049 PC 2010 Simulation Electronic Arts 0.01
## 3051 DS 2006 Misc IE Institute 0.00
## 3052 PS 1999 Simulation Take-Two Interactive 0.37
## 3053 XB 2004 Sports Electronic Arts 0.49
## 3054 PS3 2008 Sports Ubisoft 0.31
## 3055 WiiU 2014 Action Warner Bros. Interactive Entertainment 0.35
## 3056 PS2 2007 Sports Activision 0.55
## 3057 PS2 2003 Sports Sony Computer Entertainment 0.32
## 3058 PS2 2007 Fighting Atari 0.26
## 3059 PS 1998 Sports Electronic Arts 0.37
## 3060 PS 2001 Role-Playing Electronic Arts 0.37
## 3061 PS2 2002 Sports Electronic Arts 0.32
## 3062 XB 2003 Action THQ 0.48
## 3063 PS2 2006 Strategy Atari 0.55
## 3064 X360 2009 Sports Electronic Arts 0.51
## 3065 PS2 2000 Sports Konami Digital Entertainment 0.00
## 3066 GC 2005 Platform Activision 0.52
## 3067 Wii 2012 Puzzle Namco Bandai Games 0.00
## 3068 GBA 2003 Role-Playing Enix Corporation 0.00
## 3069 GBA 2004 Adventure Majesco Entertainment 0.47
## 3070 PS3 2013 Platform Ubisoft 0.14
## 3071 PC 2013 Misc Ubisoft 0.35
## 3072 PS2 2004 Fighting Capcom 0.32
## 3073 PS 1998 Role-Playing Sony Computer Entertainment 0.37
## 3074 PC 2010 Strategy Sega 0.02
## 3075 PS3 2010 Action Ubisoft Annecy 0.06
## 3076 DS 2007 Platform Nintendo 0.28
## 3077 PSP 2010 Action Disney Interactive Studios 0.27
## 3078 GC 2003 Simulation Electronic Arts 0.43
## 3079 PS3 2008 Sports Electronic Arts 0.34
## 3080 2600 1982 Action Activision 0.62
## 3081 PSV 2013 Action Warner Bros. Interactive Entertainment 0.15
## 3082 Wii 2008 Strategy Nintendo 0.29
## 3083 GBA 2002 Action TDK Mediactive 0.47
## 3084 PS2 2004 Role-Playing Konami Digital Entertainment 0.17
## 3085 PSP 2010 Action Namco Bandai Games 0.03
## 3086 GBA 2004 Platform Disney Interactive Studios 0.47
## 3087 PS 1998 Misc Sony Computer Entertainment 0.12
## 3088 XB 2005 Shooter Ubisoft 0.49
## 3089 PSP 2009 Sports Electronic Arts 0.50
## 3090 PSP 2007 Action Activision 0.23
## 3091 DS 2007 Misc Namco Bandai Games 0.00
## 3092 PS4 2015 Racing Codemasters 0.09
## 3093 X360 2008 Misc Microsoft Game Studios 0.33
## 3094 PS 1998 Sports ASC Games 0.36
## 3095 WiiU 2014 Action Disney Interactive Studios 0.38
## 3096 PS3 2012 Sports Electronic Arts 0.33
## 3097 PS2 2008 Action Activision 0.24
## 3098 PS3 2008 Strategy Ubisoft 0.32
## 3099 XOne 2014 Action Bethesda Softworks 0.35
## 3100 X360 2008 Sports Electronic Arts 0.35
## 3101 PS2 2005 Role-Playing Square Enix 0.18
## 3102 GC 2003 Racing Nintendo 0.41
## 3103 PS2 2005 Platform Disney Interactive Studios 0.32
## 3104 PSP 2008 Platform THQ 0.29
## 3105 GBA 2004 Platform Nintendo 0.25
## 3106 DS 2009 Action THQ 0.31
## 3107 PS2 2002 Racing Ubisoft 0.32
## 3108 Wii 2009 Action Rondomedia 0.56
## 3109 GBA 2005 Misc THQ 0.47
## 3110 PS 1999 Role-Playing Enix Corporation 0.02
## 3111 DS 2009 Puzzle THQ 0.45
## 3112 PS4 2014 Sports Sony Computer Entertainment America 0.58
## 3113 X360 2009 Sports Electronic Arts 0.39
## 3114 GBA 2003 Strategy Nintendo 0.47
## 3115 DS 2008 Role-Playing Nintendo 0.31
## 3116 PS 1998 Shooter Atari 0.36
## 3117 PS2 2003 Role-Playing Square Enix 0.19
## 3118 PS2 2007 Misc Sony Computer Entertainment 0.00
## 3119 2600 1987 Action Activision 0.60
## 3120 PS2 2005 Role-Playing Sony Online Entertainment 0.32
## 3121 PS2 2005 Action Electronic Arts 0.54
## 3122 PS2 2007 Misc Sony Computer Entertainment 0.00
## 3123 PS 2000 Adventure Acclaim Entertainment 0.36
## 3124 PSP 2007 Racing THQ 0.35
## 3125 Wii 2010 Misc Disney Interactive Studios 0.50
## 3126 PS3 2012 Fighting Tecmo Koei 0.23
## 3127 PSP 2007 Role-Playing Square Enix 0.20
## 3128 PS2 2002 Strategy Banpresto 0.00
## 3129 PS3 2014 Role-Playing Electronic Arts 0.26
## 3130 Wii 2011 Misc Ubisoft 0.39
## 3131 DS 2008 Misc Namco Bandai Games 0.00
## 3132 PS3 2010 Action Capcom 0.17
## 3133 PC 2013 Shooter Electronic Arts 0.17
## 3134 DS 2007 Simulation THQ 0.60
## 3135 PS2 2009 Action Electronic Arts 0.13
## 3136 GBA 2004 Platform Vivendi Games 0.46
## 3137 XOne 2014 Role-Playing Activision 0.35
## 3138 PS2 2004 Platform Vivendi Games 0.32
## 3139 PSP 2007 Action Vivendi Games 0.25
## 3140 PS3 2013 Shooter Sega 0.20
## 3141 PS2 2004 Platform Vivendi Games 0.32
## 3143 XB 2003 Shooter Take-Two Interactive 0.47
## 3144 X360 2010 Fighting Namco Bandai Games 0.49
## 3145 PS2 2004 Shooter Electronic Arts 0.54
## 3146 XOne 2016 Sports Take-Two Interactive 0.54
## 3147 PS3 2008 Shooter Capcom 0.31
## 3148 X360 2012 Strategy Take-Two Interactive 0.36
## 3149 3DS 2011 Platform Ubisoft 0.23
## 3150 PS4 2016 Action Warner Bros. Interactive Entertainment 0.25
## 3151 XB 2004 Shooter Electronic Arts 0.43
## 3152 PS2 2003 Platform Activision 0.31
## 3153 X360 2007 Racing THQ 0.25
## 3154 XB 2005 Sports Electronic Arts 0.57
## 3155 PC 2011 Action Electronic Arts 0.23
## 3156 X360 2006 Action LucasArts 0.55
## 3157 N64 1999 Shooter Red Storm Entertainment 0.48
## 3158 N64 1999 Platform Konami Digital Entertainment 0.44
## 3159 N64 1999 Platform Ubisoft 0.40
## 3160 GBA 2004 Misc N/A 0.46
## 3161 X360 2009 Action Electronic Arts 0.37
## 3162 XB 2002 Shooter Eidos Interactive 0.29
## 3163 PS2 2006 Action Capcom 0.15
## 3164 PS3 2010 Role-Playing Square Enix 0.17
## 3165 DS 2009 Platform Disney Interactive Studios 0.41
## 3166 PS3 2007 Racing Sega 0.07
## 3167 GBA 2004 Misc N/A 0.46
## 3168 PSV 2012 Action Sony Computer Entertainment 0.26
## 3169 GBA 2002 Misc Konami Digital Entertainment 0.46
## 3170 PS3 2010 Role-Playing Sony Computer Entertainment 0.23
## 3171 PS3 2009 Shooter Activision 0.25
## 3172 PS2 2005 Misc Sony Computer Entertainment 0.31
## 3173 PS4 2015 Action Warner Bros. Interactive Entertainment 0.22
## 3174 PS3 2010 Misc Sony Computer Entertainment 0.07
## 3175 N64 1998 Racing Nintendo 0.59
## 3176 N64 2000 Sports Electronic Arts 0.60
## 3177 PS3 2007 Sports Electronic Arts 0.56
## 3178 X360 2013 Shooter Activision 0.46
## 3179 Wii 2007 Racing Nintendo 0.20
## 3180 Wii 2008 Action Capcom 0.45
## 3181 PS2 2004 Platform Activision 0.31
## 3182 PS3 2014 Action Warner Bros. Interactive Entertainment 0.20
## 3183 Wii 2009 Misc Ubisoft 0.59
## 3184 Wii 2010 Shooter Ubisoft 0.36
## 3185 PS2 2005 Role-Playing Activision 0.53
## 3186 PS 1997 Action Sony Computer Entertainment 0.35
## 3187 PS2 2009 Misc Sony Computer Entertainment 0.08
## 3188 X360 2014 Misc Ubisoft 0.41
## 3189 PS3 2013 Racing Codemasters 0.01
## 3190 X360 2007 Racing THQ 0.22
## 3191 XB 2001 Sports Activision 0.41
## 3192 PS 1999 Strategy Electronic Arts 0.35
## 3193 XB 2002 Sports Electronic Arts 0.20
## 3194 X360 2009 Action Atari 0.43
## 3196 PS2 2005 Racing Electronic Arts 0.53
## 3197 PS3 2006 Sports Activision 0.30
## 3198 GBA 2004 Simulation Ubisoft 0.45
## 3199 PS3 2011 Action Disney Interactive Studios 0.30
## 3200 PS3 2009 Misc Activision 0.28
## 3201 PSP 2008 Action Sega 0.46
## 3202 3DS 2012 Misc Namco Bandai Games 0.00
## 3203 DS 2009 Action Electronic Arts 0.21
## 3204 N64 1998 Platform Activision 0.49
## 3205 SNES 1991 Platform Konami Digital Entertainment 0.32
## 3206 Wii 2010 Misc Activision 0.49
## 3207 3DS 2012 Action Activision 0.38
## 3208 X360 2008 Action Sega 0.38
## 3209 Wii 2007 Sports Activision 0.58
## 3210 PS2 2003 Fighting Namco Bandai Games 0.00
## 3211 PS3 2011 Misc Ubisoft 0.33
## 3212 DS 2010 Shooter Activision 0.54
## 3213 PS4 2015 Action Sony Computer Entertainment 0.23
## 3214 PS2 2002 Platform Sony Computer Entertainment 0.12
## 3215 Wii 2009 Shooter Nintendo 0.43
## 3216 2600 1982 Action Universal Gamex 0.58
## 3217 X360 2009 Shooter Activision 0.34
## 3219 PC 2011 Simulation Electronic Arts 0.40
## 3220 XOne 2014 Racing Ubisoft 0.24
## 3221 DS 2009 Strategy Ubisoft 0.31
## 3222 3DS 2016 Role-Playing Square Enix 0.00
## 3223 X360 2012 Racing Sega 0.20
## 3224 PS2 2007 Role-Playing Tecmo Koei 0.22
## 3225 PS2 2001 Sports Electronic Arts 0.31
## 3226 PSP 2009 Role-Playing Ghostlight 0.18
## 3227 PS 1997 Role-Playing Square 0.00
## 3228 X360 2011 Sports Electronic Arts 0.40
## 3229 PS2 2006 Action Capcom 0.11
## 3230 PS 2000 Sports Electronic Arts 0.35
## 3231 Wii 2009 Simulation THQ 0.41
## 3232 XOne 2015 Action Warner Bros. Interactive Entertainment 0.35
## 3233 PS3 2009 Shooter Bethesda Softworks 0.22
## 3234 DS 2009 Racing Electronic Arts 0.26
## 3235 PS 2000 Platform Activision 0.35
## 3236 GC 2002 Misc Namco Bandai Games 0.48
## 3237 SNES 1993 Strategy Tecmo Koei 0.30
## 3238 SAT 1995 Shooter Sega 0.00
## 3240 XB 2005 Sports Activision 0.40
## 3241 PS 1996 Fighting Acclaim Entertainment 0.35
## 3242 X360 2010 Action Ubisoft 0.30
## 3243 PS3 2010 Shooter Sega 0.21
## 3244 PS2 2002 Role-Playing Ubisoft 0.16
## 3245 PS 1997 Sports Sony Computer Entertainment 0.35
## 3246 PS3 2009 Role-Playing Deep Silver 0.22
## 3247 GC 2006 Sports Electronic Arts 0.48
## 3248 PC 2014 Shooter Ubisoft 0.15
## 3249 2600 1982 Shooter Atari 0.58
## 3250 XB 2003 Sports Electronic Arts 0.47
## 3251 3DS 2011 Action Disney Interactive Studios 0.29
## 3252 PS3 2014 Sports Konami Digital Entertainment 0.10
## 3253 XOne 2015 Shooter Take-Two Interactive 0.36
## 3254 PS2 2004 Platform THQ 0.30
## 3255 PS3 2013 Action Deep Silver 0.26
## 3256 PS3 2011 Action Ubisoft Annecy 0.00
## 3257 DS 2008 Adventure Disney Interactive Studios 0.35
## 3258 GC 2003 Action Capcom 0.38
## 3259 GBA 2004 Simulation Electronic Arts 0.37
## 3260 N64 1999 Racing Electronic Arts 0.40
## 3261 PSV 2012 Sports Electronic Arts 0.17
## 3262 PS 2000 Platform Eidos Interactive 0.34
## 3263 DS 2010 Misc Activision 0.58
## 3264 PS2 2004 Sports Play It 0.30
## 3265 Wii 2007 Action THQ 0.57
## 3266 PS3 2014 Action Konami Digital Entertainment 0.14
## 3267 2600 1982 Action Wizard Video Games 0.58
## 3268 PS3 2011 Fighting Namco Bandai Games 0.27
## 3269 PSP 2009 Fighting THQ 0.25
## 3270 PS 1999 Sports ASCII Entertainment 0.21
## 3271 PS2 2004 Racing Eidos Interactive 0.30
## 3272 GB 1995 Puzzle Nintendo 0.00
## 3273 GC 2003 Misc Namco Bandai Games 0.48
## 3274 PS4 2014 Misc Ubisoft 0.34
## 3275 SAT 1996 Fighting Sega 0.00
## 3276 SNES 1996 Role-Playing SquareSoft 0.00
## 3277 X360 2008 Platform THQ 0.29
## 3278 PC 1998 Action Eidos Interactive 0.59
## 3279 3DS 2012 Adventure Namco Bandai Games 0.00
## 3280 DS 2011 Role-Playing Square Enix 0.00
## 3281 N64 1998 Sports Acclaim Entertainment 0.59
## 3282 PS 2001 Strategy Banpresto 0.00
## 3283 PS3 2006 Racing Sony Computer Entertainment 0.00
## 3284 Wii 2009 Role-Playing Rising Star Games 0.33
## 3285 PS3 2008 Sports Take-Two Interactive 0.56
## 3286 PS2 2008 Misc Sony Computer Entertainment 0.00
## 3287 PS4 2015 Sports Electronic Arts 0.35
## 3288 PS4 2014 Shooter Electronic Arts 0.21
## 3289 XB 2002 Sports Microsoft Game Studios 0.46
## 3290 PS2 2006 Action Tecmo Koei 0.02
## 3291 PS3 2013 Action Tecmo Koei 0.12
## 3292 Wii 2010 Misc Disney Interactive Studios 0.39
## 3293 GBA 2005 Misc THQ 0.44
## 3294 PS2 2002 Shooter TDK Mediactive 0.30
## 3295 GBA 2004 Platform Gotham Games 0.44
## 3296 Wii 2010 Misc Take-Two Interactive 0.35
## 3297 X360 2009 Sports Activision 0.46
## 3298 WiiU 2013 Misc Ubisoft 0.33
## 3299 3DS 2011 Simulation 505 Games 0.50
## 3300 GBA 2004 Misc Majesco Entertainment 0.44
## 3301 PS2 2003 Shooter Namco Bandai Games 0.30
## 3302 Wii 2010 Sports Activision 0.58
## 3303 DS 2007 Misc Nintendo 0.00
## 3304 X360 2010 Sports Konami Digital Entertainment 0.09
## 3305 Wii 2008 Platform Nintendo 0.24
## 3306 PS 1998 Platform Electronic Arts 0.34
## 3307 PS3 2011 Shooter Sega 0.09
## 3308 DS 2008 Simulation Electronic Arts 0.31
## 3309 XB 2005 Shooter Electronic Arts 0.37
## 3310 PS 1997 Shooter GT Interactive 0.34
## 3311 Wii 2010 Misc Namco Bandai Games 0.47
## 3312 PSP 2009 Platform Sony Computer Entertainment 0.18
## 3313 X360 2008 Sports Bethesda Softworks 0.56
## 3314 DS 2007 Simulation Electronic Arts 0.33
## 3315 X360 2009 Sports Spike 0.56
## 3316 DS 2008 Simulation Ubisoft 0.56
## 3317 X360 2010 Racing Disney Interactive Studios 0.32
## 3318 GBA 2005 Role-Playing Nintendo 0.27
## 3319 GBA 2002 Sports Electronic Arts 0.44
## 3320 PS 1999 Action Eidos Interactive 0.34
## 3321 GBA 2005 Action Electronic Arts 0.44
## 3322 GBA 2004 Action Atari 0.44
## 3323 GC 2001 Sports Electronic Arts 0.47
## 3324 Wii 2009 Misc Activision 0.33
## 3325 Wii 2008 Misc Disney Interactive Studios 0.37
## 3326 GBA 2001 Action Activision 0.43
## 3327 N64 1999 Sports Electronic Arts 0.58
## 3328 X360 2007 Action Activision 0.51
## 3329 GBA 2002 Misc Nintendo 0.43
## 3330 DS 2008 Simulation Electronic Arts 0.34
## 3331 PS2 2003 Fighting Atari 0.50
## 3332 X360 2010 Fighting Ubisoft 0.31
## 3333 X360 2009 Shooter Ubisoft 0.30
## 3334 Wii 2009 Strategy Nintendo 0.11
## 3335 GBA 2003 Sports Activision 0.43
## 3336 PSV 2011 Sports Sony Computer Entertainment 0.19
## 3337 GBA 2004 Racing Majesco Entertainment 0.43
## 3338 PS2 2005 Platform Sega 0.50
## 3339 GC 2001 Racing Nintendo 0.40
## 3340 PS2 2003 Fighting Eidos Interactive 0.30
## 3341 XB 2005 Fighting Electronic Arts 0.42
## 3342 PSP 2010 Role-Playing Capcom 0.00
## 3343 DS 2007 Action Sega 0.28
## 3344 PS2 2007 Sports Take-Two Interactive 0.50
## 3345 Wii 2011 Action Disney Interactive Studios 0.36
## 3346 WiiU 2013 Action Disney Interactive Studios 0.33
## 3348 DS 2009 Misc Nintendo 0.18
## 3349 PS3 2009 Sports Activision 0.38
## 3350 3DS 2015 Action Warner Bros. Interactive Entertainment 0.31
## 3351 PS3 2011 Adventure Electronic Arts 0.22
## 3352 PS4 2014 Action Warner Bros. Interactive Entertainment 0.12
## 3353 PS 1995 Role-Playing Konami Digital Entertainment 0.21
## 3354 PS2 2009 Platform Sony Computer Entertainment 0.13
## 3355 PS2 2001 Racing Ubisoft 0.29
## 3356 PSP 2009 Action Ubisoft 0.22
## 3357 PS2 2006 Action THQ 0.50
## 3358 SAT 1997 Puzzle Compile 0.00
## 3359 PS2 2001 Shooter Vivendi Games 0.29
## 3360 XOne 2014 Action Square Enix 0.34
## 3361 N64 2000 Racing Nintendo 0.37
## 3362 N64 1997 Sports Konami Digital Entertainment 0.09
## 3363 WiiU 2013 Platform Activision 0.40
## 3364 PS2 2001 Racing Infogrames 0.29
## 3365 Wii 2008 Misc Disney Interactive Studios 0.32
## 3366 PS 2002 Fighting Namco Bandai Games 0.00
## 3367 PS 1998 Simulation Konami Digital Entertainment 0.00
## 3368 X360 2005 Racing Microsoft Game Studios 0.49
## 3369 PS3 2012 Strategy Take-Two Interactive 0.24
## 3370 X360 2010 Racing Activision 0.25
## 3371 PS 1998 Adventure Electronic Arts 0.33
## 3372 3DS 2012 Action Warner Bros. Interactive Entertainment 0.55
## 3373 SNES 1995 Strategy SquareSoft 0.00
## 3374 PS3 2010 Sports Electronic Arts 0.40
## 3375 X360 2012 Adventure Microsoft Game Studios 0.38
## 3376 X360 2008 Misc Electronic Arts 0.34
## 3377 PS4 2014 Action Disney Interactive Studios 0.26
## 3378 PS2 2007 Sports Spike 0.29
## 3379 DS 2004 Racing Ubisoft 0.31
## 3380 PS3 2010 Fighting Sony Computer Entertainment 0.29
## 3381 PS2 2003 Strategy Banpresto 0.00
## 3382 DS 2005 Puzzle Nintendo 0.26
## 3383 PC 2008 Action Electronic Arts 0.00
## 3384 PS2 2004 Racing THQ 0.29
## 3385 PSV 2012 Platform Ubisoft 0.13
## 3386 X360 2012 Sports Sega 0.07
## 3387 X360 2008 Sports Sega 0.15
## 3388 PS2 2005 Strategy Banpresto 0.00
## 3389 Wii 2010 Misc THQ 0.56
## 3390 PS 1997 Sports Konami Digital Entertainment 0.00
## 3391 PC 2011 Action Ubisoft 0.15
## 3392 PS 1998 Sports Electronic Arts 0.33
## 3393 PS 2001 Misc Sony Computer Entertainment 0.33
## 3394 GC 2002 Shooter Electronic Arts 0.46
## 3395 DS 2009 Role-Playing Square Enix 0.23
## 3396 Wii 2008 Action Sega 0.31
## 3397 PS3 2010 Shooter Square Enix 0.17
## 3398 PS 2000 Sports Midway Games 0.33
## 3399 PC 2011 Strategy Sega 0.19
## 3400 PS 1998 Sports Konami Digital Entertainment 0.00
## 3401 PS2 2008 Misc MTV Games 0.29
## 3402 PS3 2012 Action Sega 0.00
## 3403 PSP 2009 Action Activision 0.21
## 3404 2600 1981 Puzzle Mattel Interactive 0.55
## 3405 X360 2008 Action Ubisoft 0.24
## 3406 PS2 2002 Sports Electronic Arts 0.21
## 3407 XB 2004 Sports Electronic Arts 0.44
## 3408 GC 2002 Platform Universal Interactive 0.46
## 3409 2600 1981 Action Coleco 0.55
## 3410 DS 2007 Misc 505 Games 0.54
## 3411 Wii 2008 Action Take-Two Interactive 0.53
## 3412 Wii 2007 Action Activision 0.52
## 3413 N64 1997 Racing Acclaim Entertainment 0.47
## 3414 N64 1999 Sports Midway Games 0.47
## 3415 X360 2013 Shooter 505 Games 0.33
## 3416 XB 2003 Sports Microsoft Game Studios 0.36
## 3417 PS2 2004 Role-Playing Namco Bandai Games 0.00
## 3418 X360 2012 Fighting Namco Bandai Games 0.39
## 3419 PS3 2011 Sports Electronic Arts 0.36
## 3420 PS3 2015 Role-Playing Namco Bandai Games 0.05
## 3421 PS2 2010 Action Konami Digital Entertainment 0.13
## 3423 Wii 2008 Sports Electronic Arts 0.51
## 3424 X360 2010 Misc Warner Bros. Interactive Entertainment 0.36
## 3425 PS 1999 Action Sony Computer Entertainment 0.33
## 3426 X360 2008 Action Ubisoft 0.18
## 3427 PS2 2004 Platform Capcom 0.29
## 3428 PSP 2007 Role-Playing Square Enix 0.39
## 3429 PS4 2015 Role-Playing Namco Bandai Games 0.20
## 3430 PSP 2008 Action Koch Media 0.35
## 3431 PC 2011 Shooter Square Enix 0.25
## 3432 PS3 2010 Sports 505 Games 0.28
## 3433 GBA 2003 Simulation Ubisoft 0.34
## 3434 PS2 2003 Sports Atari 0.29
## 3435 DS 2009 Sports Electronic Arts 0.14
## 3436 SNES 1994 Sports Nintendo 0.00
## 3437 PS3 2012 Shooter Bethesda Softworks 0.26
## 3438 PS2 2003 Action Capcom 0.22
## 3439 Wii 2008 Action Take-Two Interactive 0.15
## 3440 Wii 2007 Simulation Ubisoft 0.53
## 3441 PS2 2008 Action THQ 0.29
## 3442 Wii 2009 Shooter Sega 0.29
## 3443 WiiU 2015 Misc Ubisoft 0.28
## 3444 PS 1995 Simulation Konami Digital Entertainment 0.00
## 3445 PS 1997 Role-Playing Electronic Arts 0.29
## 3446 Wii 2010 Sports Activision 0.53
## 3447 PS4 2014 Sports Electronic Arts 0.30
## 3448 2600 1982 Puzzle Parker Bros. 0.55
## 3449 PS2 2005 Role-Playing Square Enix 0.06
## 3450 PS2 2004 Role-Playing Electronic Arts 0.49
## 3451 DS 2008 Simulation Rising Star Games 0.35
## 3452 Wii 2009 Misc Electronic Arts 0.21
## 3453 Wii 2008 Platform Vivendi Games 0.35
## 3454 PC 2009 Simulation Electronic Arts 0.02
## 3455 XOne 2014 Sports Microsoft Game Studios 0.30
## 3456 Wii 2011 Platform Ubisoft 0.23
## 3457 XOne 2015 Sports Take-Two Interactive 0.31
## 3458 PC 2014 Shooter Electronic Arts 0.21
## 3459 PS3 2008 Sports Electronic Arts 0.54
## 3460 X360 2009 Action Ubisoft 0.31
## 3461 PS 2000 Sports 3DO 0.32
## 3462 3DS 2013 Platform Disney Interactive Studios 0.27
## 3463 PS2 2003 Action Atari 0.28
## 3464 X360 2010 Shooter Activision 0.37
## 3465 DS 2010 Simulation Natsume 0.27
## 3466 N64 1997 Sports Electronic Arts 0.15
## 3467 N64 1998 Sports Electronic Arts 0.14
## 3468 N64 1998 Sports Konami Digital Entertainment 0.06
## 3470 PS2 2000 Shooter Infogrames 0.28
## 3471 PS 2000 Role-Playing Namco Bandai Games 0.23
## 3472 PS 1998 Role-Playing Namco Bandai Games 0.00
## 3473 XB 2005 Action Ubisoft 0.33
## 3474 PS2 2004 Role-Playing Sony Computer Entertainment 0.28
## 3475 PS 1998 Platform BMG Interactive Entertainment 0.32
## 3476 GBA 2004 Adventure Activision 0.42
## 3477 DS 2007 Action Capcom 0.25
## 3478 PS3 2013 Fighting Namco Bandai Games 0.05
## 3479 DS 2009 Simulation Ubisoft 0.53
## 3480 PS2 2002 Shooter Konami Digital Entertainment 0.28
## 3481 PS 1998 Racing THQ 0.32
## 3482 SNES 1992 Role-Playing Namco Bandai Games 0.00
## 3483 X360 2006 Sports Take-Two Interactive 0.53
## 3484 PS3 2015 Sports Take-Two Interactive 0.21
## 3485 DS 2006 Adventure Capcom 0.24
## 3486 SNES 1996 Strategy Nintendo 0.00
## 3487 PS3 2010 Misc MTV Games 0.43
## 3488 PS3 2011 Role-Playing Nippon Ichi Software 0.27
## 3489 PS3 2009 Fighting PQube 0.36
## 3490 PS 2000 Action Activision 0.32
## 3491 GC 2002 Sports Activision 0.45
## 3492 PS3 2011 Sports Sony Computer Entertainment 0.54
## 3493 PS2 2006 Action Namco Bandai Games 0.28
## 3494 PS2 2005 Sports Electronic Arts 0.48
## 3495 PS3 2009 Sports Electronic Arts 0.38
## 3496 DS 2010 Adventure Nintendo 0.10
## 3497 Wii 2009 Sports Activision 0.52
## 3498 PS 1999 Role-Playing SquareSoft 0.32
## 3499 Wii 2010 Puzzle Nintendo 0.34
## 3500 N64 1999 Sports Midway Games 0.55
## 3501 PS3 2008 Platform Sony Computer Entertainment 0.00
## 3503 PS2 2009 Sports Electronic Arts 0.28
## 3504 PS3 2008 Action Take-Two Interactive 0.08
## 3505 3DS 2013 Role-Playing Atlus 0.28
## 3506 PS 1994 Simulation Electronic Arts 0.24
## 3507 X360 2007 Shooter Midway Games 0.29
## 3508 X360 2007 Platform Activision 0.49
## 3509 PSP 2005 Racing SouthPeak Games 0.53
## 3510 XB 2005 Shooter Ubisoft 0.32
## 3511 PS2 2008 Puzzle Electronic Arts 0.28
## 3512 GBA 2002 Sports Activision 0.41
## 3513 Wii 2009 Action THQ 0.23
## 3514 PS2 2005 Role-Playing Namco Bandai Games 0.00
## 3515 X360 2011 Action Disney Interactive Studios 0.37
## 3516 X360 2008 Action Sega 0.27
## 3517 PS 2000 Strategy Namco Bandai Games 0.00
## 3518 GBA 2004 Action Vivendi Games 0.41
## 3519 PS3 2010 Action Namco Bandai Games 0.24
## 3520 DS 2008 Action THQ 0.53
## 3521 PS 1995 Role-Playing Sony Computer Entertainment 0.11
## 3522 PS2 2008 Action Koch Media 0.22
## 3523 PSP 2007 Action Eidos Interactive 0.21
## 3524 X360 2011 Shooter THQ 0.25
## 3525 GC 2005 Sports Electronic Arts 0.44
## 3526 Wii 2007 Action Rising Star Games 0.30
## 3527 PC 2010 Action Ubisoft 0.01
## 3528 DS 2008 Simulation Ubisoft 0.52
## 3529 PS2 2004 Fighting Namco Bandai Games 0.47
## 3530 X360 2013 Shooter Trion Worlds 0.38
## 3531 DS 2006 Simulation Ubisoft 0.51
## 3532 PS3 2009 Role-Playing SouthPeak Games 0.36
## 3533 NES 1986 Action Nintendo 0.00
## 3534 N64 1997 Sports GT Interactive 0.48
## 3535 Wii 2009 Sports Majesco Entertainment 0.52
## 3536 PSP 2011 Action Konami Digital Entertainment 0.10
## 3537 Wii 2010 Misc 505 Games 0.27
## 3538 XB 2001 Shooter Microsoft Game Studios 0.43
## 3539 PS2 2005 Action Tecmo Koei 0.11
## 3540 3DS 2011 Action Activision 0.32
## 3541 Wii 2008 Platform Take-Two Interactive 0.50
## 3542 PS2 2002 Misc Sony Computer Entertainment 0.28
## 3543 PS2 2006 Sports Electronic Arts 0.47
## 3544 XB 2002 Racing Activision 0.42
## 3545 SNES 1992 Puzzle Hudson Soft 0.00
## 3546 XB 2003 Platform THQ 0.45
## 3547 PS3 2012 Shooter Take-Two Interactive 0.19
## 3548 PS2 2002 Strategy Namco Bandai Games 0.00
## 3549 DS 2007 Adventure THQ 0.29
## 3550 XB 2002 Racing Microsoft Game Studios 0.39
## 3551 PS2 2004 Action Capcom 0.19
## 3552 PS 2000 Action THQ 0.31
## 3553 PS2 2003 Shooter Ubisoft 0.28
## 3554 PS3 2013 Sports Electronic Arts 0.28
## 3555 X360 2009 Misc Warner Bros. Interactive Entertainment 0.40
## 3556 Wii 2008 Adventure Disney Interactive Studios 0.19
## 3557 X360 2008 Action Take-Two Interactive 0.09
## 3558 PS3 2009 Action Ubisoft 0.21
## 3559 X360 2015 Action Warner Bros. Interactive Entertainment 0.24
## 3560 PS 2000 Role-Playing Capcom 0.11
## 3561 GC 2003 Action Activision 0.44
## 3562 PS2 2007 Role-Playing Square Enix 0.23
## 3563 DS 2007 Platform Nintendo 0.26
## 3564 GBA 2003 Action Universal Interactive 0.40
## 3565 GBA 2004 Puzzle Zoo Digital Publishing 0.40
## 3566 PS2 2006 Sports Electronic Arts 0.28
## 3567 GBA 2003 Action Electronic Arts 0.40
## 3568 PS2 2001 Sports Midway Games 0.28
## 3569 GBA 2004 Puzzle Nintendo 0.31
## 3570 XB 2003 Simulation Electronic Arts 0.40
## 3571 PS2 2007 Sports Electronic Arts 0.28
## 3572 PS 2001 Platform Sony Computer Entertainment 0.31
## 3573 PS2 2006 Misc Electronic Arts 0.28
## 3574 PSP 2006 Sports Activision 0.41
## 3575 GBA 2004 Misc Konami Digital Entertainment 0.40
## 3576 PS2 2004 Sports Activision 0.28
## 3577 DS 2007 Adventure Nintendo 0.27
## 3578 PS2 2001 Fighting Electronic Arts 0.28
## 3579 PS 1999 Action 3DO 0.31
## 3580 DS 2011 Action Disney Interactive Studios 0.32
## 3581 PS2 2007 Simulation Ubisoft 0.28
## 3582 XB 2005 Shooter Electronic Arts 0.39
## 3583 X360 2009 Shooter Activision 0.28
## 3584 PS2 2001 Sports Acclaim Entertainment 0.27
## 3585 GBA 2002 Sports Infogrames 0.40
## 3586 GC 2005 Racing Electronic Arts 0.43
## 3587 PS 2000 Racing Electronic Arts 0.31
## 3588 Wii 2010 Sports Activision 0.41
## 3589 X360 2007 Sports Activision 0.49
## 3590 XB 2003 Fighting THQ 0.43
## 3591 N64 1999 Action Virgin Interactive 0.39
## 3592 SNES 1993 Platform Laguna 0.09
## 3593 PS2 2007 Action Take-Two Interactive 0.27
## 3594 3DS 2015 Role-Playing Nintendo 0.26
## 3595 PS2 2003 Role-Playing Square Enix 0.15
## 3596 Wii 2011 Misc THQ 0.44
## 3597 PSP 2011 Role-Playing Square Enix 0.13
## 3598 X360 2008 Shooter THQ 0.34
## 3599 X360 2009 Misc Microsoft Game Studios 0.15
## 3600 GB 2001 Role-Playing Nintendo 0.00
## 3601 PS2 2005 Action Electronic Arts 0.27
## 3602 DS 2008 Simulation THQ 0.27
## 3603 PS2 2003 Misc Vivendi Games 0.27
## 3604 GBA 2002 Misc Universal Interactive 0.40
## 3605 GBA 2003 Strategy Konami Digital Entertainment 0.40
## 3606 XB 2002 Platform Microsoft Game Studios 0.39
## 3607 Wii 2008 Action Activision 0.32
## 3608 PSP 2005 Puzzle Ignition Entertainment 0.17
## 3609 PS2 2003 Sports Sega 0.27
## 3610 SNES 1994 Fighting Takara 0.00
## 3611 DS 2006 Simulation Ubisoft 0.49
## 3612 XB 2005 Sports Take-Two Interactive 0.52
## 3613 DS 2008 Misc Nintendo 0.00
## 3614 XOne 2014 Sports Take-Two Interactive 0.28
## 3615 DS 2008 Simulation Ubisoft 0.48
## 3616 PSV 2013 Role-Playing Sony Computer Entertainment 0.18
## 3617 DS 2009 Action Disney Interactive Studios 0.27
## 3618 Wii 2010 Sports Electronic Arts 0.24
## 3619 PS2 2001 Shooter Codemasters 0.27
## 3620 DS 2006 Role-Playing Rising Star Games 0.37
## 3621 Wii 2010 Racing Activision 0.50
## 3622 Wii 2006 Sports Activision 0.51
## 3623 PS2 2001 Racing THQ 0.27
## 3624 DS 2007 Simulation THQ 0.18
## 3625 XB 2006 Sports Electronic Arts 0.42
## 3626 PS3 2011 Action Sony Computer Entertainment 0.39
## 3627 X360 2011 Racing THQ 0.37
## 3628 PS 1998 Role-Playing Kadokawa Shoten 0.27
## 3629 PS3 2015 Fighting Namco Bandai Games 0.15
## 3630 PS 1999 Sports Midway Games 0.31
## 3631 DS 2010 Simulation Activision 0.41
## 3632 X360 2014 Role-Playing Electronic Arts 0.35
## 3633 PS2 2001 Action Eidos Interactive 0.27
## 3634 PS2 2005 Action Konami Digital Entertainment 0.34
## 3635 PS3 2013 Platform Sony Computer Entertainment Europe 0.35
## 3636 XB 2006 Action Electronic Arts 0.42
## 3637 SAT 1994 Racing Sega 0.00
## 3638 Wii 2010 Action Electronic Arts 0.22
## 3639 PS3 2012 Sports Electronic Arts 0.24
## 3640 XB 2002 Fighting THQ 0.40
## 3641 PS 1996 Role-Playing Banpresto 0.00
## 3642 DS 2005 Fighting Nintendo 0.00
## 3643 PS3 2009 Fighting THQ 0.30
## 3644 2600 1982 Sports Activision 0.52
## 3645 PS 2001 Shooter D3Publisher 0.31
## 3646 DS 2009 Misc Destineer 0.52
## 3647 PS 1999 Action Eidos Interactive 0.31
## 3648 SAT 1996 Adventure Sega 0.00
## 3649 3DS 2016 Action Level 5 0.00
## 3650 PS2 2001 Action Sony Computer Entertainment 0.21
## 3651 PS2 2001 Adventure Ubisoft 0.27
## 3652 PSV 2012 Shooter Sony Computer Entertainment 0.29
## 3653 Wii 2010 Fighting Capcom 0.32
## 3654 X360 2007 Action Ubisoft 0.47
## 3655 PS3 2007 Shooter Vivendi Games 0.18
## 3656 PSP 2008 Platform Sony Computer Entertainment 0.33
## 3657 PC 2014 Action Ubisoft 0.17
## 3658 PS2 2004 Sports Enterbrain 0.00
## 3659 PS3 2007 Sports Take-Two Interactive 0.50
## 3660 DS 2008 Sports Activision 0.51
## 3661 DS 2008 Puzzle Deep Silver 0.51
## 3662 XB 2002 Sports Activision 0.34
## 3663 GBA 2002 Platform Capcom 0.22
## 3664 PS 2000 Fighting 3DO 0.31
## 3665 PS4 2014 Action Activision 0.20
## 3666 PS 1996 Shooter LucasArts 0.31
## 3667 PS 1999 Strategy Namco Bandai Games 0.00
## 3668 SAT 1997 Strategy Banpresto 0.00
## 3669 XB 2004 Platform Activision 0.40
## 3670 PS2 2002 Sports Sega 0.00
## 3671 PS3 2010 Shooter Namco Bandai Games 0.18
## 3672 GBA 2001 Action THQ 0.39
## 3673 SAT 1998 Strategy Banpresto 0.00
## 3674 X360 2010 Action Namco Bandai Games 0.30
## 3675 3DS 2012 Role-Playing Xseed Games 0.31
## 3676 Wii 2008 Sports Ubisoft 0.49
## 3677 GBA 2003 Platform THQ 0.39
## 3678 PS3 2010 Action Tecmo Koei 0.11
## 3679 PS 1995 Fighting Sony Computer Entertainment 0.29
## 3680 XB 2002 Shooter Acclaim Entertainment 0.39
## 3681 PS2 2005 Racing Sony Computer Entertainment 0.45
## 3682 X360 2010 Shooter THQ 0.22
## 3683 Wii 2008 Misc THQ 0.51
## 3684 PS2 2003 Misc Codemasters 0.27
## 3685 PS 1996 Misc Microprose 0.30
## 3686 XB 2004 Shooter Take-Two Interactive 0.40
## 3687 PSP 2006 Fighting Atari 0.26
## 3688 PS3 2014 Action Warner Bros. Interactive Entertainment 0.12
## 3689 PS2 2008 Action Sega 0.36
## 3690 PS2 2008 Misc Sony Computer Entertainment 0.00
## 3691 X360 2007 Sports Electronic Arts 0.49
## 3692 PS3 2009 Sports Electronic Arts 0.46
## 3693 XB 2004 Platform THQ 0.40
## 3694 XB 2006 Sports Electronic Arts 0.16
## 3695 PS2 2000 Sports SquareSoft 0.00
## 3696 GB 1999 Role-Playing Imagineer 0.00
## 3697 Wii 2006 Racing Nintendo 0.40
## 3698 X360 2009 Role-Playing Deep Silver 0.29
## 3699 Wii 2008 Racing System 3 Arcade Software 0.07
## 3700 XB 2003 Simulation Konami Digital Entertainment 0.42
## 3701 PSP 2010 Racing Sony Computer Entertainment 0.11
## 3702 PS2 2005 Racing Vivendi Games 0.27
## 3703 X360 2011 Role-Playing Unknown 0.40
## 3704 PS3 2012 Racing Sega 0.08
## 3705 PS3 2011 Misc Ubisoft 0.25
## 3706 PS2 2003 Strategy Square Enix 0.14
## 3707 GBA 2003 Platform THQ 0.39
## 3708 PS3 2015 Action Warner Bros. Interactive Entertainment 0.15
## 3709 DS 2008 Role-Playing Nintendo 0.00
## 3710 DS 2010 Role-Playing Level 5 0.00
## 3711 XOne 2015 Adventure Mojang 0.29
## 3712 PS4 2015 Action Capcom 0.13
## 3713 Wii 2007 Action Take-Two Interactive 0.25
## 3714 PS2 2004 Racing Namco Bandai Games 0.26
## 3715 DS 2010 Puzzle D3Publisher 0.42
## 3717 2600 1982 Action CPG Products 0.50
## 3718 N64 1999 Action Midway Games 0.43
## 3719 N64 1998 Sports Electronic Arts 0.11
## 3720 PS3 2011 Fighting Namco Bandai Games 0.00
## 3721 X360 2011 Fighting Namco Bandai Games 0.39
## 3722 PS3 2013 Role-Playing Namco Bandai Games 0.21
## 3723 PS 1998 Misc Sony Computer Entertainment 0.09
## 3724 GC 2005 Action Nintendo 0.29
## 3725 PS2 2002 Role-Playing Enix Corporation 0.00
## 3726 DS 2008 Misc Ubisoft 0.24
## 3727 PS 1999 Misc Aruze Corp 0.00
## 3728 X360 2013 Sports Electronic Arts 0.40
## 3729 PSP 2010 Role-Playing Sega 0.12
## 3730 X360 2014 Action Warner Bros. Interactive Entertainment 0.28
## 3731 Wii 2012 Sports Electronic Arts 0.51
## 3732 DS 2008 Role-Playing Rising Star Games 0.33
## 3733 PS3 2009 Shooter Warner Bros. Interactive Entertainment 0.13
## 3734 PS3 2011 Racing Disney Interactive Studios 0.22
## 3735 GBA 2004 Misc THQ 0.39
## 3736 DS 2010 Action Activision 0.32
## 3737 GC 2001 Sports Electronic Arts 0.42
## 3738 DS 2009 Fighting THQ 0.35
## 3739 XB 2004 Shooter Activision 0.46
## 3740 DS 2008 Puzzle Empire Interactive 0.42
## 3741 DS 2006 Shooter Nintendo 0.39
## 3742 PS2 2004 Sports Konami Digital Entertainment 0.00
## 3743 PS2 2003 Sports Sega 0.26
## 3744 3DS 2011 Role-Playing Nintendo 0.00
## 3745 PS2 2006 Platform Activision 0.45
## 3746 PS 2001 Sports Activision 0.30
## 3747 PS4 2016 Action Warner Bros. Interactive Entertainment 0.14
## 3748 X360 2012 Action Disney Interactive Studios 0.32
## 3749 2600 1982 Platform Parker Bros. 0.50
## 3750 DS 2008 Role-Playing Konami Digital Entertainment 0.04
## 3751 PS2 2003 Platform Vivendi Games 0.26
## 3752 PS2 2003 Fighting Sony Computer Entertainment 0.26
## 3753 Wii 2008 Role-Playing Namco Bandai Games 0.22
## 3755 PS2 2005 Action Vivendi Games 0.26
## 3756 PC 2015 Shooter Electronic Arts 0.13
## 3757 SAT 1998 Adventure Sega 0.00
## 3758 DS 2009 Puzzle Rondomedia 0.21
## 3759 PS2 2001 Shooter Namco Bandai Games 0.26
## 3760 PS 1996 Adventure ASCII Entertainment 0.07
## 3761 PS2 2005 Sports Electronic Arts 0.45
## 3762 Wii 2008 Action THQ 0.49
## 3763 PS2 2004 Misc Sony Computer Entertainment 0.26
## 3764 PS3 2013 Role-Playing Nippon Ichi Software 0.25
## 3765 PSP 2010 Role-Playing Square Enix 0.15
## 3766 PS2 2003 Action Eidos Interactive 0.26
## 3767 GBA 2004 Misc N/A 0.38
## 3768 PS2 2004 Sports Electronic Arts 0.44
## 3769 PS 2000 Racing Electronic Arts 0.30
## 3770 PS2 2004 Shooter SCi 0.26
## 3771 XB 2004 Misc Sega 0.40
## 3772 DS 2006 Role-Playing Sega 0.18
## 3773 DS 2009 Simulation Electronic Arts 0.26
## 3774 PS2 2003 Sports Midway Games 0.26
## 3775 PS 1999 Platform Eidos Interactive 0.30
## 3776 PS2 2008 Racing Electronic Arts 0.26
## 3777 XB 2004 Sports Midway Games 0.40
## 3778 PS 1996 Misc Sony Computer Entertainment 0.30
## 3779 WiiU 2015 Action Warner Bros. Interactive Entertainment 0.28
## 3780 X360 2011 Misc Warner Bros. Interactive Entertainment 0.39
## 3781 SNES 1993 Sports Hudson Soft 0.00
## 3782 SNES 1994 Strategy Tecmo Koei 0.00
## 3783 SNES 1993 Sports Tecmo Koei 0.00
## 3784 XB 2005 Action Ubisoft 0.34
## 3785 PS3 2010 Misc Sony Computer Entertainment 0.09
## 3786 WiiU 2015 Platform Nintendo 0.23
## 3787 XB 2005 Racing Electronic Arts 0.32
## 3788 PSP 2011 Sports Electronic Arts 0.12
## 3789 XB 2005 Shooter Electronic Arts 0.32
## 3790 PC 2011 Action Warner Bros. Interactive Entertainment 0.16
## 3791 PS2 2004 Platform Electronic Arts 0.26
## 3792 XB 2002 Action Universal Interactive 0.31
## 3793 PS2 2005 Sports Sony Computer Entertainment 0.26
## 3794 WiiU 2012 Racing Sega 0.20
## 3795 N64 2000 Action Activision 0.43
## 3796 Wii 2008 Simulation 505 Games 0.48
## 3797 PSP 2007 Shooter Ubisoft 0.35
## 3798 GC 2004 Role-Playing Activision 0.41
## 3799 Wii 2010 Adventure Disney Interactive Studios 0.27
## 3800 DS 2010 Simulation Electronic Arts 0.50
## 3801 PS 1997 Strategy SquareSoft 0.00
## 3802 PS3 2011 Shooter Electronic Arts 0.23
## 3803 X360 2009 Shooter Warner Bros. Interactive Entertainment 0.32
## 3804 X360 2010 Sports Electronic Arts 0.28
## 3805 PS3 2007 Racing THQ 0.17
## 3806 DS 2007 Misc Mindscape 0.48
## 3807 PSP 2009 Racing Codemasters 0.08
## 3808 PS2 2001 Action Take-Two Interactive 0.26
## 3809 GC 2002 Action Electronic Arts 0.41
## 3810 PS2 2005 Racing THQ 0.26
## 3811 PS2 2005 Action Take-Two Interactive 0.44
## 3812 PSV 2013 Action Warner Bros. Interactive Entertainment 0.20
## 3813 SNES 1994 Sports Namco Bandai Games 0.00
## 3814 Wii 2008 Action Take-Two Interactive 0.48
## 3815 PS3 2013 Shooter Activision 0.28
## 3816 DS 2009 Puzzle Nintendo 0.30
## 3817 XOne 2014 Misc Ubisoft 0.35
## 3818 PSP 2007 Action Konami Digital Entertainment 0.22
## 3819 N64 1999 Racing Electronic Arts 0.49
## 3820 N64 1996 Sports Nintendo 0.49
## 3821 PS 2000 Misc Aruze Corp 0.00
## 3822 PS2 2003 Shooter Activision 0.26
## 3823 GBA 2005 Sports Nintendo 0.24
## 3824 DC 1999 Simulation Sega 0.00
## 3825 DS 2008 Action Warner Bros. Interactive Entertainment 0.47
## 3826 PS 1999 Adventure Konami Digital Entertainment 0.29
## 3827 Wii 2006 Racing Ubisoft 0.46
## 3828 PS2 2006 Role-Playing Namco Bandai Games 0.00
## 3829 DS 2008 Role-Playing Disney Interactive Studios 0.37
## 3830 DS 2009 Misc Ubisoft 0.09
## 3831 Wii 2009 Fighting Nintendo 0.45
## 3832 PSP 2006 Fighting Electronic Arts 0.46
## 3833 PS2 2007 Action Sega 0.13
## 3834 PS 2001 Role-Playing Square 0.29
## 3835 X360 2007 Sports Electronic Arts 0.47
## 3836 PS 2001 Shooter Sony Computer Entertainment 0.29
## 3837 DS 2009 Shooter LucasArts 0.44
## 3838 PS2 2002 Action Konami Digital Entertainment 0.18
## 3839 PS2 2005 Puzzle Electronic Arts 0.26
## 3840 XB 2002 Sports Electronic Arts 0.39
## 3841 PS3 2008 Action Gamebridge 0.18
## 3842 PS3 2008 Sports Electronic Arts 0.46
## 3843 PS3 2011 Role-Playing Sony Online Entertainment 0.35
## 3844 PS 2000 Fighting Midway Games 0.29
## 3845 NES 1993 Platform Capcom 0.28
## 3846 PS 1999 Action Infogrames 0.29
## 3847 3DS 2014 Role-Playing Square Enix 0.15
## 3848 PS 1998 Fighting Capcom 0.12
## 3849 Wii 2008 Action Take-Two Interactive 0.17
## 3850 X360 2009 Simulation 505 Games 0.23
## 3851 PSV 2012 Action Sony Computer Entertainment 0.26
## 3852 PS3 2007 Action THQ 0.09
## 3853 Wii 2010 Misc Disney Interactive Studios 0.46
## 3854 PS3 2008 Action Activision 0.21
## 3855 PS2 2000 Sports Electronic Arts 0.17
## 3856 PS2 2003 Sports Sega 0.00
## 3857 PS2 2006 Action Eidos Interactive 0.25
## 3858 Wii 2007 Action THQ 0.44
## 3859 PS2 2003 Shooter Electronic Arts 0.25
## 3860 XB 2005 Shooter Activision 0.38
## 3861 GBA 2005 Adventure Disney Interactive Studios 0.37
## 3862 PS3 2007 Action Sony Computer Entertainment 0.36
## 3863 PS3 2006 Sports Electronic Arts 0.47
## 3864 PS2 2005 Action THQ 0.25
## 3865 PS 1999 Strategy SquareSoft 0.10
## 3866 DS 2006 Misc Nintendo 0.00
## 3867 PS2 2005 Sports Electronic Arts 0.25
## 3868 GBA 2002 Sports Activision 0.37
## 3869 GBA 2004 Action Electronic Arts 0.37
## 3870 DS 2007 Misc Ubisoft 0.48
## 3871 PS 1999 Shooter Sony Computer Entertainment 0.17
## 3872 PC 2006 Simulation Electronic Arts 0.46
## 3873 DS 2008 Action Sega 0.35
## 3874 XB 2002 Sports Sega 0.38
## 3875 PS 2001 Sports Electronic Arts 0.29
## 3876 PS2 2002 Misc Sony Computer Entertainment 0.25
## 3877 Wii 2007 Misc Ubisoft 0.46
## 3878 PS2 2002 Action Eidos Interactive 0.13
## 3879 PC 2009 Role-Playing Electronic Arts 0.00
## 3880 X360 2013 Fighting Namco Bandai Games 0.29
## 3882 PS2 2001 Misc Sony Computer Entertainment 0.25
## 3883 XOne 2014 Action Warner Bros. Interactive Entertainment 0.34
## 3884 PSP 2010 Role-Playing Square Enix 0.13
## 3885 PS3 2010 Action Ubisoft 0.17
## 3886 PS 1996 Sports Konami Digital Entertainment 0.08
## 3887 DS 2009 Puzzle Ubisoft 0.35
## 3888 PS2 2002 Racing Midas Interactive Entertainment 0.25
## 3889 PC 2015 Strategy Activision 0.18
## 3890 X360 2012 Sports Electronic Arts 0.29
## 3891 PSP 2009 Fighting Namco Bandai Games 0.12
## 3892 X360 2009 Action Electronic Arts 0.26
## 3893 PS4 2014 Role-Playing Square Enix 0.17
## 3894 Wii 2009 Sports Konami Digital Entertainment 0.12
## 3895 X360 2011 Shooter Activision 0.25
## 3896 DS 2008 Misc Nintendo 0.00
## 3897 GC 2003 Sports Electronic Arts 0.40
## 3898 PS2 2003 Sports Konami Digital Entertainment 0.00
## 3899 PS2 2000 Role-Playing THQ 0.25
## 3900 PS 1997 Sports Interplay 0.28
## 3901 PSP 2006 Sports Electronic Arts 0.47
## 3902 Wii 2008 Sports Sega 0.46
## 3903 Wii 2007 Strategy Nintendo 0.28
## 3904 PSP 2004 Action Tecmo Koei 0.18
## 3905 GBA 2005 Misc THQ 0.37
## 3906 X360 2009 Fighting Namco Bandai Games 0.36
## 3907 N64 1999 Misc THQ 0.41
## 3908 NES 1985 Platform Nintendo 0.00
## 3909 N64 1999 Sports Konami Digital Entertainment 0.01
## 3910 X360 2010 Sports Take-Two Interactive 0.47
## 3911 DS 2009 Action Activision 0.33
## 3912 PS3 2010 Shooter Activision 0.24
## 3913 Wii 2006 Platform THQ 0.45
## 3914 PS3 2008 Action Ubisoft 0.19
## 3915 XB 2003 Sports Electronic Arts 0.44
## 3916 PS 1996 Strategy Banpresto 0.00
## 3917 GBA 2002 Platform THQ 0.37
## 3918 X360 2006 Fighting THQ 0.44
## 3919 PS2 2006 Simulation Namco Bandai Games 0.15
## 3920 PS3 2010 Strategy Ubisoft 0.18
## 3921 PS3 2008 Role-Playing Square Enix 0.32
## 3922 PSP 2007 Racing Atari 0.08
## 3923 WiiU 2015 Action Warner Bros. Interactive Entertainment 0.30
## 3924 DS 2007 Puzzle Nintendo 0.17
## 3925 PSP 2007 Role-Playing Square Enix 0.36
## 3926 PS2 2006 Sports Electronic Arts 0.42
## 3927 PSP 2009 Action Electronic Arts 0.18
## 3928 XOne 2016 Action Microsoft Game Studios 0.27
## 3929 Wii 2010 Action Take-Two Interactive 0.47
## 3930 XB 2004 Misc Crave Entertainment 0.37
## 3931 PS2 2007 Sports Take-Two Interactive 0.25
## 3932 WS 2000 Role-Playing SquareSoft 0.00
## 3933 X360 2006 Racing Electronic Arts 0.42
## 3934 PS4 2015 Action Electronic Arts 0.18
## 3935 PC 2008 Simulation Rondomedia 0.00
## 3936 GBA 2004 Fighting Atari 0.36
## 3937 PC 2012 Action Bethesda Softworks 0.26
## 3938 DS 2007 Simulation THQ 0.46
## 3939 XB 2004 Sports Midway Games 0.37
## 3940 PS2 2004 Action Konami Digital Entertainment 0.25
## 3941 2600 1988 Shooter Activision 0.47
## 3942 PS2 2005 Misc Capcom 0.22
## 3943 XOne 2015 Misc Activision 0.29
## 3944 PS3 2014 Shooter Bethesda Softworks 0.14
## 3945 PS2 2002 Misc Infogrames 0.25
## 3946 DS 2009 Adventure GSP 0.12
## 3947 PS 1997 Sports Sony Computer Entertainment 0.28
## 3948 GBA 2004 Action THQ 0.36
## 3949 X360 2012 Racing Codemasters 0.10
## 3950 X360 2008 Sports Electronic Arts 0.45
## 3951 PS2 2006 Racing Sega 0.42
## 3952 PS2 2003 Platform Warner Bros. Interactive Entertainment 0.25
## 3954 2600 1983 Action Atari 0.47
## 3955 X360 2011 Adventure Electronic Arts 0.27
## 3956 X360 2011 Action Konami Digital Entertainment 0.10
## 3957 PS3 2006 Sports Electronic Arts 0.31
## 3958 XB 2003 Racing Take-Two Interactive 0.42
## 3959 PS3 2009 Role-Playing Nippon Ichi Software 0.22
## 3960 PS3 2011 Role-Playing Capcom 0.00
## 3961 DS 2005 Fighting Atari 0.14
## 3962 GC 2006 Adventure THQ 0.39
## 3963 PS 2001 Misc THQ 0.28
## 3964 PS2 2001 Action Universal Interactive 0.25
## 3965 PS2 2006 Action Eidos Interactive 0.25
## 3966 PS2 2008 Misc Disney Interactive Studios 0.25
## 3967 2600 1982 Shooter Activision 0.47
## 3968 PS2 2002 Misc Activision 0.25
## 3969 PS2 2008 Platform Vivendi Games 0.25
## 3970 X360 2015 Sports Take-Two Interactive 0.27
## 3971 X360 2014 Action Warner Bros. Interactive Entertainment 0.20
## 3972 Wii 2010 Simulation 505 Games 0.34
## 3973 Wii 2007 Misc Electronic Arts 0.43
## 3974 3DS 2012 Misc Square Enix 0.22
## 3975 PS3 2011 Fighting Nippon Ichi Software 0.27
## 3976 Wii 2006 Sports Electronic Arts 0.46
## 3977 N64 2000 Action THQ 0.40
## 3978 X360 2007 Simulation Konami Digital Entertainment 0.46
## 3979 PS2 2002 Simulation Activision 0.24
## 3980 GBA 2001 Role-Playing Nintendo 0.13
## 3981 Wii 2011 Misc Nintendo 0.27
## 3982 PS2 2004 Strategy Banpresto 0.00
## 3983 DS 2010 Adventure Disney Interactive Studios 0.27
## 3984 X360 2007 Sports Electronic Arts 0.45
## 3985 DS 2004 Action Activision 0.41
## 3986 PS 1995 Sports Jaleco 0.28
## 3987 XB 2004 Fighting Tecmo Koei 0.30
## 3988 PS 1997 Role-Playing ASCII Entertainment 0.11
## 3989 PSV 2013 Sports Electronic Arts 0.11
## 3990 PS2 2002 Shooter LucasArts 0.24
## 3991 PS3 2009 Action Electronic Arts 0.20
## 3992 PS2 2004 Action THQ 0.24
## 3993 X360 2013 Action Konami Digital Entertainment 0.29
## 3994 PS2 2010 Sports Electronic Arts 0.41
## 3995 X360 2012 Sports Take-Two Interactive 0.47
## 3996 XOne 2014 Shooter Sega 0.22
## 3997 DS 2008 Misc Ubisoft 0.46
## 3998 PS2 2004 Role-Playing Capcom 0.11
## 3999 X360 2011 Racing Disney Interactive Studios 0.28
## 4000 Wii 2009 Racing Activision 0.29
## 4001 GC 2004 Sports Activision 0.38
## 4002 PS2 2003 Racing THQ 0.24
## 4003 SNES 1996 Sports Namco Bandai Games 0.00
## 4004 PS3 2008 Action Namco Bandai Games 0.09
## 4005 PS2 2005 Action Activision 0.24
## 4006 GBA 2001 Platform Ubisoft 0.36
## 4007 PS2 2008 Strategy Namco Bandai Games 0.00
## 4008 PS 1996 Role-Playing Sony Computer Entertainment 0.00
## 4009 PS2 2007 Action Eidos Interactive 0.41
## 4010 PS2 2005 Action Activision 0.41
## 4011 PS3 2012 Action Disney Interactive Studios 0.21
## 4012 PS2 2002 Shooter Infogrames 0.24
## 4013 X360 2014 Action Bethesda Softworks 0.25
## 4014 2600 1982 Sports Atari 0.46
## 4015 PS2 2007 Platform THQ 0.24
## 4016 2600 1981 Action Atari 0.46
## 4017 2600 1982 Action Answer Software 0.46
## 4018 3DS 2011 Racing Namco Bandai Games 0.19
## 4019 Wii 2007 Racing THQ 0.46
## 4020 X360 2011 Action Namco Bandai Games 0.30
## 4021 3DS 2011 Action Capcom 0.16
## 4022 3DS 2011 Action Sega 0.26
## 4023 X360 2006 Sports Activision 0.44
## 4024 GBA 2004 Sports Activision 0.35
## 4025 PS3 2011 Racing Sony Computer Entertainment 0.21
## 4026 2600 1980 Sports Activision 0.46
## 4027 PS3 2015 Action Square Enix 0.00
## 4028 PSV 2014 Action Warner Bros. Interactive Entertainment 0.09
## 4029 PS2 2005 Action Atari 0.41
## 4030 X360 2010 Shooter Square Enix 0.20
## 4031 X360 2012 Action Warner Bros. Interactive Entertainment 0.31
## 4032 GC 2002 Fighting THQ 0.38
## 4033 3DS 2013 Platform Sega 0.24
## 4034 GBA 2003 Action THQ 0.35
## 4035 XB 2004 Shooter Electronic Arts 0.34
## 4036 Wii 2008 Adventure Scholastic Inc. 0.45
## 4037 DS 2006 Platform THQ 0.45
## 4038 GC 2003 Simulation Electronic Arts 0.35
## 4039 PS2 2005 Role-Playing Square Enix 0.12
## 4040 DS 2008 Sports Electronic Arts 0.12
## 4041 PS2 2006 Shooter Namco Bandai Games 0.00
## 4042 SNES 1993 Puzzle Nintendo 0.00
## 4043 XB 2006 Action Vivendi Games 0.37
## 4044 Wii 2009 Shooter Activision 0.24
## 4045 3DS 2014 Misc Nintendo 0.18
## 4046 N64 1997 Sports Electronic Arts 0.16
## 4047 X360 2008 Fighting Atari 0.24
## 4048 DS 2010 Action Activision 0.42
## 4049 PC 2010 Shooter Electronic Arts 0.20
## 4050 X360 2012 Shooter Bethesda Softworks 0.28
## 4051 SAT 1997 Sports Sega 0.00
## 4052 PS3 2013 Action 505 Games 0.07
## 4053 PS2 2004 Sports Atari 0.24
## 4054 PS2 2009 Racing Sony Computer Entertainment 0.00
## 4055 PS2 2003 Sports Universal Interactive 0.24
## 4056 3DS 2012 Action Disney Interactive Studios 0.36
## 4057 DS 2013 Action Warner Bros. Interactive Entertainment 0.28
## 4058 PS2 2003 Misc Namco Bandai Games 0.00
## 4059 X360 2008 Adventure Atari 0.14
## 4060 PS 2001 Fighting Atari 0.00
## 4061 PS2 2009 Shooter Activision 0.25
## 4062 PSP 2008 Sports Sega 0.00
## 4063 PC 2008 Shooter City Interactive 0.00
## 4064 GC 2001 Racing Acclaim Entertainment 0.36
## 4065 PS2 2003 Racing Midway Games 0.24
## 4066 PS3 2014 Racing Codemasters 0.07
## 4067 XB 2002 Action Namco Bandai Games 0.36
## 4068 Wii 2009 Sports XS Games 0.45
## 4069 PS 1999 Action Fox Interactive 0.27
## 4070 DS 2008 Adventure Ubisoft 0.08
## 4071 3DS 2011 Racing Ubisoft 0.27
## 4072 PS2 2001 Misc Hudson Soft 0.00
## 4073 3DS 2011 Action Nintendo 0.31
## 4074 PS2 2005 Role-Playing Namco Bandai Games 0.07
## 4075 SNES 1995 Simulation THQ 0.00
## 4076 DS 2007 Action Vivendi Games 0.42
## 4077 PC 2008 Action Ubisoft 0.01
## 4078 PS3 2015 Shooter Electronic Arts 0.12
## 4079 Wii 2007 Action Electronic Arts 0.38
## 4080 DS 2008 Misc Ubisoft 0.44
## 4081 PS3 2009 Shooter Warner Bros. Interactive Entertainment 0.19
## 4082 PSV 2012 Racing Sega 0.12
## 4083 X360 2007 Misc Microsoft Game Studios 0.43
## 4084 Wii 2009 Shooter Electronic Arts 0.33
## 4085 DS 2007 Puzzle Ubisoft 0.00
## 4086 PS2 2007 Action Activision 0.40
## 4087 PSV 2012 Action Konami Digital Entertainment 0.16
## 4088 DS 2006 Role-Playing Nintendo 0.16
## 4089 GBA 2005 Action Activision 0.35
## 4090 Wii 2009 Sports Namco Bandai Games 0.15
## 4091 Wii 2007 Simulation Electronic Arts 0.42
## 4092 3DS 2014 Sports Nintendo 0.15
## 4093 GBA 2004 Racing Zoo Digital Publishing 0.35
## 4094 PS 1999 Role-Playing Konami Digital Entertainment 0.00
## 4095 XB 2004 Sports Electronic Arts 0.36
## 4096 Wii 2009 Action Konami Digital Entertainment 0.23
## 4097 2600 1983 Shooter Atari 0.45
## 4098 SNES 1991 Adventure Konami Digital Entertainment 0.00
## 4099 X360 2008 Misc Microsoft Game Studios 0.27
## 4100 X360 2008 Shooter D3Publisher 0.22
## 4101 X360 2010 Shooter Activision 0.20
## 4102 PS2 2003 Misc Atari 0.24
## 4103 PS2 2006 Action THQ 0.40
## 4104 PS 1999 Fighting Acclaim Entertainment 0.27
## 4105 Wii 2008 Misc System 3 Arcade Software 0.42
## 4106 X360 2006 Sports Electronic Arts 0.44
## 4107 PS 1998 Fighting Activision 0.27
## 4108 PC 2014 Action Activision Blizzard 0.08
## 4109 PSP 2009 Misc MTV Games 0.24
## 4110 DS 2010 Adventure Capcom 0.25
## 4111 X360 2008 Platform Vivendi Games 0.22
## 4112 PSP 2010 Sports Electronic Arts 0.09
## 4113 PS2 2003 Simulation LucasArts 0.24
## 4114 DS 2008 Action Take-Two Interactive 0.44
## 4115 N64 1998 Sports Acclaim Entertainment 0.44
## 4116 N64 1999 Simulation Pack In Soft 0.25
## 4117 PS2 2008 Sports Electronic Arts 0.40
## 4118 PS2 2007 Simulation THQ 0.24
## 4119 WiiU 2012 Action Electronic Arts 0.18
## 4120 DS 2005 Simulation Rising Star Games 0.41
## 4121 PS 1999 Racing Activision 0.27
## 4122 PS3 2011 Role-Playing Unknown 0.26
## 4123 PC 2014 Simulation Sega 0.00
## 4124 PS2 2000 Strategy Electronic Arts 0.23
## 4125 Wii 2010 Racing Electronic Arts 0.18
## 4126 WiiU 2015 Action Activision 0.25
## 4127 X360 2008 Simulation Microsoft Game Studios 0.16
## 4128 DS 2011 Action Take-Two Interactive 0.45
## 4129 Wii 2010 Action Nintendo 0.38
## 4130 PS 1999 Sports 989 Studios 0.27
## 4131 Wii 2007 Platform Activision 0.42
## 4132 GBA 2001 Racing Rebellion 0.34
## 4133 PS3 2007 Action Tecmo Koei 0.14
## 4134 Wii 2008 Action Eidos Interactive 0.14
## 4135 DS 2009 Role-Playing Square Enix 0.12
## 4136 X360 2014 Role-Playing Microsoft Game Studios 0.25
## 4137 XB 2005 Sports Electronic Arts 0.35
## 4138 X360 2006 Sports Electronic Arts 0.19
## 4139 PS2 2009 Action THQ 0.19
## 4140 2600 1981 Racing Activision 0.45
## 4141 Wii 2008 Racing Xplosiv 0.06
## 4142 Wii 2008 Simulation Electronic Arts 0.37
## 4143 PS2 2002 Racing Ignition Entertainment 0.23
## 4144 DS 2009 Racing THQ 0.35
## 4145 Wii 2008 Racing Ubisoft 0.15
## 4147 PS2 2000 Puzzle Sony Computer Entertainment 0.14
## 4148 2600 1989 Action Activision 0.45
## 4149 PS 1996 Shooter Acclaim Entertainment 0.24
## 4150 N64 1998 Sports Electronic Arts 0.45
## 4151 3DS 2015 Role-Playing Nintendo 0.16
## 4153 PS3 2008 Shooter D3Publisher 0.23
## 4154 X360 2008 Shooter Midway Games 0.25
## 4155 PS2 2002 Fighting Activision 0.23
## 4156 X360 2012 Fighting Capcom 0.31
## 4157 PS2 2006 Action Electronic Arts 0.39
## 4158 Wii 2009 Racing Electronic Arts 0.19
## 4159 DS 2006 Action Ubisoft 0.43
## 4160 X360 2010 Role-Playing Electronic Arts 0.33
## 4161 SNES 1995 Puzzle Compile 0.00
## 4162 PS 2000 Action Midway Games 0.26
## 4163 DS 2005 Platform Konami Digital Entertainment 0.37
## 4164 PS3 2014 Fighting Namco Bandai Games 0.15
## 4165 PS3 2013 Action Activision 0.23
## 4166 PS 1995 Action Psygnosis 0.26
## 4167 PS2 2001 Action Sony Computer Entertainment 0.23
## 4168 PS3 2012 Action Konami Digital Entertainment 0.21
## 4169 X360 2014 Sports Electronic Arts 0.14
## 4170 Wii 2010 Fighting THQ 0.30
## 4171 Wii 2011 Role-Playing Square Enix 0.00
## 4172 PS2 2000 Fighting Empire Interactive 0.05
## 4173 Wii 2008 Simulation Ubisoft 0.42
## 4174 WiiU 2014 Action Warner Bros. Interactive Entertainment 0.23
## 4175 GBA 2002 Platform Nintendo 0.00
## 4176 PS2 2006 Role-Playing Square Enix 0.04
## 4177 PS2 2002 Racing THQ 0.23
## 4178 X360 2007 Role-Playing Microsoft Game Studios 0.41
## 4179 PSV 2012 Action Electronic Arts 0.00
## 4180 PSV 2011 Sports Sega 0.05
## 4181 PC 2009 Strategy THQ 0.00
## 4182 PSP 2007 Racing Sega 0.10
## 4183 DS 2010 Action Level 5 0.00
## 4184 DS 2007 Platform Activision 0.41
## 4185 PS3 2015 Action Disney Interactive Studios 0.14
## 4186 PS2 2005 Racing Midway Games 0.23
## 4187 N64 1998 Platform Nintendo 0.27
## 4188 N64 1997 Racing Titus 0.28
## 4189 N64 1998 Role-Playing Konami Digital Entertainment 0.38
## 4190 PS 1999 Misc Hudson Entertainment 0.00
## 4191 N64 1997 Shooter Midway Games 0.38
## 4192 Wii 2009 Puzzle Electronic Arts 0.34
## 4193 PC 2010 Simulation Electronic Arts 0.00
## 4194 X360 2005 Fighting Tecmo Koei 0.30
## 4195 2600 1987 Action Activision 0.44
## 4196 X360 2011 Action Sega 0.28
## 4197 Wii 2009 Platform Disney Interactive Studios 0.29
## 4198 PS2 2006 Sports Midway Games 0.23
## 4199 XB 2006 Racing Electronic Arts 0.35
## 4201 XOne 2015 Sports Electronic Arts 0.37
## 4202 PC 2011 Sports Electronic Arts 0.04
## 4203 PS 1999 Misc Codemasters 0.26
## 4204 DS 2007 Action Activision 0.43
## 4205 X360 2013 Sports Take-Two Interactive 0.44
## 4206 SNES 1995 Misc Hudson Soft 0.00
## 4207 PS2 2005 Sports Konami Digital Entertainment 0.00
## 4208 PC 2011 Simulation Electronic Arts 0.00
## 4209 PS2 2009 Racing THQ 0.27
## 4210 PS2 2003 Racing Codemasters 0.23
## 4211 X360 2014 Sports Electronic Arts 0.35
## 4212 GBA 2006 Adventure Disney Interactive Studios 0.33
## 4213 PS2 2005 Misc Activision 0.39
## 4214 3DS 2012 Role-Playing Level 5 0.00
## 4215 PS 1996 Sports Electronic Arts 0.26
## 4216 Wii 2010 Misc Nordic Games 0.00
## 4217 GBA 2005 Action Ubisoft 0.33
## 4218 PS3 2011 Racing THQ 0.24
## 4219 DS 2008 Action Capcom 0.22
## 4220 DS 2007 Puzzle Ignition Entertainment 0.43
## 4221 PS2 2004 Fighting Atari 0.23
## 4222 GC 2005 Misc Nintendo 0.36
## 4223 GC 2004 Action Konami Digital Entertainment 0.30
## 4224 DS 2007 Sports Ubisoft 0.46
## 4225 PS2 2002 Sports Activision 0.23
## 4226 PS2 2007 Adventure Konami Digital Entertainment 0.23
## 4227 DS 2008 Platform Vivendi Games 0.26
## 4228 GBA 2001 Shooter THQ 0.33
## 4229 PS3 2007 Racing THQ 0.35
## 4230 GBA 2004 Puzzle Nintendo 0.25
## 4231 XB 2005 Shooter THQ 0.34
## 4232 GBA 2002 Misc Infogrames 0.33
## 4234 Wii 2011 Misc GameMill Entertainment 0.44
## 4235 PS 1999 Sports Ubisoft 0.26
## 4236 Wii 2007 Action Vivendi Games 0.40
## 4237 PS3 2011 Shooter Warner Bros. Interactive Entertainment 0.21
## 4238 GBA 2005 Platform Disney Interactive Studios 0.33
## 4239 PS2 2002 Action Wanadoo 0.20
## 4240 PSP 2007 Shooter Sony Computer Entertainment 0.25
## 4241 SNES 1992 Sports Namco Bandai Games 0.00
## 4242 PS2 2001 Strategy THQ 0.13
## 4243 SNES 1993 Platform Namco Bandai Games 0.00
## 4244 GBA 2002 Platform Activision 0.33
## 4245 PC 2014 Shooter Bethesda Softworks 0.12
## 4246 PS3 2011 Shooter THQ 0.13
## 4247 GBA 2004 Platform THQ 0.33
## 4248 3DS 2012 Action Nintendo 0.20
## 4249 DS 2008 Strategy Take-Two Interactive 0.38
## 4250 PSP 2006 Racing Sony Computer Entertainment 0.37
## 4251 DS 2008 Platform Take-Two Interactive 0.27
## 4252 PS2 2007 Misc Sony Computer Entertainment 0.23
## 4253 PS2 2005 Shooter Ubisoft 0.38
## 4254 Wii 2010 Sports Konami Digital Entertainment 0.36
## 4255 DS 2011 Action Activision 0.34
## 4256 PS2 2005 Fighting Atari 0.38
## 4257 GBA 2001 Platform THQ 0.33
## 4258 PS3 2008 Platform Vivendi Games 0.19
## 4259 PS 1999 Racing Midway Games 0.26
## 4260 PSP 2006 Shooter Ubisoft 0.23
## 4261 DS 2008 Adventure THQ 0.42
## 4262 3DS 2016 Action Nintendo 0.04
## 4263 PS 1996 Sports Sony Computer Entertainment 0.26
## 4264 X360 2013 Action Activision 0.26
## 4265 PS2 2005 Shooter Ubisoft 0.38
## 4266 PS3 2011 Sports Sega 0.09
## 4267 XOne 2014 Sports Electronic Arts 0.30
## 4268 2600 1983 Action Atari 0.43
## 4269 PS2 2002 Action Sony Computer Entertainment 0.22
## 4270 PS2 2003 Misc Sony Computer Entertainment 0.22
## 4271 GBA 2001 Action THQ 0.33
## 4272 GBA 2003 Racing Vivendi Games 0.33
## 4273 PS3 2009 Action LucasArts 0.19
## 4274 PS3 2015 Simulation Koch Media 0.11
## 4275 DS 2006 Fighting Sega 0.30
## 4276 Wii 2011 Sports Electronic Arts 0.43
## 4277 DS 2009 Misc Warner Bros. Interactive Entertainment 0.33
## 4278 XOne 2015 Action Warner Bros. Interactive Entertainment 0.26
## 4279 DS 2011 Misc THQ 0.37
## 4280 PS2 2009 Platform Sony Computer Entertainment 0.22
## 4281 PS2 2002 Misc Hudson Soft 0.00
## 4282 X360 2008 Strategy Electronic Arts 0.18
## 4283 PSP 2006 Action Eidos Interactive 0.09
## 4284 X360 2015 Action Activision 0.24
## 4285 X360 2007 Action Sega 0.30
## 4286 PS 2000 Racing Activision 0.25
## 4287 Wii 2010 Action Warner Bros. Interactive Entertainment 0.29
## 4288 PSV 2015 Role-Playing Namco Bandai Games 0.08
## 4289 PS 1999 Fighting Virgin Interactive 0.25
## 4290 PS2 2005 Shooter NovaLogic 0.22
## 4291 PSP 2007 Racing Electronic Arts 0.02
## 4292 X360 2006 Sports Electronic Arts 0.42
## 4293 X360 2009 Racing Ubisoft 0.24
## 4294 SNES 1994 Shooter Taito 0.00
## 4295 PS2 2002 Role-Playing Atari 0.14
## 4296 X360 2013 Platform Ubisoft 0.19
## 4297 GBA 2003 Role-Playing Nintendo 0.00
## 4298 PS3 2010 Role-Playing Tecmo Koei 0.22
## 4299 Wii 2009 Adventure Activision 0.42
## 4300 3DS 2015 Puzzle Nintendo 0.05
## 4301 X360 2010 Action Electronic Arts 0.21
## 4302 XB 2003 Sports Microsoft Game Studios 0.36
## 4303 Wii 2010 Misc Disney Interactive Studios 0.43
## 4304 PS 1995 Simulation Sony Computer Entertainment 0.25
## 4305 Wii 2007 Action Disney Interactive Studios 0.39
## 4306 PS3 2011 Shooter THQ 0.20
## 4307 PS3 2011 Misc Sony Computer Entertainment 0.00
## 4308 PSV 2015 Misc Nippon Ichi Software 0.13
## 4309 PS3 2009 Role-Playing Namco Bandai Games 0.00
## 4310 XOne 2014 Action Square Enix 0.26
## 4311 PSP 2009 Action Ubisoft Annecy 0.03
## 4312 GBA 2005 Platform THQ 0.33
## 4313 PSV 2013 Role-Playing Namco Bandai Games 0.15
## 4314 PS 1999 Shooter Atari 0.25
## 4315 3DS 2014 Action Warner Bros. Interactive Entertainment 0.21
## 4316 Wii 2007 Adventure Activision 0.42
## 4317 SNES 1996 Sports Konami Digital Entertainment 0.00
## 4318 PS4 2014 Adventure Telltale Games 0.12
## 4319 PS2 2005 Sports Konami Digital Entertainment 0.00
## 4320 GC 2003 Action Atari 0.34
## 4321 Wii 2008 Platform Vivendi Games 0.36
## 4322 XB 2004 Racing Electronic Arts 0.34
## 4323 SNES 1995 Sports Epoch 0.00
## 4324 DS 2007 Puzzle Majesco Entertainment 0.42
## 4325 GC 2002 Role-Playing Infogrames 0.23
## 4326 DS 2012 Misc Activision 0.03
## 4327 PS2 2002 Action BAM! Entertainment 0.22
## 4328 PSV 2012 Shooter Sony Computer Entertainment 0.21
## 4329 Wii 2012 Sports Take-Two Interactive 0.39
## 4330 3DS 2011 Fighting Ubisoft Annecy 0.13
## 4332 DS 2008 Misc Ubisoft 0.41
## 4333 PS2 2006 Sports Electronic Arts 0.38
## 4334 PC 2014 Action Ubisoft 0.14
## 4335 Wii 2008 Misc Konami Digital Entertainment 0.42
## 4336 X360 2011 Sports Take-Two Interactive 0.40
## 4337 X360 2008 Shooter Activision 0.30
## 4338 2600 1985 Puzzle Activision 0.42
## 4339 PS 1998 Sports 989 Studios 0.25
## 4340 PS2 2005 Shooter Midway Games 0.22
## 4341 PS 1998 Sports Namco Bandai Games 0.00
## 4342 X360 2007 Racing Sega 0.12
## 4343 PS2 2004 Sports Electronic Arts 0.22
## 4344 X360 2008 Fighting Midway Games 0.26
## 4345 XB 2003 Shooter Activision 0.34
## 4346 Wii 2007 Strategy LucasArts 0.39
## 4347 2600 1981 Simulation Atari 0.42
## 4348 PS3 2010 Action Activision 0.26
## 4349 X360 2011 Shooter Warner Bros. Interactive Entertainment 0.30
## 4350 DS 2007 Misc Ubisoft 0.41
## 4351 PS4 2016 Shooter Electronic Arts 0.17
## 4352 Wii 2009 Misc MTV Games 0.42
## 4353 PS3 2015 Sports Konami Digital Entertainment 0.08
## 4354 PS 1998 Action Activision 0.25
## 4355 DS 2009 Action Activision 0.27
## 4356 Wii 2009 Sports Konami Digital Entertainment 0.09
## 4357 GBA 2004 Misc Konami Digital Entertainment 0.32
## 4358 PS3 2009 Misc Sony Computer Entertainment 0.11
## 4359 PSV 2013 Role-Playing Namco Bandai Games 0.00
## 4360 Wii 2009 Action Nintendo 0.10
## 4361 PS2 2001 Sports Konami Digital Entertainment 0.00
## 4362 PS4 2015 Action Namco Bandai Games 0.08
## 4363 PS2 2003 Action THQ 0.22
## 4364 SNES 1993 Fighting Takara 0.00
## 4365 N64 1998 Action GT Interactive 0.36
## 4366 N64 2000 Puzzle Nintendo 0.36
## 4367 PS3 2008 Role-Playing Atari 0.19
## 4368 Wii 2009 Simulation Konami Digital Entertainment 0.26
## 4369 3DS 2014 Sports Electronic Arts 0.09
## 4370 Wii 2007 Simulation Ubisoft 0.41
## 4371 DS 2007 Action Activision 0.41
## 4372 GBA 2001 Fighting Infogrames 0.32
## 4373 PS2 2006 Role-Playing Tecmo Koei 0.22
## 4374 PS 1995 Role-Playing Atlus 0.00
## 4375 DS 2009 Misc Activision 0.21
## 4376 X360 2012 Fighting Namco Bandai Games 0.26
## 4377 GBA 2004 Racing THQ 0.32
## 4378 X360 2008 Action Sega 0.16
## 4380 PS 1995 Action Namco Bandai Games 0.00
## 4382 PS2 2009 Misc Sony Computer Entertainment 0.00
## 4383 PSP 2010 Shooter Sony Computer Entertainment 0.17
## 4384 PS 1999 Role-Playing Square 0.00
## 4385 PS2 2008 Misc Disney Interactive Studios 0.09
## 4386 X360 2009 Sports Electronic Arts 0.40
## 4387 PS2 2004 Action Tecmo Koei 0.04
## 4388 PS3 2007 Sports Activision 0.36
## 4389 PS 1994 Sports Sony Computer Entertainment 0.25
## 4390 XB 2005 Fighting THQ 0.34
## 4391 X360 2010 Sports 505 Games 0.38
## 4392 PSP 2007 Strategy THQ 0.04
## 4393 GC 2004 Sports Electronic Arts 0.35
## 4394 2600 1987 Shooter Atari 0.42
## 4395 GC 2004 Fighting THQ 0.35
## 4396 DS 2005 Action Square Enix 0.13
## 4397 XB 2003 Racing Acclaim Entertainment 0.36
## 4398 PS 2000 Racing Eidos Interactive 0.25
## 4399 PS2 2002 Racing Electronic Arts 0.22
## 4400 PS 1996 Role-Playing Konami Digital Entertainment 0.14
## 4401 WiiU 2015 Sports Nintendo 0.13
## 4402 Wii 2008 Sports Electronic Arts 0.18
## 4403 2600 1981 Action Tigervision 0.42
## 4404 PS2 2004 Action THQ 0.22
## 4405 GBA 2004 Sports Nintendo 0.32
## 4406 PSP 2008 Platform Vivendi Games 0.11
## 4407 Wii 2009 Misc Konami Digital Entertainment 0.24
## 4408 DS 2009 Simulation 505 Games 0.42
## 4409 XOne 2013 Misc Ubisoft 0.30
## 4410 PS2 2004 Misc Konami Digital Entertainment 0.22
## 4411 PS3 2013 Shooter 505 Games 0.21
## 4412 PS2 2006 Sports Spike 0.37
## 4413 PS2 2005 Misc Sony Computer Entertainment 0.37
## 4414 XB 2005 Sports Konami Digital Entertainment 0.06
## 4415 N64 1999 Sports Electronic Arts 0.42
## 4416 PS2 2004 Action Konami Digital Entertainment 0.22
## 4417 PS2 2005 Misc THQ 0.37
## 4418 X360 2015 Action Disney Interactive Studios 0.19
## 4419 DS 2009 Puzzle Warner Bros. Interactive Entertainment 0.30
## 4420 PS2 2002 Adventure Vivendi Games 0.22
## 4421 WiiU 2015 Action Disney Interactive Studios 0.20
## 4422 PS2 2004 Action Activision 0.22
## 4423 XB 2005 Role-Playing Activision 0.30
## 4424 Wii 2009 Misc Namco Bandai Games 0.41
## 4425 X360 2012 Action Activision 0.28
## 4426 PS3 2013 Action Deep Silver 0.14
## 4427 DS 2004 Simulation Electronic Arts 0.40
## 4428 PS2 2003 Action Electronic Arts 0.22
## 4429 XB 2006 Action Electronic Arts 0.33
## 4430 X360 2013 Action Capcom 0.26
## 4431 XOne 2016 Shooter Electronic Arts 0.26
## 4432 PS 1996 Sports Namco Bandai Games 0.00
## 4433 XB 2002 Sports Electronic Arts 0.35
## 4434 PS2 2005 Shooter Electronic Arts 0.37
## 4435 Wii 2009 Action Disney Interactive Studios 0.19
## 4436 Wii 2009 Action D3Publisher 0.25
## 4437 XB 2005 Action Vivendi Games 0.33
## 4438 GBA 2003 Platform Nintendo 0.00
## 4439 PS 1997 Shooter Fox Interactive 0.25
## 4440 X360 2011 Racing Electronic Arts 0.18
## 4441 PS 1999 Racing SquareSoft 0.07
## 4442 PS3 2012 Action Tecmo Koei 0.19
## 4443 X360 2011 Shooter Ubisoft 0.28
## 4444 XB 2006 Action LucasArts 0.33
## 4445 Wii 2008 Misc Ubisoft 0.10
## 4446 DS 2007 Misc Ubisoft 0.40
## 4447 X360 2007 Shooter Take-Two Interactive 0.36
## 4448 PS2 2005 Shooter Namco Bandai Games 0.00
## 4449 PS 2000 Puzzle Namco Bandai Games 0.25
## 4450 PS 1996 Role-Playing Crystal Dynamics 0.25
## 4451 SNES 1996 Puzzle Hudson Soft 0.00
## 4452 NES 1991 Puzzle Hudson Soft 0.16
## 4453 N64 1997 Shooter GT Interactive 0.35
## 4454 Wii 2009 Shooter Nintendo 0.20
## 4455 Wii 2009 Misc Knowledge Adventure 0.41
## 4456 PS3 2010 Action 505 Games 0.18
## 4457 GC 2005 Misc THQ 0.34
## 4458 PS2 2007 Strategy Banpresto 0.00
## 4459 PS 2001 Action 3DO 0.24
## 4460 DS 2007 Simulation Ubisoft 0.41
## 4461 DS 2007 Simulation Activision 0.40
## 4462 PSP 2009 Strategy Konami Digital Entertainment 0.19
## 4463 XB 2004 Racing THQ 0.34
## 4464 PS2 2002 Sports Konami Digital Entertainment 0.00
## 4465 PS 2000 Sports Sony Computer Entertainment 0.24
## 4466 GC 2004 Fighting Tomy Corporation 0.00
## 4467 DS 2010 Action THQ 0.26
## 4468 GC 2003 Platform Nintendo 0.34
## 4469 GBA 2003 Action THQ 0.31
## 4471 PS2 2003 Misc Namco Bandai Games 0.00
## 4472 DS 2010 Sports Mastiff 0.41
## 4474 PS3 2012 Misc Ubisoft 0.26
## 4475 GC 2002 Shooter Eidos Interactive 0.34
## 4476 GBA 2003 Action Majesco Entertainment 0.31
## 4477 X360 2012 Action Capcom 0.28
## 4478 GC 2002 Adventure Nintendo 0.34
## 4479 GBA 2004 Action THQ 0.31
## 4480 PS2 2005 Fighting Atari 0.36
## 4481 PS2 2009 Misc Sony Computer Entertainment 0.00
## 4482 SAT 1996 Adventure Sega 0.00
## 4483 Wii 2007 Platform THQ 0.40
## 4484 PS2 2005 Action Namco Bandai Games 0.00
## 4485 DS 2010 Simulation Konami Digital Entertainment 0.00
## 4486 PS2 2002 Sports Midway Games 0.21
## 4487 Wii 2011 Misc Ubisoft 0.41
## 4488 PS2 2007 Action THQ 0.36
## 4489 PSP 2007 Fighting Atari 0.19
## 4490 DS 2006 Puzzle Nintendo 0.16
## 4491 XB 2002 Simulation Activision 0.35
## 4492 Wii 2009 Sports Mastiff 0.41
## 4493 GBA 2004 Adventure Nintendo 0.26
## 4494 PS3 2010 Role-Playing Sega 0.19
## 4495 3DS 2011 Puzzle Tetris Online 0.20
## 4496 DS 2009 Misc Take-Two Interactive 0.39
## 4497 PS2 2003 Action Sony Computer Entertainment 0.21
## 4498 N64 2001 Sports Electronic Arts 0.41
## 4499 GBA 2004 Racing Electronic Arts 0.31
## 4500 PS2 2008 Action Activision 0.17
## 4501 PS 2001 Shooter Take-Two Interactive 0.24
## 4502 XB 2001 Sports Electronic Arts 0.32
## 4503 GBA 2005 Simulation THQ 0.31
## 4504 PC 2013 Sports Electronic Arts 0.01
## 4505 PS2 2005 Action Disney Interactive Studios 0.36
## 4506 PS4 2014 Racing Ubisoft 0.13
## 4507 DS 2010 Misc THQ 0.41
## 4508 SAT 1996 Platform Sega 0.00
## 4509 XB 2003 Sports Electronic Arts 0.40
## 4510 PC 2016 Shooter Activision 0.22
## 4511 XOne 2015 Misc Harmonix Music Systems 0.35
## 4512 Wii 2010 Sports Electronic Arts 0.38
## 4513 PS2 2003 Action Electronic Arts 0.21
## 4514 WiiU 2016 Misc Microsoft Game Studios 0.18
## 4515 PS 2001 Sports Sony Computer Entertainment 0.24
## 4516 PS4 2014 Action Square Enix 0.16
## 4517 PS2 2000 Shooter Eidos Interactive 0.21
## 4518 2600 1981 Action Activision 0.40
## 4519 PS2 2004 Role-Playing Namco Bandai Games 0.21
## 4520 DS 2009 Role-Playing Rising Star Games 0.28
## 4521 GBA 2002 Platform BAM! Entertainment 0.31
## 4522 GBA 2003 Platform Capcom 0.18
## 4523 SNES 1994 Simulation Enix Corporation 0.00
## 4524 Wii 2010 Sports Electronic Arts 0.23
## 4525 PS3 2010 Role-Playing Nippon Ichi Software 0.12
## 4526 X360 2012 Shooter Take-Two Interactive 0.21
## 4527 GBA 2004 Misc N/A 0.31
## 4528 PS2 2009 Action Atari 0.15
## 4529 PS2 2003 Action Interplay 0.21
## 4530 Wii 2010 Action Activision 0.24
## 4531 X360 2007 Strategy Electronic Arts 0.35
## 4532 N64 1998 Racing Midway Games 0.28
## 4533 N64 1997 Platform Nintendo 0.25
## 4534 PC 2012 Shooter Take-Two Interactive 0.15
## 4535 DS 2008 Simulation Ubisoft 0.39
## 4536 DS 2006 Platform Konami Digital Entertainment 0.33
## 4538 PS2 2004 Sports Sony Computer Entertainment 0.36
## 4539 Wii 2013 Sports Electronic Arts 0.00
## 4540 PS2 2003 Role-Playing Sony Online Entertainment 0.21
## 4541 PS 1996 Sports Sony Computer Entertainment 0.10
## 4542 DS 2009 Adventure ChunSoft 0.37
## 4543 PS2 2001 Simulation Namco Bandai Games 0.09
## 4544 PS3 2012 Simulation Konami Digital Entertainment 0.21
## 4545 PS3 2007 Action Electronic Arts 0.16
## 4546 PSP 2006 Role-Playing Ubisoft 0.17
## 4547 PS2 2008 Misc Electronic Arts 0.21
## 4548 PS2 2006 Role-Playing Square Enix 0.07
## 4549 PC 2006 Simulation Microsoft Game Studios 0.02
## 4550 XOne 2014 Action Warner Bros. Interactive Entertainment 0.23
## 4551 GC 2002 Sports Electronic Arts 0.33
## 4552 Wii 2009 Racing Electronic Arts 0.39
## 4553 X360 2008 Misc Disney Interactive Studios 0.39
## 4554 GBA 2002 Sports Atari 0.31
## 4555 WiiU 2012 Shooter Activision 0.21
## 4556 PS3 2010 Action Disney Interactive Studios 0.27
## 4557 XB 2003 Misc Midway Games 0.33
## 4558 DS 2009 Shooter Activision 0.37
## 4559 Wii 2007 Simulation Ubisoft 0.39
## 4560 DS 2011 Action Ubisoft 0.24
## 4561 PS2 2009 Action Activision 0.21
## 4562 PS 1997 Sports 989 Studios 0.24
## 4563 PS4 2014 Action Activision 0.18
## 4564 PS2 2005 Misc Sega 0.21
## 4565 PSP 2007 Action Disney Interactive Studios 0.15
## 4566 PSP 2006 Racing THQ 0.11
## 4567 DS 2006 Action D3Publisher 0.39
## 4568 SAT 1997 Role-Playing Sega 0.00
## 4569 PSP 2011 Strategy Banpresto 0.00
## 4570 GC 2002 Sports Electronic Arts 0.33
## 4571 DS 2009 Action D3Publisher 0.22
## 4572 PSP 2009 Action D3Publisher 0.13
## 4573 DS 2008 Role-Playing Square Enix 0.23
## 4574 PS2 2007 Platform Vivendi Games 0.21
## 4575 GBA 2001 Role-Playing Capcom 0.14
## 4576 PS3 2009 Misc Warner Bros. Interactive Entertainment 0.24
## 4577 PS2 2006 Shooter Eidos Interactive 0.35
## 4578 PS2 2005 Sports Take-Two Interactive 0.21
## 4579 GC 2003 Shooter Electronic Arts 0.33
## 4580 XB 2003 Simulation Electronic Arts 0.31
## 4581 X360 2009 Misc Activision 0.23
## 4582 PS2 2003 Adventure Sony Computer Entertainment 0.21
## 4583 PS 1999 Adventure Sony Computer Entertainment 0.24
## 4584 SNES 1991 Action Namco Bandai Games 0.00
## 4585 PS 1998 Action Psygnosis 0.24
## 4586 3DS 2013 Role-Playing Rising Star Games 0.22
## 4587 GC 2005 Sports Activision 0.33
## 4588 X360 2011 Sports Take-Two Interactive 0.15
## 4589 GBA 2004 Platform Nintendo 0.00
## 4590 DS 2008 Platform Vivendi Games 0.39
## 4591 Wii 2007 Shooter Electronic Arts 0.34
## 4592 PSP 2007 Strategy Konami Digital Entertainment 0.03
## 4593 PS 1997 Simulation Psygnosis 0.24
## 4594 PS2 2003 Sports Acclaim Entertainment 0.21
## 4595 PS 2003 Sports Gotham Games 0.23
## 4596 PSV 2012 Role-Playing GungHo 0.22
## 4597 DS 2010 Action Electronic Arts 0.20
## 4598 DS 2006 Simulation Ubisoft 0.38
## 4599 DS 2009 Action THQ 0.42
## 4600 PS 2001 Racing Electronic Arts 0.23
## 4601 SAT 1997 Role-Playing ESP 0.00
## 4602 XB 2004 Sports Global Star 0.32
## 4603 GBA 2005 Misc Konami Digital Entertainment 0.30
## 4604 PS2 2003 Racing THQ 0.21
## 4605 PS2 2007 Action THQ 0.21
## 4606 PS2 2002 Action Atari 0.21
## 4607 Wii 2007 Platform Sega 0.33
## 4608 PS2 2004 Racing Zoo Digital Publishing 0.35
## 4609 X360 2010 Shooter Sega 0.19
## 4610 GBA 2004 Action Ubisoft 0.30
## 4611 DS 2009 Fighting THQ 0.37
## 4612 GBA 2004 Platform Activision 0.30
## 4613 PS 1998 Racing TYO 0.23
## 4614 PSP 2005 Sports Electronic Arts 0.39
## 4615 PS 1999 Role-Playing Sony Computer Entertainment 0.00
## 4616 DS 2007 Misc Telegames 0.39
## 4617 PSP 2008 Fighting Namco Bandai Games 0.00
## 4618 XB 2002 Racing Atari 0.35
## 4619 PS2 2004 Sports Konami Digital Entertainment 0.00
## 4620 DS 2010 Adventure Capcom 0.20
## 4621 PS2 2003 Action THQ 0.21
## 4622 N64 1998 Racing Midway Games 0.35
## 4623 N64 2000 Sports Midway Games 0.34
## 4624 N64 2001 Puzzle Nintendo 0.34
## 4625 N64 1999 Sports Konami Digital Entertainment 0.00
## 4626 N64 2000 Shooter 3DO 0.34
## 4627 GC 2004 Shooter Electronic Arts 0.32
## 4628 PS3 2010 Misc MTV Games 0.19
## 4629 PS4 2015 Action Bethesda Softworks 0.09
## 4630 PS2 2008 Sports Sony Computer Entertainment 0.35
## 4631 XOne 2014 Action Disney Interactive Studios 0.24
## 4632 XB 2004 Simulation Konami Digital Entertainment 0.32
## 4633 GC 2004 Platform Capcom 0.32
## 4634 X360 2006 Simulation Ubisoft 0.36
## 4635 SNES 1995 Sports Namco Bandai Games 0.00
## 4636 GBA 2004 Misc N/A 0.30
## 4637 PS2 2008 Sports Activision 0.21
## 4638 DS 2010 Misc Namco Bandai Games 0.00
## 4639 GC 2005 Action Electronic Arts 0.32
## 4640 Wii 2009 Adventure Knowledge Adventure 0.39
## 4641 PS2 2007 Strategy LucasArts 0.20
## 4642 DS 2009 Simulation Ubisoft 0.35
## 4643 X360 2005 Action Sega 0.36
## 4644 PS 2001 Action Capcom 0.14
## 4645 Wii 2008 Racing Activision 0.39
## 4646 PS2 2002 Shooter Universal Interactive 0.20
## 4647 GC 2005 Puzzle Sega 0.32
## 4648 PS2 2005 Action Konami Digital Entertainment 0.18
## 4649 PS3 2010 Action Ubisoft 0.21
## 4650 DS 2008 Simulation Rising Star Games 0.22
## 4651 PS 1998 Sports Konami Digital Entertainment 0.02
## 4652 GBA 2001 Platform THQ 0.30
## 4653 XB 2006 Shooter Electronic Arts 0.31
## 4654 Wii 2007 Adventure Nintendo 0.18
## 4655 XB 2006 Action THQ 0.31
## 4656 PSP 2009 Action LucasArts 0.21
## 4657 PSP 2010 Action Take-Two Interactive 0.39
## 4658 WiiU 2015 Misc Nintendo 0.19
## 4659 3DS 2016 Action Nintendo 0.16
## 4660 PS3 2010 Action Electronic Arts 0.13
## 4661 Wii 2011 Sports Namco Bandai Games 0.16
## 4662 PS3 2011 Fighting THQ 0.16
## 4663 XB 2004 Role-Playing Electronic Arts 0.31
## 4664 PSP 2010 Sports Sega 0.00
## 4665 PS2 2007 Action Disney Interactive Studios 0.20
## 4666 PS 2000 Adventure Capcom 0.17
## 4667 PS 1997 Fighting Capcom 0.16
## 4668 PS2 2004 Misc Mud Duck Productions 0.20
## 4669 PSP 2007 Platform Konami Digital Entertainment 0.22
## 4670 PS2 2004 Action Midway Games 0.20
## 4671 SAT 1995 Fighting Sega 0.00
## 4672 PS3 2009 Puzzle Namco Bandai Games 0.26
## 4673 XB 2001 Simulation LucasArts 0.30
## 4674 X360 2007 Shooter Vivendi Games 0.36
## 4675 PS2 2003 Sports Acclaim Entertainment 0.20
## 4676 PS2 2003 Simulation Konami Digital Entertainment 0.15
## 4677 DS 2009 Action Atari 0.26
## 4678 3DS 2013 Action Screenlife 0.00
## 4679 PS2 2003 Misc Sony Computer Entertainment 0.20
## 4680 GBA 2001 Adventure BAM! Entertainment 0.30
## 4681 PS2 2003 Sports Sony Computer Entertainment 0.20
## 4682 GBA 2001 Adventure Ubisoft 0.30
## 4683 PSV 2013 Misc Nippon Ichi Software 0.14
## 4685 PC 1998 Action Eidos Interactive 0.41
## 4686 PS2 2010 Sports Konami Digital Entertainment 0.04
## 4687 DC 1999 Racing Sega 0.00
## 4688 PS 1998 Shooter Activision 0.23
## 4689 PS2 2007 Action Vivendi Games 0.34
## 4690 PC 2007 Shooter Take-Two Interactive 0.01
## 4691 PS3 2007 Racing THQ 0.37
## 4692 PS2 2010 Sports Sony Computer Entertainment 0.20
## 4693 PS 2000 Misc Hasbro Interactive 0.23
## 4694 XB 2005 Shooter Ubisoft 0.26
## 4695 PSP 2009 Fighting Namco Bandai Games 0.00
## 4696 PS 2000 Sports Sony Computer Entertainment 0.23
## 4697 PS 1999 Action Take-Two Interactive 0.23
## 4698 PS 2000 Sports Konami Digital Entertainment 0.00
## 4699 PS3 2015 Shooter Activision 0.16
## 4700 SAT 1995 Action Namco Bandai Games 0.00
## 4701 X360 2012 Action Electronic Arts 0.28
## 4702 PSP 2009 Shooter Activision 0.17
## 4703 X360 2014 Shooter Bethesda Softworks 0.18
## 4704 DS 2009 Adventure THQ 0.15
## 4705 X360 2015 Simulation Koch Media 0.21
## 4706 PS2 2002 Platform THQ 0.20
## 4707 DS 2007 Misc Square Enix 0.00
## 4708 DS 2008 Platform Konami Digital Entertainment 0.31
## 4709 PS3 2010 Fighting PQube 0.21
## 4710 PS2 2006 Action Activision 0.20
## 4711 PSP 2007 Action Warner Bros. Interactive Entertainment 0.27
## 4712 SAT 1996 Adventure Sega 0.00
## 4713 PS2 2005 Adventure THQ 0.34
## 4714 Wii 2009 Misc Ubisoft 0.28
## 4715 Wii 2009 Simulation Electronic Arts 0.36
## 4716 PS3 2012 Action Electronic Arts 0.37
## 4717 PS 1996 Racing Pioneer LDC 0.23
## 4718 PSV 2015 Action Warner Bros. Interactive Entertainment 0.09
## 4719 Wii 2009 Misc Hudson Soft 0.00
## 4720 PSP 2009 Action THQ 0.24
## 4721 X360 2008 Action Activision 0.36
## 4722 PS2 2002 Adventure Sony Computer Entertainment 0.00
## 4723 Wii 2011 Misc THQ 0.36
## 4724 PSP 2009 Racing THQ 0.29
## 4725 X360 2011 Simulation THQ 0.30
## 4726 PS 1997 Strategy Virgin Interactive 0.23
## 4727 DS 2009 Action LucasArts 0.23
## 4728 NES 1985 Puzzle Namco Bandai Games 0.00
## 4729 N64 1999 Role-Playing Nintendo 0.10
## 4730 N64 1999 Action Titus 0.33
## 4731 PS3 2008 Sports Electronic Arts 0.08
## 4732 PS2 2002 Action Atari 0.20
## 4733 PSV 2014 Action Warner Bros. Interactive Entertainment 0.05
## 4734 PS2 2007 Role-Playing Sony Computer Entertainment 0.20
## 4735 PS 1997 Simulation Sony Computer Entertainment 0.13
## 4736 Wii 2009 Racing Zoo Games 0.39
## 4737 Wii 2008 Sports RTL 0.18
## 4738 X360 2010 Misc MTV Games 0.24
## 4739 PS 1999 Simulation Taito 0.00
## 4740 PS3 2012 Action Activision 0.19
## 4741 PC 2014 Shooter Activision 0.14
## 4742 Wii 2011 Misc THQ 0.26
## 4743 PS3 2010 Misc Electronic Arts 0.16
## 4744 PS2 2009 Misc Activision 0.15
## 4745 WiiU 2013 Action Nintendo 0.20
## 4746 Wii 2010 Action Rising Star Games 0.21
## 4747 X360 2006 Shooter Electronic Arts 0.35
## 4748 PS2 2001 Simulation Metro 3D 0.11
## 4749 PS2 2006 Misc Sony Computer Entertainment 0.20
## 4750 GC 2002 Fighting Midway Games 0.31
## 4751 Wii 2006 Role-Playing Activision 0.37
## 4752 PS2 2010 Action Take-Two Interactive 0.34
## 4753 PSP 2010 Misc Namco Bandai Games 0.00
## 4754 PS 1996 Misc Empire Interactive 0.23
## 4755 PS 1998 Sports Magical Company 0.15
## 4756 PS2 2008 Sports Take-Two Interactive 0.34
## 4757 GBA 2001 Misc Konami Digital Entertainment 0.00
## 4758 Wii 2008 Racing Warner Bros. Interactive Entertainment 0.36
## 4759 X360 2010 Action 505 Games 0.21
## 4760 Wii 2008 Simulation Electronic Arts 0.34
## 4761 PS3 2008 Fighting Midway Games 0.22
## 4762 X360 2011 Misc Ubisoft 0.29
## 4763 PC 2011 Shooter Take-Two Interactive 0.18
## 4764 PSP 2010 Misc Sega 0.00
## 4765 PS2 2009 Role-Playing Activision 0.23
## 4766 SNES 1995 Puzzle Nintendo 0.00
## 4767 PS2 2005 Platform Midway Games 0.34
## 4768 SNES 1994 Sports Konami Digital Entertainment 0.00
## 4769 PS2 2001 Platform Ubisoft 0.20
## 4770 XOne 2015 Shooter Take-Two Interactive 0.24
## 4771 X360 2011 Shooter Microsoft Game Studios 0.26
## 4772 PS 2000 Fighting Electronic Arts 0.23
## 4773 PS2 2005 Action Electronic Arts 0.34
## 4774 PC 2012 Action Electronic Arts 0.02
## 4775 PS3 2012 Action Capcom 0.18
## 4776 DS 2009 Action Ubisoft 0.19
## 4777 DS 2009 Misc Mentor Interactive 0.38
## 4778 PS2 2002 Action Activision 0.20
## 4779 PS 2003 Misc Sony Computer Entertainment 0.23
## 4780 PS 2001 Sports Sony Computer Entertainment 0.23
## 4781 2600 1983 Adventure Atari 0.38
## 4782 PS3 2008 Misc Disney Interactive Studios 0.08
## 4783 3DS 2014 Simulation Nintendo 0.00
## 4784 X360 2007 Action Ubisoft 0.36
## 4785 2600 1981 Action Coleco 0.38
## 4786 Wii 2010 Action Sega 0.17
## 4787 PSV 2014 Misc Sega 0.13
## 4788 X360 2007 Strategy Codemasters 0.34
## 4789 GC 2003 Platform THQ 0.31
## 4790 PS3 2007 Action Activision 0.32
## 4791 PS3 2008 Sports Sega 0.13
## 4793 WiiU 2013 Role-Playing Square Enix 0.00
## 4794 PS3 2008 Platform THQ 0.12
## 4795 GB 1997 Role-Playing Imagineer 0.00
## 4796 PS2 2009 Sports Take-Two Interactive 0.33
## 4797 PS2 2002 Misc Midway Games 0.20
## 4799 Wii 2012 Action Activision 0.38
## 4800 Wii 2009 Misc Namco Bandai Games 0.00
## 4801 PS3 2014 Action Square Enix 0.10
## 4802 2600 1982 Action Sega 0.37
## 4803 PS2 2005 Role-Playing Midway Games 0.20
## 4804 GC 2003 Sports Electronic Arts 0.31
## 4805 DS 2005 Strategy Nintendo 0.30
## 4806 DS 2009 Action Konami Digital Entertainment 0.27
## 4807 PS2 2008 Action Tecmo Koei 0.00
## 4808 PSP 2005 Fighting THQ 0.36
## 4809 PS2 2008 Action Disney Interactive Studios 0.20
## 4810 GBA 2005 Action THQ 0.29
## 4811 PS 1997 Strategy Sony Computer Entertainment 0.00
## 4812 GC 2005 Strategy Nintendo 0.25
## 4813 PS 1999 Sports 989 Studios 0.22
## 4814 GC 2004 Action THQ 0.31
## 4815 XOne 2014 Misc Ubisoft 0.29
## 4816 SNES 1994 Fighting Takara 0.00
## 4817 XOne 2014 Sports Electronic Arts 0.31
## 4818 Wii 2007 Action Ubisoft 0.34
## 4819 Wii 2009 Action Square Enix 0.22
## 4820 PS3 2009 Sports Activision Value 0.37
## 4821 XOne 2016 Sports Electronic Arts 0.23
## 4822 SAT 1995 Fighting Sega 0.00
## 4823 PS 1999 Sports 989 Studios 0.22
## 4824 PS3 2010 Action Sega 0.14
## 4825 PS2 2008 Platform Vivendi Games 0.12
## 4826 PSP 2011 Misc Namco Bandai Games 0.00
## 4827 N64 1999 Racing Nintendo 0.32
## 4828 N64 1997 Racing Kemco 0.32
## 4829 N64 1999 Sports Acclaim Entertainment 0.37
## 4830 N64 1997 Fighting Midway Games 0.32
## 4831 PS2 2001 Racing Acclaim Entertainment 0.20
## 4832 PS2 2004 Misc Atari 0.33
## 4833 PS 1999 Platform Infogrames 0.22
## 4834 X360 2010 Sports Electronic Arts 0.27
## 4835 DS 2009 Adventure Focus Home Interactive 0.06
## 4836 PS2 2007 Racing Activision 0.20
## 4837 PS2 2005 Sports Sony Computer Entertainment 0.33
## 4838 X360 2009 Action LucasArts 0.18
## 4839 PS2 2007 Sports 505 Games 0.20
## 4840 PC 2010 Action Take-Two Interactive 0.17
## 4841 GBA 2001 Action THQ 0.29
## 4842 Wii 2009 Action THQ 0.38
## 4843 XB 2005 Racing THQ 0.32
## 4844 GC 2006 Action Midway Games 0.31
## 4845 DS 2009 Action Sega 0.22
## 4846 GC 2004 Simulation Electronic Arts 0.24
## 4847 PS 1999 Racing Electronic Arts 0.22
## 4848 GBA 2006 Role-Playing Nintendo 0.00
## 4849 GBA 2004 Action THQ 0.29
## 4850 DS 2007 Puzzle Eidos Interactive 0.34
## 4851 X360 2010 Sports Activision 0.32
## 4852 X360 2009 Fighting THQ 0.20
## 4853 WiiU 2014 Sports Nintendo 0.19
## 4854 X360 2007 Action Eidos Interactive 0.12
## 4855 PS 1999 Misc Vivendi Games 0.22
## 4856 SNES 1995 Role-Playing ChunSoft 0.00
## 4857 WiiU 2013 Platform Sega 0.24
## 4858 PS3 2008 Action Sega 0.17
## 4860 GC 2002 Shooter Activision 0.31
## 4861 XB 2001 Sports Electronic Arts 0.35
## 4862 PS 2000 Adventure Sony Computer Entertainment 0.00
## 4863 PS3 2012 Simulation Namco Bandai Games 0.09
## 4864 PS2 2003 Platform Sony Computer Entertainment 0.19
## 4865 PS 1996 Strategy Virgin Interactive 0.22
## 4867 PS3 2010 Sports Electronic Arts 0.22
## 4868 PC 2010 Role-Playing Electronic Arts 0.01
## 4869 PS2 2004 Strategy Namco Bandai Games 0.00
## 4870 GC 2004 Shooter Activision 0.31
## 4871 DS 2010 Action Warner Bros. Interactive Entertainment 0.26
## 4872 DS 2007 Role-Playing D3Publisher 0.37
## 4873 X360 2015 Adventure Square Enix 0.17
## 4874 X360 2006 Action Eidos Interactive 0.29
## 4875 SNES 1995 Role-Playing Namco Bandai Games 0.00
## 4876 X360 2010 Role-Playing Sega 0.23
## 4877 PS2 2005 Racing Jester Interactive 0.33
## 4878 PS2 2004 Fighting Konami Digital Entertainment 0.19
## 4879 PS3 2013 Misc Ubisoft 0.17
## 4880 PS2 2007 Action Take-Two Interactive 0.19
## 4881 XB 2005 Action Activision 0.26
## 4882 PS3 2013 Racing Codemasters 0.07
## 4883 3DS 2012 Action Warner Bros. Interactive Entertainment 0.19
## 4884 PS2 2007 Racing THQ 0.19
## 4885 PS3 2015 Action Activision 0.15
## 4886 N64 1998 Sports Electronic Arts 0.38
## 4887 Wii 2009 Sports Take-Two Interactive 0.36
## 4888 PS3 2011 Role-Playing Square Enix 0.17
## 4889 PS3 2008 Action Sega 0.14
## 4890 Wii 2007 Sports 505 Games 0.36
## 4891 DS 2008 Racing Activision 0.37
## 4892 PSP 2011 Role-Playing Level 5 0.00
## 4893 PS 2000 Racing Hasbro Interactive 0.22
## 4894 PS 1997 Fighting Virgin Interactive 0.22
## 4895 2600 1982 Racing Mattel Interactive 0.37
## 4896 PS2 2002 Shooter Namco Bandai Games 0.00
## 4897 GBA 2003 Action THQ 0.28
## 4898 Wii 2008 Fighting Tomy Corporation 0.34
## 4899 PS2 2008 Sports Electronic Arts 0.32
## 4900 PSP 2011 Action LucasArts 0.14
## 4901 XB 2002 Shooter Sega 0.29
## 4902 Wii 2008 Role-Playing Rising Star Games 0.18
## 4903 GBA 2002 Role-Playing Nintendo 0.00
## 4904 PSP 2009 Action THQ 0.39
## 4905 3DS 2011 Sports Electronic Arts 0.08
## 4906 DS 2008 Sports Ubisoft 0.36
## 4907 X360 2012 Shooter Take-Two Interactive 0.24
## 4908 PSP 2008 Sports Electronic Arts 0.23
## 4909 2600 1981 Action Activision 0.37
## 4910 DS 2008 Misc Activision 0.36
## 4911 PSP 2006 Platform Sony Computer Entertainment 0.14
## 4912 PS 1998 Sports Take-Two Interactive 0.22
## 4913 DS 2008 Misc THQ 0.36
## 4914 GC 2004 Misc Nintendo 0.30
## 4915 PS4 2013 Misc Ubisoft 0.18
## 4916 PS3 2013 Adventure Konami Digital Entertainment 0.31
## 4917 PS 2001 Role-Playing Enterbrain 0.00
## 4918 3DS 2012 Role-Playing Namco Bandai Games 0.18
## 4919 X360 2011 Shooter THQ 0.18
## 4920 PSV 2012 Racing Sony Computer Entertainment 0.14
## 4921 DS 2009 Racing Electronic Arts 0.22
## 4922 Wii 2011 Adventure Nintendo 0.19
## 4923 DS 2005 Platform Nintendo 0.34
## 4924 X360 2010 Sports Electronic Arts 0.18
## 4925 3DS 2011 Strategy Ubisoft 0.25
## 4926 Wii 2011 Misc Namco Bandai Games 0.00
## 4927 PC 2005 Strategy Microsoft Game Studios 0.00
## 4928 XB 2003 Sports Electronic Arts 0.29
## 4929 PS3 2015 Sports Sony Computer Entertainment 0.30
## 4930 GBA 2004 Sports Electronic Arts 0.28
## 4931 N64 1999 Sports Acclaim Entertainment 0.36
## 4932 N64 2000 Fighting Nintendo 0.00
## 4933 N64 1998 Racing Acclaim Entertainment 0.31
## 4934 N64 1999 Action 3DO 0.31
## 4936 GC 2005 Adventure Nintendo 0.23
## 4937 PC 2009 Simulation Ubisoft 0.00
## 4938 PS2 2003 Misc Sony Computer Entertainment 0.19
## 4939 Wii 2008 Misc Activision 0.36
## 4940 PS2 2000 Fighting Ubisoft 0.16
## 4941 PS2 2002 Action Eidos Interactive 0.19
## 4942 Wii 2010 Misc Warner Bros. Interactive Entertainment 0.37
## 4943 WiiU 2012 Action Activision 0.23
## 4944 WiiU 2012 Misc Ubisoft 0.22
## 4945 SNES 1991 Fighting Human Entertainment 0.00
## 4946 PS2 2005 Sports Activision 0.19
## 4947 PS3 2006 Role-Playing Activision 0.33
## 4948 DS 2009 Adventure THQ 0.24
## 4949 PS3 2008 Racing Capcom 0.07
## 4950 Wii 2008 Simulation Ubisoft 0.34
## 4951 PS2 2003 Misc Ubisoft 0.19
## 4952 PS3 2013 Sports Electronic Arts 0.16
## 4953 SNES 1992 Fighting Takara 0.00
## 4954 X360 2013 Simulation Focus Home Interactive 0.22
## 4955 GB 2001 Role-Playing Banpresto 0.00
## 4956 Wii 2007 Adventure Ubisoft 0.35
## 4957 3DS 2011 Sports Electronic Arts 0.36
## 4958 GBA 2005 Simulation Electronic Arts 0.28
## 4959 PS2 2006 Platform Vivendi Games 0.19
## 4960 PS3 2014 Sports Sony Computer Entertainment America 0.35
## 4961 SNES 1994 Sports Namco Bandai Games 0.00
## 4962 PS2 2002 Racing Capcom 0.19
## 4963 XB 2005 Shooter Ubisoft 0.29
## 4964 DS 2009 Misc Avanquest 0.26
## 4965 Wii 2009 Sports 505 Games 0.36
## 4966 PS2 2007 Sports Electronic Arts 0.19
## 4967 PS2 2008 Misc Konami Digital Entertainment 0.19
## 4968 2600 1981 Action Data Age 0.36
## 4969 PS 1999 Simulation Konami Digital Entertainment 0.00
## 4970 3DS 2011 Action Tecmo Koei 0.12
## 4971 X360 2006 Action Eidos Interactive 0.27
## 4972 DS 2009 Action Activision 0.20
## 4973 Wii 2009 Misc Nordic Games 0.00
## 4974 GBA 2003 Sports Electronic Arts 0.28
## 4975 DS 2007 Misc Ubisoft 0.38
## 4976 PS4 2015 Action Deep Silver 0.13
## 4977 PS2 2003 Action THQ 0.19
## 4978 3DS 2013 Action Namco Bandai Games 0.05
## 4979 DS 2008 Role-Playing Sega 0.16
## 4980 PS 1996 Sports Electronic Arts Victor 0.21
## 4981 PS3 2009 Sports Sega 0.09
## 4982 SNES 1991 Sports Nintendo 0.00
## 4983 PS2 2003 Role-Playing Ghostlight 0.07
## 4984 GB 1998 Platform Nintendo 0.00
## 4985 PS 1997 Racing GT Interactive 0.21
## 4986 PSV 2013 Role-Playing Nippon Ichi Software 0.16
## 4987 PS 1998 Racing Human Entertainment 0.00
## 4988 DS 2009 Simulation Ubisoft 0.24
## 4989 XB 2004 Sports Sega 0.29
## 4990 PS2 2007 Action Warner Bros. Interactive Entertainment 0.19
## 4991 Wii 2008 Sports Activision Value 0.36
## 4992 Wii 2009 Role-Playing Rising Star Games 0.17
## 4993 PS2 2007 Strategy Namco Bandai Games 0.00
## 4994 WiiU 2012 Action Warner Bros. Interactive Entertainment 0.17
## 4995 PS3 2008 Misc Disney Interactive Studios 0.27
## 4996 Wii 2009 Misc Pinnacle 0.00
## 4997 PSV 2015 Role-Playing Namco Bandai Games 0.00
## 4998 PS3 2010 Sports Black Bean Games 0.15
## 4999 GBA 2005 Platform Jack of All Games 0.27
## 5000 PSP 2009 Fighting Namco Bandai Games 0.13
## 5001 PS2 2001 Sports Sony Computer Entertainment 0.19
## 5002 GC 2002 Shooter Acclaim Entertainment 0.30
## 5003 X360 2015 Shooter Activision 0.22
## 5004 DS 2007 Simulation Atari 0.07
## 5005 PS2 2002 Strategy Namco Bandai Games 0.00
## 5006 GBA 2002 Action Ubisoft 0.27
## 5007 PS2 2008 Sports Sega 0.10
## 5008 PS2 2002 Action Sega 0.19
## 5009 PS3 2007 Sports Electronic Arts 0.29
## 5010 SAT 1995 Role-Playing Atlus 0.00
## 5011 3DS 2011 Platform Ubisoft 0.11
## 5012 PS3 2007 Sports Electronic Arts 0.35
## 5013 GC 2005 Fighting Electronic Arts 0.30
## 5014 PS3 2014 Sports Electronic Arts 0.21
## 5015 PS 1994 Sports Sony Computer Entertainment 0.11
## 5016 XOne 2016 Racing Microsoft Game Studios 0.15
## 5017 Wii 2009 Action Codemasters 0.12
## 5018 PS 1998 Action Eidos Interactive 0.21
## 5019 PS 2000 Strategy Namco Bandai Games 0.00
## 5020 PS2 2005 Misc THQ 0.19
## 5021 PS2 2004 Racing Empire Interactive 0.19
## 5022 3DS 2013 Adventure Capcom 0.00
## 5023 GC 2003 Sports Electronic Arts 0.29
## 5024 PS2 2010 Sports Electronic Arts 0.19
## 5025 PS4 2015 Role-Playing Namco Bandai Games 0.16
## 5026 GBA 2004 Action Disney Interactive Studios 0.27
## 5027 3DS 2012 Action Konami Digital Entertainment 0.15
## 5028 PS2 2003 Strategy Atari 0.19
## 5029 DS 2006 Misc Nintendo 0.31
## 5030 PS3 2006 Sports Take-Two Interactive 0.30
## 5031 PS 1996 Action Namco Bandai Games 0.00
## 5032 PS2 2002 Role-Playing Enix Corporation 0.07
## 5033 PS2 2000 Shooter Konami Digital Entertainment 0.19
## 5034 GB 1991 Role-Playing SquareSoft 0.00
## 5035 Wii 2009 Sports Sega 0.13
## 5036 PS2 2008 Platform Take-Two Interactive 0.19
## 5037 PS2 2008 Action Sega 0.32
## 5038 PS2 2008 Shooter Electronic Arts 0.21
## 5039 Wii 2011 Sports Activision 0.34
## 5040 PS3 2010 Fighting Electronic Arts 0.16
## 5041 PSP 2010 Action Sega 0.18
## 5042 Wii 2009 Racing Codemasters 0.11
## 5043 SAT 1996 Simulation Konami Digital Entertainment 0.00
## 5044 PS 1999 Action Sony Computer Entertainment 0.21
## 5045 DS 2009 Misc Activision 0.13
## 5046 XB 2002 Action Interplay 0.28
## 5047 PS2 2007 Racing THQ 0.32
## 5048 PS 1998 Racing GT Interactive 0.21
## 5049 SNES 1995 Strategy Banpresto 0.00
## 5050 PSP 2007 Sports Electronic Arts 0.14
## 5051 GC 2003 Adventure Nintendo 0.24
## 5052 PSP 2011 Misc Namco Bandai Games 0.00
## 5053 3DS 2012 Role-Playing Atlus 0.12
## 5054 PS 2000 Racing Sony Computer Entertainment 0.21
## 5055 PS 1999 Sports 989 Sports 0.21
## 5056 WiiU 2012 Action Warner Bros. Interactive Entertainment 0.26
## 5057 PS3 2016 Sports Electronic Arts 0.02
## 5058 PC 2011 Action THQ 0.16
## 5059 PS4 2014 Misc Ubisoft 0.19
## 5060 PS2 2008 Action Activision 0.12
## 5061 Wii 2010 Simulation Activision 0.32
## 5063 DS 2008 Simulation Ubisoft 0.35
## 5064 Wii 2010 Misc MTV Games 0.22
## 5065 2600 1982 Action Atari 0.35
## 5066 DS 2010 Racing Activision 0.35
## 5067 PSV 2013 Action Tecmo Koei 0.05
## 5068 PS2 2004 Misc Sony Computer Entertainment 0.18
## 5069 XB 2005 Simulation Konami Digital Entertainment 0.28
## 5070 PS3 2014 Fighting Namco Bandai Games 0.00
## 5071 PS2 2010 Fighting THQ 0.24
## 5072 PC 2010 Racing Electronic Arts 0.12
## 5073 DS 2006 Platform Vivendi Games 0.34
## 5074 3DS 2011 Sports Konami Digital Entertainment 0.11
## 5075 3DS 2011 Role-Playing Ghostlight 0.28
## 5076 DS 2009 Role-Playing Namco Bandai Games 0.13
## 5077 Wii 2009 Fighting THQ 0.31
## 5078 PS3 2011 Shooter Sega 0.15
## 5080 GC 2004 Action Electronic Arts 0.29
## 5081 X360 2005 Shooter Activision 0.32
## 5082 DS 2008 Adventure Ubisoft 0.35
## 5083 2600 1986 Shooter Atari 0.35
## 5084 DS 2008 Simulation Ubisoft 0.35
## 5085 PS2 2006 Fighting Atari 0.09
## 5086 DS 2009 Simulation THQ 0.35
## 5087 WiiU 2012 Sports Ubisoft 0.21
## 5088 PS3 2014 Shooter Sega 0.12
## 5089 DS 2008 Fighting Takara Tomy 0.19
## 5090 PS3 2009 Action Konami Digital Entertainment 0.13
## 5091 DS 2007 Platform Vivendi Games 0.32
## 5092 PS 1997 Fighting SquareSoft 0.00
## 5093 DS 2010 Action Scholastic Inc. 0.35
## 5094 X360 2009 Misc Electronic Arts 0.12
## 5095 PS2 2008 Sports Electronic Arts 0.16
## 5096 GC 2005 Action Activision 0.29
## 5097 PS4 2016 Adventure Square Enix 0.14
## 5098 X360 2007 Role-Playing Microsoft Game Studios 0.18
## 5099 XB 2002 Sports Microsoft Game Studios 0.28
## 5100 Wii 2007 Sports Take-Two Interactive 0.34
## 5101 X360 2006 Sports Spike 0.34
## 5102 PS 1994 Shooter Sony Computer Entertainment 0.08
## 5103 PS2 2006 Simulation Ubisoft 0.18
## 5104 Wii 2009 Action Eidos Interactive 0.17
## 5105 PC 2016 Shooter Ubisoft 0.20
## 5106 PSP 2011 Role-Playing Sega 0.00
## 5107 DS 2008 Simulation Ubisoft 0.34
## 5108 XOne 2015 Action Warner Bros. Interactive Entertainment 0.21
## 5109 GC 2002 Platform THQ 0.29
## 5110 PS2 2003 Sports Natsume 0.18
## 5111 PS2 2004 Sports Activision 0.18
## 5112 PSP 2010 Action Ubisoft 0.09
## 5113 PS2 2006 Action Midway Games 0.18
## 5114 PS2 2002 Sports 3DO 0.18
## 5115 PSP 2010 Sports Electronic Arts 0.35
## 5116 SNES 1994 Sports Human Entertainment 0.00
## 5117 SAT 1995 Shooter Sega 0.00
## 5118 Wii 2011 Sports Electronic Arts 0.21
## 5119 PC 2011 Shooter Bethesda Softworks 0.14
## 5120 PS2 2007 Action Activision 0.31
## 5121 PS 1998 Adventure Sony Computer Entertainment 0.00
## 5122 X360 2011 Role-Playing Square Enix 0.21
## 5123 PSP 2007 Racing THQ 0.06
## 5124 Wii 2009 Sports Destineer 0.35
## 5125 N64 2000 Role-Playing ChunSoft 0.00
## 5126 N64 1999 Shooter Acclaim Entertainment 0.30
## 5127 N64 2000 Action THQ 0.30
## 5128 2600 1981 Action Imagic 0.35
## 5129 GC 2004 Role-Playing Nintendo 0.29
## 5130 PSP 2012 Action Electronic Arts 0.05
## 5131 PS3 2009 Strategy Electronic Arts 0.14
## 5132 PSP 2007 Action Electronic Arts 0.10
## 5133 PC 2008 Strategy Sega 0.00
## 5134 GC 2002 Action Nintendo 0.28
## 5135 DS 2007 Puzzle Namco Bandai Games 0.00
## 5136 GBA 2003 Sports Knowledge Adventure 0.26
## 5137 PS3 2009 Platform Capcom 0.12
## 5138 X360 2009 Shooter Warner Bros. Interactive Entertainment 0.17
## 5139 GBA 2003 Adventure Square Enix 0.00
## 5140 PS4 2015 Action Bethesda Softworks 0.11
## 5141 PSP 2006 Role-Playing Activision 0.33
## 5142 PSP 2005 Sports Electronic Arts 0.34
## 5143 SNES 1994 Strategy Banpresto 0.00
## 5144 PS2 2006 Sports Electronic Arts 0.17
## 5145 N64 1999 Sports Konami Digital Entertainment 0.37
## 5146 3DS 2014 Misc Square Enix 0.13
## 5147 DS 2005 Simulation Nintendo 0.30
## 5148 SNES 1994 Role-Playing Atlus 0.00
## 5149 PS2 2006 Role-Playing Namco Bandai Games 0.09
## 5150 Wii 2008 Simulation Game Factory 0.34
## 5151 PC 2014 Strategy Take-Two Interactive 0.11
## 5152 PC 2011 Action Electronic Arts 0.09
## 5153 DC 1998 Fighting Sega 0.00
## 5154 PS3 2011 Action Activision 0.11
## 5155 GB 1997 Strategy ASCII Entertainment 0.00
## 5156 PS4 2013 Platform Activision 0.20
## 5157 PSV 2012 Action Warner Bros. Interactive Entertainment 0.17
## 5158 PS4 2015 Misc Harmonix Music Systems 0.25
## 5159 PC 2009 Shooter Valve Software 0.00
## 5160 PS2 2007 Simulation Electronic Arts 0.30
## 5161 PSP 2006 Sports Electronic Arts 0.34
## 5162 Wii 2008 Action Disney Interactive Studios 0.31
## 5164 DS 2009 Racing Activision 0.25
## 5165 DS 2007 Sports Atari 0.33
## 5166 GC 2004 Shooter Electronic Arts 0.28
## 5167 SNES 1994 Sports Media Rings 0.00
## 5168 PS2 2008 Fighting Namco Bandai Games 0.08
## 5169 SAT 1996 Adventure Elf 0.00
## 5170 X360 2010 Action Ubisoft 0.24
## 5171 PS2 2001 Sports Konami Digital Entertainment 0.18
## 5173 PS4 2016 Action Capcom 0.09
## 5174 SNES 1994 Fighting Human Entertainment 0.00
## 5175 SNES 1993 Fighting Namco Bandai Games 0.00
## 5176 PS2 2002 Adventure ChunSoft 0.00
## 5177 PS2 2003 Sports 3DO 0.18
## 5178 PS2 2005 Action Vivendi Games 0.18
## 5179 PS2 2005 Shooter Midway Games 0.18
## 5180 DS 2010 Fighting Namco Bandai Games 0.00
## 5181 PSP 2006 Role-Playing Square Enix 0.17
## 5182 PSP 2008 Sports Electronic Arts 0.07
## 5183 X360 2013 Action Deep Silver 0.17
## 5184 X360 2013 Sports Electronic Arts 0.21
## 5185 PSP 2008 Platform Sony Computer Entertainment 0.21
## 5186 PS2 2001 Simulation Tecmo Koei 0.11
## 5187 PS2 2005 Action THQ 0.18
## 5188 X360 2010 Action Activision 0.24
## 5189 X360 2009 Fighting PQube 0.21
## 5190 PS 1997 Simulation Activision 0.20
## 5191 PS3 2013 Shooter D3Publisher 0.04
## 5192 GBA 2002 Action Nintendo 0.26
## 5193 PS2 2001 Role-Playing Sony Computer Entertainment 0.14
## 5194 Wii 2009 Misc Ubisoft 0.33
## 5195 PS 1997 Action Namco Bandai Games 0.00
## 5198 DS 2008 Racing Warner Bros. Interactive Entertainment 0.29
## 5199 Wii 2009 Sports Take-Two Interactive 0.33
## 5200 WiiU 2012 Action Ubisoft 0.19
## 5201 SNES 1997 Platform Nintendo 0.00
## 5202 PS 1997 Sports Starfish 0.20
## 5203 PS2 2000 Sports Sony Computer Entertainment 0.18
## 5204 XB 2005 Action Take-Two Interactive 0.27
## 5205 NES 1993 Action Ocean 0.25
## 5206 N64 1997 Action Konami Digital Entertainment 0.07
## 5207 N64 1997 Puzzle Nintendo 0.29
## 5208 N64 2000 Action THQ 0.29
## 5209 PSV 2013 Fighting Marvelous Entertainment 0.13
## 5210 Wii 2008 Sports Zushi Games 0.33
## 5211 PS 2001 Racing Activision 0.20
## 5212 PS3 2009 Misc Activision 0.20
## 5213 GBA 2001 Sports Activision 0.26
## 5214 Wii 2008 Sports Bethesda Softworks 0.33
## 5215 XB 2004 Simulation Microsoft Game Studios 0.27
## 5216 PC 2014 Action Warner Bros. Interactive Entertainment 0.12
## 5217 GBA 2002 Simulation Jorudan 0.00
## 5218 SNES 1994 Role-Playing Laguna 0.00
## 5219 WiiU 2013 Shooter Activision 0.23
## 5220 PS 1999 Racing LEGO Media 0.20
## 5221 Wii 2011 Sports Take-Two Interactive 0.30
## 5222 Wii 2009 Fighting Ubisoft 0.33
## 5223 X360 2011 Misc Microsoft Game Studios 0.27
## 5224 XB 2003 Sports Sega 0.27
## 5225 DS 2007 Racing Destination Software, Inc 0.33
## 5226 PS2 2005 Fighting Atari 0.00
## 5227 X360 2015 Misc Ubisoft 0.23
## 5228 DS 2007 Strategy THQ 0.07
## 5229 PS2 2004 Sports Zoo Digital Publishing 0.18
## 5230 PS2 2004 Sports Sega 0.00
## 5231 PS3 2010 Action Capcom 0.18
## 5232 PS3 2012 Shooter Activision 0.11
## 5233 PSP 2012 Strategy Namco Bandai Games 0.00
## 5234 Wii 2011 Fighting THQ 0.24
## 5235 PS2 2003 Platform Take-Two Interactive 0.18
## 5236 PS2 2003 Role-Playing Sony Computer Entertainment 0.18
## 5237 PS 2000 Simulation Konami Digital Entertainment 0.00
## 5238 PS3 2008 Adventure Sega 0.00
## 5239 Wii 2009 Misc Mindscape 0.00
## 5240 GBA 2001 Strategy Banpresto 0.00
## 5242 Wii 2007 Action Zoo Digital Publishing 0.33
## 5243 PC 2013 Strategy THQ 0.06
## 5244 PS3 2013 Shooter Trion Worlds 0.19
## 5245 Wii 2011 Misc Nordic Games 0.00
## 5246 PS 1995 Fighting New 0.00
## 5247 2600 1981 Action Mattel Interactive 0.33
## 5248 Wii 2010 Simulation Konami Digital Entertainment 0.29
## 5249 XB 2002 Action Electronic Arts 0.27
## 5250 X360 2010 Fighting Electronic Arts 0.23
## 5251 PSP 2011 Role-Playing Namco Bandai Games 0.00
## 5252 PS 1998 Racing Acclaim Entertainment 0.20
## 5253 SNES 1994 Platform Konami Digital Entertainment 0.00
## 5254 PS3 2008 Misc Electronic Arts 0.25
## 5255 DS 2010 Platform Capcom 0.21
## 5256 PS2 2001 Racing Midway Games 0.17
## 5257 PSP 2009 Action Electronic Arts 0.24
## 5258 PS2 2009 Sports Take-Two Interactive 0.17
## 5259 PSP 2009 Sports Sega 0.00
## 5260 DC 1999 Sports Sega 0.00
## 5261 DS 2008 Adventure Take-Two Interactive 0.33
## 5262 PS 1997 Racing Psygnosis 0.06
## 5263 XB 2001 Platform TDK Mediactive 0.25
## 5264 DS 2009 Adventure Ubisoft 0.16
## 5265 PSP 2007 Shooter Sony Computer Entertainment 0.32
## 5266 PS 1998 Action Sony Computer Entertainment 0.20
## 5267 Wii 2006 Simulation Nintendo 0.28
## 5268 GBA 2005 Sports Atari 0.25
## 5269 XOne 2016 Role-Playing Namco Bandai Games 0.23
## 5270 PS2 2005 Sports Zoo Digital Publishing 0.17
## 5271 GC 2005 Adventure THQ 0.27
## 5272 PS2 2006 Role-Playing Konami Digital Entertainment 0.08
## 5273 GB 1996 Puzzle Nintendo 0.00
## 5274 PS3 2013 Action Capcom 0.10
## 5275 Wii 2007 Strategy Nintendo 0.22
## 5276 PS2 2004 Sports Global Star 0.17
## 5277 Wii 2010 Misc THQ 0.25
## 5278 3DS 2013 Action Namco Bandai Games 0.00
## 5279 PS3 2010 Sports Sega 0.09
## 5280 PS2 2003 Misc Hudson Soft 0.00
## 5281 PS3 2009 Action Eidos Interactive 0.14
## 5282 X360 2012 Fighting Namco Bandai Games 0.19
## 5283 PS2 2003 Action Ubisoft 0.17
## 5284 GBA 2002 Action Activision 0.25
## 5285 XB 2003 Sports Zoo Digital Publishing 0.26
## 5286 X360 2009 Shooter Warner Bros. Interactive Entertainment 0.13
## 5287 PS2 2006 Sports Konami Digital Entertainment 0.00
## 5288 3DS 2014 Role-Playing Nintendo 0.08
## 5289 WiiU 2016 Shooter Nintendo 0.16
## 5290 SNES 1995 Action Laguna 0.04
## 5291 DS 2009 Action Eidos Interactive 0.17
## 5292 SNES 1993 Racing Nintendo 0.00
## 5293 PS2 2001 Fighting Virgin Interactive 0.15
## 5294 PS2 2003 Racing THQ 0.17
## 5295 PS 2000 Role-Playing Atlus 0.03
## 5296 GBA 2003 Action THQ 0.25
## 5297 DS 2011 Fighting Namco Bandai Games 0.00
## 5298 PS3 2011 Fighting Namco Bandai Games 0.20
## 5299 Wii 2010 Misc Konami Digital Entertainment 0.31
## 5300 DS 2008 Simulation Electronic Arts 0.30
## 5301 Wii 2009 Adventure Disney Interactive Studios 0.13
## 5302 Wii 2013 Strategy Activision 0.21
## 5304 DS 2007 Platform Capcom 0.23
## 5305 N64 2000 Sports Konami Digital Entertainment 0.00
## 5306 PS3 2013 Shooter City Interactive 0.05
## 5307 PS3 2010 Sports Ubisoft 0.11
## 5308 Wii 2011 Action Electronic Arts 0.18
## 5309 X360 2010 Strategy Square Enix 0.23
## 5310 PS2 2003 Action Capcom 0.17
## 5311 GC 2006 Racing Electronic Arts 0.27
## 5312 GBA 2003 Action THQ 0.25
## 5313 DS 2005 Action THQ 0.32
## 5314 PS2 2004 Platform THQ 0.17
## 5315 PS 2000 Action THQ 0.19
## 5316 XB 2003 Misc Microsoft Game Studios 0.26
## 5317 X360 2011 Fighting THQ 0.18
## 5318 PS3 2010 Shooter Sony Computer Entertainment 0.13
## 5319 PS2 2007 Sports Take-Two Interactive 0.17
## 5320 PS2 2009 Misc Activision 0.17
## 5321 PS2 2002 Fighting Sammy Corporation 0.09
## 5322 X360 2008 Racing Capcom 0.11
## 5323 PSP 2010 Strategy Konami Digital Entertainment 0.13
## 5324 PS3 2008 Shooter Activision 0.23
## 5325 PS2 2005 Shooter Ubisoft 0.17
## 5326 PS 2001 Role-Playing Namco Bandai Games 0.00
## 5327 PS2 2008 Platform Brash Entertainment 0.17
## 5328 PS2 2002 Sports Acclaim Entertainment 0.17
## 5329 PS2 2003 Misc Konami Digital Entertainment 0.17
## 5330 GC 2004 Sports Electronic Arts 0.27
## 5331 DS 2008 Misc Nobilis 0.32
## 5332 PS2 2003 Shooter Vivendi Games 0.17
## 5333 PS4 2015 Simulation Koch Media 0.10
## 5334 PS2 2000 Sports Konami Digital Entertainment 0.00
## 5335 PS 1998 Racing 989 Studios 0.19
## 5336 PS2 2000 Role-Playing Ubisoft 0.10
## 5337 X360 2007 Action Electronic Arts 0.30
## 5338 PS 1999 Role-Playing Kadokawa Shoten 0.19
## 5339 SAT 1996 Fighting Capcom 0.00
## 5340 PS2 2002 Platform THQ 0.17
## 5341 DS 2010 Adventure Disney Interactive Studios 0.18
## 5342 PSP 2006 Sports Sony Computer Entertainment 0.32
## 5343 PS3 2012 Racing Codemasters 0.06
## 5344 GC 2006 Platform Activision 0.27
## 5345 PSP 2011 Fighting Namco Bandai Games 0.09
## 5346 PS4 2015 Misc Ubisoft 0.16
## 5347 PS2 2005 Adventure Global Star 0.17
## 5348 DS 2007 Action Disney Interactive Studios 0.30
## 5349 X360 2008 Sports Electronic Arts 0.08
## 5350 PS 1998 Puzzle Sony Computer Entertainment 0.00
## 5351 DS 2009 Simulation Ubisoft 0.32
## 5352 GBA 2005 Misc Zoo Digital Publishing 0.25
## 5353 PSP 2011 Strategy Namco Bandai Games 0.00
## 5354 PSP 2011 Action Disney Interactive Studios 0.11
## 5355 GBA 2002 Platform THQ 0.25
## 5356 PS2 2008 Misc Disney Interactive Studios 0.17
## 5357 PS2 2006 Action Tecmo Koei 0.11
## 5358 DC 1999 Fighting Namco Bandai Games 0.00
## 5359 PS 1999 Racing Psygnosis 0.19
## 5360 DS 2007 Role-Playing Nintendo 0.20
## 5361 PS3 2007 Action THQ 0.13
## 5362 GBA 2004 Platform Nintendo 0.10
## 5363 XOne 2014 Action Activision 0.25
## 5364 DS 2007 Action THQ 0.31
## 5365 X360 2006 Shooter Vivendi Games 0.28
## 5366 X360 2006 Action Microsoft Game Studios 0.27
## 5367 2600 1980 Action Activision 0.32
## 5368 GBA 2002 Action Atari 0.25
## 5369 PS2 2003 Simulation Tecmo Koei 0.08
## 5370 DS 2010 Action Sega 0.15
## 5371 Wii 2010 Action City Interactive 0.15
## 5372 PS2 2004 Adventure Disney Interactive Studios 0.17
## 5373 SAT 1995 Shooter Sega 0.00
## 5374 X360 2011 Action Electronic Arts 0.19
## 5375 PS2 2009 Racing Sony Computer Entertainment 0.07
## 5376 GBA 2004 Platform THQ 0.25
## 5377 DS 2010 Role-Playing Atlus 0.24
## 5378 PS 1997 Fighting Virgin Interactive 0.19
## 5379 PS2 2000 Puzzle Acclaim Entertainment 0.17
## 5380 XB 2004 Shooter Eidos Interactive 0.26
## 5381 PS2 2001 Simulation Eidos Interactive 0.17
## 5382 2600 1982 Action ITT Family Games 0.32
## 5383 2600 1983 Action Activision 0.32
## 5384 X360 2016 Action Warner Bros. Interactive Entertainment 0.17
## 5385 X360 2005 Action Microsoft Game Studios 0.28
## 5386 Wii 2011 Action Namco Bandai Games 0.29
## 5387 GC 2005 Fighting THQ 0.26
## 5388 PS3 2009 Action Tecmo Koei 0.14
## 5389 XB 2004 Simulation Electronic Arts 0.22
## 5390 2600 1981 Action 20th Century Fox Video Games 0.32
## 5391 Wii 2011 Action Ubisoft 0.13
## 5392 Wii 2007 Action Activision 0.31
## 5393 PS3 2012 Action Konami Digital Entertainment 0.15
## 5394 SAT 1995 Fighting Virgin Interactive 0.00
## 5395 N64 1998 Racing GT Interactive 0.27
## 5396 2600 1982 Action 20th Century Fox Video Games 0.32
## 5397 PS3 2009 Action Electronic Arts 0.15
## 5398 3DS 2011 Strategy Ubisoft 0.22
## 5399 PS 1998 Misc ASCII Entertainment 0.19
## 5400 Wii 2008 Racing THQ 0.29
## 5401 2600 1981 Shooter Coleco 0.32
## 5402 PSP 2007 Sports Sega 0.00
## 5403 PS2 2004 Adventure Vivendi Games 0.17
## 5404 PS3 2011 Action Electronic Arts 0.14
## 5405 XB 2006 Sports Electronic Arts 0.25
## 5406 DS 2007 Misc Hudson Soft 0.00
## 5407 PS 1997 Shooter Sony Computer Entertainment 0.05
## 5408 DS 2009 Puzzle PopCap Games 0.31
## 5409 DS 2008 Misc 505 Games 0.31
## 5410 XOne 2014 Platform Ubisoft 0.13
## 5411 DS 2007 Puzzle D3Publisher 0.28
## 5412 PSP 2008 Role-Playing Square Enix 0.14
## 5413 DS 2008 Simulation Nobilis 0.30
## 5414 PS 1998 Action Sony Computer Entertainment 0.19
## 5415 X360 2011 Sports Home Entertainment Suppliers 0.09
## 5416 XB 2002 Racing Midway Games 0.25
## 5417 3DS 2013 Strategy Activision 0.15
## 5418 DS 2008 Simulation Ubisoft 0.31
## 5419 PS3 2008 Sports Electronic Arts 0.29
## 5420 XOne 2013 Simulation Microsoft Game Studios 0.18
## 5421 GBA 2005 Racing Disney Interactive Studios 0.24
## 5422 PC 2011 Simulation Electronic Arts 0.11
## 5423 GC 2003 Action Konami Digital Entertainment 0.26
## 5424 DS 2009 Simulation Eidos Interactive 0.21
## 5425 PS2 2009 Misc Disney Interactive Studios 0.10
## 5426 PS3 2010 Misc Sony Computer Entertainment 0.00
## 5427 PS4 2016 Role-Playing Atlus 0.00
## 5428 PS3 2007 Misc Sony Computer Entertainment 0.28
## 5429 X360 2007 Action Disney Interactive Studios 0.29
## 5430 PSV 2012 Racing Sony Computer Entertainment 0.17
## 5431 PS2 2008 Action Namco Bandai Games 0.04
## 5432 DS 2011 Action Namco Bandai Games 0.27
## 5433 PS 1996 Action Electronic Arts 0.19
## 5434 PS2 2001 Racing Atari 0.16
## 5435 DS 2006 Adventure THQ 0.30
## 5436 X360 2015 Shooter Electronic Arts 0.17
## 5437 XB 2005 Shooter NovaLogic 0.25
## 5438 DS 2009 Action Majesco Entertainment 0.12
## 5439 PS2 2005 Misc Oxygen Interactive 0.16
## 5440 PS3 2011 Action Ackkstudios 0.00
## 5441 PS3 2011 Shooter Codemasters 0.06
## 5442 X360 2009 Action Microsoft Game Studios 0.14
## 5443 XB 2006 Shooter Ubisoft 0.21
## 5444 DS 2009 Action Activision 0.17
## 5445 X360 2008 Shooter LucasArts 0.15
## 5446 PS 1996 Racing Jaleco 0.06
## 5447 Wii 2011 Role-Playing Nintendo 0.13
## 5448 PS3 2012 Action Sega 0.09
## 5449 X360 2011 Fighting Rising Star Games 0.23
## 5450 PS2 2003 Adventure Ubisoft 0.16
## 5451 GBA 2003 Platform THQ 0.24
## 5452 PS 1998 Puzzle Sony Computer Entertainment 0.06
## 5453 Wii 2010 Misc Deep Silver 0.00
## 5454 DS 2007 Role-Playing Namco Bandai Games 0.14
## 5455 PSP 2006 Fighting Capcom 0.27
## 5456 PSP 2006 Role-Playing Ubisoft 0.14
## 5457 X360 2009 Sports Sega 0.12
## 5458 PS 1998 Action Eidos Interactive 0.19
## 5459 PSP 2009 Role-Playing Namco Bandai Games 0.00
## 5460 Wii 2011 Misc Activision 0.31
## 5461 Wii 2010 Action Sega 0.15
## 5462 PSP 2004 Misc Sony Computer Entertainment 0.13
## 5463 PS3 2012 Shooter Take-Two Interactive 0.14
## 5464 PS3 2009 Misc Sony Computer Entertainment 0.00
## 5465 Wii 2009 Role-Playing Activision 0.26
## 5466 PSV 2011 Fighting Capcom 0.20
## 5467 GC 2003 Fighting THQ 0.26
## 5468 DS 2007 Puzzle Nintendo 0.14
## 5469 GC 2005 Simulation Electronic Arts 0.26
## 5470 XB 2003 Action Universal Interactive 0.25
## 5471 X360 2007 Action Ubisoft 0.29
## 5472 Wii 2009 Shooter Zushi Games 0.31
## 5473 Wii 2010 Misc D3Publisher 0.31
## 5474 PS2 2001 Platform Sony Computer Entertainment 0.12
## 5475 XB 2003 Shooter Eidos Interactive 0.25
## 5476 X360 2010 Role-Playing Sega 0.12
## 5477 Wii 2008 Simulation Ubisoft 0.30
## 5478 PS2 2002 Action Sony Computer Entertainment 0.16
## 5479 XB 2001 Racing Electronic Arts 0.25
## 5480 PSP 2006 Role-Playing Sony Computer Entertainment 0.21
## 5481 PS3 2009 Sports Electronic Arts 0.31
## 5482 PS 1999 Simulation Konami Digital Entertainment 0.00
## 5483 PS4 2015 Fighting Tecmo Koei 0.09
## 5484 GC 2004 Platform THQ 0.26
## 5485 PS3 2011 Sports 505 Games 0.00
## 5486 PC 2012 Action Electronic Arts 0.14
## 5487 PS2 2002 Sports Activision 0.16
## 5488 GBA 2005 Action Activision 0.24
## 5489 WiiU 2014 Action Sega 0.21
## 5490 PS2 2002 Fighting Acclaim Entertainment 0.16
## 5491 PS 1999 Sports Namco Bandai Games 0.00
## 5492 PSV 2011 Platform Sony Computer Entertainment 0.15
## 5493 X360 2012 Action Konami Digital Entertainment 0.22
## 5494 GB 1990 Sports Namco Bandai Games 0.00
## 5495 SNES 1994 Sports Hudson Soft 0.00
## 5496 Wii 2009 Action Majesco Entertainment 0.17
## 5497 PSP 2006 Misc Capcom 0.26
## 5498 DS 2008 Sports Electronic Arts 0.30
## 5499 PS2 2009 Sports Sony Computer Entertainment 0.16
## 5500 PS4 2016 Role-Playing Square Enix 0.10
## 5501 PS2 2001 Sports Sony Computer Entertainment 0.16
## 5502 GBA 2004 Platform Nintendo 0.17
## 5503 PS3 2014 Fighting Namco Bandai Games 0.10
## 5504 PS2 2009 Action Warner Bros. Interactive Entertainment 0.14
## 5505 XB 2006 Fighting Electronic Arts 0.26
## 5506 GBA 2001 Racing THQ 0.24
## 5507 PS2 2003 Action Capcom 0.05
## 5508 PS3 2008 Sports Electronic Arts 0.08
## 5510 N64 1998 Action 3DO 0.26
## 5511 PSP 2011 Misc Sega 0.00
## 5512 X360 2009 Strategy Eidos Interactive 0.17
## 5513 PS 1998 Platform Activision 0.18
## 5514 PS2 2006 Role-Playing Tecmo Koei 0.09
## 5515 PS3 2010 Sports Activision 0.26
## 5516 X360 2010 Sports Hudson Soft 0.27
## 5517 PS2 2002 Adventure Capcom 0.10
## 5518 SNES 1991 Sports Banpresto 0.00
## 5519 DS 2008 Adventure Scholastic Inc. 0.31
## 5520 PS3 2011 Action Disney Interactive Studios 0.15
## 5521 GC 2005 Shooter Activision 0.25
## 5522 Wii 2006 Action Konami Digital Entertainment 0.22
## 5523 PSP 2007 Strategy THQ 0.11
## 5524 X360 2013 Racing Codemasters 0.01
## 5525 PS2 2003 Role-Playing Tecmo Koei 0.16
## 5526 PS2 2005 Fighting Ignition Entertainment 0.16
## 5527 Wii 2007 Sports Electronic Arts 0.29
## 5528 PSP 2009 Racing Sony Computer Entertainment 0.09
## 5529 PS3 2009 Racing Ubisoft 0.12
## 5530 GC 2006 Platform THQ 0.25
## 5531 DS 2009 Simulation SouthPeak Games 0.28
## 5532 PSP 2008 Sports Sony Computer Entertainment 0.30
## 5533 X360 2011 Misc Ubisoft 0.20
## 5534 PS 1994 Shooter Konami Digital Entertainment 0.00
## 5535 GBA 2003 Platform Disney Interactive Studios 0.24
## 5536 DC 2001 Adventure Sega 0.00
## 5537 DS 2011 Action Avanquest 0.12
## 5538 PS 2000 Sports Sony Computer Entertainment 0.18
## 5539 GBA 2003 Misc THQ 0.24
## 5540 PS3 2013 Strategy Activision 0.10
## 5541 GC 2005 Fighting Tomy Corporation 0.00
## 5542 SNES 1991 Strategy Namco Bandai Games 0.00
## 5543 Wii 2010 Platform D3Publisher 0.19
## 5544 X360 2008 Action Sega 0.19
## 5545 DS 2010 Action Electronic Arts 0.22
## 5546 GC 2005 Sports Electronic Arts 0.25
## 5547 DS 2007 Misc Rocket Company 0.00
## 5548 X360 2011 Misc Take-Two Interactive 0.14
## 5549 X360 2007 Role-Playing Atari 0.19
## 5550 PS 1997 Misc Takara 0.00
## 5551 DS 2007 Sports Electronic Arts 0.29
## 5552 PS 1996 Sports Electronic Arts 0.16
## 5553 PS3 2010 Action Namco Bandai Games 0.09
## 5554 PS3 2007 Role-Playing Sony Computer Entertainment 0.20
## 5555 3DS 2015 Fighting Namco Bandai Games 0.12
## 5556 PS2 2007 Action Tecmo Koei 0.00
## 5557 XOne 2014 Shooter 505 Games 0.19
## 5558 GC 2006 Action THQ 0.25
## 5559 PS3 2011 Action Capcom 0.11
## 5560 2600 1983 Action Parker Bros. 0.31
## 5561 DS 2010 Role-Playing Atlus 0.13
## 5562 PSV 2012 Action Warner Bros. Interactive Entertainment 0.10
## 5563 GC 2005 Sports Electronic Arts 0.25
## 5564 Wii 2008 Misc Konami Digital Entertainment 0.30
## 5565 2600 1981 Action Starpath Corp. 0.30
## 5566 WiiU 2013 Action Warner Bros. Interactive Entertainment 0.20
## 5567 DS 2009 Simulation 505 Games 0.30
## 5568 GBA 2005 Puzzle Nintendo 0.12
## 5569 Wii 2006 Fighting Sega 0.22
## 5570 PS 1995 Fighting Tomy Corporation 0.00
## 5571 XB 2006 Sports Take-Two Interactive 0.24
## 5572 PS2 2004 Misc Play It 0.16
## 5573 PSV 2014 Action Sony Computer Entertainment 0.14
## 5574 PC 2011 Shooter Electronic Arts 0.13
## 5575 PS3 2010 Misc Konami Digital Entertainment 0.25
## 5576 X360 2009 Action Codemasters 0.15
## 5577 PSP 2009 Sports Take-Two Interactive 0.30
## 5578 PS3 2014 Fighting Namco Bandai Games 0.04
## 5579 PC 2008 Role-Playing Atari 0.32
## 5580 GBA 2004 Action Konami Digital Entertainment 0.23
## 5581 PS2 2004 Action THQ 0.16
## 5582 PSP 2012 Fighting Namco Bandai Games 0.00
## 5583 PC 2013 Action Warner Bros. Interactive Entertainment 0.13
## 5584 PS2 2003 Shooter Vivendi Games 0.16
## 5585 PS 1999 Sports Electronic Arts 0.18
## 5586 PS3 2015 Action Capcom 0.06
## 5587 X360 2006 Racing Atari 0.23
## 5588 PS3 2008 Action Sega 0.13
## 5589 PSV 2012 Sports Electronic Arts 0.30
## 5590 DS 2008 Action THQ 0.18
## 5591 X360 2009 Sports Electronic Arts 0.30
## 5592 X360 2012 Fighting Ubisoft Annecy 0.19
## 5593 DS 2011 Role-Playing Ghostlight 0.17
## 5594 N64 1998 Sports Acclaim Entertainment 0.30
## 5595 DS 2008 Misc Hudson Soft 0.00
## 5596 XOne 2016 Action Warner Bros. Interactive Entertainment 0.18
## 5597 PSP 2009 Fighting Namco Bandai Games 0.15
## 5598 PS2 2001 Racing Sony Computer Entertainment 0.16
## 5599 X360 2007 Puzzle Namco Bandai Games 0.14
## 5600 PS 1997 Puzzle Acclaim Entertainment 0.18
## 5601 XB 2005 Sports Electronic Arts 0.28
## 5602 PS3 2009 Action Codemasters 0.11
## 5603 PS 2002 Role-Playing Enix Corporation 0.00
## 5604 PSP 2010 Shooter Electronic Arts 0.12
## 5605 DS 2010 Platform D3Publisher 0.22
## 5606 Wii 2008 Racing Zoo Digital Publishing 0.30
## 5607 PC 2009 Action Eidos Interactive 0.00
## 5608 X360 2007 Action Vivendi Games 0.27
## 5609 X360 2008 Platform Vivendi Games 0.16
## 5610 X360 2006 Shooter Take-Two Interactive 0.27
## 5611 Wii 2009 Misc Take-Two Interactive 0.30
## 5612 PS 1996 Action Electronic Arts 0.05
## 5613 PS 1997 Sports Sony Computer Entertainment 0.18
## 5614 PS4 2014 Action Square Enix 0.09
## 5615 X360 2005 Sports Activision 0.28
## 5616 PS 1999 Simulation Ubisoft 0.11
## 5617 X360 2014 Shooter 505 Games 0.16
## 5618 PS2 2003 Fighting Atari 0.00
## 5620 PC 2010 Strategy Ubisoft 0.00
## 5621 PS2 2008 Action Take-Two Interactive 0.16
## 5622 PS4 2016 Action Ubisoft 0.03
## 5623 DS 2009 Sports THQ 0.18
## 5624 X360 2011 Misc Zoo Games 0.30
## 5625 PS2 2005 Shooter Ubisoft 0.16
## 5627 X360 2007 Simulation Konami Digital Entertainment 0.30
## 5628 Wii 2009 Simulation Electronic Arts 0.15
## 5629 GC 2003 Action Ubisoft 0.25
## 5630 PS2 2000 Simulation Sony Computer Entertainment 0.16
## 5631 N64 1997 Sports Konami Digital Entertainment 0.15
## 5632 PS 2000 Platform Ubisoft 0.18
## 5633 GB 1995 Puzzle Nintendo 0.00
## 5634 PS4 2016 Racing Codemasters 0.03
## 5635 GBA 2001 Action Majesco Entertainment 0.23
## 5636 PS 2000 Sports Electronic Arts 0.18
## 5637 DS 2011 Misc P2 Games 0.00
## 5638 PS 1997 Racing Sony Computer Entertainment 0.18
## 5639 Wii 2007 Sports Atari 0.27
## 5640 PS2 2003 Platform Konami Digital Entertainment 0.16
## 5641 PS 1995 Misc Electronic Arts 0.18
## 5642 PSP 2008 Sports Ubisoft 0.26
## 5643 PS2 2004 Misc Konami Digital Entertainment 0.16
## 5644 Wii 2008 Sports Ubisoft 0.00
## 5645 PS2 2001 Simulation ASCII Entertainment 0.00
## 5646 SAT 1995 Fighting Virgin Interactive 0.00
## 5647 PS 1999 Sports Konami Digital Entertainment 0.00
## 5648 GBA 2005 Misc N/A 0.23
## 5649 PS2 2002 Fighting Ubisoft 0.16
## 5650 PSP 2005 Fighting Electronic Arts 0.29
## 5651 GBA 2005 Platform THQ 0.23
## 5652 NES 1991 Puzzle BPS 0.00
## 5653 X360 2009 Action Electronic Arts 0.17
## 5654 PS2 2003 Sports Activision 0.16
## 5655 PS2 2009 Misc MTV Games 0.16
## 5656 DS 2009 Puzzle Rondomedia 0.14
## 5657 GBA 2002 Adventure BAM! Entertainment 0.23
## 5659 2600 1982 Action Data Age 0.30
## 5660 PS 1997 Adventure Acclaim Entertainment 0.18
## 5661 DS 2008 Sports Enterbrain 0.00
## 5662 PS4 2016 Platform Electronic Arts 0.10
## 5663 PSP 2007 Action Take-Two Interactive 0.04
## 5664 XB 2002 Sports Sega 0.24
## 5665 Wii 2008 Role-Playing Eidos Interactive 0.28
## 5666 Wii 2010 Strategy Square Enix 0.00
## 5667 SNES 1993 Role-Playing Hudson Soft 0.00
## 5668 PS2 2003 Fighting Namco Bandai Games 0.00
## 5669 GBA 2002 Misc Atari 0.23
## 5671 PS 1997 Simulation Human Entertainment 0.00
## 5672 PS 1997 Strategy Banpresto 0.00
## 5673 SNES 1994 Role-Playing SquareSoft 0.00
## 5674 XB 2003 Sports Microsoft Game Studios 0.24
## 5675 GBA 2001 Sports Electronic Arts 0.23
## 5676 PS2 2008 Sports Electronic Arts 0.03
## 5677 X360 2007 Shooter Codemasters 0.28
## 5678 DS 2009 Simulation Electronic Arts 0.29
## 5679 XB 2004 Strategy Deep Silver 0.24
## 5680 PS2 2001 Racing Gathering of Developers 0.16
## 5681 X360 2010 Sports Activision 0.28
## 5682 SNES 1996 Misc Hudson Soft 0.00
## 5683 PS 2001 Action THQ 0.18
## 5684 PS2 2000 Strategy Tecmo Koei 0.08
## 5685 PSP 2007 Action Activision 0.08
## 5686 X360 2011 Adventure Deep Silver 0.20
## 5687 X360 2010 Fighting PQube 0.23
## 5688 PS2 2002 Adventure Sony Computer Entertainment 0.15
## 5689 PS2 2009 Misc Activision 0.10
## 5690 PSP 2007 Racing Sony Computer Entertainment 0.13
## 5691 DS 2008 Misc Konami Digital Entertainment 0.00
## 5692 XOne 2015 Misc Ubisoft 0.24
## 5693 Wii 2008 Action Capcom 0.17
## 5694 PS2 2004 Action Tecmo Koei 0.00
## 5695 XB 2002 Adventure Microsoft Game Studios 0.22
## 5696 PS 1998 Platform Ocean 0.18
## 5697 PS3 2016 Action Warner Bros. Interactive Entertainment 0.10
## 5698 DC 1999 Sports Sega 0.00
## 5699 PC 2011 Role-Playing Microsoft Game Studios 0.09
## 5700 XOne 2015 Fighting Namco Bandai Games 0.18
## 5701 PC 2011 Role-Playing Ubisoft 0.12
## 5702 X360 2009 Racing Codemasters 0.09
## 5703 Wii 2010 Sports Namco Bandai Games 0.10
## 5704 PS 1997 Strategy Electronic Arts 0.18
## 5705 PSP 2011 Role-Playing Capcom 0.00
## 5706 XB 2003 Racing Vivendi Games 0.24
## 5707 Wii 2010 Misc Warner Bros. Interactive Entertainment 0.29
## 5708 PS 1995 Sports Sony Computer Entertainment 0.17
## 5709 Wii 2007 Misc Konami Digital Entertainment 0.29
## 5710 DS 2010 Action Disney Interactive Studios 0.25
## 5711 PS2 2007 Sports Konami Digital Entertainment 0.00
## 5712 DS 2007 Shooter Konami Digital Entertainment 0.28
## 5713 GBA 2003 Sports Electronic Arts 0.22
## 5714 PS3 2014 Shooter 505 Games 0.10
## 5715 SNES 1995 Platform Konami Digital Entertainment 0.00
## 5716 3DS 2011 Puzzle Square Enix 0.08
## 5717 GB 1999 Action Nintendo 0.00
## 5718 PSP 2008 Sports Konami Digital Entertainment 0.00
## 5719 PS 1998 Misc NewKidCo 0.17
## 5720 Wii 2008 Action Sega 0.28
## 5721 X360 2008 Misc Atari 0.27
## 5722 XB 2002 Sports Microsoft Game Studios 0.23
## 5723 PS2 2005 Sports Electronic Arts 0.15
## 5724 DS 2007 Adventure Activision 0.28
## 5725 DS 2005 Action Ubisoft 0.25
## 5726 3DS 2015 Misc Sega 0.15
## 5727 3DS 2014 Strategy Namco Bandai Games 0.00
## 5728 DS 2010 Platform Activision 0.19
## 5729 PS3 2007 Sports Sony Computer Entertainment 0.29
## 5730 PS4 2016 Shooter Deep Silver 0.05
## 5731 PS2 2003 Misc Sony Computer Entertainment 0.15
## 5732 PS 1996 Adventure Infogrames 0.17
## 5733 XB 2004 Strategy Konami Digital Entertainment 0.23
## 5734 XB 2005 Action Atari 0.23
## 5735 XB 2005 Action Midway Games 0.23
## 5736 DS 2006 Action Midway Games 0.27
## 5737 PS 1997 Shooter SquareSoft 0.10
## 5738 PS 1998 Misc Sony Computer Entertainment 0.17
## 5739 DS 2009 Puzzle Storm City Games 0.29
## 5740 XOne 2014 Action Deep Silver 0.15
## 5741 X360 2010 Action Capcom 0.19
## 5742 X360 2012 Sports Konami Digital Entertainment 0.08
## 5743 PS2 2003 Simulation Agetec 0.07
## 5744 PS2 2009 Strategy Namco Bandai Games 0.00
## 5745 DS 2007 Action CokeM Interactive 0.29
## 5746 SAT 1995 Shooter Sega 0.00
## 5747 PS 2001 Action Take-Two Interactive 0.17
## 5748 XB 2005 Shooter Ubisoft 0.23
## 5749 GBA 2005 Action THQ 0.22
## 5750 PS 1999 Strategy Banpresto 0.00
## 5751 PSP 2005 Platform Capcom 0.27
## 5752 Wii 2009 Sports Activision Value 0.29
## 5753 PSP 2010 Role-Playing Square Enix 0.07
## 5754 N64 1997 Sports Konami Digital Entertainment 0.00
## 5755 N64 1998 Platform Konami Digital Entertainment 0.06
## 5756 N64 1999 Racing Electronic Arts 0.25
## 5757 N64 1998 Racing Activision 0.25
## 5758 N64 1999 Sports Take-Two Interactive 0.25
## 5759 N64 2001 Simulation Nintendo 0.00
## 5760 PC 2015 Simulation Sega 0.00
## 5761 DS 2006 Fighting Namco Bandai Games 0.31
## 5762 X360 2010 Action Disney Interactive Studios 0.24
## 5763 XOne 2015 Action Disney Interactive Studios 0.18
## 5764 3DS 2014 Action Namco Bandai Games 0.00
## 5765 Wii 2008 Misc Zoo Games 0.29
## 5766 Wii 2010 Action Electronic Arts 0.18
## 5767 PS2 2007 Sports Konami Digital Entertainment 0.00
## 5768 Wii 2008 Misc Activision 0.28
## 5769 Wii 2008 Simulation Rising Star Games 0.25
## 5771 DS 2010 Strategy Konami Digital Entertainment 0.18
## 5772 GBA 2002 Action Ubisoft 0.22
## 5773 Wii 2009 Strategy Rising Star Games 0.15
## 5774 2600 1982 Action CBS Electronics 0.29
## 5775 PS2 2005 Misc Sony Computer Entertainment 0.15
## 5776 DS 2005 Platform Activision 0.25
## 5777 X360 2005 Sports Electronic Arts 0.28
## 5778 PS2 2008 Sports Ubisoft 0.15
## 5779 SAT 1997 Role-Playing Atlus 0.00
## 5780 PS3 2008 Sports Bethesda Softworks 0.28
## 5781 Wii 2010 Sports Activision 0.23
## 5782 X360 2006 Strategy Electronic Arts 0.28
## 5783 PS 1998 Racing Infogrames 0.17
## 5784 XB 2004 Misc Midway Games 0.24
## 5785 PS 1997 Simulation SquareSoft 0.00
## 5786 DS 2006 Puzzle Ubisoft 0.28
## 5787 PC 2012 Role-Playing Electronic Arts 0.14
## 5788 GC 2002 Racing Electronic Arts 0.24
## 5789 PSP 2012 Strategy Namco Bandai Games 0.00
## 5790 PS3 2012 Action Sony Computer Entertainment 0.14
## 5791 DS 2010 Puzzle Warner Bros. Interactive Entertainment 0.11
## 5792 PS 1998 Sports Sony Computer Entertainment 0.17
## 5793 PS2 2002 Racing LucasArts 0.15
## 5794 PSP 2007 Sports Electronic Arts 0.28
## 5795 PS3 2011 Fighting Rising Star Games 0.17
## 5796 PS2 2001 Sports Sony Computer Entertainment 0.15
## 5797 PS 1998 Misc Acclaim Entertainment 0.17
## 5798 PS2 2001 Misc Magix 0.15
## 5800 SNES 1993 Platform Konami Digital Entertainment 0.00
## 5801 2600 1981 Action Mattel Interactive 0.29
## 5802 PS2 2002 Action Activision 0.15
## 5803 PS 1999 Platform GT Interactive 0.17
## 5804 PSV 2013 Role-Playing Nippon Ichi Software 0.08
## 5805 PSP 2010 Role-Playing Marvelous Interactive 0.18
## 5806 Wii 2009 Sports Ubisoft 0.25
## 5807 DS 2009 Misc Mentor Interactive 0.29
## 5808 XOne 2013 Platform Activision 0.22
## 5809 PS 1999 Misc Activision 0.17
## 5810 PS3 2009 Action Activision 0.21
## 5811 PSP 2010 Action Konami Digital Entertainment 0.09
## 5812 XB 2002 Fighting Universal Interactive 0.23
## 5813 PS 2000 Puzzle Empire Interactive 0.17
## 5814 GBA 2001 Puzzle Nintendo 0.00
## 5815 PS 2000 Platform Sony Computer Entertainment 0.17
## 5816 PS2 2002 Action Sony Computer Entertainment 0.15
## 5817 SNES 1996 Role-Playing ASCII Entertainment 0.00
## 5818 SNES 1994 Fighting Namco Bandai Games 0.00
## 5819 PS2 2000 Role-Playing Activision 0.15
## 5820 3DS 2013 Adventure Warner Bros. Interactive Entertainment 0.18
## 5821 DS 2009 Simulation Ubisoft 0.28
## 5822 X360 2009 Role-Playing Banpresto 0.13
## 5823 GBA 2005 Action Activision 0.22
## 5824 DS 2006 Action THQ 0.28
## 5825 XB 2003 Racing Microsoft Game Studios 0.23
## 5826 GBA 2002 Racing TDK Mediactive 0.22
## 5827 PS3 2014 Action Namco Bandai Games 0.09
## 5828 X360 2014 Shooter Sega 0.15
## 5829 GB 1995 Misc Nintendo 0.00
## 5830 SAT 1996 Shooter Sega 0.00
## 5831 PS 1998 Fighting SquareSoft 0.17
## 5832 PSP 2005 Misc Sega 0.00
## 5833 Wii 2011 Misc Konami Digital Entertainment 0.24
## 5834 GBA 2003 Platform Universal Interactive 0.22
## 5835 PS 2000 Action 3DO 0.17
## 5836 PS3 2012 Strategy Namco Bandai Games 0.00
## 5837 PS3 2007 Shooter Midway Games 0.24
## 5838 Wii 2007 Simulation Nintendo 0.22
## 5840 PSP 2006 Puzzle Disney Interactive Studios 0.12
## 5841 WiiU 2014 Action Nintendo 0.20
## 5842 PC 2006 Simulation Deep Silver 0.00
## 5843 PS 1995 Platform Sony Computer Entertainment 0.05
## 5844 PS2 2005 Misc Konami Digital Entertainment 0.15
## 5845 DS 2010 Action Warner Bros. Interactive Entertainment 0.24
## 5846 GC 2002 Racing Acclaim Entertainment 0.23
## 5847 GBA 2005 Platform Disney Interactive Studios 0.22
## 5848 PS2 2003 Action Capcom 0.15
## 5849 X360 2011 Fighting Ubisoft 0.18
## 5850 X360 2011 Racing Activision 0.29
## 5851 DS 2009 Puzzle Sega 0.00
## 5852 Wii 2010 Platform Activision 0.19
## 5853 GBA 2005 Adventure Global Star 0.22
## 5854 PS2 2005 Adventure Sony Computer Entertainment 0.15
## 5855 SAT 1995 Role-Playing Sega 0.00
## 5856 GBA 2006 Misc Nintendo 0.00
## 5857 DS 2007 Strategy Banpresto 0.00
## 5858 PS 1997 Racing Sony Computer Entertainment 0.17
## 5859 PSP 2010 Strategy Sony Computer Entertainment 0.05
## 5860 PS2 2006 Adventure Sony Computer Entertainment 0.15
## 5861 PSP 2007 Platform Activision 0.01
## 5863 NES 1990 Sports Namco Bandai Games 0.00
## 5864 DS 2011 Misc Activision 0.27
## 5865 DS 2008 Strategy THQ 0.24
## 5866 DS 2007 Action Warner Bros. Interactive Entertainment 0.28
## 5867 PS2 2007 Strategy Banpresto 0.00
## 5868 PS3 2013 Role-Playing Square Enix 0.10
## 5869 SAT 1994 Sports Sega 0.00
## 5870 PC 2004 Simulation Electronic Arts 0.02
## 5872 3DS 2011 Action Ubisoft 0.14
## 5873 PS4 2015 Action Capcom 0.12
## 5874 DS 2009 Adventure Disney Interactive Studios 0.28
## 5875 X360 2007 Action Tecmo Koei 0.15
## 5876 Wii 2008 Racing Eidos Interactive 0.27
## 5877 PS4 2014 Action Tecmo Koei 0.09
## 5878 PSV 2014 Action Tecmo Koei 0.05
## 5879 Wii 2010 Action Capcom 0.08
## 5880 PS2 2002 Strategy Tecmo Koei 0.05
## 5881 DS 2008 Role-Playing Nintendo 0.00
## 5882 SNES 1994 Role-Playing Hudson Soft 0.00
## 5883 PS4 2015 Simulation Kalypso Media 0.05
## 5884 PS2 2001 Sports Midas Interactive Entertainment 0.15
## 5885 DS 2008 Role-Playing Nintendo 0.20
## 5886 N64 1999 Racing Take-Two Interactive 0.24
## 5887 N64 1999 Shooter Activision 0.24
## 5888 DS 2006 Misc Spike 0.00
## 5889 GBA 2003 Racing THQ 0.21
## 5890 DS 2009 Simulation Electronic Arts 0.15
## 5891 X360 2007 Action Electronic Arts 0.24
## 5892 PS4 2015 Action Activision 0.17
## 5893 PS 1997 Simulation Namco Bandai Games 0.00
## 5894 3DS 2011 Action Namco Bandai Games 0.00
## 5895 PS2 2000 Platform Ubisoft 0.15
## 5896 GBA 2003 Action Atari 0.21
## 5897 SNES 1997 Puzzle Hudson Soft 0.00
## 5898 X360 2006 Action Microsoft Game Studios 0.20
## 5899 PSP 2011 Role-Playing Atlus 0.13
## 5900 PS 2000 Action 3DO 0.17
## 5901 PC 2005 Racing Electronic Arts 0.02
## 5903 PS2 2003 Fighting THQ 0.15
## 5904 PS2 2000 Role-Playing Ubisoft 0.10
## 5905 SAT 1996 Strategy Sega 0.00
## 5906 DS 2007 Simulation Ubisoft 0.23
## 5907 X360 2011 Misc Ubisoft 0.15
## 5908 3DS 2012 Role-Playing Atlus 0.13
## 5909 SNES 1995 Sports Tecmo Koei 0.00
## 5910 PS 1996 Fighting Virgin Interactive 0.07
## 5911 X360 2007 Action Activision 0.26
## 5912 PC 2014 Sports Electronic Arts 0.00
## 5913 X360 2008 Simulation Konami Digital Entertainment 0.28
## 5915 Wii 2012 Misc Nordic Games 0.08
## 5916 PS2 2004 Fighting Acclaim Entertainment 0.15
## 5917 PSP 2006 Misc Capcom 0.27
## 5918 Wii 2009 Sports Zushi Games 0.26
## 5919 DS 2011 Shooter Activision 0.21
## 5920 PC 2003 Simulation Electronic Arts 0.01
## 5921 SNES 1995 Role-Playing Hudson Soft 0.00
## 5922 PSV 2014 Role-Playing Namco Bandai Games 0.00
## 5923 PS4 2016 Role-Playing Square Enix 0.06
## 5924 PS3 2011 Shooter Ubisoft 0.12
## 5925 PS2 2005 Strategy THQ 0.15
## 5926 DS 2009 Misc Majesco Entertainment 0.28
## 5927 Wii 2010 Misc Namco Bandai Games 0.00
## 5928 X360 2012 Shooter Activision 0.13
## 5929 PS2 2006 Simulation Electronic Arts 0.02
## 5930 PSV 2016 Role-Playing Square Enix 0.00
## 5931 DS 2007 Action Disney Interactive Studios 0.17
## 5932 GBA 2003 Sports Konami Digital Entertainment 0.00
## 5933 DS 2006 Platform Capcom 0.18
## 5934 DS 2005 Simulation Marvelous Interactive 0.30
## 5935 DS 2007 Sports Konami Digital Entertainment 0.00
## 5936 PS3 2009 Shooter Warner Bros. Interactive Entertainment 0.14
## 5937 GBA 2004 Action THQ 0.21
## 5938 GBA 2002 Platform THQ 0.21
## 5939 PS3 2009 Racing Activision 0.19
## 5940 PS 1997 Simulation Electronic Arts 0.16
## 5941 X360 2009 Misc Activision 0.16
## 5942 X360 2007 Role-Playing Square Enix 0.25
## 5943 GB 1999 Simulation Jorudan 0.00
## 5944 GC 2004 Action Activision 0.23
## 5945 PS3 2012 Fighting Tecmo Koei 0.00
## 5946 PS2 2004 Sports Midway Games 0.14
## 5947 XB 2003 Action Konami Digital Entertainment 0.22
## 5948 DS 2005 Adventure Nintendo 0.15
## 5949 X360 2008 Sports Electronic Arts 0.12
## 5950 DS 2007 Puzzle Avanquest 0.02
## 5951 Wii 2010 Action Warner Bros. Interactive Entertainment 0.22
## 5952 Wii 2006 Fighting Atari 0.24
## 5953 XB 2003 Sports Mud Duck Productions 0.22
## 5954 X360 2014 Action Square Enix 0.14
## 5955 GC 2002 Platform THQ 0.23
## 5956 Wii 2011 Misc Ubisoft 0.28
## 5957 2600 1986 Sports Atari 0.28
## 5958 DS 2020 Simulation Ubisoft 0.27
## 5959 PS2 2002 Role-Playing Ubisoft 0.14
## 5960 PSP 2006 Shooter Sony Computer Entertainment 0.26
## 5961 PS3 2010 Shooter Square Enix 0.09
## 5962 DS 2006 Platform Warner Bros. Interactive Entertainment 0.21
## 5963 X360 2009 Action Eidos Interactive 0.12
## 5964 X360 2010 Role-Playing Square Enix 0.13
## 5965 Wii 2009 Sports Take-Two Interactive 0.26
## 5966 PSP 2005 Role-Playing Activision 0.25
## 5967 DS 2010 Misc GSP 0.04
## 5968 X360 2009 Shooter Atari 0.16
## 5969 GBA 2003 Racing Electronic Arts 0.21
## 5970 GBA 2002 Sports Konami Digital Entertainment 0.00
## 5971 PS3 2007 Action Electronic Arts 0.25
## 5972 PSV 2014 Action Sony Computer Entertainment 0.01
## 5973 SAT 1995 Role-Playing Sega 0.00
## 5974 WiiU 2013 Action Ubisoft 0.18
## 5975 Wii 2007 Sports Konami Digital Entertainment 0.23
## 5976 XB 2002 Sports TDK Mediactive 0.22
## 5977 PS3 2014 Action Activision 0.06
## 5978 PS3 2009 Action Tecmo Koei 0.11
## 5979 PS 1999 Sports Konami Digital Entertainment 0.16
## 5980 PS2 2002 Adventure 505 Games 0.02
## 5981 X360 2009 Action THQ 0.20
## 5982 PSP 2010 Adventure Sega 0.00
## 5983 Wii 2007 Action Ubisoft 0.24
## 5984 Wii 2009 Action Namco Bandai Games 0.00
## 5985 PS2 2009 Action D3Publisher 0.11
## 5986 PS3 2010 Adventure Namco Bandai Games 0.09
## 5987 GC 2005 Sports Electronic Arts 0.23
## 5988 PS2 2000 Shooter Midas Interactive Entertainment 0.14
## 5989 Wii 2007 Sports Nintendo 0.02
## 5990 PSP 2008 Racing Empire Interactive 0.13
## 5991 PS 1998 Strategy Virgin Interactive 0.03
## 5992 PS 2000 Sports Konami Digital Entertainment 0.00
## 5993 PS3 2013 Shooter Take-Two Interactive 0.08
## 5994 X360 2005 Sports Electronic Arts 0.27
## 5995 Wii 2009 Misc Activision 0.14
## 5996 SAT 1996 Sports Sega 0.00
## 5997 DS 2009 Role-Playing Atlus 0.14
## 5998 PS 2000 Misc Hasbro Interactive 0.16
## 5999 PS 1997 Strategy Namco Bandai Games 0.00
## 6000 PS2 2008 Platform Sony Computer Entertainment 0.13
## 6001 Wii 2010 Platform D3Publisher 0.17
## 6002 PS2 2006 Role-Playing Tecmo Koei 0.14
## 6003 SNES 1994 Misc Enix Corporation 0.00
## 6004 X360 2010 Misc Konami Digital Entertainment 0.25
## 6005 Wii 2011 Action Electronic Arts 0.13
## 6006 GC 2002 Fighting Namco Bandai Games 0.00
## 6007 PS3 2012 Action Sony Computer Entertainment 0.18
## 6008 2600 1983 Action Activision 0.27
## 6009 DS 2009 Simulation Ubisoft 0.27
## 6010 XB 2005 Shooter Midway Games 0.22
## 6011 Wii 2011 Misc Ubisoft 0.22
## 6012 Wii 2010 Misc Disney Interactive Studios 0.18
## 6013 PSP 2010 Simulation Namco Bandai Games 0.06
## 6014 GBA 2003 Simulation Jorudan 0.00
## 6015 PS3 2011 Action Sony Computer Entertainment 0.13
## 6016 X360 2013 Strategy Activision 0.16
## 6017 PS2 2004 Platform Capcom 0.14
## 6018 Wii 2009 Adventure Ubisoft 0.13
## 6019 PS2 2005 Racing Take-Two Interactive 0.14
## 6020 PSV 2012 Action Nihon Falcom Corporation 0.15
## 6021 3DS 2012 Action Electronic Arts 0.06
## 6022 2600 1981 Action Unknown 0.27
## 6023 PS2 2001 Sports Konami Digital Entertainment 0.00
## 6024 N64 1998 Racing Acclaim Entertainment 0.23
## 6025 N64 1998 Racing Kemco 0.23
## 6026 N64 1999 Fighting Titus 0.23
## 6027 N64 1999 Racing Acclaim Entertainment 0.23
## 6028 N64 1999 Puzzle Nintendo 0.22
## 6029 N64 1999 Sports Nintendo 0.23
## 6030 N64 1999 Racing Electronic Arts 0.23
## 6031 N64 1997 Fighting Midway Games 0.23
## 6032 PS3 2007 Action Tecmo Koei 0.10
## 6033 PC 2011 Shooter Wargaming.net 0.00
## 6034 DS 2010 Puzzle Avanquest 0.00
## 6035 GBA 2003 Misc Atari 0.21
## 6036 PS2 2009 Fighting THQ 0.14
## 6037 X360 2008 Shooter Codemasters 0.23
## 6038 PS2 2005 Simulation Codemasters 0.14
## 6039 Wii 2009 Action Capcom 0.15
## 6040 GC 2004 Role-Playing Electronic Arts 0.22
## 6041 3DS 2013 Action Disney Interactive Studios 0.16
## 6042 X360 2012 Role-Playing Microsoft Game Studios 0.18
## 6044 3DS 2014 Action Sega 0.17
## 6045 Wii 2012 Misc Nintendo 0.00
## 6046 XB 2007 Sports Electronic Arts 0.22
## 6047 PS 1996 Misc Takara 0.00
## 6048 XB 2003 Role-Playing Ubisoft 0.22
## 6049 X360 2011 Shooter Codemasters 0.10
## 6050 PS3 2015 Action Namco Bandai Games 0.00
## 6051 XB 2005 Action THQ 0.22
## 6052 PS 1996 Sports Sony Computer Entertainment 0.16
## 6053 X360 2011 Action Activision 0.13
## 6054 SNES 1991 Role-Playing Angel Studios 0.00
## 6055 X360 2013 Racing Codemasters 0.08
## 6056 Wii 2008 Simulation Destineer 0.27
## 6057 Wii 2007 Puzzle D3Publisher 0.26
## 6058 PS2 2002 Misc TDK Mediactive 0.14
## 6059 DC 2002 Adventure Sega 0.00
## 6060 PS2 2005 Role-Playing Sega 0.07
## 6061 PS2 2002 Strategy Tecmo Koei 0.06
## 6062 DS 2004 Simulation Electronic Arts 0.27
## 6063 X360 2013 Role-Playing Square Enix 0.15
## 6064 DS 2004 Puzzle Sega 0.17
## 6065 PS3 2009 Misc Electronic Arts 0.12
## 6066 DS 2008 Puzzle Capcom 0.26
## 6067 3DS 2012 Racing Sega 0.12
## 6068 Wii 2007 Action Activision 0.26
## 6069 PS 2000 Sports Midas Interactive Entertainment 0.16
## 6070 Wii 2008 Simulation Deep Silver 0.27
## 6071 3DS 2013 Misc Namco Bandai Games 0.00
## 6072 PC 2014 Shooter Take-Two Interactive 0.11
## 6073 PS2 2007 Sports Ubisoft 0.14
## 6074 PS3 2013 Fighting Arc System Works 0.13
## 6075 PS 2000 Racing Infogrames 0.16
## 6076 PS2 2004 Role-Playing Square Enix 0.00
## 6077 PS 1996 Misc Sony Computer Entertainment 0.03
## 6078 PS2 2003 Platform Ubisoft 0.14
## 6079 DS 2008 Adventure Konami Digital Entertainment 0.00
## 6080 PS2 2004 Shooter Midway Games 0.14
## 6081 Wii 2010 Puzzle Storm City Games 0.27
## 6082 PS 1999 Platform Sony Computer Entertainment 0.16
## 6083 X360 2009 Action Konami Digital Entertainment 0.13
## 6084 DS 2011 Simulation Activision 0.27
## 6085 PS2 2006 Role-Playing Square Enix 0.00
## 6086 PS 1999 Simulation Konami Digital Entertainment 0.00
## 6087 X360 2007 Racing Electronic Arts 0.26
## 6088 PC 2016 Role-Playing Activision 0.14
## 6089 SNES 1992 Strategy Tecmo Koei 0.00
## 6090 DS 2008 Sports Konami Digital Entertainment 0.00
## 6091 PS3 2011 Action Ignition Entertainment 0.11
## 6092 PS3 2012 Action Activision 0.12
## 6093 GC 2004 Platform Vivendi Games 0.22
## 6094 PSP 2008 Action Tecmo Koei 0.06
## 6095 DS 2007 Puzzle THQ 0.26
## 6096 XB 2003 Sports Microsoft Game Studios 0.21
## 6097 PS 1996 Sports Electronic Arts 0.16
## 6098 DS 2008 Action THQ 0.26
## 6099 DS 2011 Misc Nintendo 0.00
## 6100 DS 2010 Action Activision 0.26
## 6101 GBA 2001 Platform Interplay 0.20
## 6102 GBA 2003 Role-Playing Nintendo 0.08
## 6103 PS3 2007 Action Sega 0.14
## 6104 X360 2012 Racing Codemasters 0.07
## 6105 DS 2008 Sports THQ 0.26
## 6106 X360 2011 Sports 505 Games 0.03
## 6107 Wii 2009 Action Activision 0.11
## 6108 PS2 2003 Racing Ubisoft 0.14
## 6109 PS2 2008 Misc Sony Computer Entertainment 0.14
## 6110 X360 2009 Shooter Rising Star Games 0.15
## 6111 PS 1997 Racing Playmates 0.16
## 6112 PS3 2012 Sports Sony Computer Entertainment 0.00
## 6113 GBA 2003 Sports Activision 0.20
## 6114 GBA 2005 Action Atari 0.20
## 6115 DS 2007 Adventure Game Factory 0.26
## 6116 SNES 1995 Fighting Human Entertainment 0.00
## 6117 DS 2007 Simulation THQ 0.26
## 6118 SNES 1994 Sports Konami Digital Entertainment 0.00
## 6119 XOne 2014 Action Konami Digital Entertainment 0.15
## 6120 PS 2000 Platform Ubisoft 0.16
## 6121 XB 2005 Action Take-Two Interactive 0.21
## 6122 X360 2010 Misc Electronic Arts 0.16
## 6123 PS2 2001 Role-Playing Midway Games 0.09
## 6124 Wii 2010 Sports Take-Two Interactive 0.24
## 6125 PS4 2016 Fighting Namco Bandai Games 0.10
## 6127 XB 2002 Sports Activision 0.21
## 6128 GBA 2006 Role-Playing Konami Digital Entertainment 0.20
## 6129 GBA 2001 Action Activision 0.20
## 6130 PS2 2003 Racing Namco Bandai Games 0.14
## 6131 PS3 2010 Sports Activision 0.18
## 6132 PS2 2003 Sports Namco Bandai Games 0.00
## 6133 GC 2003 Racing Acclaim Entertainment 0.22
## 6134 WS 1999 Role-Playing Namco Bandai Games 0.00
## 6135 GBA 2005 Action Activision 0.20
## 6136 PS3 2008 Action Sony Computer Entertainment 0.00
## 6137 PS4 2016 Sports Konami Digital Entertainment 0.01
## 6138 X360 2006 Simulation Sega 0.24
## 6139 XB 2005 Fighting Electronic Arts 0.21
## 6140 SAT 1995 Fighting SNK Playmore 0.00
## 6141 PSP 2006 Adventure Disney Interactive Studios 0.25
## 6142 DS 2009 Action Ubisoft 0.15
## 6143 GBA 2004 Simulation Majesco Entertainment 0.20
## 6144 Wii 2006 Adventure THQ 0.24
## 6145 GBA 2006 Role-Playing Nintendo 0.00
## 6146 2600 1982 Action Tigervision 0.26
## 6147 PS2 2004 Action Capcom 0.14
## 6148 N64 1999 Sports Electronic Arts 0.27
## 6149 DS 2010 Action Konami Digital Entertainment 0.16
## 6150 WiiU 2013 Racing Electronic Arts 0.14
## 6151 PS 2002 Action Hamster Corporation 0.16
## 6152 PS3 2010 Shooter Namco Bandai Games 0.10
## 6153 PS2 2003 Action Electronic Arts 0.14
## 6155 XB 2003 Fighting Microsoft Game Studios 0.21
## 6156 GB 1991 Platform Nintendo 0.00
## 6157 DS 2007 Strategy Konami Digital Entertainment 0.13
## 6158 XOne 2016 Fighting Namco Bandai Games 0.19
## 6159 GBA 2002 Fighting Atari 0.20
## 6160 PSV 2013 Platform Sony Computer Entertainment Europe 0.16
## 6161 PSP 2011 Role-Playing Namco Bandai Games 0.00
## 6162 NES 1991 Sports Namco Bandai Games 0.00
## 6163 PS2 2002 Misc Sammy Corporation 0.00
## 6164 PS2 2007 Action Empire Interactive 0.14
## 6165 GB 1991 Platform Nintendo 0.00
## 6166 SNES 1991 Action Tecmo Koei 0.00
## 6167 PS2 2008 Action Disney Interactive Studios 0.12
## 6168 GBA 2002 Platform THQ 0.20
## 6169 DS 2007 Sports Ubisoft 0.26
## 6170 PS2 2006 Puzzle Xplosiv 0.00
## 6171 PS2 2002 Racing THQ 0.14
## 6172 Wii 2010 Sports Mastiff 0.27
## 6173 PS3 2013 Shooter Electronic Arts 0.11
## 6174 PS2 2007 Shooter Sony Computer Entertainment 0.14
## 6175 XB 2003 Shooter SCi 0.21
## 6176 PS3 2015 Misc Activision 0.09
## 6177 PS2 2003 Platform Atari 0.14
## 6178 DS 2010 Misc Warner Bros. Interactive Entertainment 0.27
## 6179 PSP 2007 Sports Sony Computer Entertainment 0.26
## 6180 GBA 2001 Platform Interplay 0.20
## 6181 PS2 2006 Racing Atari 0.12
## 6182 WiiU 2012 Misc Nintendo 0.13
## 6183 DS 2007 Simulation Activision 0.26
## 6184 DS 2010 Misc Electronic Arts 0.16
## 6185 DS 2010 Racing THQ 0.18
## 6186 PS2 2004 Fighting Eidos Interactive 0.14
## 6187 X360 2007 Fighting Sega 0.20
## 6188 GBA 2002 Action Ubisoft 0.20
## 6189 PS 1998 Fighting Sony Computer Entertainment 0.09
## 6190 PS2 2006 Role-Playing 505 Games 0.14
## 6191 X360 2009 Platform Capcom 0.12
## 6192 PS2 2002 Sports Midway Games 0.14
## 6193 SNES 1995 Platform Laguna 0.03
## 6194 XB 2004 Sports Electronic Arts 0.21
## 6195 PS3 2011 Action Electronic Arts 0.11
## 6197 PS 1995 Sports Konami Digital Entertainment 0.16
## 6198 GBA 2003 Racing TDK Mediactive 0.20
## 6199 SNES 1992 Sports Ocean 0.00
## 6200 PS3 2014 Misc Ubisoft 0.12
## 6201 GC 2004 Action THQ 0.22
## 6202 XB 2001 Action Konami Digital Entertainment 0.21
## 6203 X360 2011 Sports Activision 0.24
## 6204 PS4 2016 Action Square Enix 0.00
## 6205 3DS 2012 Misc Activision 0.13
## 6206 PS4 2016 Sports Konami Digital Entertainment 0.00
## 6207 PS2 2007 Role-Playing Tecmo Koei 0.14
## 6208 PC 2004 Strategy Atari 0.01
## 6209 PS2 2001 Sports THQ 0.14
## 6210 PS2 2002 Sports Midway Games 0.14
## 6211 PSV 2014 Action Nippon Ichi Software 0.10
## 6213 DS 2006 Platform Activision 0.25
## 6214 PS2 2000 Sports Midas Interactive Entertainment 0.14
## 6215 DS 2010 Adventure Activision 0.26
## 6216 PSP 2007 Action Take-Two Interactive 0.23
## 6217 PS2 2001 Shooter Eidos Interactive 0.05
## 6218 SAT 1997 Strategy Elf 0.00
## 6219 PSP 2011 Misc Sony Computer Entertainment 0.05
## 6220 DS 2010 Misc Warner Bros. Interactive Entertainment 0.26
## 6221 PS 1998 Strategy Activision 0.15
## 6222 PS3 2009 Misc Activision 0.14
## 6223 PS2 2008 Action Namco Bandai Games 0.00
## 6224 XB 2005 Platform Activision 0.21
## 6225 Wii 2010 Action Activision 0.15
## 6226 PS2 2009 Action Activision 0.11
## 6227 SNES 1992 Racing Video System 0.00
## 6228 WiiU 2012 Role-Playing Electronic Arts 0.14
## 6229 DS 2011 Misc GameMill Entertainment 0.26
## 6230 SAT 1994 Simulation Sega 0.00
## 6231 PS2 2003 Sports Atari 0.14
## 6232 GC 2003 Misc Nintendo 0.00
## 6233 DS 2006 Puzzle Sega 0.00
## 6234 PS 1998 Role-Playing Konami Digital Entertainment 0.00
## 6235 X360 2006 Sports Electronic Arts 0.24
## 6236 PC 2012 Action Electronic Arts 0.09
## 6237 GC 2001 Sports Acclaim Entertainment 0.21
## 6238 Wii 2008 Misc MTV Games 0.25
## 6239 DS 2008 Misc Ubisoft 0.25
## 6240 PS3 2013 Platform Sony Computer Entertainment Europe 0.11
## 6241 PS 1998 Fighting Electronic Arts 0.15
## 6242 PS2 2008 Action THQ 0.14
## 6243 XB 2005 Action Activision 0.21
## 6244 PS2 2003 Sports Acclaim Entertainment 0.14
## 6245 PS2 2008 Sports Electronic Arts 0.14
## 6246 Wii 2008 Adventure Namco Bandai Games 0.00
## 6247 Wii 2010 Action THQ 0.22
## 6248 X360 2011 Action Capcom 0.17
## 6249 GBA 2001 Sports Konami Digital Entertainment 0.00
## 6250 PS2 2002 Adventure Ubisoft 0.14
## 6251 GBA 2003 Platform Konami Digital Entertainment 0.20
## 6252 PSP 2011 Sports Take-Two Interactive 0.22
## 6253 PC 2010 Strategy Ubisoft 0.04
## 6254 SAT 1996 Shooter Namco Bandai Games 0.00
## 6255 PS 1997 Simulation From Software 0.06
## 6256 GB 2000 Platform Nintendo 0.00
## 6257 3DS 2012 Misc Nippon Columbia 0.00
## 6258 Wii 2009 Racing Nintendo 0.26
## 6259 PSP 2012 Sports Konami Digital Entertainment 0.00
## 6260 PS4 2015 Action Activision 0.13
## 6261 SNES 1995 Misc Nichibutsu 0.00
## 6262 PSP 2008 Action Spike 0.06
## 6263 PS2 2007 Sports Activision Value 0.13
## 6264 DS 2007 Misc Nintendo 0.00
## 6265 PS2 2000 Sports Take-Two Interactive 0.13
## 6266 2600 1982 Action Coleco 0.26
## 6267 Wii 2014 Adventure Little Orbit 0.05
## 6268 DS 2007 Misc Electronic Arts 0.25
## 6269 XB 2003 Fighting Microsoft Game Studios 0.21
## 6270 PS3 2010 Sports Activision 0.18
## 6271 PS 1996 Fighting Tomy Corporation 0.00
## 6272 GC 2004 Fighting Atari 0.21
## 6274 GBA 2002 Racing Konami Digital Entertainment 0.20
## 6275 PS 1998 Action Capcom 0.00
## 6276 PS 1997 Action Tecmo Koei 0.09
## 6277 GBA 2001 Puzzle Unknown 0.20
## 6278 Wii 2013 Misc Majesco Entertainment 0.14
## 6279 DS 2005 Racing Electronic Arts 0.24
## 6280 PS2 2004 Role-Playing Square Enix 0.00
## 6281 PS 2001 Action Conspiracy Entertainment 0.15
## 6282 XB 2001 Sports Midway Games 0.20
## 6283 X360 2010 Action Sega 0.15
## 6285 DS 2009 Simulation Electronic Arts 0.25
## 6286 PS2 2009 Misc Electronic Arts 0.09
## 6287 DS 2008 Role-Playing Konami Digital Entertainment 0.09
## 6288 PS 2000 Adventure THQ 0.15
## 6289 PS 1997 Fighting Namco Bandai Games 0.02
## 6290 PS 2000 Sports Natsume 0.15
## 6291 PS 2001 Sports Acclaim Entertainment 0.15
## 6292 PS4 2015 Role-Playing Focus Home Interactive 0.09
## 6293 X360 2010 Strategy Ubisoft 0.12
## 6294 PS3 2013 Misc Sega 0.08
## 6295 DS 2006 Action Capcom 0.12
## 6296 DS 2005 Puzzle Namco Bandai Games 0.16
## 6297 2600 1984 Racing Activision 0.26
## 6298 PSP 2010 Simulation Sony Computer Entertainment 0.02
## 6299 PC 2014 Action Bethesda Softworks 0.09
## 6300 PS2 2004 Sports Sony Computer Entertainment 0.13
## 6301 PS 1996 Simulation Microprose 0.15
## 6302 PSP 2009 Sports Konami Digital Entertainment 0.00
## 6303 PSP 2006 Strategy Namco Bandai Games 0.00
## 6304 PS 2000 Sports Eidos Interactive 0.15
## 6305 PS2 2002 Racing Codemasters 0.13
## 6306 GC 2003 Role-Playing Nintendo 0.21
## 6307 SNES 1993 Fighting Namco Bandai Games 0.00
## 6308 X360 2008 Shooter Sega 0.15
## 6309 SNES 1994 Sports Namco Bandai Games 0.00
## 6310 3DS 2012 Misc Sega 0.07
## 6311 PS2 2004 Action Ubisoft 0.13
## 6312 GBA 2002 Racing Infogrames 0.19
## 6313 X360 2011 Sports Ubisoft 0.14
## 6314 PSP 2006 Sports Electronic Arts 0.20
## 6316 X360 2006 Sports Electronic Arts 0.25
## 6318 2600 1980 Misc Activision 0.25
## 6319 PS2 2009 Action Disney Interactive Studios 0.12
## 6321 PS3 2011 Action Ubisoft 0.06
## 6322 XB 2004 Racing Microsoft Game Studios 0.18
## 6323 GB 1996 Role-Playing ChunSoft 0.00
## 6324 PS2 2001 Racing Eidos Interactive 0.13
## 6325 GBA 2006 Platform Activision 0.19
## 6326 PS4 2015 Role-Playing Nippon Ichi Software 0.10
## 6327 GC 2005 Platform Disney Interactive Studios 0.21
## 6328 DS 2010 Strategy Ubisoft 0.09
## 6329 GC 2002 Platform Electronic Arts 0.21
## 6330 PS3 2014 Action Capcom 0.00
## 6331 GBA 2002 Role-Playing Konami Digital Entertainment 0.00
## 6332 GBA 2002 Fighting THQ 0.19
## 6333 GB 2000 Role-Playing Imagineer 0.00
## 6334 PS2 2004 Role-Playing Square Enix 0.13
## 6335 PS4 2014 Adventure Focus Home Interactive 0.08
## 6336 XB 2005 Racing Electronic Arts 0.20
## 6337 Wii 2007 Simulation THQ 0.24
## 6338 PS2 2004 Shooter THQ 0.13
## 6339 PS3 2008 Action Activision 0.20
## 6340 XB 2001 Sports Electronic Arts 0.20
## 6341 DS 2008 Misc Nordic Games 0.25
## 6342 PC 2011 Strategy Kalypso Media 0.10
## 6343 N64 1997 Sports Konami Digital Entertainment 0.25
## 6344 N64 1998 Sports Konami Digital Entertainment 0.00
## 6345 N64 1998 Sports Acclaim Entertainment 0.25
## 6346 N64 1999 Action Acclaim Entertainment 0.18
## 6347 N64 1999 Strategy Nintendo 0.22
## 6348 X360 2011 Shooter Ubisoft 0.14
## 6349 PS2 2005 Action Capcom 0.13
## 6350 3DS 2012 Action Nintendo 0.00
## 6351 PSP 2005 Role-Playing Ubisoft 0.00
## 6352 PS2 2007 Action Electronic Arts 0.13
## 6353 DS 2011 Misc D3Publisher 0.13
## 6354 PC 2013 Racing Electronic Arts 0.04
## 6355 PS2 2007 Racing THQ 0.13
## 6356 XB 2005 Action Activision 0.20
## 6357 GBA 2001 Sports Activision 0.19
## 6358 PS2 2000 Racing Namco Bandai Games 0.06
## 6359 DS 2010 Action THQ 0.13
## 6360 Wii 2008 Sports DTP Entertainment 0.23
## 6361 X360 2008 Misc Konami Digital Entertainment 0.25
## 6362 DS 2008 Role-Playing Atlus 0.10
## 6363 XOne 2014 Action Warner Bros. Interactive Entertainment 0.13
## 6364 SNES 1995 Sports Konami Digital Entertainment 0.00
## 6365 PS3 2008 Action Sega 0.22
## 6366 X360 2013 Action Capcom 0.12
## 6367 Wii 2010 Sports Take-Two Interactive 0.25
## 6368 PS3 2011 Racing Activision 0.25
## 6369 SNES 1994 Simulation Hect 0.00
## 6370 DS 2009 Role-Playing Atlus 0.14
## 6371 GBA 2001 Role-Playing Nintendo 0.00
## 6372 PS2 2001 Racing Acclaim Entertainment 0.13
## 6373 GC 2003 Sports Electronic Arts 0.21
## 6374 X360 2015 Fighting Namco Bandai Games 0.16
## 6375 XB 2002 Racing Electronic Arts 0.20
## 6376 X360 2009 Shooter SouthPeak Games 0.15
## 6377 PS 1999 Racing Electronic Arts 0.15
## 6378 DS 2010 Simulation Nintendo 0.25
## 6379 X360 2009 Role-Playing Square Enix 0.25
## 6380 DS 2010 Strategy Nintendo 0.00
## 6381 PS4 2016 Racing Codemasters 0.01
## 6382 GBA 2005 Misc Zoo Digital Publishing 0.19
## 6383 X360 2011 Misc Activision 0.25
## 6384 X360 2007 Action THQ 0.23
## 6385 X360 2008 Action Sega 0.22
## 6386 Wii 2009 Misc Take-Two Interactive 0.24
## 6387 PS 1999 Role-Playing Activision 0.15
## 6388 PS2 2002 Shooter BAM! Entertainment 0.13
## 6389 PS2 2010 Action Warner Bros. Interactive Entertainment 0.08
## 6390 PS 1998 Sports Konami Digital Entertainment 0.00
## 6391 3DS 2016 Adventure Capcom 0.00
## 6392 GC 2006 Simulation Electronic Arts 0.21
## 6393 DS 2008 Puzzle Majesco Entertainment 0.24
## 6394 3DS 2013 Action Warner Bros. Interactive Entertainment 0.16
## 6395 X360 2007 Sports Take-Two Interactive 0.18
## 6396 PS2 2003 Racing Sega 0.00
## 6397 DS 2007 Sports Electronic Arts 0.24
## 6398 PS2 2003 Simulation Konami Digital Entertainment 0.13
## 6399 DS 2009 Misc Ubisoft 0.25
## 6400 PS 1995 Shooter GT Interactive 0.15
## 6401 X360 2010 Action Rising Star Games 0.18
## 6403 Wii 2009 Puzzle THQ 0.25
## 6404 PS 2000 Sports Sony Computer Entertainment 0.15
## 6405 XB 2002 Sports Electronic Arts 0.20
## 6406 DS 2011 Misc Activision 0.25
## 6407 PS4 2015 Shooter 505 Games 0.09
## 6408 3DS 2014 Action Unknown 0.15
## 6409 DS 2010 Adventure THQ 0.19
## 6410 PSP 2006 Sports Electronic Arts 0.24
## 6411 PS 1996 Fighting Sony Computer Entertainment 0.06
## 6412 PS3 2014 Adventure Activision 0.11
## 6413 PS 1998 Role-Playing Crave Entertainment 0.15
## 6414 SNES 1995 Puzzle Banpresto 0.00
## 6415 X360 2009 Sports Activision Value 0.25
## 6416 PS2 2005 Fighting Namco Bandai Games 0.13
## 6417 PS2 2004 Strategy Atari 0.13
## 6418 PSV 2012 Action Tecmo Koei 0.13
## 6419 DS 2007 Puzzle Mumbo Jumbo 0.25
## 6420 X360 2006 Action Electronic Arts 0.23
## 6421 PS2 2007 Adventure Ubisoft 0.13
## 6422 DS 2009 Misc Mentor Interactive 0.25
## 6423 PSV 2011 Action Tecmo Koei 0.06
## 6424 Wii 2009 Sports Take-Two Interactive 0.25
## 6425 PS3 2010 Sports Konami Digital Entertainment 0.00
## 6426 GBA 2003 Action Majesco Entertainment 0.19
## 6427 XOne 2015 Action Electronic Arts 0.15
## 6428 PS3 2011 Action Tecmo Koei 0.04
## 6429 Wii 2008 Sports Ubisoft 0.24
## 6430 Wii 2009 Simulation Ubisoft 0.25
## 6431 DS 2007 Simulation Majesco Entertainment 0.24
## 6432 Wii 2009 Misc Konami Digital Entertainment 0.16
## 6433 PS2 2006 Action Ubisoft 0.13
## 6434 Wii 2009 Sports Take-Two Interactive 0.14
## 6435 PS3 2012 Role-Playing Tecmo Koei 0.06
## 6436 X360 2012 Action Activision 0.18
## 6437 PSP 2010 Fighting Namco Bandai Games 0.11
## 6438 GBA 2004 Misc N/A 0.19
## 6439 XB 2003 Sports Sega 0.20
## 6440 PS 1997 Sports Tecmo Koei 0.00
## 6441 PS3 2006 Sports Sony Computer Entertainment 0.24
## 6442 PS2 2002 Misc Pacific Century Cyber Works 0.11
## 6443 Wii 2010 Shooter Mastiff 0.25
## 6444 X360 2007 Sports Take-Two Interactive 0.24
## 6445 GBA 2002 Role-Playing Atari 0.19
## 6446 X360 2014 Racing Ubisoft 0.06
## 6447 Wii 2011 Misc THQ 0.23
## 6448 X360 2007 Strategy Eidos Interactive 0.21
## 6449 DS 2005 Platform Ubisoft 0.21
## 6450 PS3 2013 Action Namco Bandai Games 0.00
## 6451 DC 1998 Shooter Sega 0.00
## 6452 Wii 2010 Action Electronic Arts 0.22
## 6453 PS3 2010 Simulation Namco Bandai Games 0.00
## 6454 Wii 2009 Simulation Electronic Arts 0.22
## 6455 PS2 2001 Action Take-Two Interactive 0.13
## 6456 XB 2002 Shooter Sega 0.16
## 6457 PS 1999 Sports Konami Digital Entertainment 0.00
## 6458 PS3 2010 Role-Playing Spike 0.24
## 6459 PS 1996 Role-Playing From Software 0.08
## 6460 PSV 2014 Misc Nippon Ichi Software 0.13
## 6461 3DS 2013 Action Namco Bandai Games 0.00
## 6462 DS 2009 Role-Playing Hudson Soft 0.08
## 6463 PS 1996 Sports Sony Computer Entertainment 0.15
## 6464 PS2 2007 Simulation Ubisoft 0.13
## 6465 PS2 2008 Shooter Activision Value 0.13
## 6466 Wii 2015 Action Activision 0.05
## 6467 PC 2008 Strategy Microsoft Game Studios 0.04
## 6468 PS 1997 Platform Sony Computer Entertainment 0.15
## 6469 DS 2009 Simulation Konami Digital Entertainment 0.00
## 6470 DS 2007 Role-Playing Namco Bandai Games 0.00
## 6471 PS2 2006 Sports Midway Games 0.13
## 6472 PSV 2014 Fighting Namco Bandai Games 0.00
## 6473 GBA 2002 Action THQ 0.19
## 6474 GEN 1994 Racing Sega 0.00
## 6475 PSP 2005 Racing Vivendi Games 0.16
## 6476 PS3 2010 Action Deep Silver 0.05
## 6477 PS2 2008 Adventure Disney Interactive Studios 0.09
## 6478 DS 2007 Misc Nintendo 0.00
## 6479 Wii 2009 Simulation Namco Bandai Games 0.24
## 6480 DS 2008 Adventure Codemasters 0.24
## 6481 3DS 2013 Sports Level 5 0.00
## 6482 PS2 2004 Racing Take-Two Interactive 0.13
## 6483 DS 2010 Misc Ubisoft 0.22
## 6484 PS2 2007 Role-Playing Sega 0.10
## 6485 Wii 2010 Simulation Atari 0.24
## 6486 PS3 2013 Sports Konami Digital Entertainment 0.00
## 6487 GBA 2002 Action THQ 0.19
## 6488 PS2 2006 Action Capcom 0.00
## 6489 PSP 2006 Fighting Namco Bandai Games 0.26
## 6490 Wii 2011 Role-Playing Nintendo 0.00
## 6491 GBA 2002 Platform THQ 0.19
## 6492 GBA 2006 Role-Playing Nintendo 0.00
## 6493 GBA 2005 Racing Electronic Arts 0.19
## 6494 PSV 2012 Misc Ubisoft 0.11
## 6495 PS 2000 Simulation Activision 0.15
## 6496 Wii 2009 Role-Playing Square Enix 0.13
## 6498 DS 2008 Simulation Majesco Entertainment 0.24
## 6499 GC 2002 Shooter LucasArts 0.20
## 6500 PS2 2002 Fighting Ubisoft 0.13
## 6501 DS 2011 Adventure Capcom 0.00
## 6502 Wii 2010 Misc Zoo Games 0.25
## 6503 DS 2007 Misc 505 Games 0.24
## 6504 Wii 2010 Sports Ubisoft 0.14
## 6505 DS 2009 Puzzle Warner Bros. Interactive Entertainment 0.00
## 6506 PC 2006 Role-Playing Take-Two Interactive 0.01
## 6507 PS3 2011 Sports Konami Digital Entertainment 0.00
## 6508 DS 2004 Sports Electronic Arts 0.24
## 6509 3DS 2014 Action Activision 0.14
## 6510 GBA 2006 Misc Konami Digital Entertainment 0.14
## 6511 GBA 2003 Sports Konami Digital Entertainment 0.00
## 6512 GBA 2004 Adventure Banpresto 0.00
## 6513 X360 2010 Strategy PopCap Games 0.24
## 6514 PS2 2002 Racing BAM! Entertainment 0.13
## 6515 PS3 2009 Misc Disney Interactive Studios 0.17
## 6516 DS 2009 Action Activision 0.17
## 6517 3DS 2013 Role-Playing Atlus 0.10
## 6518 PS 1999 Misc Enix Corporation 0.04
## 6519 PSP 2009 Misc Sega 0.00
## 6520 PS3 2007 Racing THQ 0.18
## 6521 PSP 2008 Fighting Namco Bandai Games 0.00
## 6522 PSP 2009 Action Capcom 0.00
## 6523 N64 1996 Action Activision 0.21
## 6524 N64 2000 Simulation LucasArts 0.21
## 6525 N64 1999 Shooter GT Interactive 0.21
## 6526 N64 1999 Shooter Acclaim Entertainment 0.21
## 6527 PS2 2007 Sports Electronic Arts 0.13
## 6528 PS2 2004 Simulation Indie Games 0.06
## 6529 PS2 2002 Sports Konami Digital Entertainment 0.13
## 6530 GBA 2002 Adventure NewKidCo 0.19
## 6531 PSV 2013 Role-Playing Marvelous Entertainment 0.13
## 6532 PS3 2014 Action Sega 0.00
## 6533 PSP 2009 Action Activision 0.11
## 6534 X360 2010 Sports Activision 0.17
## 6535 XB 2003 Sports TDK Mediactive 0.19
## 6536 GC 2001 Adventure Ubisoft 0.20
## 6537 X360 2014 Action Activision 0.10
## 6538 2600 1981 Sports Atari 0.24
## 6539 PS2 2009 Sports Electronic Arts 0.12
## 6540 DS 2007 Strategy Namco Bandai Games 0.00
## 6541 PS3 2007 Action Ubisoft 0.20
## 6542 Wii 2009 Action Activision 0.14
## 6543 XB 2003 Role-Playing Atari 0.19
## 6544 PS3 2012 Adventure Focus Home Interactive 0.05
## 6545 X360 2012 Role-Playing Focus Home Interactive 0.15
## 6546 DS 2011 Misc Rising Star Games 0.15
## 6547 PS 2000 Racing Acclaim Entertainment 0.14
## 6548 PS2 2001 Role-Playing Eidos Interactive 0.13
## 6549 GC 2003 Racing Vivendi Games 0.20
## 6550 Wii 2008 Misc Hudson Soft 0.01
## 6551 PSP 2009 Sports Sony Computer Entertainment 0.24
## 6552 DS 2004 Puzzle Nintendo 0.13
## 6553 PS3 2014 Action Tecmo Koei 0.00
## 6554 X360 2014 Racing Codemasters 0.08
## 6555 GBA 2004 Action Nintendo 0.10
## 6556 Wii 2007 Action THQ 0.24
## 6557 X360 2005 Action Ubisoft 0.20
## 6558 DS 2008 Adventure Game Factory 0.24
## 6559 PS2 2005 Simulation Banpresto 0.00
## 6560 GBA 2003 Action Konami Digital Entertainment 0.18
## 6561 SAT 1997 Fighting Capcom 0.00
## 6562 X360 2013 Shooter Electronic Arts 0.16
## 6563 GBA 2004 Misc N/A 0.18
## 6564 XB 2005 Adventure Electronic Arts 0.19
## 6565 PSP 2007 Racing Sega 0.03
## 6566 PS2 2004 Fighting Ignition Entertainment 0.13
## 6567 PS 1998 Fighting Virgin Interactive 0.14
## 6568 X360 2008 Shooter Atari 0.08
## 6569 SAT 1996 Sports Sega 0.00
## 6570 Wii 2009 Sports 505 Games 0.17
## 6571 PS3 2013 Action Namco Bandai Games 0.10
## 6572 PS2 2002 Adventure Sony Computer Entertainment 0.13
## 6573 X360 2006 Sports Tecmo Koei 0.15
## 6574 Wii 2008 Simulation Ubisoft 0.23
## 6575 XB 2005 Misc THQ 0.19
## 6576 PS 1998 Racing Takara 0.00
## 6577 PS3 2012 Action Sony Computer Entertainment 0.00
## 6578 PS3 2011 Action Bethesda Softworks 0.12
## 6579 GC 2004 Platform Activision 0.20
## 6580 DS 2006 Adventure Disney Interactive Studios 0.23
## 6581 GBA 2002 Platform Electronic Arts 0.18
## 6582 PS 1999 Simulation From Software 0.07
## 6583 SNES 1999 Strategy Nintendo 0.00
## 6584 2600 1987 Shooter Atari 0.24
## 6585 PS3 2008 Racing Electronic Arts 0.22
## 6586 SAT 1997 Role-Playing Hudson Soft 0.00
## 6587 PS2 2007 Simulation Banpresto 0.00
## 6588 GBA 2002 Racing Liquid Games 0.18
## 6589 WiiU 2016 Action Nintendo 0.03
## 6590 DS 2009 Adventure Take-Two Interactive 0.24
## 6591 GC 2002 Sports Infogrames 0.20
## 6592 XB 2002 Sports Acclaim Entertainment 0.19
## 6593 PC 2010 Simulation Ubisoft 0.00
## 6594 PS2 2004 Racing Activision 0.13
## 6595 PS2 2009 Adventure Eidos Interactive 0.00
## 6596 PS 1999 Sports Electronic Arts 0.14
## 6597 PC 2011 Action LucasArts 0.10
## 6598 PS2 2003 Sports Sony Computer Entertainment 0.13
## 6599 PSP 2005 Racing Codemasters 0.00
## 6600 GBA 2002 Strategy Banpresto 0.00
## 6601 GBA 2002 Platform Konami Digital Entertainment 0.16
## 6602 DS 2005 Misc Nintendo 0.21
## 6603 PS2 2001 Racing Sony Computer Entertainment 0.13
## 6604 Wii 2011 Misc Take-Two Interactive 0.23
## 6605 SAT 1996 Role-Playing NEC 0.00
## 6606 XB 2004 Role-Playing Acclaim Entertainment 0.19
## 6607 GC 2004 Sports Electronic Arts 0.20
## 6608 GBA 2001 Fighting Ubisoft 0.18
## 6609 XB 2003 Simulation LucasArts 0.19
## 6610 PS 1998 Sports Axela 0.00
## 6611 PS3 2007 Action Electronic Arts 0.16
## 6612 SAT 1998 Strategy Namco Bandai Games 0.00
## 6613 DS 2008 Simulation Ubisoft 0.23
## 6614 PS2 2006 Action THQ 0.12
## 6615 DS 2010 Role-Playing Activision 0.22
## 6616 PSP 2007 Misc Crave Entertainment 0.24
## 6617 PS 1999 Role-Playing 3DO 0.14
## 6618 PS3 2012 Adventure Sony Computer Entertainment Europe 0.04
## 6619 PS4 2015 Platform Sony Computer Entertainment 0.09
## 6620 PS2 2009 Action LucasArts 0.17
## 6621 GC 2002 Adventure Vivendi Games 0.15
## 6622 X360 2008 Racing Electronic Arts 0.23
## 6623 PS2 2000 Sports Take-Two Interactive 0.12
## 6624 SNES 1991 Strategy Tecmo Koei 0.00
## 6625 PS3 2009 Shooter Vivendi Games 0.12
## 6626 Wii 2008 Action Capcom 0.14
## 6627 3DS 2011 Simulation Ubisoft 0.11
## 6628 GBA 2006 Platform Vivendi Games 0.18
## 6629 DS 2006 Action Disney Interactive Studios 0.23
## 6630 XB 2005 Misc Activision 0.19
## 6631 PS3 2014 Misc Sega 0.09
## 6632 SAT 1994 Shooter Acclaim Entertainment 0.00
## 6633 GB 2000 Sports Konami Digital Entertainment 0.00
## 6634 PS3 2012 Role-Playing Focus Home Interactive 0.10
## 6635 GC 2006 Action Midway Games 0.20
## 6636 PS2 2003 Misc Disney Interactive Studios 0.12
## 6637 XB 2002 Sports Electronic Arts 0.19
## 6638 DS 2009 Misc Ubisoft 0.21
## 6639 PS 1998 Fighting Titus 0.14
## 6640 GBA 2002 Platform Disney Interactive Studios 0.18
## 6641 PSP 2010 Misc Sega 0.00
## 6642 PS 1994 Strategy ArtDink 0.00
## 6643 XB 2001 Misc Microsoft Game Studios 0.19
## 6644 PS 1999 Misc Ubisoft 0.14
## 6645 Wii 2007 Sports Activision 0.22
## 6646 XB 2003 Sports Microsoft Game Studios 0.20
## 6647 PS 2000 Shooter Sunsoft 0.14
## 6649 GBA 2004 Misc N/A 0.18
## 6650 X360 2006 Racing THQ 0.22
## 6651 X360 2012 Action Activision 0.14
## 6652 X360 2011 Action THQ 0.16
## 6653 PS3 2009 Action THQ 0.15
## 6654 PS3 2012 Simulation Konami Digital Entertainment 0.10
## 6655 X360 2008 Action Activision 0.12
## 6656 PS 1996 Racing Psygnosis 0.14
## 6657 DS 2007 Simulation Empire Interactive 0.09
## 6658 PS 2001 Action BAM! Entertainment 0.14
## 6659 X360 2007 Action Electronic Arts 0.22
## 6660 PS2 2008 Action Tecmo Koei 0.00
## 6661 PS3 2011 Misc Ubisoft 0.10
## 6662 3DS 2013 Sports Electronic Arts 0.00
## 6663 XB 2004 Shooter Vivendi Games 0.19
## 6664 GBA 2001 Puzzle Activision 0.10
## 6665 GC 2005 Shooter Electronic Arts 0.19
## 6666 Wii 2008 Action Activision 0.22
## 6667 GC 2003 Platform Sega 0.19
## 6668 GBA 2001 Misc Midway Games 0.18
## 6669 X360 2009 Action THQ 0.25
## 6670 WS 2001 Role-Playing SquareSoft 0.00
## 6671 PS2 2002 Racing Sony Computer Entertainment 0.12
## 6672 X360 2011 Action Activision 0.18
## 6673 PSP 2008 Sports Electronic Arts 0.06
## 6674 PS 1997 Role-Playing Gust 0.00
## 6675 X360 2006 Action THQ 0.21
## 6676 GBA 2004 Misc Majesco Entertainment 0.18
## 6677 XB 2005 Sports Electronic Arts 0.19
## 6678 XB 2004 Misc Atari 0.19
## 6679 PS 2000 Fighting Ubisoft 0.14
## 6680 XB 2003 Shooter Ubisoft 0.16
## 6681 X360 2007 Racing THQ 0.23
## 6682 NG 1994 Fighting SNK 0.00
## 6683 Wii 2007 Fighting Midway Games 0.21
## 6684 X360 2008 Sports Take-Two Interactive 0.14
## 6685 N64 1999 Role-Playing Konami Digital Entertainment 0.16
## 6686 N64 1999 Sports Midway Games 0.23
## 6687 N64 1998 Sports Fox Interactive 0.20
## 6688 N64 1997 Misc Take-Two Interactive 0.20
## 6689 N64 1997 Racing Ocean 0.20
## 6690 N64 1997 Racing Ubisoft 0.11
## 6691 N64 1998 Action GT Interactive 0.20
## 6692 N64 1997 Sports Midway Games 0.23
## 6693 N64 1999 Sports Nintendo 0.20
## 6694 PS4 2015 Fighting Namco Bandai Games 0.07
## 6695 Wii 2010 Misc Mindscape 0.00
## 6696 PS2 2008 Action Vivendi Games 0.12
## 6697 GC 2003 Fighting Electronic Arts 0.19
## 6698 PS2 2005 Platform THQ 0.12
## 6699 PS 1996 Racing Sony Computer Entertainment 0.00
## 6700 XB 2005 Simulation Electronic Arts 0.19
## 6701 PS 1998 Misc Interplay 0.14
## 6702 XOne 2015 Role-Playing Square Enix 0.15
## 6703 PS2 2003 Sports Sega 0.12
## 6704 DS 2006 Role-Playing Nintendo 0.00
## 6705 SAT 1998 Sports Sega 0.00
## 6706 PC 2011 Adventure Take-Two Interactive 0.08
## 6707 SAT 1998 Adventure NEC Interchannel 0.00
## 6708 PC 2012 Action Square Enix 0.03
## 6709 X360 2008 Adventure Disney Interactive Studios 0.18
## 6710 PSP 2009 Role-Playing Activision 0.17
## 6711 3DS 2015 Role-Playing FuRyu 0.11
## 6712 PSP 2009 Role-Playing Nippon Ichi Software 0.10
## 6713 PS2 2005 Action Capcom 0.03
## 6714 Wii 2008 Misc Disney Interactive Studios 0.20
## 6715 PS 1995 Sports Acclaim Entertainment 0.14
## 6716 X360 2006 Shooter Ubisoft 0.20
## 6717 GBA 2002 Role-Playing Natsume 0.18
## 6718 GBA 2002 Sports Konami Digital Entertainment 0.00
## 6719 PS3 2011 Action Activision 0.14
## 6720 PS 1998 Action Acclaim Entertainment 0.14
## 6721 Wii 2009 Action Activision 0.19
## 6722 PS2 2002 Sports Namco Bandai Games 0.00
## 6723 X360 2012 Action Tecmo Koei 0.16
## 6724 PS3 2010 Platform D3Publisher 0.12
## 6725 PS3 2015 Action Sega 0.00
## 6726 Wii 2010 Action Ubisoft 0.11
## 6727 PS2 2008 Action Tecmo Koei 0.12
## 6728 DS 2009 Simulation Ubisoft 0.16
## 6729 2600 1982 Action 20th Century Fox Video Games 0.23
## 6730 XB 2005 Shooter Ubisoft 0.19
## 6731 PS 1999 Role-Playing Ubisoft 0.14
## 6732 PS3 2010 Misc Sony Computer Entertainment 0.07
## 6733 X360 2007 Simulation 505 Games 0.19
## 6734 PS 2000 Racing Electronic Arts 0.14
## 6735 DS 2009 Simulation Electronic Arts 0.23
## 6736 Wii 2010 Platform THQ 0.22
## 6737 PS2 2006 Adventure Ubisoft 0.12
## 6738 Wii 2007 Sports Capcom 0.20
## 6739 PS2 2001 Racing Sony Computer Entertainment 0.12
## 6740 GC 2005 Platform Midway Games 0.19
## 6741 PS2 2007 Racing THQ 0.12
## 6742 X360 2009 Racing Activision 0.14
## 6743 PS3 2007 Action Electronic Arts 0.18
## 6744 PC 2015 Strategy Ubisoft 0.02
## 6745 PS 1999 Strategy Electronic Arts 0.14
## 6746 DS 2008 Puzzle Rising Star Games 0.06
## 6747 Wii 2009 Role-Playing Capcom 0.00
## 6748 PS3 2009 Racing Codemasters 0.08
## 6749 PS3 2010 Misc Electronic Arts 0.18
## 6750 X360 2013 Action Konami Digital Entertainment 0.06
## 6751 PS 1996 Shooter Konami Digital Entertainment 0.14
## 6752 PS 1996 Platform Sony Computer Entertainment 0.05
## 6753 GC 2002 Misc Atari 0.19
## 6754 PS3 2008 Racing Black Bean Games 0.12
## 6755 PS2 2004 Role-Playing Square Enix 0.12
## 6756 PS 1997 Racing Takara 0.00
## 6757 DS 2009 Adventure Disney Interactive Studios 0.22
## 6758 GBA 2002 Action Vivendi Games 0.18
## 6759 PS3 2007 Sports Spike 0.23
## 6760 GC 2005 Role-Playing Activision 0.19
## 6761 GBA 2005 Misc Zoo Digital Publishing 0.18
## 6762 PSP 2007 Racing Ubisoft 0.03
## 6763 PS3 2008 Shooter Codemasters 0.21
## 6764 GC 2002 Sports Nintendo 0.19
## 6765 3DS 2014 Adventure Little Orbit 0.04
## 6766 X360 2011 Action Ubisoft 0.07
## 6767 GBA 2004 Racing Nintendo 0.11
## 6768 GBA 2004 Shooter Nintendo 0.08
## 6769 PS2 2008 Adventure THQ 0.12
## 6770 DS 2013 Simulation Disney Interactive Studios 0.13
## 6771 PS2 2005 Adventure Global Star 0.12
## 6772 DS 2008 Role-Playing Namco Bandai Games 0.00
## 6773 PS2 2006 Role-Playing Namco Bandai Games 0.12
## 6774 X360 2011 Action Tecmo Koei 0.16
## 6775 GBA 2005 Simulation Ubisoft 0.18
## 6776 PS 2001 Sports Konami Digital Entertainment 0.00
## 6777 DS 2010 Shooter Activision 0.22
## 6779 XOne 2014 Racing Ubisoft 0.12
## 6780 PSV 2015 Action Warner Bros. Interactive Entertainment 0.03
## 6781 DS 2008 Role-Playing Rising Star Games 0.11
## 6782 DS 2006 Adventure Disney Interactive Studios 0.23
## 6783 PS3 2010 Racing Activision 0.21
## 6784 DS 2011 Action Konami Digital Entertainment 0.00
## 6785 PS 1995 Strategy Mindscape 0.14
## 6786 Wii 2009 Adventure Ubisoft 0.12
## 6787 PS 1996 Sports Tecmo Koei 0.04
## 6788 PS 1997 Action Sony Computer Entertainment 0.14
## 6789 PSP 2005 Sports Sony Computer Entertainment 0.23
## 6790 PS 2000 Shooter 3DO 0.14
## 6791 X360 2008 Strategy Electronic Arts 0.16
## 6792 X360 2011 Misc Sega 0.16
## 6793 WiiU 2012 Sports Electronic Arts 0.22
## 6794 PSV 2014 Adventure Marvelous Interactive 0.11
## 6795 PC 2011 Shooter THQ 0.11
## 6796 DS 2009 Misc Disney Interactive Studios 0.08
## 6797 X360 2009 Action Activision 0.20
## 6798 PS2 2002 Misc THQ 0.12
## 6799 PS 1999 Simulation Konami Digital Entertainment 0.00
## 6800 PS2 2003 Sports Konami Digital Entertainment 0.12
## 6801 3DS 2011 Simulation Namco Bandai Games 0.10
## 6802 X360 2009 Sports Activision Value 0.23
## 6803 XB 2004 Racing Namco Bandai Games 0.18
## 6804 PS 1995 Sports Sony Computer Entertainment 0.00
## 6805 PS2 2003 Platform Acclaim Entertainment 0.12
## 6806 DS 2008 Action Sega 0.22
## 6808 PS2 2006 Fighting Capcom 0.11
## 6809 PSP 2011 Sports Konami Digital Entertainment 0.00
## 6810 DS 2009 Adventure Ubisoft 0.10
## 6811 PS2 2005 Shooter Electronic Arts 0.12
## 6812 DS 2006 Adventure Ubisoft 0.11
## 6813 GC 2005 Simulation Ubisoft 0.19
## 6814 XB 2002 Action Capcom 0.14
## 6815 GBA 2005 Platform Nintendo 0.17
## 6816 PS 1997 Fighting Xing Entertainment 0.04
## 6817 PS 1997 Action Psygnosis 0.13
## 6818 PS3 2010 Sports Ubisoft 0.06
## 6819 Wii 2010 Action Activision 0.13
## 6820 XB 2003 Racing TDK Mediactive 0.18
## 6821 PS3 2011 Role-Playing Nippon Ichi Software 0.05
## 6822 PS3 2008 Misc MTV Games 0.21
## 6823 Wii 2010 Sports Hudson Soft 0.15
## 6824 DS 2005 Action Electronic Arts 0.21
## 6825 PSP 2005 Misc Midway Games 0.21
## 6826 XOne 2015 Racing Codemasters 0.08
## 6827 3DS 2013 Platform Activision 0.10
## 6828 Wii 2010 Sports XS Games 0.23
## 6829 PSP 2008 Role-Playing Nippon Ichi Software 0.05
## 6830 Wii 2008 Misc Electronic Arts 0.20
## 6831 XB 2003 Racing Acclaim Entertainment 0.18
## 6832 Wii 2008 Misc MTV Games 0.17
## 6834 PS2 2005 Misc Sega 0.12
## 6835 PSV 2012 Fighting Capcom 0.14
## 6836 XB 2003 Shooter Namco Bandai Games 0.18
## 6837 PSP 2010 Platform D3Publisher 0.10
## 6838 PC 2010 Shooter THQ 0.00
## 6839 GC 2005 Action Ubisoft 0.19
## 6840 3DS 2015 Role-Playing Atlus 0.16
## 6841 Wii 2007 Misc Activision 0.22
## 6842 PS2 2003 Role-Playing Banpresto 0.00
## 6843 PSP 2010 Sports Konami Digital Entertainment 0.00
## 6844 GC 2001 Racing Electronic Arts 0.19
## 6845 Wii 2010 Adventure THQ 0.16
## 6846 Wii 2008 Sports Oxygen Interactive 0.02
## 6847 PS2 2006 Misc Sega 0.00
## 6848 XB 2001 Action Microsoft Game Studios 0.18
## 6849 DS 2007 Role-Playing Rising Star Games 0.16
## 6850 GBA 2004 Misc N/A 0.17
## 6851 Wii 2010 Action Warner Bros. Interactive Entertainment 0.17
## 6852 XB 2005 Fighting Atari 0.18
## 6853 DS 2008 Simulation THQ 0.22
## 6854 PS3 2012 Sports Electronic Arts 0.09
## 6855 PS2 2003 Role-Playing Sega 0.00
## 6856 GBA 2005 Puzzle Namco Bandai Games 0.17
## 6857 PS2 2005 Racing ValuSoft 0.12
## 6858 Wii 2009 Misc Ubisoft 0.22
## 6859 PS2 2007 Racing Activision 0.12
## 6860 PSP 2006 Role-Playing Rising Star Games 0.15
## 6861 GC 2004 Role-Playing Marvelous Interactive 0.19
## 6862 PSP 2009 Sports Electronic Arts 0.21
## 6863 X360 2006 Action Electronic Arts 0.20
## 6864 PS2 2008 Sports Konami Digital Entertainment 0.00
## 6865 PSP 2009 Racing THQ 0.18
## 6866 PS3 2009 Action Activision 0.19
## 6867 2600 1981 Action Taito 0.22
## 6868 N64 1999 Action Midway Games 0.19
## 6869 N64 1999 Misc Acclaim Entertainment 0.19
## 6870 N64 2000 Misc Midway Games 0.19
## 6871 N64 1999 Racing THQ 0.19
## 6872 N64 2000 Fighting Midway Games 0.19
## 6873 N64 2000 Action 3DO 0.19
## 6874 Wii 2008 Misc MTV Games 0.21
## 6875 PS2 2002 Sports Sega 0.12
## 6876 PS3 2009 Action Namco Bandai Games 0.00
## 6877 DS 2011 Action Electronic Arts 0.12
## 6878 XB 2003 Sports Electronic Arts 0.18
## 6879 PS 1998 Platform Ocean 0.13
## 6880 GC 2005 Action Activision 0.19
## 6881 Wii 2009 Sports Codemasters 0.00
## 6882 PSP 2007 Action Take-Two Interactive 0.22
## 6883 GBA 2005 Sports Activision 0.17
## 6884 DS 2007 Racing THQ 0.22
## 6885 DS 2009 Puzzle THQ 0.22
## 6886 DS 2008 Adventure PopCap Games 0.13
## 6887 GBA 2004 Platform Nintendo 0.00
## 6888 PS 1998 Shooter Acclaim Entertainment 0.13
## 6889 PS2 2003 Action Sony Computer Entertainment 0.00
## 6890 PS3 2011 Misc THQ 0.15
## 6891 3DS 2014 Action Warner Bros. Interactive Entertainment 0.09
## 6892 PS4 2014 Action Tecmo Koei 0.08
## 6893 XB 2003 Platform Vivendi Games 0.18
## 6894 PS2 2008 Simulation Konami Digital Entertainment 0.12
## 6895 X360 2012 Racing Codemasters 0.08
## 6896 X360 2009 Role-Playing DTP Entertainment 0.18
## 6897 2600 1980 Misc Atari 0.22
## 6898 SNES 1996 Role-Playing SquareSoft 0.00
## 6899 X360 2011 Action Activision 0.18
## 6900 Wii 2010 Adventure Namco Bandai Games 0.16
## 6901 3DS 2015 Platform Nintendo 0.09
## 6902 XB 2001 Racing Gathering of Developers 0.18
## 6903 PS 2002 Racing XS Games 0.13
## 6904 PSP 2009 Role-Playing GungHo 0.19
## 6905 DS 2010 Adventure Focus Home Interactive 0.07
## 6906 GBA 2004 Action Take-Two Interactive 0.17
## 6907 GBA 2004 Adventure Game Factory 0.17
## 6908 X360 2007 Misc Microsoft Game Studios 0.19
## 6909 DS 2009 Puzzle Ubisoft 0.00
## 6910 X360 2012 Action Capcom 0.15
## 6911 XOne 2016 Action Warner Bros. Interactive Entertainment 0.12
## 6912 X360 2009 Action Tecmo Koei 0.16
## 6913 PS2 2003 Misc Sony Computer Entertainment 0.12
## 6914 PS 1998 Action Interplay 0.13
## 6915 PS2 2004 Role-Playing Midway Games 0.12
## 6916 PSP 2009 Sports Electronic Arts 0.12
## 6917 DS 2008 Misc Activision 0.22
## 6918 PC 2011 Puzzle Focus Home Interactive 0.00
## 6919 PS3 2012 Role-Playing Deep Silver 0.04
## 6921 X360 2015 Misc Activision 0.12
## 6922 WiiU 2013 Misc Nintendo 0.06
## 6923 PS 1995 Sports Electronic Arts 0.13
## 6924 PS4 2014 Action Nippon Ichi Software 0.13
## 6925 X360 2009 Role-Playing Bethesda Softworks 0.16
## 6926 PS 2000 Action Sony Computer Entertainment 0.13
## 6928 X360 2011 Misc THQ 0.16
## 6929 PSV 2012 Action Warner Bros. Interactive Entertainment 0.09
## 6930 Wii 2010 Racing Focus Home Interactive 0.10
## 6931 DS 2009 Puzzle Nintendo 0.00
## 6932 PS 2000 Shooter Hasbro Interactive 0.13
## 6933 X360 2009 Action Electronic Arts 0.17
## 6934 PS3 2010 Role-Playing Tecmo Koei 0.08
## 6935 XB 2006 Sports Electronic Arts 0.18
## 6936 GBA 2003 Action Knowledge Adventure 0.17
## 6937 PSP 2013 Role-Playing Namco Bandai Games 0.00
## 6939 PS 1998 Misc NewKidCo 0.13
## 6940 2600 1988 Action Activision 0.22
## 6941 2600 1981 Shooter Mattel Interactive 0.22
## 6942 DS 2010 Puzzle Storm City Games 0.11
## 6943 X360 2009 Action Atari 0.16
## 6944 X360 2013 Shooter Take-Two Interactive 0.10
## 6945 DS 2008 Role-Playing Sega 0.09
## 6946 Wii 2011 Racing Activision 0.22
## 6947 PSV 2012 Action Konami Digital Entertainment 0.13
## 6948 DS 2006 Role-Playing Konami Digital Entertainment 0.17
## 6949 PS4 2014 Adventure Telltale Games 0.10
## 6950 WiiU 2012 Action Disney Interactive Studios 0.14
## 6951 PC 2011 Role-Playing Sony Online Entertainment 0.16
## 6952 PS2 2007 Racing Electronic Arts 0.12
## 6953 PS3 2008 Action Activision 0.12
## 6954 DS 2010 Misc Take-Two Interactive 0.16
## 6955 DS 2008 Racing Electronic Arts 0.18
## 6956 WiiU 2016 Action Warner Bros. Interactive Entertainment 0.12
## 6957 DS 2006 Role-Playing Takara Tomy 0.22
## 6958 PS2 2003 Platform BAM! Entertainment 0.11
## 6959 PS2 2004 Misc Konami Digital Entertainment 0.11
## 6960 DS 2010 Misc Disney Interactive Studios 0.16
## 6961 DS 2010 Simulation Konami Digital Entertainment 0.00
## 6962 3DS 2015 Role-Playing Nippon Ichi Software 0.09
## 6963 PS2 2006 Action Namco Bandai Games 0.00
## 6964 PS 1998 Fighting Virgin Interactive 0.13
## 6965 DS 2013 Platform Ubisoft 0.00
## 6966 Wii 2009 Misc THQ 0.00
## 6968 DS 2007 Racing Activision 0.22
## 6970 GBA 2003 Strategy Banpresto 0.00
## 6971 XB 2003 Racing Electronic Arts 0.18
## 6972 XB 2002 Action Electronic Arts 0.18
## 6973 PSV 2016 Action Warner Bros. Interactive Entertainment 0.07
## 6974 DS 2010 Action LucasArts 0.18
## 6975 XB 2005 Action Electronic Arts 0.18
## 6976 XOne 2013 Misc Majesco Entertainment 0.17
## 6977 PS3 2011 Action Namco Bandai Games 0.00
## 6978 3DS 2015 Action Nintendo 0.00
## 6979 DS 2005 Puzzle Nintendo 0.15
## 6980 X360 2011 Sports Sega 0.11
## 6981 DS 2011 Action THQ 0.16
## 6982 PS3 2008 Role-Playing Nippon Ichi Software 0.14
## 6983 DS 2008 Simulation 505 Games 0.22
## 6984 PS3 2011 Sports Activision 0.17
## 6985 DC 1999 Sports Sega 0.00
## 6986 PSP 2005 Puzzle Namco Bandai Games 0.13
## 6987 PSV 2011 Action Ubisoft 0.14
## 6988 PC 2015 Strategy Sega 0.09
## 6989 PSP 2005 Sports Electronic Arts 0.19
## 6990 X360 2010 Sports Sega 0.08
## 6991 XB 2002 Sports Sega 0.17
## 6992 PS3 2009 Misc Sony Computer Entertainment 0.00
## 6993 PS2 2004 Racing Atari 0.11
## 6994 XB 2003 Racing Empire Interactive 0.17
## 6995 PS3 2013 Action Tecmo Koei 0.00
## 6996 PSV 2012 Misc Sega 0.00
## 6997 PS3 2008 Shooter Sega 0.14
## 6998 PS3 2011 Misc Sony Computer Entertainment 0.13
## 6999 PS2 2001 Racing Acclaim Entertainment 0.11
## 7000 Wii 2007 Racing Zoo Digital Publishing 0.22
## 7001 Wii 2009 Misc MTV Games 0.22
## 7002 PS2 2002 Action Universal Interactive 0.11
## 7003 PS2 2006 Sports Sega 0.00
## 7004 Wii 2007 Action Warner Bros. Interactive Entertainment 0.21
## 7005 PS2 2005 Role-Playing Capcom 0.00
## 7006 N64 2000 Sports Acclaim Entertainment 0.22
## 7007 PSP 2005 Misc Play It 0.20
## 7008 PS4 2015 Role-Playing Namco Bandai Games 0.09
## 7009 GC 2002 Shooter Activision 0.18
## 7010 GC 2003 Action Ubisoft 0.18
## 7011 Wii 2008 Adventure Activision 0.20
## 7012 X360 2009 Misc MTV Games 0.22
## 7013 Wii 2010 Strategy THQ 0.11
## 7014 PS2 2003 Sports Sega 0.11
## 7015 GB 1997 Simulation Victor Interactive 0.00
## 7016 DS 2009 Simulation Ubisoft 0.16
## 7017 XB 2005 Action Vivendi Games 0.17
## 7018 PS3 2009 Adventure Disney Interactive Studios 0.14
## 7019 PS2 2002 Sports Sony Computer Entertainment 0.11
## 7020 XOne 2015 Action Activision 0.16
## 7021 PS 1998 Fighting Namco Bandai Games 0.13
## 7022 SAT 1995 Fighting Sega 0.00
## 7023 SAT 1996 Role-Playing Kadokawa Shoten 0.00
## 7024 GC 2002 Platform THQ 0.18
## 7025 DS 2008 Sports Ubisoft 0.21
## 7026 WiiU 2014 Action Warner Bros. Interactive Entertainment 0.10
## 7027 DS 2008 Misc Disney Interactive Studios 0.19
## 7028 X360 2005 Action Take-Two Interactive 0.21
## 7029 DS 2006 Strategy THQ 0.19
## 7030 DS 2008 Simulation Atari 0.20
## 7031 PS 2001 Shooter Ubisoft 0.13
## 7032 PS 2000 Sports Sony Computer Entertainment 0.13
## 7033 Wii 2007 Sports Detn8 Games 0.21
## 7034 GBA 2005 Misc Konami Digital Entertainment 0.17
## 7035 PSP 2013 Sports Electronic Arts 0.00
## 7037 PS 1998 Simulation Psygnosis 0.13
## 7038 DS 2010 Adventure Nintendo 0.00
## 7039 PSP 2008 Strategy Konami Digital Entertainment 0.00
## 7040 X360 2009 Action Tecmo Koei 0.13
## 7041 X360 2014 Fighting Namco Bandai Games 0.13
## 7042 DS 2008 Simulation GSP 0.21
## 7043 GBA 2005 Sports Electronic Arts 0.17
## 7044 Wii 2011 Misc Konami Digital Entertainment 0.15
## 7045 PS3 2007 Racing Electronic Arts 0.15
## 7046 NG 1994 Fighting SNK 0.00
## 7047 PS 1996 Action American Softworks 0.13
## 7048 DS 2008 Role-Playing Rising Star Games 0.21
## 7049 XOne 2015 Racing Slightly Mad Studios 0.08
## 7050 PS2 2010 Sports Take-Two Interactive 0.11
## 7051 PC 2015 Shooter Activision 0.00
## 7052 XB 2004 Action Take-Two Interactive 0.17
## 7053 PS3 2011 Action Activision 0.13
## 7054 Wii 2009 Action THQ 0.08
## 7055 PS2 2001 Sports Sony Computer Entertainment 0.11
## 7056 PS3 2009 Sports Activision Value 0.21
## 7057 GBA 2002 Platform Capcom 0.16
## 7058 PS4 2014 Sports Electronic Arts 0.15
## 7059 Wii 2008 Puzzle Capcom 0.19
## 7060 PC 2012 Role-Playing Deep Silver 0.00
## 7061 PSV 2016 Action Square Enix 0.00
## 7062 X360 2011 Action THQ 0.20
## 7063 Wii 2008 Action Ubisoft 0.20
## 7064 PSP 2012 Adventure Namco Bandai Games 0.00
## 7065 DS 2007 Sports Activision 0.21
## 7066 GB 1992 Puzzle Nintendo 0.00
## 7067 PS2 2003 Sports Sega 0.00
## 7068 PS3 2009 Action Tecmo Koei 0.00
## 7069 PS2 2007 Misc Activision 0.11
## 7070 3DS 2011 Fighting THQ 0.15
## 7071 DS 2007 Action Nintendo 0.09
## 7072 PS2 2005 Action Sony Computer Entertainment 0.11
## 7073 PS4 2016 Sports 505 Games 0.02
## 7074 3DS 2011 Misc Activision 0.22
## 7075 PSP 2009 Adventure Namco Bandai Games 0.00
## 7076 PS 1997 Action GT Interactive 0.13
## 7077 GBA 2007 Adventure Activision 0.16
## 7078 Wii 2008 Simulation Ubisoft 0.21
## 7079 PSP 2009 Fighting Namco Bandai Games 0.00
## 7080 DS 2008 Sports Sega 0.00
## 7081 Wii 2006 Sports Nintendo 0.14
## 7082 PS2 2003 Racing Eidos Interactive 0.11
## 7083 GBA 2004 Role-Playing Capcom 0.16
## 7084 Wii 2009 Adventure Activision 0.21
## 7085 SNES 1996 Role-Playing Enix Corporation 0.00
## 7086 XB 2003 Shooter Electronic Arts 0.17
## 7087 DS 2005 Fighting Tomy Corporation 0.00
## 7088 XB 2003 Shooter Activision 0.17
## 7089 Wii 2010 Sports Konami Digital Entertainment 0.08
## 7090 PS2 2007 Adventure Disney Interactive Studios 0.11
## 7091 PS2 2006 Role-Playing Square Enix 0.06
## 7092 PS 1997 Role-Playing Psygnosis 0.13
## 7093 PS3 2010 Sports Konami Digital Entertainment 0.00
## 7094 PS2 2008 Action THQ 0.11
## 7095 SNES 1991 Shooter Nintendo 0.00
## 7096 PS 1998 Action GT Interactive 0.13
## 7097 PS 1999 Strategy Banpresto 0.00
## 7098 GC 2002 Sports Electronic Arts 0.18
## 7099 PS2 2003 Shooter Zoo Digital Publishing 0.11
## 7100 PS2 2003 Sports Midway Games 0.11
## 7101 Wii 2009 Simulation Electronic Arts 0.18
## 7102 Wii 2010 Racing Disney Interactive Studios 0.18
## 7103 PS 1995 Shooter Ocean 0.06
## 7104 Wii 2007 Sports 505 Games 0.21
## 7105 PS 1997 Fighting Virgin Interactive 0.06
## 7106 XB 2004 Misc Zoo Digital Publishing 0.17
## 7107 PSP 2008 Role-Playing Rising Star Games 0.09
## 7108 PS2 2006 Role-Playing Namco Bandai Games 0.11
## 7109 PSP 2006 Role-Playing Tecmo Koei 0.15
## 7110 PS3 2012 Adventure Sony Computer Entertainment 0.19
## 7111 PSP 2008 Sports Electronic Arts 0.21
## 7112 Wii 2010 Sports D3Publisher 0.21
## 7113 PS2 2003 Sports Sony Computer Entertainment 0.11
## 7114 Wii 2009 Misc Nordcurrent 0.19
## 7115 PS2 2004 Adventure THQ 0.11
## 7116 DS 2007 Strategy Sega 0.20
## 7117 PS2 2007 Misc Sony Computer Entertainment 0.11
## 7118 PS3 2011 Shooter Ubisoft 0.09
## 7119 Wii 2010 Action THQ 0.14
## 7120 X360 2008 Misc MTV Games 0.21
## 7121 GB 1996 Puzzle Nintendo 0.00
## 7122 PS2 2002 Sports Sony Computer Entertainment 0.11
## 7123 DS 2011 Adventure Scholastic Inc. 0.21
## 7124 PS 1998 Fighting Tomy Corporation 0.00
## 7125 PSV 2015 Action Marvelous Interactive 0.06
## 7126 DS 2006 Role-Playing Namco Bandai Games 0.00
## 7127 PS2 2002 Sports Sony Computer Entertainment 0.11
## 7128 PS 1997 Platform Ocean 0.13
## 7129 PS2 2003 Action Kemco 0.11
## 7130 PSP 2005 Sports Electronic Arts 0.20
## 7131 PS3 2014 Role-Playing Namco Bandai Games 0.00
## 7132 3DS 2011 Racing Disney Interactive Studios 0.21
## 7133 DS 2008 Simulation Ubisoft 0.20
## 7134 PC 2012 Shooter Take-Two Interactive 0.11
## 7135 PS2 2002 Action Midway Games 0.11
## 7136 Wii 2008 Fighting Electronic Arts 0.20
## 7137 PSP 2006 Role-Playing Eidos Interactive 0.20
## 7138 PS3 2011 Action Namco Bandai Games 0.00
## 7139 PS2 2008 Fighting Midway Games 0.10
## 7140 DS 2006 Misc Konami Digital Entertainment 0.18
## 7141 GC 2004 Fighting Electronic Arts 0.17
## 7142 PSP 2013 Role-Playing Namco Bandai Games 0.00
## 7143 PS2 2005 Action Sega 0.11
## 7144 PS3 2013 Action Deep Silver 0.12
## 7145 GBA 2001 Misc Takara 0.16
## 7146 X360 2013 Action Namco Bandai Games 0.12
## 7147 N64 1997 Misc Namco Bandai Games 0.00
## 7148 GC 2003 Misc Acclaim Entertainment 0.17
## 7149 2600 1981 Shooter 20th Century Fox Video Games 0.21
## 7150 2600 1982 Action Bomb 0.21
## 7151 2600 1981 Action Parker Bros. 0.21
## 7152 PSP 2009 Role-Playing Falcom Corporation 0.14
## 7153 DS 2010 Action THQ 0.17
## 7154 PSP 2007 Action Namco Bandai Games 0.00
## 7155 PS3 2009 Action Disney Interactive Studios 0.13
## 7156 PSP 2011 Action Level 5 0.00
## 7157 Wii 2010 Misc D3Publisher 0.21
## 7158 XB 2004 Shooter SCi 0.17
## 7159 PS2 2002 Sports Crave Entertainment 0.11
## 7160 PS2 2004 Shooter Namco Bandai Games 0.11
## 7161 PS2 2005 Misc Hudson Soft 0.00
## 7162 XOne 2015 Role-Playing Namco Bandai Games 0.13
## 7163 DS 2008 Simulation 505 Games 0.21
## 7164 PS2 2010 Platform D3Publisher 0.13
## 7165 3DS 2013 Action Sega 0.00
## 7166 GC 2002 Role-Playing Atari 0.17
## 7167 DS 2009 Platform Ubisoft 0.20
## 7168 PS2 2008 Racing Capcom 0.01
## 7169 PSP 2011 Sports Electronic Arts 0.21
## 7170 PS3 2011 Action Capcom 0.00
## 7171 GBA 2001 Role-Playing Ubisoft 0.11
## 7172 DS 2008 Role-Playing GungHo 0.10
## 7173 PS2 2005 Racing Global Star 0.11
## 7174 GC 2004 Sports Electronic Arts 0.17
## 7175 GBA 2004 Sports Nintendo 0.16
## 7176 GBA 2005 Action THQ 0.16
## 7177 DS 2008 Adventure Ubisoft 0.21
## 7178 PS3 2010 Racing Capcom 0.05
## 7179 PS3 2011 Role-Playing Marvelous Interactive 0.14
## 7180 Wii 2009 Platform Majesco Entertainment 0.19
## 7181 PS4 2016 Shooter Take-Two Interactive 0.09
## 7183 PS3 2013 Role-Playing Tecmo Koei 0.06
## 7184 DS 2010 Puzzle Avanquest 0.13
## 7185 2600 1981 Action Atari 0.21
## 7186 SNES 1992 Platform Hudson Soft 0.00
## 7187 PS 1998 Puzzle Acclaim Entertainment 0.12
## 7188 Wii 2007 Platform Vivendi Games 0.18
## 7189 PS 1996 Sports Acclaim Entertainment 0.12
## 7190 Wii 2006 Action Midway Games 0.19
## 7191 PS2 2004 Fighting Namco Bandai Games 0.03
## 7192 Wii 2008 Misc Ubisoft 0.20
## 7193 PS2 2002 Shooter Capcom 0.07
## 7194 Wii 2008 Sports Activision 0.20
## 7195 PS2 2003 Action Namco Bandai Games 0.00
## 7196 3DS 2011 Platform Sega 0.14
## 7197 Wii 2011 Action THQ 0.19
## 7198 DS 2006 Sports Activision 0.20
## 7199 GBA 2004 Platform Capcom 0.16
## 7200 PC 2012 Action Warner Bros. Interactive Entertainment 0.07
## 7201 PS3 2013 Action Square Enix 0.07
## 7202 PSP 2007 Action Vivendi Games 0.03
## 7203 PS3 2014 Action Konami Digital Entertainment 0.03
## 7204 Wii 2010 Action THQ 0.19
## 7205 DS 2008 Misc AQ Interactive 0.20
## 7206 Wii 2008 Action Ubisoft 0.16
## 7207 PS 1999 Sports Mattel Interactive 0.12
## 7208 Wii 2010 Adventure Ubisoft 0.12
## 7209 GBA 2004 Misc N/A 0.16
## 7210 PSP 2007 Action Empire Interactive 0.09
## 7211 PS3 2013 Role-Playing Nippon Ichi Software 0.05
## 7212 PC 2015 Shooter Ubisoft 0.12
## 7213 PSV 2012 Action Ubisoft 0.09
## 7215 GBA 2004 Misc Atari 0.16
## 7216 DS 2009 Simulation Ubisoft 0.20
## 7217 PS3 2014 Adventure Telltale Games 0.09
## 7218 GBA 2004 Role-Playing Electronic Arts 0.16
## 7219 Wii 2009 Adventure Deep Silver 0.09
## 7220 XB 2004 Action Midway Games 0.16
## 7221 PS4 2016 Role-Playing Square Enix 0.00
## 7222 GC 2002 Puzzle THQ 0.17
## 7223 X360 2014 Adventure Activision 0.11
## 7224 N64 2000 Fighting Acclaim Entertainment 0.18
## 7225 N64 2000 Action Capcom 0.14
## 7226 N64 1996 Sports Imagineer 0.00
## 7227 N64 1999 Action GT Interactive 0.18
## 7228 N64 2000 Puzzle Namco Bandai Games 0.18
## 7229 Wii 2009 Role-Playing Namco Bandai Games 0.00
## 7230 DS 2008 Strategy THQ 0.17
## 7231 GC 2004 Action Capcom 0.17
## 7232 DS 2009 Adventure Ubisoft 0.20
## 7233 Wii 2009 Racing Zoo Digital Publishing 0.21
## 7234 PS2 2002 Misc Acclaim Entertainment 0.11
## 7235 DS 2007 Puzzle Avanquest 0.03
## 7236 PS 1996 Sports Acclaim Entertainment 0.12
## 7237 DS 2008 Adventure Atari 0.04
## 7238 DS 2007 Shooter Eidos Interactive 0.20
## 7239 X360 2009 Strategy Kalypso Media 0.15
## 7240 XB 2002 Misc Infogrames 0.16
## 7241 X360 2009 Action D3Publisher 0.11
## 7242 PS 1998 Sports Fox Interactive 0.12
## 7243 Wii 2009 Action Electronic Arts 0.17
## 7244 XB 2004 Shooter Eidos Interactive 0.16
## 7245 X360 2011 Action Bethesda Softworks 0.13
## 7246 PS 1998 Strategy Konami Digital Entertainment 0.05
## 7247 PS4 2016 Role-Playing Namco Bandai Games 0.00
## 7248 GC 2001 Sports Acclaim Entertainment 0.17
## 7249 PS2 2004 Role-Playing 505 Games 0.11
## 7250 PS2 2001 Simulation Sammy Corporation 0.11
## 7251 DC 2000 Fighting Virgin Interactive 0.00
## 7252 Wii 2008 Sports Electronic Arts 0.19
## 7253 DS 2009 Role-Playing Sega 0.07
## 7254 X360 2011 Misc Unknown 0.11
## 7255 PS4 2015 Action Activision 0.10
## 7256 DS 2008 Misc Namco Bandai Games 0.00
## 7257 GC 2005 Action Electronic Arts 0.17
## 7258 Wii 2011 Misc THQ 0.20
## 7259 PS3 2015 Misc Ubisoft 0.10
## 7260 PS3 2009 Misc Crave Entertainment 0.20
## 7261 PS2 2009 Misc Activision 0.11
## 7262 PS2 2001 Sports Acclaim Entertainment 0.11
## 7263 GB 1997 Puzzle Nintendo 0.00
## 7264 X360 2008 Sports Electronic Arts 0.20
## 7265 X360 2006 Shooter Sega 0.19
## 7266 PC 2011 Action Deep Silver 0.12
## 7267 PS2 2006 Role-Playing Rising Star Games 0.11
## 7268 DS 2009 Puzzle Electronic Arts 0.01
## 7269 WiiU 2015 Role-Playing Nintendo 0.10
## 7270 PS2 2003 Sports Electronic Arts 0.11
## 7271 GBA 2002 Action Nintendo 0.16
## 7272 3DS 2012 Adventure Nintendo 0.12
## 7273 PSP 2005 Sports Sony Computer Entertainment 0.20
## 7274 GBA 2003 Action Tomy Corporation 0.16
## 7275 PSP 2009 Role-Playing Atlus 0.08
## 7276 DS 2007 Adventure Tecmo Koei 0.00
## 7277 PS2 2002 Racing Activision 0.11
## 7278 DS 2006 Sports Electronic Arts 0.20
## 7279 PS2 2006 Sports Konami Digital Entertainment 0.00
## 7280 GC 2002 Sports Sega 0.17
## 7281 PS4 2015 Action Nordic Games 0.09
## 7282 PS 2001 Sports Take-Two Interactive 0.12
## 7283 DS 2005 Platform Nintendo 0.00
## 7284 GBA 2003 Platform Zoo Digital Publishing 0.16
## 7285 DS 2008 Misc THQ 0.20
## 7286 PS2 2008 Sports Konami Digital Entertainment 0.00
## 7287 PS 1999 Action Sony Computer Entertainment 0.12
## 7288 PS 1999 Racing Electronic Arts 0.12
## 7289 PS3 2013 Shooter Capcom 0.07
## 7290 Wii 2008 Misc Zoo Digital Publishing 0.19
## 7291 3DS 2015 Strategy Nintendo 0.14
## 7292 PS3 2010 Racing Black Bean Games 0.05
## 7293 PS4 2013 Sports Electronic Arts 0.14
## 7294 GC 2004 Action THQ 0.17
## 7295 SAT 1995 Sports Sega 0.00
## 7296 GBA 2003 Misc Codemasters 0.15
## 7297 Wii 2008 Sports DTP Entertainment 0.00
## 7298 GBA 2002 Misc THQ 0.15
## 7299 GC 2005 Action Activision 0.17
## 7300 X360 2013 Shooter City Interactive 0.06
## 7301 X360 2006 Simulation Ubisoft 0.19
## 7302 SNES 1993 Action Namco Bandai Games 0.00
## 7303 PS3 2010 Simulation Activision 0.11
## 7304 PSV 2015 Action Namco Bandai Games 0.00
## 7305 PS2 2002 Adventure Eidos Interactive 0.11
## 7306 X360 2012 Simulation Namco Bandai Games 0.13
## 7307 PC 2003 Role-Playing CCP 0.00
## 7308 PSP 2012 Action Namco Bandai Games 0.00
## 7309 DS 2008 Action Tecmo Koei 0.17
## 7310 PS4 2015 Racing Milestone S.r.l. 0.03
## 7311 DS 2008 Role-Playing Ignition Entertainment 0.12
## 7312 XOne 2014 Role-Playing Square Enix 0.10
## 7313 PS 2000 Sports Konami Digital Entertainment 0.12
## 7314 PS2 2001 Sports THQ 0.11
## 7315 PS3 2008 Adventure Unknown 0.12
## 7316 PS 2001 Sports Activision Value 0.12
## 7317 PSP 2006 Role-Playing Ghostlight 0.10
## 7318 Wii 2010 Misc Nintendo 0.20
## 7320 PS2 2004 Racing Ubisoft 0.11
## 7321 PS 1996 Platform BMG Interactive Entertainment 0.12
## 7322 PS3 2011 Misc Sony Computer Entertainment 0.00
## 7323 GC 2005 Misc Namco Bandai Games 0.17
## 7324 PS2 2004 Racing Eidos Interactive 0.11
## 7325 PSP 2005 Sports Sony Computer Entertainment 0.20
## 7326 PS2 2009 Fighting Ubisoft 0.11
## 7327 SAT 1997 Sports Sega 0.00
## 7328 3DS 2011 Action Activision 0.16
## 7329 Wii 2007 Role-Playing Square Enix 0.09
## 7330 SAT 1997 Role-Playing Kadokawa Shoten 0.00
## 7331 DS 2007 Sports Namco Bandai Games 0.00
## 7332 PS2 2002 Action Agetec 0.03
## 7333 SAT 1997 Adventure Imagineer 0.00
## 7334 Wii 2010 Misc Nordic Games 0.00
## 7335 Wii 2008 Sports Atari 0.20
## 7336 Wii 2011 Action Konami Digital Entertainment 0.08
## 7337 PSV 2013 Action Nippon Ichi Software 0.09
## 7338 PS2 2008 Racing Warner Bros. Interactive Entertainment 0.10
## 7339 X360 2006 Sports Take-Two Interactive 0.20
## 7340 XOne 2014 Action Activision 0.12
## 7341 X360 2011 Sports Activision 0.18
## 7342 GC 2006 Adventure THQ 0.17
## 7343 PS 1999 Action Electronic Arts 0.12
## 7344 PSP 2010 Fighting THQ 0.11
## 7345 PS3 2008 Racing THQ 0.10
## 7346 PS2 2000 Racing Interplay 0.10
## 7347 3DS 2012 Simulation Konami Digital Entertainment 0.00
## 7348 PS2 2004 Role-Playing Ubisoft 0.10
## 7349 X360 2007 Sports Electronic Arts 0.20
## 7350 PS2 2006 Misc Hudson Soft 0.00
## 7351 GBA 2002 Shooter TDK Mediactive 0.15
## 7353 XB 2003 Fighting Gotham Games 0.16
## 7354 PS3 2010 Action Namco Bandai Games 0.00
## 7355 PS2 2002 Strategy Ubisoft 0.10
## 7356 DS 2005 Sports Activision 0.19
## 7357 PS3 2011 Platform THQ 0.11
## 7358 X360 2009 Sports Take-Two Interactive 0.19
## 7359 XB 2002 Shooter Universal Interactive 0.16
## 7360 X360 2009 Adventure Disney Interactive Studios 0.14
## 7361 X360 2009 Shooter THQ 0.12
## 7362 Wii 2008 Action THQ 0.19
## 7363 XB 2005 Sports Take-Two Interactive 0.16
## 7364 XB 2004 Action Activision 0.16
## 7365 PS2 2005 Misc Take-Two Interactive 0.10
## 7366 X360 2010 Action Deep Silver 0.07
## 7367 PS2 2004 Shooter Konami Digital Entertainment 0.10
## 7368 PSP 2005 Sports Electronic Arts 0.20
## 7369 PS3 2014 Racing Codemasters 0.05
## 7372 2600 1981 Sports Atari 0.20
## 7373 Wii 2011 Misc Unknown 0.00
## 7374 DS 2011 Strategy Konami Digital Entertainment 0.10
## 7375 X360 2015 Action Konami Digital Entertainment 0.12
## 7376 X360 2010 Misc Electronic Arts 0.17
## 7377 PS3 2009 Action Electronic Arts 0.11
## 7378 X360 2007 Misc Ubisoft 0.18
## 7379 PS2 2004 Action Capcom 0.10
## 7380 PS2 2001 Shooter Electronic Arts 0.10
## 7381 PS2 2005 Platform Namco Bandai Games 0.10
## 7382 GC 2003 Fighting Tomy Corporation 0.00
## 7384 PS 1996 Adventure Pioneer LDC 0.00
## 7385 PS4 2014 Action Activision 0.07
## 7386 SNES 1995 Fighting Namco Bandai Games 0.00
## 7387 Wii 2009 Adventure GSP 0.12
## 7388 3DS 2014 Action Marvelous Entertainment 0.09
## 7389 PSP 2009 Fighting THQ 0.17
## 7390 DS 2008 Action Disney Interactive Studios 0.19
## 7391 PS3 2011 Sports Tecmo Koei 0.06
## 7392 PS 2000 Fighting Acclaim Entertainment 0.12
## 7393 Wii 2009 Sports JoWood Productions 0.15
## 7394 XB 2005 Shooter Ubisoft 0.16
## 7395 Wii 2011 Sports Activision 0.15
## 7396 PSP 2005 Adventure Ubisoft 0.18
## 7397 X360 2009 Sports XS Games 0.20
## 7398 PS2 2005 Strategy Square Enix 0.00
## 7399 PS2 2003 Platform Capcom 0.10
## 7400 GC 2003 Platform THQ 0.16
## 7401 Wii 2010 Misc Namco Bandai Games 0.20
## 7402 DS 2009 Action Zoo Games 0.20
## 7403 PSP 2010 Sports Sony Computer Entertainment 0.06
## 7404 PS2 2002 Role-Playing THQ 0.10
## 7405 PS 2002 Platform TDK Mediactive 0.12
## 7406 PS2 2001 Adventure Konami Digital Entertainment 0.09
## 7408 XB 2003 Sports Activision Value 0.16
## 7409 WiiU 2013 Simulation Disney Interactive Studios 0.15
## 7410 PSP 2007 Sports 505 Games 0.19
## 7411 PSP 2005 Misc Activision 0.19
## 7412 N64 1997 Fighting Interplay 0.17
## 7413 N64 1999 Misc Hasbro Interactive 0.17
## 7414 N64 1998 Fighting THQ 0.17
## 7415 N64 2000 Racing Midway Games 0.17
## 7416 N64 1999 Platform Crave Entertainment 0.17
## 7417 N64 1999 Shooter Virgin Interactive 0.17
## 7418 3DS 2012 Role-Playing Nintendo 0.13
## 7419 X360 2012 Action Activision 0.20
## 7420 PS 1996 Role-Playing Seta Corporation 0.00
## 7421 X360 2008 Racing Black Bean Games 0.06
## 7422 SAT 1996 Fighting SNK 0.00
## 7423 GC 2003 Action Electronic Arts 0.16
## 7425 PS 1997 Role-Playing On Demand 0.12
## 7426 PS 1999 Role-Playing SquareSoft 0.12
## 7427 PS 2000 Role-Playing Sony Computer Entertainment 0.00
## 7428 GBA 2004 Platform Konami Digital Entertainment 0.00
## 7429 X360 2007 Action Microsoft Game Studios 0.18
## 7430 X360 2009 Action Gamebridge 0.12
## 7431 PS2 2002 Action Eidos Interactive 0.10
## 7432 XB 2004 Shooter Atari 0.17
## 7433 PS2 2001 Racing Electronic Arts 0.10
## 7434 PS2 2008 Action Activision 0.10
## 7435 PS3 2013 Role-Playing Nippon Ichi Software 0.09
## 7436 XB 2005 Action Electronic Arts 0.16
## 7437 Wii 2012 Misc Ubisoft 0.15
## 7438 PS2 2006 Sports Konami Digital Entertainment 0.00
## 7439 GBA 2003 Platform TDK Mediactive 0.15
## 7440 DS 2010 Role-Playing Nintendo 0.08
## 7441 PSP 2010 Role-Playing Namco Bandai Games 0.00
## 7442 XB 2002 Action Sega 0.13
## 7443 GC 2001 Sports Midway Games 0.16
## 7444 Wii 2010 Action THQ 0.12
## 7445 GC 2002 Sports Electronic Arts 0.16
## 7446 X360 2009 Sports Zushi Games 0.18
## 7447 PS 1999 Racing Psygnosis 0.12
## 7448 PS2 2000 Sports Konami Digital Entertainment 0.10
## 7449 PS2 2005 Action Eidos Interactive 0.10
## 7450 DS 2008 Sports Activision 0.19
## 7451 DS 2009 Strategy Namco Bandai Games 0.00
## 7452 PS 2000 Fighting Midway Games 0.12
## 7453 PSV 2014 Action Warner Bros. Interactive Entertainment 0.03
## 7454 PSV 2014 Platform Ubisoft 0.03
## 7455 DS 2007 Role-Playing Namco Bandai Games 0.19
## 7456 DS 2008 Racing Eidos Interactive 0.19
## 7457 DS 2011 Puzzle Scholastic Inc. 0.19
## 7458 PS2 2006 Role-Playing Tecmo Koei 0.00
## 7459 X360 2010 Shooter Majesco Entertainment 0.19
## 7460 PS2 2005 Action THQ 0.10
## 7461 X360 2010 Shooter Namco Bandai Games 0.11
## 7462 X360 2007 Sports Electronic Arts 0.19
## 7463 XB 2002 Sports Electronic Arts 0.15
## 7464 PS3 2011 Action THQ 0.11
## 7465 SAT 1995 Fighting Acclaim Entertainment 0.00
## 7466 DS 2008 Misc Activision 0.19
## 7467 PSP 2005 Sports Electronic Arts 0.19
## 7468 PS 1998 Adventure Sony Computer Entertainment 0.00
## 7469 PS2 2002 Sports Sega 0.10
## 7470 DS 2006 Misc Namco Bandai Games 0.00
## 7471 GBA 2004 Misc N/A 0.15
## 7472 PS3 2010 Sports Konami Digital Entertainment 0.00
## 7473 Wii 2008 Misc THQ 0.19
## 7474 GBA 2001 Fighting Ubisoft 0.09
## 7475 Wii 2011 Role-Playing Marvelous Interactive 0.14
## 7476 DS 2012 Action Activision 0.15
## 7477 PSP 2009 Sports Electronic Arts 0.19
## 7478 PS2 2002 Sports Zoo Digital Publishing 0.04
## 7479 Wii 2009 Simulation Ubisoft 0.13
## 7480 GC 2002 Action Atari 0.16
## 7481 XB 2004 Sports Global Star 0.15
## 7482 3DS 2012 Action Nintendo 0.00
## 7483 PS3 2012 Action Sega 0.10
## 7484 X360 2009 Adventure Ubisoft 0.10
## 7485 PC 2013 Shooter Trion Worlds 0.14
## 7486 PSP 2011 Sports Sega 0.00
## 7487 3DS 2015 Action Warner Bros. Interactive Entertainment 0.05
## 7488 PS 2000 Adventure Infogrames 0.11
## 7489 DS 2006 Racing Electronic Arts 0.17
## 7490 GC 2005 Fighting Atari 0.16
## 7491 PS3 2010 Action Sony Computer Entertainment 0.06
## 7492 PS3 2012 Action Konami Digital Entertainment 0.00
## 7493 XB 2003 Platform Activision 0.15
## 7494 GBA 2002 Action THQ 0.15
## 7495 PS4 2014 Adventure Telltale Games 0.10
## 7496 PSP 2006 Strategy Atari 0.18
## 7497 Wii 2010 Strategy Ubisoft 0.15
## 7498 PS4 2016 Action Tecmo Koei 0.02
## 7499 NG 1995 Fighting SNK 0.00
## 7500 DS 2009 Simulation 505 Games 0.19
## 7501 GBA 2002 Misc Acclaim Entertainment 0.15
## 7502 Wii 2010 Sports Activision 0.19
## 7503 PS3 2007 Role-Playing Ubisoft 0.17
## 7504 GBA 2004 Action Atari 0.15
## 7505 Wii 2011 Fighting THQ 0.11
## 7506 GB 2000 Strategy Nintendo 0.00
## 7507 PSP 2008 Misc Crave Entertainment 0.19
## 7508 X360 2011 Misc THQ 0.19
## 7509 DS 2009 Adventure City Interactive 0.07
## 7510 XOne 2014 Sports Electronic Arts 0.17
## 7511 PS2 2004 Fighting Capcom 0.10
## 7512 3DS 2011 Action Konami Digital Entertainment 0.16
## 7513 SNES 1995 Strategy Namco Bandai Games 0.00
## 7514 PS2 2005 Sports Atari 0.10
## 7515 XB 2001 Racing Infogrames 0.15
## 7516 Wii 2009 Action Sega 0.17
## 7517 DS 2009 Puzzle Level 5 0.00
## 7518 X360 2010 Simulation Kalypso Media 0.11
## 7519 Wii 2009 Sports Black Bean Games 0.14
## 7520 PS2 2007 Action Capcom 0.00
## 7521 PS2 2008 Misc Sony Computer Entertainment 0.00
## 7522 PC 2011 Role-Playing Unknown 0.09
## 7523 PS2 2005 Strategy Konami Digital Entertainment 0.06
## 7524 XB 2005 Sports Electronic Arts 0.15
## 7525 PS3 2011 Sports Take-Two Interactive 0.15
## 7526 PS3 2006 Simulation Namco Bandai Games 0.06
## 7527 DC 2000 Role-Playing Sega 0.00
## 7528 XB 2002 Racing Sega 0.14
## 7529 X360 2008 Role-Playing Ubisoft 0.16
## 7530 Wii 2011 Misc Ubisoft 0.00
## 7531 XB 2006 Racing Take-Two Interactive 0.15
## 7532 PS2 2000 Sports Konami Digital Entertainment 0.00
## 7533 PC 2011 Shooter THQ 0.09
## 7534 GBA 2005 Misc Zoo Digital Publishing 0.15
## 7535 PS2 2005 Misc Crave Entertainment 0.10
## 7536 SNES 1994 Racing BPS 0.00
## 7537 PSP 2012 Role-Playing Sega 0.00
## 7538 PS3 2013 Role-Playing Nippon Ichi Software 0.05
## 7539 PS3 2014 Role-Playing Tecmo Koei 0.06
## 7540 Wii 2009 Misc Mindscape 0.00
## 7541 PS2 2008 Sports Crave Entertainment 0.10
## 7542 PS2 2006 Fighting Ignition Entertainment 0.10
## 7543 PS2 2003 Sports Konami Digital Entertainment 0.00
## 7544 PS3 2011 Fighting PQube 0.04
## 7545 3DS 2012 Fighting Nintendo 0.06
## 7546 DS 2008 Misc Mindscape 0.00
## 7547 X360 2011 Misc 505 Games 0.17
## 7548 PSP 2010 Sports Sony Computer Entertainment 0.19
## 7549 XOne 2015 Strategy Microsoft Game Studios 0.14
## 7550 X360 2009 Sports Codemasters 0.00
## 7551 PS2 2004 Racing Play It 0.10
## 7552 GC 2005 Misc THQ 0.16
## 7553 SAT 1996 Strategy NCS 0.00
## 7554 NG 1994 Fighting SNK 0.00
## 7555 XB 2002 Sports Midway Games 0.15
## 7556 Wii 2009 Action Namco Bandai Games 0.13
## 7557 Wii 2009 Role-Playing Disney Interactive Studios 0.16
## 7558 PS3 2011 Shooter D3Publisher 0.06
## 7559 PS2 2004 Platform Activision 0.10
## 7560 DS 2009 Role-Playing Activision 0.16
## 7561 GC 2003 Fighting Namco Bandai Games 0.00
## 7562 PC 2015 Action Ubisoft 0.10
## 7563 GBA 2003 Sports THQ 0.14
## 7564 PS2 2001 Racing Infogrames 0.09
## 7565 PC 2016 Strategy Take-Two Interactive 0.09
## 7566 PS3 2010 Sports Codemasters 0.00
## 7567 PS2 2004 Sports Sega 0.10
## 7568 Wii 2009 Misc THQ 0.17
## 7569 PS2 2000 Fighting SquareSoft 0.00
## 7570 PS3 2011 Action Nippon Ichi Software 0.00
## 7571 PS3 2007 Shooter Codemasters 0.17
## 7572 GBA 2003 Simulation Ubisoft 0.14
## 7573 PS3 2011 Action Sega 0.10
## 7574 PSV 2012 Sports Sony Computer Entertainment 0.18
## 7575 GC 2004 Platform THQ 0.16
## 7576 PS4 2016 Sports Electronic Arts 0.13
## 7577 SAT 1996 Shooter Namco Bandai Games 0.00
## 7578 DS 2011 Simulation 505 Games 0.13
## 7579 PSP 2012 Action Sega 0.00
## 7580 XB 2002 Sports Sega 0.15
## 7581 GBA 2003 Platform Activision 0.14
## 7582 PSP 2011 Role-Playing Sega 0.00
## 7583 XB 2006 Racing THQ 0.15
## 7584 PS2 2003 Misc Namco Bandai Games 0.00
## 7585 DS 2009 Simulation Ubisoft 0.19
## 7586 GC 2002 Racing Midway Games 0.16
## 7587 PSP 2008 Action Tecmo Koei 0.02
## 7588 PS2 2005 Shooter Electronic Arts 0.10
## 7589 GBA 2001 Sports Ubisoft 0.14
## 7590 PS 1996 Role-Playing ArtDink 0.06
## 7591 X360 2005 Racing Namco Bandai Games 0.10
## 7592 PS4 2013 Strategy Activision 0.10
## 7593 DS 2009 Misc Take-Two Interactive 0.19
## 7594 DS 2009 Misc Ubisoft 0.19
## 7595 DS 2009 Simulation Aspyr 0.19
## 7596 X360 2010 Shooter Square Enix 0.10
## 7597 X360 2010 Misc Namco Bandai Games 0.10
## 7598 PS 1997 Shooter Interplay 0.11
## 7599 X360 2007 Racing Activision 0.18
## 7600 PS3 2009 Action Atari 0.12
## 7601 PS2 2009 Misc MTV Games 0.10
## 7602 X360 2012 Simulation Konami Digital Entertainment 0.14
## 7603 GC 2004 Platform Electronic Arts 0.15
## 7604 PS 1998 Racing Sony Computer Entertainment 0.11
## 7605 PSP 2011 Role-Playing Falcom Corporation 0.00
## 7606 PS3 2010 Action Konami Digital Entertainment 0.10
## 7607 DS 2010 Puzzle Avanquest 0.07
## 7608 XOne 2015 Action Deep Silver 0.10
## 7609 WiiU 2013 Fighting Warner Bros. Interactive Entertainment 0.10
## 7610 XB 2003 Sports Electronic Arts 0.15
## 7611 DS 2010 Adventure Ubisoft 0.13
## 7612 PC 2004 Shooter LucasArts 0.06
## 7613 PS2 2003 Sports Sony Computer Entertainment 0.10
## 7614 XB 2005 Action Disney Interactive Studios 0.15
## 7615 N64 2000 Platform Ubisoft 0.16
## 7617 N64 1999 Racing Titus 0.06
## 7618 N64 1997 Puzzle Activision 0.13
## 7619 N64 1998 Sports Kemco 0.16
## 7620 N64 2000 Platform Activision 0.16
## 7621 N64 2000 Racing Acclaim Entertainment 0.16
## 7622 N64 1998 Shooter Gremlin Interactive Ltd 0.16
## 7623 N64 2000 Racing Midway Games 0.16
## 7624 N64 1999 Strategy Banpresto 0.00
## 7625 N64 1996 Sports Atlus 0.16
## 7626 PSP 2006 Sports Sony Computer Entertainment 0.18
## 7627 XB 2003 Racing Bethesda Softworks 0.15
## 7628 PSP 2010 Role-Playing Sega 0.00
## 7629 DS 2011 Simulation Activision 0.14
## 7630 3DS 2012 Action Agatsuma Entertainment 0.16
## 7631 DS 2008 Action Eidos Interactive 0.16
## 7632 PSP 2005 Fighting Sony Computer Entertainment 0.18
## 7633 PS4 2015 Sports Activision 0.09
## 7634 PS2 2002 Misc Sammy Corporation 0.00
## 7635 GBA 2005 Misc Namco Bandai Games 0.14
## 7636 PS2 2008 Racing Xplosiv 0.10
## 7637 PS3 2013 Role-Playing Nippon Ichi Software 0.06
## 7638 PS 1999 Strategy Tecmo Koei 0.00
## 7639 Wii 2010 Racing THQ 0.15
## 7640 Wii 2010 Misc Namco Bandai Games 0.00
## 7641 PS3 2011 Sports THQ 0.08
## 7642 PC 2012 Strategy Sega 0.07
## 7643 PS2 2009 Sports Take-Two Interactive 0.10
## 7644 XB 2002 Sports Activision 0.15
## 7645 SNES 1996 Role-Playing SquareSoft 0.00
## 7646 PS3 2006 Role-Playing Electronic Arts 0.14
## 7647 XB 2005 Action Electronic Arts 0.15
## 7648 SAT 1994 Shooter Sega 0.00
## 7650 PS3 2013 Sports Konami Digital Entertainment 0.00
## 7651 Wii 2009 Action Destineer 0.14
## 7652 PS4 2016 Shooter Take-Two Interactive 0.05
## 7653 PS3 2010 Simulation Konami Digital Entertainment 0.12
## 7654 PS2 2007 Sports Activision Value 0.10
## 7655 DC 2000 Role-Playing Ubisoft 0.00
## 7656 PS 1996 Misc Sony Computer Entertainment 0.02
## 7657 DS 2008 Misc Disney Interactive Studios 0.18
## 7658 Wii 2011 Sports THQ 0.12
## 7659 X360 2014 Adventure Little Orbit 0.05
## 7660 XB 2004 Action Activision 0.15
## 7661 GC 2004 Sports Electronic Arts 0.15
## 7662 PSP 2013 Sports Konami Digital Entertainment 0.00
## 7663 PS2 2005 Action Konami Digital Entertainment 0.10
## 7664 DS 2008 Misc Ubisoft 0.00
## 7665 X360 2007 Shooter Activision 0.18
## 7666 PSV 2011 Racing Namco Bandai Games 0.04
## 7667 DS 2008 Role-Playing Sega 0.10
## 7668 PS2 2003 Strategy Activision 0.10
## 7669 Wii 2011 Misc Ubisoft 0.19
## 7670 XB 2001 Sports Acclaim Entertainment 0.15
## 7671 DS 2009 Simulation Electronic Arts 0.18
## 7672 PSP 2012 Sports Konami Digital Entertainment 0.00
## 7673 3DS 2016 Action GungHo 0.00
## 7674 GC 2002 Platform THQ 0.15
## 7675 X360 2008 Role-Playing Compile Heart 0.18
## 7676 X360 2008 Racing THQ 0.12
## 7677 PSP 2007 Strategy Take-Two Interactive 0.16
## 7678 PS2 2004 Misc Namco Bandai Games 0.00
## 7679 PS2 2004 Misc Namco Bandai Games 0.10
## 7680 X360 2008 Misc Disney Interactive Studios 0.18
## 7681 PSP 2005 Action Electronic Arts 0.17
## 7682 PS 1995 Puzzle Acclaim Entertainment 0.11
## 7683 PC 2014 Role-Playing Ubisoft 0.07
## 7684 PSP 2006 Shooter Ubisoft 0.17
## 7685 XB 2003 Puzzle THQ 0.15
## 7686 PS3 2006 Simulation 505 Games 0.09
## 7687 XOne 2014 Action Square Enix 0.10
## 7688 PS2 2004 Action Atari 0.10
## 7689 SNES 1991 Sports Culture Brain 0.00
## 7690 Wii 2008 Sports Activision 0.18
## 7691 WiiU 2013 Action Capcom 0.07
## 7692 Wii 2009 Simulation Majesco Entertainment 0.18
## 7693 PS2 2002 Racing Infogrames 0.10
## 7694 PSP 2006 Puzzle Crave Entertainment 0.18
## 7695 Wii 2011 Racing Activision 0.18
## 7696 GBA 2003 Sports Atari 0.14
## 7697 PS2 2005 Simulation Ubisoft 0.10
## 7698 PSP 2010 Sports Konami Digital Entertainment 0.00
## 7699 Wii 2008 Role-Playing Sega 0.08
## 7700 PSP 2011 Role-Playing Sony Computer Entertainment 0.00
## 7701 PS 2002 Action Namco Bandai Games 0.00
## 7702 PSP 2005 Sports Electronic Arts 0.18
## 7703 X360 2007 Action THQ 0.16
## 7704 GBA 2007 Action THQ 0.14
## 7705 GBA 2002 Platform THQ 0.14
## 7706 X360 2007 Action Tecmo Koei 0.17
## 7707 GC 2004 Misc Mad Catz 0.15
## 7708 XB 2002 Adventure Vivendi Games 0.15
## 7709 PS 2000 Action Ubisoft 0.11
## 7710 GBA 2001 Action THQ 0.14
## 7711 DS 2008 Puzzle Nordcurrent 0.05
## 7712 DS 2009 Action Activision 0.15
## 7713 PSP 2011 Sports Konami Digital Entertainment 0.00
## 7714 DS 2006 Misc Shogakukan 0.00
## 7715 XB 2002 Role-Playing Virgin Interactive 0.15
## 7716 PSP 2006 Action Take-Two Interactive 0.18
## 7717 GC 2004 Action Ubisoft 0.15
## 7718 XB 2002 Fighting Crave Entertainment 0.14
## 7719 3DS 2012 Role-Playing Namco Bandai Games 0.00
## 7720 Wii 2011 Action THQ 0.15
## 7722 3DS 2016 Platform Capcom 0.13
## 7723 PS2 2005 Action Vivendi Games 0.10
## 7724 Wii 2009 Action Konami Digital Entertainment 0.15
## 7725 3DS 2012 Action Activision 0.18
## 7726 PS2 2005 Racing Xplosiv 0.10
## 7727 PC 2009 Adventure Merscom LLC 0.00
## 7728 DS 2008 Misc THQ 0.18
## 7729 PSV 2013 Role-Playing Nippon Ichi Software 0.06
## 7730 PS4 2015 Shooter Rebellion Developments 0.04
## 7731 PS2 2001 Sports Sony Computer Entertainment 0.10
## 7732 PS2 2008 Role-Playing Gust 0.07
## 7733 PS2 2003 Action SCi 0.10
## 7734 GBA 2002 Misc BAM! Entertainment 0.14
## 7735 DS 2008 Role-Playing Tecmo Koei 0.16
## 7736 PS3 2012 Racing Codemasters 0.02
## 7737 DS 2008 Simulation Destineer 0.18
## 7738 Wii 2008 Shooter Zoo Games 0.18
## 7739 PS3 2008 Role-Playing Codemasters 0.05
## 7740 XB 2002 Racing Empire Interactive 0.15
## 7741 PS2 2005 Misc Sony Computer Entertainment 0.10
## 7742 GBA 2003 Platform Vivendi Games 0.14
## 7743 PS2 2006 Fighting Ignition Entertainment 0.07
## 7744 WiiU 2012 Action Nintendo 0.15
## 7745 PC 2013 Action Deep Silver 0.06
## 7746 PS 1996 Fighting Namco Bandai Games 0.00
## 7747 X360 2012 Action Konami Digital Entertainment 0.11
## 7748 PS4 2014 Role-Playing Focus Home Interactive 0.07
## 7749 X360 2008 Shooter Eidos Interactive 0.08
## 7750 PS3 2010 Action Konami Digital Entertainment 0.10
## 7751 PS3 2009 Action Activision 0.13
## 7752 PS2 2005 Shooter Ubisoft 0.10
## 7753 Wii 2009 Role-Playing Marvelous Interactive 0.13
## 7754 Wii 2009 Misc Take-Two Interactive 0.18
## 7755 DS 2005 Action Sega 0.00
## 7756 X360 2008 Action Namco Bandai Games 0.07
## 7757 DS 2009 Simulation Ubisoft 0.18
## 7758 SNES 1996 Misc Nippon Telenet 0.00
## 7759 GBA 2001 Role-Playing Ubisoft 0.14
## 7760 Wii 2008 Action Vivendi Games 0.17
## 7761 PSP 2012 Misc Spike 0.00
## 7762 PC 2010 Shooter Sega 0.00
## 7763 GC 2006 Platform Vivendi Games 0.15
## 7765 X360 2006 Role-Playing Ubisoft 0.16
## 7766 GBA 2002 Action TDK Core 0.14
## 7767 DS 2009 Sports Konami Digital Entertainment 0.00
## 7768 PS 1997 Sports Konami Digital Entertainment 0.00
## 7769 PC 2015 Simulation Electronic Arts 0.05
## 7770 SNES 1993 Misc Sammy Corporation 0.00
## 7771 3DS 2011 Misc Namco Bandai Games 0.10
## 7772 PS3 2010 Shooter Tecmo Koei 0.05
## 7773 XB 2004 Action Take-Two Interactive 0.14
## 7774 PS2 2002 Sports Sony Computer Entertainment 0.09
## 7775 PS3 2011 Simulation bitComposer Games 0.10
## 7776 Wii 2011 Misc THQ 0.14
## 7777 DS 2009 Misc Zoo Digital Publishing 0.18
## 7778 DS 2010 Misc Konami Digital Entertainment 0.11
## 7779 DS 2008 Role-Playing Square Enix 0.11
## 7780 PSP 2005 Action Ubisoft 0.16
## 7781 DS 2009 Shooter Square Enix 0.17
## 7782 PSP 2009 Action Activision 0.13
## 7783 3DS 2015 Action Capcom 0.00
## 7784 DS 2010 Puzzle Foreign Media Games 0.01
## 7785 SNES 1996 Sports Epoch 0.00
## 7786 X360 2009 Role-Playing Deep Silver 0.07
## 7787 DS 2010 Adventure Astragon 0.06
## 7788 3DS 2012 Simulation Konami Digital Entertainment 0.00
## 7789 X360 2006 Role-Playing Square Enix 0.17
## 7790 PS2 2002 Role-Playing Capcom 0.09
## 7791 N64 1996 Sports Konami Digital Entertainment 0.00
## 7792 PSP 2010 Action Electronic Arts 0.12
## 7793 PS3 2010 Platform Activision 0.16
## 7794 PS3 2009 Misc MTV Games 0.18
## 7795 PS2 2003 Strategy Banpresto 0.00
## 7796 PS 1998 Racing Acclaim Entertainment 0.11
## 7797 PSV 2013 Role-Playing Screenlife 0.13
## 7798 PS 1996 Shooter Interplay 0.11
## 7799 PC 2010 Strategy Square Enix 0.00
## 7800 X360 2010 Misc Konami Digital Entertainment 0.15
## 7801 PS3 2009 Shooter THQ 0.10
## 7802 GC 2002 Adventure Nintendo 0.15
## 7803 3DS 2011 Action Electronic Arts 0.09
## 7804 Wii 2008 Racing Zoo Digital Publishing 0.18
## 7805 PS3 2008 Shooter Eidos Interactive 0.05
## 7806 X360 2008 Fighting Electronic Arts 0.15
## 7807 PS3 2012 Sports Take-Two Interactive 0.18
## 7808 DS 2009 Role-Playing Ubisoft 0.16
## 7809 Wii 2008 Adventure THQ 0.17
## 7810 PS2 2004 Racing Bethesda Softworks 0.09
## 7811 PS2 2003 Shooter Electronic Arts 0.09
## 7812 XB 2003 Action Eidos Interactive 0.14
## 7813 3DS 2016 Simulation Marvelous Interactive 0.00
## 7814 Wii 2009 Action Activision 0.18
## 7815 X360 2010 Adventure Namco Bandai Games 0.14
## 7816 PS2 2004 Misc Atari 0.09
## 7817 GBA 2002 Role-Playing Namco Bandai Games 0.00
## 7818 DS 2010 Action Activision 0.17
## 7819 PS2 2003 Strategy Electronic Arts 0.09
## 7820 PS3 2011 Strategy PopCap Games 0.18
## 7821 XOne 2013 Sports Electronic Arts 0.16
## 7822 PS2 2001 Shooter Konami Digital Entertainment 0.09
## 7823 GBA 2001 Sports Acclaim Entertainment 0.14
## 7824 SNES 1996 Sports Konami Digital Entertainment 0.00
## 7825 DS 2010 Adventure Konami Digital Entertainment 0.00
## 7826 PS2 2003 Sports Midway Games 0.09
## 7827 PC 2013 Action Ubisoft 0.04
## 7828 PS 1996 Strategy SSI 0.11
## 7829 PS 1999 Fighting Human Entertainment 0.00
## 7830 PS3 2013 Action Namco Bandai Games 0.00
## 7831 X360 2012 Action Sega 0.09
## 7832 PSP 2009 Simulation 505 Games 0.08
## 7833 XOne 2015 Simulation Koch Media 0.10
## 7834 PS3 2008 Simulation Ubisoft 0.06
## 7835 DS 2008 Puzzle Rondomedia 0.15
## 7836 Wii 2011 Misc THQ 0.08
## 7837 DS 2006 Fighting Namco Bandai Games 0.02
## 7838 SAT 1995 Simulation Sega 0.00
## 7839 PS2 2008 Misc Sony Computer Entertainment 0.09
## 7840 PS2 2008 Misc Ignition Entertainment 0.09
## 7841 PS 1998 Fighting Capcom 0.11
## 7842 X360 2011 Action THQ 0.15
## 7843 PS2 2001 Misc Sony Computer Entertainment 0.09
## 7844 PSP 2005 Platform Konami Digital Entertainment 0.17
## 7845 PS3 2009 Racing THQ 0.14
## 7846 Wii 2011 Role-Playing Level 5 0.00
## 7847 GBA 2004 Adventure THQ 0.14
## 7848 XB 2002 Sports Electronic Arts 0.14
## 7849 PSV 2016 Action Kadokawa Games 0.00
## 7850 3DS 2011 Misc THQ 0.13
## 7851 PS2 2003 Misc Sony Computer Entertainment 0.09
## 7852 PC 2011 Racing Electronic Arts 0.05
## 7853 Wii 2009 Racing Ubisoft 0.18
## 7854 GBA 2002 Adventure Konami Digital Entertainment 0.14
## 7855 XB 2004 Role-Playing Microsoft Game Studios 0.14
## 7856 PS3 2011 Action Electronic Arts 0.07
## 7857 3DS 2012 Action Activision 0.15
## 7858 PSP 2009 Adventure Sony Computer Entertainment 0.00
## 7859 PSV 2014 Role-Playing Idea Factory 0.08
## 7860 N64 1996 Shooter GT Interactive 0.15
## 7861 N64 1997 Fighting GT Interactive 0.15
## 7862 N64 1997 Action Video System 0.15
## 7863 N64 1997 Puzzle Compile 0.00
## 7864 N64 1996 Sports Imagineer 0.00
## 7865 N64 1998 Shooter GT Interactive 0.15
## 7866 N64 1999 Misc NewKidCo 0.15
## 7867 3DS 2015 Action Nintendo 0.00
## 7868 Wii 2009 Puzzle Performance Designed Products 0.18
## 7869 DS 2008 Adventure Namco Bandai Games 0.00
## 7870 Wii 2009 Adventure Ubisoft 0.18
## 7871 Wii 2011 Misc Electronic Arts 0.13
## 7872 GC 2004 Action Konami Digital Entertainment 0.15
## 7873 PC 2013 Action Deep Silver 0.11
## 7874 XOne 2013 Fighting Ubisoft 0.11
## 7875 PS2 2008 Sports Activision 0.09
## 7876 GBA 2002 Sports Electronic Arts 0.14
## 7877 PSP 2010 Action Spike 0.00
## 7878 PS 1996 Strategy Mindscape 0.11
## 7879 X360 2011 Action Electronic Arts 0.10
## 7880 PC 2010 Action Take-Two Interactive 0.18
## 7881 DS 2008 Sports Sega 0.00
## 7882 PS3 2011 Action Tecmo Koei 0.06
## 7883 DS 2010 Misc THQ 0.18
## 7884 PS2 2000 Sports Konami Digital Entertainment 0.09
## 7885 GBA 2002 Role-Playing Media Rings 0.14
## 7886 PS2 2005 Shooter Eidos Interactive 0.09
## 7887 PSV 2013 Role-Playing Xseed Games 0.04
## 7888 Wii 2006 Misc Namco Bandai Games 0.12
## 7889 PS2 2006 Misc D3Publisher 0.00
## 7890 PS3 2010 Sports 505 Games 0.10
## 7891 PS3 2010 Sports Ubisoft 0.11
## 7892 GC 2003 Action Universal Interactive 0.15
## 7893 PS4 2016 Action Sony Computer Entertainment 0.00
## 7894 PS3 2011 Sports Activision 0.11
## 7895 Wii 2010 Sports Ubisoft 0.14
## 7896 PS2 2007 Misc Electronic Arts 0.09
## 7897 PS2 2002 Shooter Activision 0.09
## 7898 PS2 2006 Role-Playing Sega 0.00
## 7899 PS2 2002 Sports Atari 0.09
## 7900 PSV 2015 Action Namco Bandai Games 0.00
## 7901 PS2 2004 Action Sega 0.09
## 7902 DS 2009 Sports Nintendo 0.00
## 7903 DS 2010 Adventure Astragon 0.05
## 7904 GC 2006 Platform Vivendi Games 0.15
## 7905 2600 1981 Sports Mattel Interactive 0.18
## 7906 Wii 2011 Misc Crave Entertainment 0.18
## 7907 DS 2010 Puzzle Storm City Games 0.18
## 7908 PS 1997 Strategy Sony Computer Entertainment 0.00
## 7910 PS 1999 Sports Accolade 0.10
## 7911 GEN 1993 Strategy Sega 0.00
## 7912 PS 1999 Sports Tecmo Koei 0.00
## 7913 XB 2004 Action Electronic Arts 0.14
## 7914 3DS 2011 Racing Activision 0.18
## 7915 PSV 2014 Role-Playing Namco Bandai Games 0.00
## 7916 DS 2006 Puzzle Nintendo 0.00
## 7917 X360 2007 Action Namco Bandai Games 0.15
## 7918 WiiU 2013 Misc Namco Bandai Games 0.00
## 7919 PS2 2009 Action Activision 0.11
## 7920 PS3 2010 Adventure Ubisoft 0.11
## 7921 PS 1995 Sports Acclaim Entertainment 0.10
## 7922 PC 2010 Role-Playing JoWood Productions 0.09
## 7923 Wii 2008 Action SouthPeak Games 0.17
## 7924 X360 2012 Sports 505 Games 0.00
## 7925 PS2 2007 Sports Konami Digital Entertainment 0.00
## 7926 DS 2010 Puzzle THQ 0.10
## 7927 Wii 2007 Action Namco Bandai Games 0.16
## 7928 DS 2004 Misc Nintendo 0.00
## 7929 PS2 2005 Action Sony Computer Entertainment 0.09
## 7930 SNES 1993 Simulation Hect 0.00
## 7931 PC 2011 Racing Codemasters 0.00
## 7932 DS 2010 Misc Hudson Soft 0.00
## 7933 PS3 2013 Strategy Tecmo Koei 0.00
## 7934 Wii 2010 Adventure Asylum Entertainment 0.00
## 7935 Wii 2009 Action Namco Bandai Games 0.17
## 7936 Wii 2011 Misc Nordic Games 0.00
## 7937 DS 2007 Adventure Unknown 0.00
## 7938 PS3 2008 Adventure Disney Interactive Studios 0.12
## 7939 PS4 2014 Misc Sony Computer Entertainment Europe 0.00
## 7940 Wii 2010 Sports Zoo Games 0.18
## 7941 PSV 2015 Action Namco Bandai Games 0.00
## 7942 Wii 2007 Adventure Namco Bandai Games 0.07
## 7943 Wii 2010 Sports Mastiff 0.18
## 7944 GBA 2005 Platform Vivendi Games 0.13
## 7945 X360 2011 Shooter D3Publisher 0.10
## 7946 DS 2007 Misc Nintendo 0.00
## 7948 PS 1994 Simulation Core Design Ltd. 0.10
## 7949 Wii 2007 Action Disney Interactive Studios 0.17
## 7950 PC 2008 Shooter Activision 0.02
## 7951 PS3 2012 Sports Konami Digital Entertainment 0.00
## 7952 3DS 2013 Misc Namco Bandai Games 0.00
## 7953 SAT 1995 Misc Seta Corporation 0.00
## 7954 GBA 2004 Adventure N/A 0.13
## 7955 X360 2012 Sports Electronic Arts 0.10
## 7956 DS 2009 Action Konami Digital Entertainment 0.00
## 7957 GBA 2002 Action Vivendi Games 0.13
## 7958 PS 1996 Platform Accolade 0.10
## 7959 3DS 2011 Sports Marvelous Interactive 0.12
## 7960 PS2 2000 Sports Sony Computer Entertainment 0.09
## 7961 DS 2010 Simulation 505 Games 0.18
## 7962 PS2 2003 Strategy Capcom 0.09
## 7963 SNES 1994 Strategy Namco Bandai Games 0.00
## 7964 PS2 2003 Shooter Metro 3D 0.09
## 7965 GBA 2001 Action Activision 0.13
## 7966 Wii 2009 Racing Capcom 0.05
## 7967 XB 2002 Racing Sega 0.12
## 7968 PS2 2005 Action Activision 0.09
## 7969 DS 2008 Fighting THQ 0.15
## 7970 3DS 2013 Action Konami Digital Entertainment 0.00
## 7971 PS2 2006 Action Tecmo Koei 0.00
## 7972 XB 2002 Action Eidos Interactive 0.14
## 7973 PS3 2009 Shooter Activision 0.17
## 7974 PS2 2007 Sports Sega 0.00
## 7975 XB 2003 Sports Electronic Arts 0.14
## 7976 XOne 2014 Misc Microsoft Game Studios 0.15
## 7977 PSP 2012 Role-Playing Level 5 0.00
## 7978 DS 2006 Role-Playing Nintendo 0.16
## 7979 WiiU 2012 Fighting Namco Bandai Games 0.09
## 7980 Wii 2009 Racing Activision 0.17
## 7981 Wii 2007 Action D3Publisher 0.17
## 7982 PS2 2002 Role-Playing Tecmo Koei 0.09
## 7983 PSV 2014 Role-Playing Sega 0.00
## 7984 X360 2010 Racing Black Bean Games 0.10
## 7985 PSP 2005 Action Tecmo Koei 0.07
## 7986 XB 2006 Sports Electronic Arts 0.13
## 7987 X360 2007 Shooter Ubisoft 0.14
## 7988 XB 2002 Misc Microsoft Game Studios 0.14
## 7989 DS 2007 Adventure Midway Games 0.17
## 7990 PS2 2003 Role-Playing Sony Online Entertainment 0.09
## 7991 X360 2011 Sports Activision 0.14
## 7992 X360 2008 Sports Midway Games 0.17
## 7993 PSP 2011 Fighting THQ 0.12
## 7994 PS 1997 Action Namco Bandai Games 0.10
## 7995 DC 2001 Role-Playing Sega 0.00
## 7996 PS3 2011 Simulation Sony Computer Entertainment 0.06
## 7997 PC 2011 Action Warner Bros. Interactive Entertainment 0.04
## 7998 PS3 2010 Sports Take-Two Interactive 0.17
## 7999 PS2 2004 Fighting Vivendi Games 0.09
## 8000 DS 2010 Adventure Namco Bandai Games 0.06
## 8001 X360 2012 Shooter Electronic Arts 0.10
## 8002 Wii 2009 Simulation Konami Digital Entertainment 0.17
## 8003 X360 2010 Sports Ubisoft 0.08
## 8004 PS2 2004 Simulation 505 Games 0.09
## 8005 GBA 2003 Sports BAM! Entertainment 0.13
## 8006 DS 2010 Action THQ 0.13
## 8007 DS 2006 Simulation Ubisoft 0.17
## 8008 PS2 2003 Role-Playing Atari 0.09
## 8009 XB 2005 Shooter Take-Two Interactive 0.14
## 8010 PS4 2014 Racing Milestone S.r.l. 0.04
## 8011 XB 2003 Action LucasArts 0.14
## 8012 Wii 2007 Sports Electronic Arts 0.17
## 8013 PS2 2003 Action Vivendi Games 0.09
## 8014 PSP 2009 Role-Playing Rising Star Games 0.08
## 8015 X360 2008 Misc MTV Games 0.16
## 8016 PS 2000 Sports Victor Interactive 0.10
## 8017 Wii 2009 Action Take-Two Interactive 0.17
## 8018 PSV 2013 Adventure Square Enix 0.14
## 8019 XB 2002 Platform Electronic Arts 0.14
## 8020 SAT 1997 Fighting Tecmo Koei 0.00
## 8021 PS2 2000 Racing Electronic Arts 0.04
## 8022 PS2 2003 Adventure Sony Computer Entertainment 0.09
## 8023 DS 2005 Action Disney Interactive Studios 0.15
## 8024 XB 2005 Shooter Midway Games 0.14
## 8025 Wii 2009 Action 505 Games 0.11
## 8026 PS4 2014 Action Tecmo Koei 0.06
## 8027 GBA 2005 Strategy Banpresto 0.00
## 8028 PC 2015 Shooter Take-Two Interactive 0.07
## 8029 DS 2007 Sports Jaleco 0.00
## 8030 PS2 2007 Role-Playing Nippon Ichi Software 0.04
## 8031 Wii 2011 Platform THQ 0.11
## 8032 X360 2010 Misc Microsoft Game Studios 0.05
## 8033 PS 2000 Action TDK Core 0.10
## 8034 PC 2009 Shooter Take-Two Interactive 0.01
## 8035 GBA 2001 Adventure Konami Digital Entertainment 0.13
## 8036 DS 2009 Action Activision 0.17
## 8037 PSP 2009 Action Atari 0.16
## 8038 GB 1991 Strategy Nintendo 0.00
## 8039 PS2 2003 Misc Sony Computer Entertainment 0.09
## 8040 Wii 2008 Adventure Atari 0.09
## 8041 PC 2009 Strategy THQ 0.00
## 8042 XOne 2014 Misc Ubisoft 0.08
## 8043 XB 2005 Role-Playing Midway Games 0.14
## 8044 XB 2001 Shooter Konami Digital Entertainment 0.14
## 8046 XB 2002 Misc Infogrames 0.14
## 8047 PS 2001 Action Eidos Interactive 0.10
## 8048 PS3 2010 Action Activision 0.12
## 8049 X360 2013 Action Capcom 0.10
## 8050 N64 1999 Sports Konami Digital Entertainment 0.00
## 8051 WS 1999 Role-Playing Namco Bandai Games 0.00
## 8052 PS 1997 Platform Sony Computer Entertainment 0.00
## 8053 PS2 2004 Shooter Gathering of Developers 0.09
## 8054 X360 2013 Action Square Enix 0.07
## 8055 GBA 2002 Misc Atari 0.13
## 8056 PS2 2008 Sports DTP Entertainment 0.00
## 8057 PC 2011 Racing Ubisoft 0.05
## 8058 PSP 2005 Strategy Konami Digital Entertainment 0.11
## 8059 3DS 2012 Misc Sega 0.00
## 8060 Wii 2008 Misc Sega 0.09
## 8061 PS2 2009 Action Activision 0.13
## 8062 PSP 2005 Misc Sony Computer Entertainment 0.00
## 8063 Wii 2011 Misc Activision 0.15
## 8064 3DS 2016 Action Warner Bros. Interactive Entertainment 0.07
## 8065 GC 2002 Fighting Activision 0.14
## 8066 DS 2005 Action Activision 0.17
## 8067 Wii 2011 Misc Nordic Games 0.00
## 8068 SNES 1993 Sports Capcom 0.04
## 8069 X360 2008 Action Disney Interactive Studios 0.16
## 8070 DS 2011 Simulation Activision 0.13
## 8071 Wii 2010 Misc Ubisoft 0.00
## 8072 PS3 2009 Role-Playing Nippon Ichi Software 0.07
## 8073 DS 2010 Puzzle PlayV 0.05
## 8074 GC 2006 Sports Electronic Arts 0.14
## 8075 PSV 2014 Role-Playing Atlus 0.07
## 8076 PC 2015 Action Warner Bros. Interactive Entertainment 0.11
## 8077 SAT 1998 Fighting Capcom 0.00
## 8078 GBA 2004 Misc Nintendo 0.13
## 8079 3DS 2013 Role-Playing Namco Bandai Games 0.00
## 8080 DS 2008 Misc Brash Entertainment 0.17
## 8081 XB 2001 Racing Infogrames 0.15
## 8082 PS3 2014 Fighting Arc System Works 0.09
## 8083 PS3 2011 Sports Konami Digital Entertainment 0.00
## 8084 X360 2010 Platform D3Publisher 0.10
## 8085 PSV 2014 Fighting Sega 0.08
## 8086 SNES 1991 Strategy Banpresto 0.00
## 8088 PS4 2016 Role-Playing Nippon Ichi Software 0.06
## 8089 XB 2004 Shooter Empire Interactive 0.14
## 8090 PS 1996 Misc Sony Computer Entertainment 0.10
## 8091 PSP 2007 Action Activision 0.16
## 8092 PS2 2004 Role-Playing Capcom 0.09
## 8093 PS2 2003 Racing Genki 0.09
## 8094 PS 1997 Adventure ASCII Entertainment 0.00
## 8095 PC 2010 Sports Electronic Arts 0.00
## 8096 PC 2013 Action Warner Bros. Interactive Entertainment 0.04
## 8097 XB 2004 Sports Activision 0.13
## 8098 DS 2007 Simulation Disney Interactive Studios 0.13
## 8099 N64 1999 Misc NewKidCo 0.14
## 8100 N64 1999 Racing Acclaim Entertainment 0.14
## 8101 SNES 1994 Shooter Konami Digital Entertainment 0.00
## 8102 PSV 2013 Role-Playing Compile Heart 0.09
## 8103 GC 2002 Action Midway Games 0.14
## 8104 PS2 2006 Simulation Banpresto 0.00
## 8105 WiiU 2015 Misc Activision 0.12
## 8106 XB 2005 Platform Sega 0.13
## 8107 PS3 2012 Racing Namco Bandai Games 0.05
## 8108 DS 2005 Racing Electronic Arts 0.15
## 8109 DS 2010 Adventure SouthPeak Games 0.01
## 8110 GBA 2001 Adventure Ubisoft 0.13
## 8111 PS3 2006 Racing Sega 0.14
## 8112 DC 2000 Sports Sega 0.00
## 8113 PS2 2000 Puzzle Empire Interactive 0.09
## 8114 XB 2007 Action Activision 0.13
## 8115 PC 2013 Shooter Sega 0.10
## 8116 X360 2010 Action Namco Bandai Games 0.14
## 8117 PS3 2011 Shooter Square Enix 0.07
## 8118 PC 2014 Role-Playing Namco Bandai Games 0.08
## 8119 3DS 2013 Misc Nintendo 0.00
## 8120 GC 2005 Shooter Activision 0.14
## 8121 X360 2010 Racing THQ 0.17
## 8122 X360 2011 Action THQ 0.13
## 8123 PS3 2009 Misc Sony Computer Entertainment 0.00
## 8124 Wii 2008 Sports Activision 0.17
## 8125 SAT 1994 Racing Sega 0.00
## 8126 Wii 2011 Action Activision 0.10
## 8127 PS 1999 Action Crave Entertainment 0.10
## 8128 PC 2012 Shooter Ubisoft 0.05
## 8129 GBA 2003 Sports Electronic Arts 0.13
## 8130 DS 2011 Action Sega 0.10
## 8131 PC 2011 Shooter Bethesda Softworks 0.06
## 8132 GBA 2005 Misc Zoo Digital Publishing 0.13
## 8133 PS2 2005 Racing Zoo Digital Publishing 0.09
## 8134 X360 2010 Action Tecmo Koei 0.11
## 8135 PC 2015 Sports Electronic Arts 0.04
## 8136 XB 2004 Action Konami Digital Entertainment 0.14
## 8137 PS3 2011 Shooter Unknown 0.17
## 8138 PS2 2002 Strategy Eidos Interactive 0.09
## 8139 PC 2016 Shooter Bethesda Softworks 0.06
## 8140 DS 2010 Misc UFO Interactive 0.17
## 8141 3DS 2012 Sports Konami Digital Entertainment 0.05
## 8142 Wii 2008 Adventure Activision 0.08
## 8143 GC 2001 Sports Electronic Arts 0.14
## 8144 PS4 2014 Action Namco Bandai Games 0.10
## 8145 X360 2009 Racing Atari 0.06
## 8146 PS 2000 Misc Infogrames 0.10
## 8147 PSP 2013 Action Tecmo Koei 0.00
## 8148 PS2 2002 Action Midway Games 0.09
## 8149 Wii 2007 Action Ignition Entertainment 0.16
## 8150 GC 2001 Platform Ubisoft 0.14
## 8151 Wii 2008 Puzzle Destineer 0.17
## 8152 PS 1998 Sports THQ 0.10
## 8153 PS2 2008 Sports Activision Value 0.09
## 8154 X360 2009 Shooter DTP Entertainment 0.14
## 8155 PS 2000 Action Take-Two Interactive 0.10
## 8156 PS2 2005 Action Namco Bandai Games 0.00
## 8157 PS2 2003 Misc Sony Computer Entertainment 0.09
## 8159 PSV 2014 Role-Playing Nippon Ichi Software 0.04
## 8160 GC 2005 Adventure Global Star 0.14
## 8161 PS2 2005 Simulation 505 Games 0.05
## 8162 PS2 2009 Action Eidos Interactive 0.09
## 8163 GBA 2004 Misc THQ 0.13
## 8164 PS3 2007 Sports Take-Two Interactive 0.16
## 8165 PS2 2002 Sports Konami Digital Entertainment 0.04
## 8166 DS 2008 Sports Electronic Arts 0.14
## 8167 PSP 2009 Strategy Namco Bandai Games 0.00
## 8169 PSP 2008 Strategy Namco Bandai Games 0.00
## 8170 XB 2005 Racing THQ 0.13
## 8171 GBA 2003 Platform Electronic Arts 0.13
## 8172 GBA 2002 Sports Atari 0.13
## 8173 DS 2006 Role-Playing Namco Bandai Games 0.00
## 8174 DS 2008 Simulation Electronic Arts 0.00
## 8175 PS3 2011 Action Capcom 0.00
## 8176 PS2 2008 Racing Sega 0.09
## 8177 Wii 2011 Racing Ubisoft 0.06
## 8178 PS2 2004 Fighting Global Star 0.09
## 8179 Wii 2010 Sports Zoo Games 0.17
## 8180 PS2 2001 Sports Midway Games 0.09
## 8181 X360 2011 Action Sega 0.11
## 8182 DS 2010 Action Disney Interactive Studios 0.12
## 8183 DS 2005 Platform Namco Bandai Games 0.16
## 8184 GBA 2001 Sports Konami Digital Entertainment 0.13
## 8185 DS 2008 Adventure THQ 0.16
## 8186 Wii 2010 Sports GameMill Entertainment 0.17
## 8187 PC 2005 Shooter LucasArts 0.02
## 8188 PS 2000 Sports Empire Interactive 0.10
## 8189 PS 2001 Adventure LEGO Media 0.10
## 8190 X360 2007 Sports Take-Two Interactive 0.16
## 8191 X360 2016 Sports Electronic Arts 0.03
## 8192 DS 2010 Adventure THQ 0.17
## 8193 GBA 2004 Sports Atari 0.13
## 8194 XB 2008 Sports Electronic Arts 0.13
## 8195 GBA 2005 Platform THQ 0.13
## 8196 PS2 2006 Role-Playing Banpresto 0.00
## 8197 PS2 2008 Sports Konami Digital Entertainment 0.00
## 8198 XB 2003 Sports Electronic Arts 0.13
## 8199 XB 2005 Misc Namco Bandai Games 0.13
## 8200 PS3 2011 Misc THQ 0.16
## 8201 PS3 2010 Action THQ 0.12
## 8202 XB 2002 Sports Sega 0.13
## 8203 DS 2007 Misc Ubisoft 0.15
## 8204 DS 2010 Misc Disney Interactive Studios 0.14
## 8206 Wii 2008 Fighting Konami Digital Entertainment 0.13
## 8207 PSP 2010 Misc Ubisoft Annecy 0.07
## 8208 PS2 2005 Action Midway Games 0.09
## 8209 PS3 2010 Misc Disney Interactive Studios 0.11
## 8210 PS3 2009 Sports Codemasters 0.00
## 8211 PS2 2005 Sports Sony Computer Entertainment 0.09
## 8212 DS 2009 Adventure Ubisoft 0.16
## 8213 PS2 2001 Shooter Midas Interactive Entertainment 0.09
## 8214 PS3 2009 Strategy Sega 0.13
## 8215 3DS 2013 Misc Konami Digital Entertainment 0.00
## 8216 DS 2006 Sports Konami Digital Entertainment 0.00
## 8217 PS3 2011 Action Warner Bros. Interactive Entertainment 0.09
## 8218 PC 2011 Adventure LucasArts 0.00
## 8219 DS 2009 Adventure Ubisoft 0.07
## 8220 PS 2000 Adventure Mattel Interactive 0.10
## 8221 PS3 2011 Racing Capcom 0.04
## 8222 PSV 2016 Sports Konami Digital Entertainment 0.00
## 8223 PS2 2002 Sports Sega 0.09
## 8225 PSV 2014 Action Idea Factory International 0.07
## 8226 GBA 2001 Sports BAM! Entertainment 0.12
## 8227 PS3 2009 Action Playlogic Game Factory 0.11
## 8228 PS2 2002 Sports Natsume 0.09
## 8229 GC 2002 Platform THQ 0.13
## 8230 PS2 2001 Adventure 3DO 0.09
## 8231 GC 2006 Platform Ubisoft 0.13
## 8232 PS3 2008 Action Disney Interactive Studios 0.14
## 8233 PS4 2015 Adventure Telltale Games 0.10
## 8234 XOne 2014 Misc Microsoft Game Studios 0.11
## 8235 DS 2010 Sports Atari 0.16
## 8236 PS 1995 Fighting Acclaim Entertainment 0.10
## 8237 DS 2007 Adventure Konami Digital Entertainment 0.09
## 8238 GBA 2004 Misc Crave Entertainment 0.12
## 8239 PS2 2005 Shooter Essential Games 0.00
## 8240 PS3 2008 Sports Activision 0.16
## 8241 GC 2006 Sports Take-Two Interactive 0.13
## 8242 PS3 2009 Sports Spike 0.16
## 8243 DS 2009 Role-Playing Square Enix 0.00
## 8244 PS2 2002 Sports Sony Computer Entertainment 0.08
## 8245 PS3 2011 Action DTP Entertainment 0.07
## 8246 DS 2010 Strategy Namco Bandai Games 0.00
## 8247 GC 2006 Action Midway Games 0.13
## 8248 XB 2003 Sports Microsoft Game Studios 0.13
## 8249 PS 1998 Fighting SNK 0.00
## 8250 PC 2011 Role-Playing Square Enix 0.08
## 8251 X360 2011 Sports Activision 0.16
## 8252 PS 1996 Action Adeline Software 0.10
## 8253 DS 2007 Sports 505 Games 0.16
## 8254 Wii 2008 Simulation Destineer 0.16
## 8255 DS 2007 Action Namco Bandai Games 0.00
## 8256 PS2 2004 Sports Sony Computer Entertainment 0.08
## 8257 PS3 2008 Fighting Electronic Arts 0.13
## 8258 DS 2009 Puzzle Performance Designed Products 0.16
## 8259 Wii 2008 Sports Electronic Arts 0.16
## 8260 PS4 2015 Action Sega 0.00
## 8261 GC 2003 Platform Vivendi Games 0.13
## 8262 PC 2012 Role-Playing Funcom 0.07
## 8263 X360 2008 Sports Take-Two Interactive 0.15
## 8264 X360 2006 Action Activision 0.16
## 8265 GC 2005 Action Activision 0.13
## 8266 XB 2003 Shooter Vivendi Games 0.13
## 8267 PS3 2011 Platform Sony Computer Entertainment 0.08
## 8268 PSP 2012 Action Namco Bandai Games 0.00
## 8269 PS2 2009 Action Activision 0.08
## 8270 GBA 2001 Sports Konami Digital Entertainment 0.12
## 8271 PS2 2001 Shooter Virgin Interactive 0.08
## 8272 XB 2003 Misc Microsoft Game Studios 0.13
## 8273 PS3 2009 Action Warner Bros. Interactive Entertainment 0.08
## 8274 GC 2005 Fighting Electronic Arts 0.13
## 8275 DS 2006 Puzzle Nintendo 0.13
## 8276 PS 2001 Platform Sony Computer Entertainment 0.10
## 8277 GB 1999 Sports Konami Digital Entertainment 0.00
## 8278 SAT 1998 Fighting SNK 0.00
## 8279 DS 2010 Action Namco Bandai Games 0.00
## 8280 Wii 2008 Adventure Scholastic Inc. 0.16
## 8281 PSV 2014 Action Namco Bandai Games 0.06
## 8282 PS 1999 Strategy Namco Bandai Games 0.00
## 8283 PS 1999 Adventure ChunSoft 0.00
## 8284 DS 2007 Shooter SouthPeak Games 0.15
## 8285 XB 2004 Shooter Midway Games 0.13
## 8286 XB 2003 Shooter Vivendi Games 0.13
## 8287 PSP 2010 Platform D3Publisher 0.05
## 8288 PS2 2005 Racing Play It 0.08
## 8289 PS2 2003 Strategy Jaleco 0.08
## 8290 GBA 2005 Misc THQ 0.12
## 8291 DS 2009 Action Take-Two Interactive 0.16
## 8292 PS2 2008 Sports Atari 0.08
## 8293 PS2 2000 Action 3DO 0.08
## 8294 3DS 2016 Role-Playing Deep Silver 0.03
## 8295 PC 2009 Strategy Microsoft Game Studios 0.01
## 8296 DS 2006 Action THQ 0.12
## 8297 PS2 2009 Sports Atari 0.08
## 8298 PS 1997 Action Capcom 0.00
## 8299 PS3 2010 Action Warner Bros. Interactive Entertainment 0.10
## 8300 X360 2006 Sports Take-Two Interactive 0.15
## 8301 X360 2010 Action Microsoft Game Studios 0.06
## 8302 PS 1996 Fighting Sony Computer Entertainment 0.00
## 8303 PS2 2003 Action Midway Games 0.08
## 8304 PS2 2003 Role-Playing Square Enix 0.00
## 8305 PS2 2007 Role-Playing Namco Bandai Games 0.00
## 8306 Wii 2010 Misc UFO Interactive 0.16
## 8307 WS 2000 Strategy Namco Bandai Games 0.00
## 8308 GC 2003 Platform Warner Bros. Interactive Entertainment 0.13
## 8309 GBA 2005 Platform THQ 0.12
## 8310 PSP 2009 Action Namco Bandai Games 0.00
## 8311 PSP 2008 Sports Activision 0.16
## 8312 Wii 2010 Sports D3Publisher 0.16
## 8313 PSP 2007 Action Sony Computer Entertainment 0.07
## 8315 XB 2003 Action Interplay 0.13
## 8316 X360 2008 Role-Playing Codemasters 0.03
## 8317 PSP 2006 Sports Electronic Arts 0.13
## 8318 PSP 2013 Action Konami Digital Entertainment 0.00
## 8319 DC 1999 Racing Genki 0.00
## 8320 PS 1998 Fighting Agetec 0.05
## 8321 X360 2007 Action Activision 0.16
## 8322 Wii 2009 Sports Atari 0.16
## 8323 Wii 2008 Puzzle Deep Silver 0.04
## 8324 XB 2004 Action Eidos Interactive 0.13
## 8325 PS3 2009 Misc Sony Computer Entertainment 0.00
## 8326 PSP 2008 Sports Sony Computer Entertainment 0.16
## 8327 3DS 2012 Action Activision 0.13
## 8328 GBA 2005 Action Electronic Arts 0.12
## 8329 X360 2014 Action Activision 0.09
## 8330 PS 1999 Platform Atari 0.09
## 8331 GBA 2004 Misc N/A 0.12
## 8332 Wii 2008 Puzzle Mumbo Jumbo 0.16
## 8333 Wii 2008 Misc Game Factory 0.16
## 8334 X360 2009 Action Playlogic Game Factory 0.14
## 8336 X360 2010 Racing Capcom 0.07
## 8337 PSP 2004 Misc Konami Digital Entertainment 0.00
## 8338 N64 1999 Racing Midway Games 0.14
## 8339 N64 1999 Adventure Hudson Soft 0.05
## 8340 N64 2000 Shooter Acclaim Entertainment 0.12
## 8341 XB 2003 Action Electronic Arts 0.13
## 8342 GBA 2004 Misc N/A 0.12
## 8343 Wii 2008 Simulation Majesco Entertainment 0.14
## 8344 GBA 2004 Misc Nintendo 0.12
## 8345 PS3 2012 Role-Playing Nippon Ichi Software 0.06
## 8346 PS2 2009 Sports Spike 0.08
## 8347 PSP 2010 Action Namco Bandai Games 0.00
## 8348 PS2 2008 Misc Disney Interactive Studios 0.08
## 8349 PS2 2007 Adventure Kadokawa Shoten 0.00
## 8350 GBA 2004 Action Disney Interactive Studios 0.12
## 8351 PC 2005 Strategy Take-Two Interactive 0.02
## 8352 PSP 2013 Sports Konami Digital Entertainment 0.00
## 8353 PS 1995 Role-Playing Panther Software 0.02
## 8354 Wii 2010 Misc Ubisoft 0.16
## 8355 PS4 2015 Sports Electronic Arts 0.10
## 8356 X360 2010 Adventure Ubisoft 0.11
## 8357 DS 2010 Misc Telegames 0.16
## 8358 PS2 2006 Role-Playing Namco Bandai Games 0.00
## 8359 GBA 2004 Adventure Capcom 0.00
## 8360 DS 2008 Action THQ 0.16
## 8361 PS2 2001 Sports Tecmo Koei 0.05
## 8362 PS 2000 Action Konami Digital Entertainment 0.09
## 8363 Wii 2009 Puzzle Konami Digital Entertainment 0.10
## 8364 X360 2007 Misc Microsoft Game Studios 0.14
## 8365 PS2 2004 Action Electronic Arts 0.08
## 8366 X360 2009 Action Activision 0.12
## 8367 X360 2012 Action GameMill Entertainment 0.16
## 8368 PS2 2007 Action Blast! Entertainment Ltd 0.08
## 8369 GBA 2004 Misc N/A 0.12
## 8370 Wii 2013 Simulation Disney Interactive Studios 0.08
## 8371 Wii 2007 Misc Rising Star Games 0.11
## 8372 SNES 1996 Shooter Hudson Soft 0.00
## 8373 PS2 2004 Shooter Atari 0.08
## 8374 PS 2000 Action 3DO 0.09
## 8375 PS2 2005 Action Capcom 0.04
## 8376 PS 1996 Action Gremlin Interactive Ltd 0.09
## 8378 PS4 2015 Racing Milestone S.r.l. 0.00
## 8379 GC 2005 Sports Electronic Arts 0.13
## 8380 X360 2007 Racing Activision 0.15
## 8381 X360 2009 Action Disney Interactive Studios 0.11
## 8382 GBA 2003 Shooter Electronic Arts 0.12
## 8383 PS2 2007 Fighting Namco Bandai Games 0.00
## 8384 GC 2002 Platform TDK Mediactive 0.13
## 8385 PS 1998 Role-Playing SquareSoft 0.00
## 8386 PS2 2004 Sports Sony Computer Entertainment 0.08
## 8387 XB 2002 Shooter Infogrames 0.13
## 8388 PS 2001 Racing Hasbro Interactive 0.09
## 8389 PS 1996 Sports Gremlin Interactive Ltd 0.09
## 8390 3DS 2011 Misc Ubisoft 0.13
## 8391 XB 2003 Action Take-Two Interactive 0.13
## 8392 PSV 2015 Role-Playing Namco Bandai Games 0.00
## 8393 PS 1995 Racing Crystal Dynamics 0.09
## 8394 Wii 2010 Action Activision 0.15
## 8395 PS2 2002 Sports Electronic Arts 0.07
## 8396 PS2 2008 Misc THQ 0.08
## 8397 DS 2006 Fighting Nintendo 0.02
## 8398 PS 1998 Adventure Human Entertainment 0.02
## 8399 PS 2000 Action Ubisoft 0.09
## 8400 Wii 2007 Sports Ubisoft 0.15
## 8401 PS4 2016 Sports Konami Digital Entertainment 0.00
## 8402 GC 2003 Platform Capcom 0.13
## 8403 Wii 2009 Misc Mindscape 0.00
## 8404 PSP 2005 Racing Sony Computer Entertainment 0.14
## 8405 DS 2006 Platform Nintendo 0.00
## 8406 PS2 2008 Role-Playing Atlus 0.00
## 8407 X360 2010 Simulation 505 Games 0.08
## 8408 PS 1996 Misc Konami Digital Entertainment 0.00
## 8409 PS2 2000 Racing Acclaim Entertainment 0.08
## 8410 PS4 2016 Role-Playing Sega 0.06
## 8411 PS3 2008 Action Konami Digital Entertainment 0.13
## 8412 XB 2003 Fighting Eidos Interactive 0.13
## 8413 DS 2004 Puzzle Ignition Entertainment 0.10
## 8414 XB 2002 Action Midway Games 0.13
## 8415 PS4 2015 Action Tecmo Koei 0.05
## 8416 PS2 2003 Role-Playing Hudson Soft 0.00
## 8417 GC 2002 Role-Playing Activision 0.10
## 8418 PS3 2011 Racing Ubisoft 0.00
## 8419 X360 2009 Sports Focus Home Interactive 0.13
## 8420 GBA 2002 Racing THQ 0.12
## 8421 GBA 2002 Shooter BAM! Entertainment 0.12
## 8422 SNES 1996 Strategy Tecmo Koei 0.00
## 8423 DS 2010 Misc 505 Games 0.16
## 8424 DS 2007 Adventure Take-Two Interactive 0.15
## 8425 SNES 1993 Sports Hudson Soft 0.00
## 8426 DS 2009 Misc Game Life 0.04
## 8427 SNES 1996 Fighting Nintendo 0.00
## 8428 3DS 2014 Role-Playing Square Enix 0.00
## 8429 XOne 2015 Shooter 505 Games 0.08
## 8430 XB 2006 Shooter Eidos Interactive 0.12
## 8431 3DS 2014 Action Nippon Columbia 0.00
## 8432 X360 2015 Sports Deep Silver 0.15
## 8433 DS 2008 Action Activision 0.15
## 8434 PS3 2008 Shooter LucasArts 0.11
## 8435 PS2 2004 Misc Sega 0.08
## 8436 GC 2003 Misc Midway Games 0.13
## 8437 XB 2004 Adventure Vivendi Games 0.12
## 8438 GBA 2005 Misc DSI Games 0.12
## 8439 Wii 2008 Platform Namco Bandai Games 0.11
## 8441 PS2 2008 Sports Sony Computer Entertainment 0.08
## 8442 DS 2005 Action Vivendi Games 0.14
## 8443 SAT 1997 Action Capcom 0.00
## 8444 PC 2014 Role-Playing NCSoft 0.08
## 8445 3DS 2016 Role-Playing Namco Bandai Games 0.00
## 8446 X360 2010 Simulation Activision 0.12
## 8447 DS 2007 Misc IE Institute 0.00
## 8448 PS3 2014 Sports Konami Digital Entertainment 0.00
## 8449 PS4 2015 Action Marvelous Interactive 0.07
## 8450 SNES 1997 Sports Nintendo 0.00
## 8451 GC 2002 Adventure Nintendo 0.01
## 8452 PC 2012 Simulation Electronic Arts 0.00
## 8453 X360 2012 Action Sega 0.11
## 8454 XB 2004 Racing Empire Interactive 0.12
## 8455 3DS 2015 Role-Playing Namco Bandai Games 0.04
## 8456 PS3 2008 Sports Electronic Arts 0.15
## 8457 PS3 2010 Action Activision 0.14
## 8458 2600 1983 Action Parker Bros. 0.15
## 8459 2600 1982 Action Avalon Interactive 0.15
## 8460 2600 1981 Action Mattel Interactive 0.15
## 8461 SAT 1995 Shooter Konami Digital Entertainment 0.00
## 8462 X360 2007 Strategy LucasArts 0.13
## 8463 PS3 2012 Role-Playing Compile Heart 0.05
## 8464 PS2 2002 Platform Atari 0.08
## 8465 PSV 2015 Action Namco Bandai Games 0.00
## 8466 Wii 2010 Strategy Take-Two Interactive 0.13
## 8467 PS3 2016 Action Sony Computer Entertainment 0.13
## 8468 PSV 2013 Role-Playing Sega 0.00
## 8469 PS2 2001 Racing Atari 0.08
## 8470 PS2 2002 Role-Playing Sony Computer Entertainment 0.00
## 8471 PS2 2001 Racing LucasArts 0.08
## 8472 Wii 2008 Puzzle Popcorn Arcade 0.16
## 8473 GBA 2002 Racing THQ 0.12
## 8474 PS3 2014 Role-Playing Tecmo Koei 0.05
## 8475 PS3 2009 Action Activision 0.15
## 8476 X360 2009 Adventure Codemasters 0.14
## 8477 PS 2000 Shooter Fox Interactive 0.09
## 8478 PS2 2004 Sports Sony Computer Entertainment 0.08
## 8479 PSP 2006 Role-Playing Take-Two Interactive 0.13
## 8480 PSP 2008 Action Activision 0.12
## 8481 3DS 2011 Racing Codemasters 0.07
## 8482 DS 2011 Misc THQ 0.12
## 8483 Wii 2010 Shooter Neko Entertainment 0.08
## 8484 PS3 2010 Action Electronic Arts 0.11
## 8485 DS 2010 Role-Playing Square Enix 0.12
## 8486 X360 2011 Action Ignition Entertainment 0.07
## 8487 PS2 2003 Sports Sega 0.08
## 8488 Wii 2011 Action Sega 0.11
## 8489 PS2 2000 Racing Electronic Arts 0.06
## 8490 PSP 2006 Fighting Majesco Entertainment 0.13
## 8491 DS 2009 Fighting Konami Digital Entertainment 0.00
## 8492 X360 2010 Action Namco Bandai Games 0.08
## 8493 DS 2010 Action PlayV 0.00
## 8494 GC 2002 Shooter TDK Mediactive 0.13
## 8495 DS 2005 Sports Nintendo 0.11
## 8496 PS2 2002 Platform Infogrames 0.08
## 8497 PS 2000 Misc Hudson Soft 0.00
## 8498 GBA 2006 Simulation THQ 0.12
## 8499 PS2 2003 Adventure Atari 0.08
## 8500 PS3 2013 Action Tecmo Koei 0.02
## 8501 GBA 2006 Action Namco Bandai Games 0.12
## 8502 Wii 2007 Racing Activision 0.15
## 8503 Wii 2009 Action Vir2L Studios 0.14
## 8504 PC 2011 Strategy N/A 0.06
## 8505 Wii 2012 Action Activision 0.11
## 8506 Wii 2010 Action Unknown 0.11
## 8507 PS2 2003 Simulation Sammy Corporation 0.08
## 8508 3DS 2011 Adventure Konami Digital Entertainment 0.07
## 8509 DS 2006 Action Disney Interactive Studios 0.15
## 8510 Wii 2007 Fighting Atari 0.15
## 8511 PS2 2006 Adventure Sega 0.00
## 8512 GBA 2003 Action Ubisoft 0.12
## 8513 PSP 2010 Role-Playing Falcom Corporation 0.00
## 8514 X360 2011 Action Ubisoft Annecy 0.09
## 8515 PS 1995 Role-Playing Sony Computer Entertainment 0.09
## 8516 PSP 2009 Misc Disney Interactive Studios 0.13
## 8517 GBA 2005 Sports DTP Entertainment 0.12
## 8518 PS 2000 Sports Namco Bandai Games 0.00
## 8519 GC 2004 Misc Midway Games 0.13
## 8520 GC 2003 Racing THQ 0.13
## 8521 DS 2007 Strategy Sega 0.00
## 8522 PS 1998 Sports Victor Interactive 0.00
## 8523 PS 1998 Racing Gremlin Interactive Ltd 0.09
## 8524 XB 2003 Strategy Atari 0.12
## 8525 PS3 2009 Simulation Ubisoft 0.12
## 8526 PS2 2007 Misc Activision 0.08
## 8527 Wii 2012 Sports Take-Two Interactive 0.15
## 8528 X360 2014 Sports Konami Digital Entertainment 0.05
## 8529 PS4 2015 Action Tecmo Koei 0.07
## 8530 SNES 1992 Adventure ChunSoft 0.00
## 8531 3DS 2011 Role-Playing Namco Bandai Games 0.00
## 8532 GC 2005 Racing Vivendi Games 0.12
## 8533 X360 2011 Misc 505 Games 0.11
## 8534 Wii 2009 Sports Atari 0.15
## 8535 DS 2010 Simulation Majesco Entertainment 0.13
## 8536 X360 2014 Racing Deep Silver 0.15
## 8537 XB 2005 Shooter Electronic Arts 0.12
## 8538 PS2 2005 Misc Midway Games 0.08
## 8539 PS2 2002 Platform Midway Games 0.08
## 8540 PS3 2007 Action Ubisoft 0.14
## 8541 DS 2009 Puzzle D3Publisher 0.15
## 8542 DS 2005 Misc Nintendo 0.00
## 8543 PS2 2005 Adventure Activision 0.08
## 8544 PS2 2003 Action Ubisoft 0.08
## 8545 PS3 2012 Action Activision 0.12
## 8546 Wii 2007 Platform Konami Digital Entertainment 0.14
## 8547 PS2 2002 Adventure Acclaim Entertainment 0.08
## 8548 PSP 2011 Strategy Konami Digital Entertainment 0.00
## 8549 PS3 2008 Shooter Activision Value 0.15
## 8550 XB 2003 Action Tecmo Koei 0.12
## 8551 PS2 2003 Sports Activision 0.08
## 8552 GC 2005 Action THQ 0.12
## 8553 SNES 1997 Sports Konami Digital Entertainment 0.00
## 8555 PS3 2007 Sports Take-Two Interactive 0.15
## 8556 GC 2006 Platform D3Publisher 0.12
## 8557 DS 2006 Action Vivendi Games 0.13
## 8558 PSP 2006 Strategy Vivendi Games 0.15
## 8559 PS2 2005 Role-Playing Banpresto 0.00
## 8560 PS2 2006 Sports Konami Digital Entertainment 0.00
## 8561 PS2 2002 Shooter Konami Digital Entertainment 0.08
## 8562 X360 2006 Misc Activision 0.15
## 8563 GBA 2002 Racing Infogrames 0.12
## 8564 PS2 2008 Fighting Namco Bandai Games 0.08
## 8565 SNES 1995 Sports Konami Digital Entertainment 0.00
## 8566 Wii 2008 Fighting Midway Games 0.14
## 8567 PS2 2003 Misc Play It 0.08
## 8568 PSP 2006 Strategy Sony Online Entertainment 0.14
## 8569 GC 2005 Action Vivendi Games 0.12
## 8570 Wii 2009 Sports Activision 0.15
## 8571 PS3 2009 Fighting Ignition Entertainment 0.11
## 8572 DS 2010 Adventure Asylum Entertainment 0.00
## 8573 XOne 2014 Action Square Enix 0.08
## 8574 DS 2008 Sports Ubisoft 0.15
## 8575 DS 2009 Strategy Majesco Entertainment 0.15
## 8576 SNES 1991 Simulation Imagineer 0.00
## 8577 Wii 2011 Sports Take-Two Interactive 0.15
## 8578 PSP 2011 Action Capcom 0.00
## 8579 PC 2011 Sports Take-Two Interactive 0.09
## 8580 GBA 2001 Action THQ 0.11
## 8581 PS 1997 Sports Aques 0.00
## 8582 N64 1998 Fighting Ocean 0.13
## 8583 N64 1999 Shooter Crave Entertainment 0.13
## 8584 N64 2001 Action BAM! Entertainment 0.13
## 8585 N64 2001 Sports Konami Digital Entertainment 0.00
## 8586 N64 2000 Fighting Ubisoft 0.13
## 8587 N64 2000 Racing Midway Games 0.13
## 8588 N64 1999 Shooter Activision 0.13
## 8589 N64 2000 Strategy Nintendo 0.13
## 8590 N64 1999 Racing THQ 0.13
## 8591 N64 1998 Action Ubisoft 0.13
## 8592 N64 1999 Misc Midway Games 0.13
## 8593 N64 1996 Simulation Enix Corporation 0.00
## 8594 X360 2006 Role-Playing Namco Bandai Games 0.12
## 8595 DS 2009 Puzzle Ubisoft 0.00
## 8596 DS 2010 Action Namco Bandai Games 0.05
## 8597 DS 2006 Misc TDK Core 0.00
## 8598 PSP 2006 Simulation Rising Star Games 0.08
## 8599 PC 2014 Racing Ubisoft 0.00
## 8600 PSP 2008 Simulation Namco Bandai Games 0.00
## 8601 PS2 2003 Fighting Vivendi Games 0.08
## 8602 X360 2009 Adventure Focus Home Interactive 0.11
## 8603 PS2 2006 Role-Playing Namco Bandai Games 0.00
## 8604 XB 2004 Sports Zoo Digital Publishing 0.12
## 8605 PS3 2007 Shooter Vivendi Games 0.14
## 8606 X360 2006 Sports Midway Games 0.15
## 8607 DS 2010 Simulation THQ 0.15
## 8608 PS3 2011 Sports Ubisoft 0.08
## 8609 DS 2008 Sports Ubisoft 0.14
## 8610 DS 2008 Adventure Konami Digital Entertainment 0.03
## 8611 PS3 2013 Simulation Focus Home Interactive 0.00
## 8612 Wii 2010 Action Crave Entertainment 0.15
## 8613 PSV 2011 Action Sony Computer Entertainment 0.06
## 8614 DS 2009 Action THQ 0.08
## 8615 PS2 2004 Adventure Namco Bandai Games 0.08
## 8616 DS 2007 Role-Playing Success 0.16
## 8617 PC 2011 Shooter Electronic Arts 0.07
## 8618 SNES 1992 Sports Banpresto 0.00
## 8619 X360 2010 Sports Ubisoft 0.10
## 8620 PSP 2011 Sports Sony Computer Entertainment 0.15
## 8622 X360 2005 Sports Take-Two Interactive 0.13
## 8623 Wii 2009 Misc D3Publisher 0.14
## 8624 PS2 2006 Racing Empire Interactive 0.08
## 8625 PSP 2006 Fighting Atari 0.14
## 8626 PS 1995 Sports Electronic Arts 0.09
## 8627 DS 2008 Action Destineer 0.15
## 8628 X360 2013 Action Tecmo Koei 0.09
## 8629 PS 2000 Sports Sony Computer Entertainment 0.09
## 8630 Wii 2008 Action THQ 0.15
## 8631 X360 2012 Misc Ubisoft 0.13
## 8632 DS 2012 Action Warner Bros. Interactive Entertainment 0.00
## 8633 PS3 2014 Fighting Sega 0.05
## 8634 PS 2000 Sports Konami Digital Entertainment 0.00
## 8635 SAT 1998 Adventure Imagineer 0.00
## 8636 DS 2007 Misc Ubisoft 0.12
## 8637 Wii 2010 Strategy Konami Digital Entertainment 0.11
## 8638 PSV 2013 Adventure Warner Bros. Interactive Entertainment 0.02
## 8639 GBA 2001 Racing Konami Digital Entertainment 0.09
## 8640 SNES 1994 Fighting Capcom 0.00
## 8641 PS3 2008 Sports Midway Games 0.11
## 8642 GBA 2003 Racing Nintendo 0.11
## 8643 PS 1999 Racing Square 0.00
## 8644 DS 2011 Misc D3Publisher 0.14
## 8645 GBA 2001 Puzzle Namco Bandai Games 0.00
## 8646 DS 2009 Misc DTP Entertainment 0.14
## 8647 WiiU 2012 Action THQ 0.07
## 8648 Wii 2010 Adventure Destineer 0.15
## 8649 Wii 2011 Misc Electronic Arts 0.10
## 8650 DS 2007 Sports Spike 0.15
## 8651 PSP 2009 Sports Sega 0.00
## 8652 Wii 2011 Sports Take-Two Interactive 0.15
## 8653 PC 2010 Shooter City Interactive 0.00
## 8654 DS 2007 Misc 505 Games 0.15
## 8655 PS3 2011 Misc THQ 0.04
## 8656 GBA 2005 Action THQ 0.11
## 8657 PS3 2012 Role-Playing Nippon Ichi Software 0.04
## 8658 PS4 2016 Adventure Sega 0.00
## 8659 PS 1998 Misc Syscom 0.00
## 8660 X360 2009 Sports Aspyr 0.15
## 8661 PS 1996 Sports Electronic Arts 0.09
## 8662 X360 2010 Action Konami Digital Entertainment 0.10
## 8663 PS 1996 Fighting Acclaim Entertainment 0.01
## 8664 PS2 2004 Shooter Play It 0.08
## 8665 DS 2007 Puzzle Rising Star Games 0.13
## 8666 PSP 2010 Misc Ubisoft 0.11
## 8667 Wii 2007 Adventure Electronic Arts 0.14
## 8668 PS 1995 Shooter Sony Computer Entertainment 0.00
## 8669 PSP 2008 Strategy Namco Bandai Games 0.00
## 8670 GC 2003 Sports Electronic Arts 0.12
## 8671 DS 2006 Adventure THQ 0.14
## 8672 XOne 2013 Strategy Activision 0.11
## 8673 Wii 2010 Sports Atari 0.15
## 8674 PS4 2014 Fighting Arc System Works 0.10
## 8675 Wii 2009 Misc Activision 0.14
## 8676 DS 2010 Misc THQ 0.14
## 8677 3DS 2015 Role-Playing Sega 0.03
## 8678 PC 2011 Racing Codemasters 0.00
## 8679 3DS 2012 Misc Nintendo 0.00
## 8680 X360 2012 Simulation Konami Digital Entertainment 0.11
## 8681 DS 2010 Action Crave Entertainment 0.15
## 8682 Wii 2012 Action THQ 0.12
## 8683 GBA 2001 Racing THQ 0.11
## 8684 XB 2005 Shooter Microsoft Game Studios 0.12
## 8685 PS 1996 Racing Ubisoft 0.09
## 8686 DS 2005 Puzzle Ubisoft 0.10
## 8687 GC 2002 Sports Sega 0.12
## 8688 PS2 2007 Fighting AQ Interactive 0.06
## 8689 XB 2004 Sports Electronic Arts 0.12
## 8690 PSP 2010 Sports Konami Digital Entertainment 0.00
## 8691 PSP 2005 Shooter THQ 0.14
## 8692 PS2 2003 Shooter Vivendi Games 0.08
## 8693 XOne 2014 Adventure Telltale Games 0.08
## 8694 PSP 2011 Role-Playing Square Enix 0.00
## 8695 Wii 2007 Puzzle 505 Games 0.13
## 8696 Wii 2008 Misc Activision 0.14
## 8697 3DS 2012 Role-Playing Namco Bandai Games 0.00
## 8698 PS 1996 Action Eidos Interactive 0.09
## 8699 PC 2012 Action Nordic Games 0.03
## 8700 PS3 2010 Action THQ 0.07
## 8701 PS3 2011 Misc Namco Bandai Games 0.00
## 8702 DS 2009 Action Activision 0.14
## 8703 DS 2009 Simulation Ubisoft 0.15
## 8704 PS2 2008 Misc MTV Games 0.08
## 8705 3DS 2011 Action Marvelous Interactive 0.00
## 8706 DS 2005 Action Activision 0.14
## 8707 X360 2010 Action Ubisoft Annecy 0.07
## 8709 GBA 2002 Action TDK Mediactive 0.11
## 8710 DS 2007 Puzzle White Park Bay Software 0.13
## 8711 PS4 2013 Platform System 3 0.06
## 8712 PS 2000 Racing Vatical Entertainment 0.09
## 8713 PS 1996 Action Electronic Arts 0.09
## 8714 Wii 2011 Sports Take-Two Interactive 0.05
## 8715 DS 2010 Action Ubisoft 0.14
## 8716 GBA 2002 Sports Activision 0.11
## 8717 PS 1999 Racing Sony Computer Entertainment 0.09
## 8718 PS 1996 Misc Sony Computer Entertainment 0.02
## 8719 PS 1997 Racing BMG Interactive Entertainment 0.09
## 8720 DS 2007 Fighting Sega 0.12
## 8721 Wii 2011 Simulation Crave Entertainment 0.15
## 8722 GBA 2003 Fighting Namco Bandai Games 0.11
## 8723 PS 1998 Racing Tecmo Koei 0.00
## 8724 X360 2005 Sports Electronic Arts 0.11
## 8725 PS2 2001 Racing BAM! Entertainment 0.08
## 8726 PC 2011 Shooter Warner Bros. Interactive Entertainment 0.04
## 8727 X360 2011 Platform THQ 0.10
## 8728 PS2 2003 Shooter THQ 0.08
## 8729 DS 2009 Racing Activision 0.13
## 8730 3DS 2011 Adventure Ubisoft 0.07
## 8731 PS3 2010 Action Rising Star Games 0.08
## 8732 PSP 2006 Puzzle Konami Digital Entertainment 0.14
## 8733 PS2 2001 Misc Codemasters 0.08
## 8734 DS 2008 Puzzle Avanquest 0.14
## 8735 X360 2009 Action Activision 0.14
## 8736 DS 2008 Shooter Square Enix 0.12
## 8737 GC 2003 Racing Acclaim Entertainment 0.12
## 8738 PS2 2001 Racing Acclaim Entertainment 0.08
## 8739 PS3 2007 Sports Take-Two Interactive 0.14
## 8740 DS 2007 Role-Playing Namco Bandai Games 0.00
## 8741 PS2 2004 Role-Playing Tecmo Koei 0.08
## 8742 XB 2004 Platform Microsoft Game Studios 0.12
## 8743 X360 2009 Strategy Sega 0.11
## 8744 PS3 2009 Sports Take-Two Interactive 0.13
## 8745 PSP 2006 Sports Electronic Arts 0.07
## 8746 GC 2005 Platform THQ 0.12
## 8747 PC 2012 Adventure Daedalic 0.00
## 8748 3DS 2014 Simulation Natsume 0.12
## 8749 GC 2002 Sports Electronic Arts 0.12
## 8750 GC 2003 Sports Electronic Arts 0.12
## 8751 GC 2001 Racing Acclaim Entertainment 0.12
## 8752 XOne 2016 Sports Electronic Arts 0.13
## 8753 DS 2009 Puzzle GSP 0.00
## 8754 X360 2014 Action Konami Digital Entertainment 0.07
## 8755 PS2 2005 Role-Playing Atari 0.08
## 8756 X360 2009 Racing THQ 0.14
## 8757 PS 1999 Misc Sony Computer Entertainment 0.09
## 8758 2600 1989 Puzzle Atari 0.14
## 8759 2600 1982 Action Activision 0.14
## 8760 SAT 1996 Puzzle Sega 0.00
## 8762 PSP 2006 Sports Konami Digital Entertainment 0.00
## 8763 3DS 2011 Action Ubisoft 0.05
## 8764 XB 2004 Racing Zoo Digital Publishing 0.11
## 8765 DS 2010 Action Disney Interactive Studios 0.12
## 8766 PS3 2014 Action Square Enix 0.05
## 8767 DS 2009 Simulation City Interactive 0.13
## 8768 XB 2005 Strategy Deep Silver 0.11
## 8769 XOne 2015 Action Bethesda Softworks 0.07
## 8770 XB 2002 Action Atari 0.11
## 8771 GBA 2005 Misc N/A 0.11
## 8772 PSP 2009 Fighting Namco Bandai Games 0.14
## 8773 GC 2005 Platform THQ 0.12
## 8774 PS 1998 Racing GT Interactive 0.09
## 8775 Wii 2007 Action Tecmo Koei 0.11
## 8776 X360 2006 Shooter Microsoft Game Studios 0.12
## 8777 PS2 2005 Racing Konami Digital Entertainment 0.07
## 8778 PS2 2000 Sports Sony Computer Entertainment 0.07
## 8779 PS2 2004 Misc Eidos Interactive 0.07
## 8780 DS 2007 Strategy Square Enix 0.08
## 8781 Wii 2009 Shooter Activision 0.14
## 8782 GC 2004 Shooter Global Star 0.12
## 8783 Wii 2008 Simulation Deep Silver 0.13
## 8784 PSP 2011 Adventure Kadokawa Shoten 0.00
## 8785 DS 2006 Platform Vivendi Games 0.13
## 8786 PS2 2009 Sports Konami Digital Entertainment 0.00
## 8787 PS3 2007 Simulation Ubisoft 0.10
## 8788 DS 2009 Racing Zoo Digital Publishing 0.14
## 8789 X360 2010 Action THQ 0.12
## 8790 SAT 1997 Strategy Sega 0.00
## 8791 PS3 2013 Role-Playing Nippon Ichi Software 0.07
## 8792 GC 2003 Platform Konami Digital Entertainment 0.12
## 8793 DS 2005 Action THQ 0.13
## 8794 PC 2010 Action THQ 0.07
## 8795 PS2 2009 Action D3Publisher 0.05
## 8796 DS 2009 Puzzle Mindscape 0.00
## 8797 Wii 2010 Sports Namco Bandai Games 0.14
## 8798 PS2 2008 Sports Konami Digital Entertainment 0.05
## 8799 GBA 2005 Adventure THQ 0.11
## 8800 3DS 2015 Misc Square Enix 0.00
## 8801 DS 2010 Sports Take-Two Interactive 0.14
## 8802 3DS 2012 Platform Namco Bandai Games 0.08
## 8803 PS 2000 Action Activision 0.08
## 8804 Wii 2010 Sports D3Publisher 0.14
## 8805 PS3 2011 Action Sega 0.07
## 8806 PS3 2007 Action Take-Two Interactive 0.12
## 8807 Wii 2006 Shooter Ignition Entertainment 0.12
## 8808 DS 2010 Action Activision 0.11
## 8809 PSP 2012 Action Konami Digital Entertainment 0.00
## 8810 SAT 1997 Fighting Sega 0.00
## 8811 SNES 1996 Role-Playing SquareSoft 0.00
## 8812 PSV 2014 Action Namco Bandai Games 0.00
## 8813 GBA 2003 Action Ubisoft 0.11
## 8814 Wii 2008 Puzzle Majesco Entertainment 0.14
## 8815 GC 2003 Action Tomy Corporation 0.12
## 8816 XB 2003 Sports Sega 0.11
## 8817 XB 2002 Shooter Take-Two Interactive 0.11
## 8818 PS 1997 Adventure Sony Computer Entertainment 0.00
## 8819 GC 2005 Action Capcom 0.12
## 8820 PSP 2005 Role-Playing Sony Computer Entertainment 0.14
## 8821 DS 2010 Puzzle Astragon 0.09
## 8822 PS3 2007 Sports Electronic Arts 0.12
## 8823 PC 2011 Simulation Electronic Arts 0.05
## 8824 X360 2011 Action DTP Entertainment 0.08
## 8825 GC 2006 Platform Sega 0.12
## 8826 DS 2011 Misc Unknown 0.14
## 8827 PS 2001 Sports Electronic Arts 0.08
## 8828 DS 2010 Misc Game Factory 0.14
## 8829 XB 2004 Fighting Capcom 0.11
## 8830 X360 2007 Role-Playing Square Enix 0.13
## 8831 PSP 2007 Adventure Namco Bandai Games 0.00
## 8832 XB 2004 Shooter Atari 0.11
## 8833 PS2 2005 Adventure Atari 0.07
## 8834 PSV 2013 Role-Playing GungHo 0.08
## 8835 SNES 1991 Sports Imagineer 0.00
## 8836 PS2 2001 Sports Sony Computer Entertainment 0.07
## 8837 X360 2013 Shooter D3Publisher 0.06
## 8838 Wii 2007 Action Activision 0.13
## 8839 Wii 2007 Misc Xplosiv 0.14
## 8840 PS3 2012 Shooter EA Games 0.07
## 8841 PS2 2008 Fighting Ignition Entertainment 0.07
## 8842 PS3 2008 Sports Sony Computer Entertainment 0.14
## 8843 PS2 2005 Role-Playing Atari 0.07
## 8844 PS4 2015 Fighting Namco Bandai Games 0.00
## 8845 PC 2011 Action Unknown 0.00
## 8846 3DS 2013 Action Konami Digital Entertainment 0.04
## 8847 PS3 2015 Action Namco Bandai Games 0.00
## 8848 XOne 2014 Misc Disney Interactive Studios 0.11
## 8849 GBA 2004 Misc N/A 0.11
## 8850 PS2 2001 Racing Electronic Arts 0.07
## 8851 PSV 2014 Role-Playing Nippon Ichi Software 0.02
## 8852 GC 2002 Simulation Titus 0.12
## 8853 SAT 1995 Sports Sega 0.00
## 8854 PSP 2010 Action Activision 0.09
## 8855 PSV 2014 Role-Playing Sony Computer Entertainment 0.00
## 8856 PSP 2011 Role-Playing Sony Computer Entertainment 0.00
## 8857 3DS 2015 Simulation Marvelous Entertainment 0.04
## 8858 GBA 2005 Action THQ 0.11
## 8859 PS2 2008 Shooter Activision 0.07
## 8860 PS2 2008 Sports Electronic Arts 0.07
## 8861 XOne 2016 Platform Electronic Arts 0.08
## 8862 N64 2001 Sports Media Factory 0.00
## 8863 N64 2000 Platform Epoch 0.00
## 8864 N64 1997 Adventure Take-Two Interactive 0.12
## 8865 N64 1997 Fighting Vic Tokai 0.12
## 8866 PSV 2015 Role-Playing Nihon Falcom Corporation 0.00
## 8867 GC 2002 Sports Acclaim Entertainment 0.12
## 8868 Wii 2009 Action Destineer 0.14
## 8869 DS 2009 Simulation Ubisoft 0.14
## 8870 PS 1998 Action Activision 0.08
## 8871 XB 2002 Fighting Rage Software 0.11
## 8872 XB 2003 Racing Empire Interactive 0.11
## 8873 PSV 2016 Role-Playing Nippon Ichi Software 0.02
## 8874 Wii 2008 Adventure JoWood Productions 0.13
## 8875 Wii 2011 Sports Sega 0.05
## 8876 SNES 1995 Puzzle Nintendo 0.00
## 8877 Wii 2008 Action Destineer 0.14
## 8878 XB 2004 Shooter THQ 0.11
## 8879 Wii 2007 Racing Activision 0.13
## 8880 PS3 2007 Shooter Activision 0.12
## 8881 XB 2006 Action THQ 0.11
## 8882 PS3 2009 Sports Konami Digital Entertainment 0.00
## 8883 PS2 2001 Shooter Codemasters 0.07
## 8884 GC 2006 Action Activision 0.12
## 8885 DS 2005 Puzzle 505 Games 0.14
## 8886 Wii 2007 Action Vivendi Games 0.12
## 8887 X360 2009 Misc MTV Games 0.14
## 8888 PS 1998 Strategy Mindscape 0.08
## 8889 GBA 2002 Sports Acclaim Entertainment 0.11
## 8890 XB 2004 Action THQ 0.11
## 8891 PS 1999 Sports Tecmo Koei 0.00
## 8892 PS3 2013 Sports Take-Two Interactive 0.14
## 8893 Wii 2011 Racing Activision 0.10
## 8894 PS3 2015 Action Konami Digital Entertainment 0.00
## 8895 PS2 2005 Racing Ubisoft 0.07
## 8896 GC 2006 Action Namco Bandai Games 0.11
## 8897 GBA 2004 Misc N/A 0.11
## 8898 X360 2008 Simulation Ubisoft 0.06
## 8899 GC 2005 Adventure Nintendo 0.11
## 8901 PS 1998 Fighting Sony Computer Entertainment 0.08
## 8902 Wii 2009 Misc Electronic Arts 0.14
## 8903 GBA 2002 Fighting Capcom 0.11
## 8904 DS 2008 Role-Playing D3Publisher 0.13
## 8905 SAT 1997 Shooter Namco Bandai Games 0.00
## 8906 DS 2004 Racing Namco Bandai Games 0.14
## 8907 PS4 2014 Action Tecmo Koei 0.04
## 8908 Wii 2008 Adventure Sega 0.14
## 8909 GEN 1993 Fighting Capcom 0.00
## 8910 PS3 2011 Action Konami Digital Entertainment 0.00
## 8911 PS2 2006 Fighting Namco Bandai Games 0.00
## 8912 PS 2000 Sports Konami Digital Entertainment 0.00
## 8913 DS 2005 Puzzle 505 Games 0.14
## 8914 DS 2006 Sports Konami Digital Entertainment 0.00
## 8915 Wii 2008 Puzzle Game Factory 0.13
## 8916 Wii 2008 Sports THQ 0.14
## 8917 DC 2001 Adventure Sega 0.00
## 8918 PS2 2008 Sports Bethesda Softworks 0.07
## 8919 XB 2005 Misc Capcom 0.11
## 8920 PS2 2003 Shooter Play It 0.07
## 8921 GC 2005 Action Vivendi Games 0.11
## 8922 GC 2005 Action Ubisoft 0.11
## 8923 PSP 2011 Adventure Banpresto 0.00
## 8924 Wii 2009 Sports Take-Two Interactive 0.14
## 8925 XB 2005 Platform Namco Bandai Games 0.11
## 8926 PSV 2014 Adventure Telltale Games 0.10
## 8927 PSP 2009 Simulation Rising Star Games 0.07
## 8928 XB 2003 Role-Playing Sega 0.11
## 8929 PC 2012 Racing Codemasters 0.01
## 8931 DS 2007 Misc Ubisoft 0.13
## 8932 X360 2011 Action Black Bean Games 0.08
## 8933 PSP 2008 Misc Ignition Entertainment 0.13
## 8934 PSP 2004 Fighting Capcom 0.13
## 8935 X360 2009 Sports Take-Two Interactive 0.11
## 8936 GC 2005 Action Electronic Arts 0.11
## 8937 PS 2001 Racing Activision 0.08
## 8938 PS4 2014 Action Sega 0.00
## 8939 PSV 2011 Racing Codemasters 0.03
## 8940 PS 2000 Platform Ubisoft 0.08
## 8941 PS 1997 Strategy Namco Bandai Games 0.00
## 8942 PS 1999 Adventure Crave Entertainment 0.08
## 8943 XB 2004 Platform Vivendi Games 0.11
## 8944 PS2 2000 Simulation Konami Digital Entertainment 0.00
## 8945 DS 2005 Action Konami Digital Entertainment 0.15
## 8946 PSV 2014 Adventure Idea Factory 0.09
## 8947 3DS 2013 Action Nippon Columbia 0.00
## 8948 XOne 2016 Role-Playing Square Enix 0.08
## 8949 XB 2006 Sports Electronic Arts 0.11
## 8950 DS 2009 Role-Playing Namco Bandai Games 0.00
## 8951 GBA 2004 Sports Konami Digital Entertainment 0.00
## 8952 3DS 2012 Platform Ubisoft 0.06
## 8953 X360 2011 Action Sega 0.09
## 8954 GBA 2003 Shooter Electronic Arts 0.11
## 8955 X360 2012 Role-Playing Deep Silver 0.05
## 8956 PS 1996 Adventure Crystal Dynamics 0.08
## 8957 DS 2007 Shooter Vivendi Games 0.13
## 8958 XB 2005 Misc Sega 0.11
## 8959 PS 1999 Role-Playing Atlus 0.00
## 8960 DS 2008 Platform 505 Games 0.00
## 8961 PC 2014 Shooter Sega 0.00
## 8962 PS3 2010 Sports Sony Computer Entertainment 0.13
## 8963 DS 2011 Misc Namco Bandai Games 0.00
## 8964 3DS 2011 Misc Namco Bandai Games 0.09
## 8965 Wii 2010 Sports Black Bean Games 0.12
## 8966 DS 2010 Sports Atari 0.14
## 8967 PS 1997 Racing Sony Computer Entertainment 0.08
## 8968 GBA 2005 Misc Vivendi Games 0.10
## 8969 GC 2003 Shooter Ubisoft 0.11
## 8970 PS 2001 Simulation Konami Digital Entertainment 0.08
## 8971 X360 2010 Action Activision 0.11
## 8972 XB 2001 Racing Eidos Interactive 0.11
## 8973 DS 2010 Misc Activision 0.14
## 8974 PSP 2013 Role-Playing Namco Bandai Games 0.00
## 8975 PS2 2001 Racing Sony Computer Entertainment 0.07
## 8976 PSP 2011 Role-Playing Unknown 0.00
## 8977 DS 2008 Misc Electronic Arts 0.13
## 8978 PS2 2002 Sports Acclaim Entertainment 0.07
## 8979 DS 2009 Puzzle The Adventure Company 0.07
## 8980 DS 2004 Sports Electronic Arts 0.13
## 8981 SAT 1995 Fighting Namco Bandai Games 0.00
## 8982 GBA 2005 Misc Sega 0.10
## 8983 GBA 2003 Role-Playing Konami Digital Entertainment 0.10
## 8984 X360 2007 Racing THQ 0.13
## 8985 Wii 2010 Strategy Namco Bandai Games 0.00
## 8986 DS 2010 Misc THQ 0.14
## 8987 XB 2004 Fighting Zoo Digital Publishing 0.11
## 8988 PS 1995 Role-Playing Sony Computer Entertainment 0.00
## 8989 PSV 2013 Action Tecmo Koei 0.04
## 8990 DS 2013 Action Activision 0.00
## 8991 GBA 2004 Action Crave Entertainment 0.10
## 8992 DS 2008 Shooter Ignition Entertainment 0.13
## 8993 GC 2002 Sports Midway Games 0.11
## 8994 DS 2007 Role-Playing Namco Bandai Games 0.00
## 8995 XB 2003 Action Microsoft Game Studios 0.11
## 8996 PSP 2010 Role-Playing Falcom Corporation 0.09
## 8997 PS2 2005 Role-Playing Ghostlight 0.07
## 8998 PSP 2006 Platform Capcom 0.12
## 8999 PS2 2007 Adventure Ubisoft 0.07
## 9000 PS2 2002 Fighting Titus 0.07
## 9001 DS 2006 Misc Namco Bandai Games 0.02
## 9002 PSV 2014 Action Tecmo Koei 0.03
## 9003 GBA 2002 Sports Konami Digital Entertainment 0.00
## 9004 XB 2005 Racing Midway Games 0.11
## 9005 GEN 1994 Role-Playing Game Arts 0.00
## 9006 DS 2009 Platform Warner Bros. Interactive Entertainment 0.13
## 9007 PS 2001 Puzzle Empire Interactive 0.08
## 9008 3DS 2014 Sports Kadokawa Shoten 0.00
## 9009 3DS 2013 Action D3Publisher 0.10
## 9010 PSV 2014 Role-Playing Nippon Ichi Software 0.07
## 9011 PS 1997 Sports Gremlin Interactive Ltd 0.08
## 9012 PS2 2009 Shooter Activision 0.07
## 9013 PS2 2007 Action Disney Interactive Studios 0.07
## 9014 GB 2000 Adventure Media Factory 0.00
## 9015 SCD 1994 Strategy Sega 0.00
## 9016 GBA 2003 Platform Ubisoft 0.10
## 9017 PS2 2001 Action Wanadoo 0.07
## 9018 PS 1998 Action Sony Computer Entertainment 0.08
## 9019 Wii 2011 Action THQ 0.08
## 9020 DS 2010 Simulation Nobilis 0.13
## 9021 DS 2009 Puzzle Zoo Games 0.13
## 9022 X360 2010 Racing Konami Digital Entertainment 0.12
## 9023 DS 2009 Adventure Nintendo 0.00
## 9024 PS2 2005 Role-Playing 505 Games 0.07
## 9025 Wii 2010 Action Atari 0.13
## 9026 GC 2007 Action THQ 0.11
## 9027 PS2 2009 Action Electronic Arts 0.11
## 9028 PS2 2001 Platform TDK Mediactive 0.07
## 9029 DS 2008 Role-Playing Namco Bandai Games 0.00
## 9030 PS3 2011 Action Tecmo Koei 0.00
## 9031 Wii 2008 Misc SouthPeak Games 0.10
## 9032 PS 1997 Racing Psygnosis 0.08
## 9033 XOne 2015 Action Bethesda Softworks 0.08
## 9034 GBA 2001 Platform Infogrames 0.10
## 9035 PSP 2009 Action Electronic Arts 0.11
## 9036 PC 2010 Role-Playing Electronic Arts 0.00
## 9037 DS 2009 Puzzle UFO Interactive 0.13
## 9038 PSV 2015 Action Disney Interactive Studios 0.00
## 9039 PS 1996 Fighting Acclaim Entertainment 0.08
## 9040 DS 2006 Racing Ubisoft 0.09
## 9041 Wii 2006 Misc System 3 Arcade Software 0.13
## 9042 PS2 2004 Adventure Codemasters 0.07
## 9043 DS 2011 Action Activision 0.12
## 9044 PS2 2006 Adventure THQ 0.07
## 9045 PS2 2004 Role-Playing Tecmo Koei 0.07
## 9046 X360 2006 Action Eidos Interactive 0.10
## 9047 PC 2009 Shooter 505 Games 0.00
## 9048 PS 2001 Racing THQ 0.08
## 9049 PSP 2011 Action Spike 0.00
## 9050 DS 2010 Action Warner Bros. Interactive Entertainment 0.11
## 9051 GC 2002 Simulation Nintendo 0.00
## 9052 GBA 2005 Misc Activision 0.10
## 9053 GB 2001 Role-Playing Enix Corporation 0.00
## 9054 PS2 2003 Puzzle Mindscape 0.07
## 9055 Wii 2008 Action THQ 0.13
## 9056 PC 2000 Strategy Ubisoft 0.02
## 9057 PSP 2008 Racing Xplosiv 0.05
## 9058 PS 2002 Action Namco Bandai Games 0.00
## 9059 PS 1997 Strategy SquareSoft 0.00
## 9060 PSP 2006 Misc 505 Games 0.13
## 9061 GC 2004 Sports Electronic Arts 0.11
## 9062 3DS 2011 Platform Nippon Ichi Software 0.09
## 9063 PC 2007 Shooter Electronic Arts 0.00
## 9064 DS 2008 Sports Arc System Works 0.13
## 9065 Wii 2007 Fighting Ubisoft 0.07
## 9066 PS3 2010 Role-Playing Compile Heart 0.09
## 9067 PS3 2011 Racing Black Bean Games 0.01
## 9068 DC 1998 Fighting Eidos Interactive 0.00
## 9069 PS2 2001 Sports 3DO 0.07
## 9070 DS 2008 Role-Playing Eidos Interactive 0.12
## 9071 PSP 2011 Adventure Broccoli 0.00
## 9072 3DS 2012 Action Marvelous Entertainment 0.00
## 9073 PS2 2004 Misc Codemasters 0.07
## 9074 DS 2009 Simulation Majesco Entertainment 0.13
## 9075 PSP 2010 Role-Playing Namco Bandai Games 0.00
## 9076 XB 2003 Action Atari 0.11
## 9077 PC 2003 Role-Playing LucasArts 0.01
## 9078 XB 2005 Sports Electronic Arts 0.11
## 9079 XB 2002 Sports Sega 0.11
## 9080 PSP 2008 Role-Playing Acquire 0.06
## 9081 DS 2010 Action D3Publisher 0.10
## 9083 PSP 2004 Role-Playing Namco Bandai Games 0.03
## 9084 Wii 2007 Misc Ubisoft 0.13
## 9085 DS 2008 Role-Playing GungHo 0.13
## 9086 GBA 2001 Shooter Activision 0.10
## 9087 PS3 2014 Action Namco Bandai Games 0.00
## 9088 PS3 2010 Role-Playing Ubisoft Annecy 0.06
## 9089 PS 2001 Action Acclaim Entertainment 0.08
## 9090 PS2 2001 Misc Sony Computer Entertainment 0.07
## 9091 PSP 2009 Role-Playing Atlus 0.07
## 9092 XB 2004 Racing Sega 0.11
## 9093 PS3 2012 Action Capcom 0.00
## 9094 DC 2000 Fighting Virgin Interactive 0.00
## 9095 XB 2006 Action Eidos Interactive 0.11
## 9096 PS 1998 Role-Playing SquareSoft 0.00
## 9097 DS 2006 Fighting D3Publisher 0.00
## 9098 PS 1997 Shooter Sony Computer Entertainment 0.01
## 9099 PS2 2008 Puzzle Empire Interactive 0.07
## 9100 PSP 2005 Sports Sony Computer Entertainment 0.13
## 9101 GBA 2004 Role-Playing Konami Digital Entertainment 0.10
## 9102 PSP 2009 Sports Takara Tomy 0.09
## 9103 XB 2002 Sports Midway Games 0.11
## 9104 3DS 2015 Action Nippon Columbia 0.00
## 9105 PS2 2002 Adventure Electronic Arts 0.07
## 9106 PS2 2001 Action Acclaim Entertainment 0.07
## 9107 2600 1982 Action Atari 0.13
## 9108 GB 2000 Role-Playing Konami Digital Entertainment 0.00
## 9109 PC 2009 Role-Playing Deep Silver 0.00
## 9110 DS 2008 Action D3Publisher 0.11
## 9111 GBA 2002 Platform Infogrames 0.10
## 9112 PS2 2006 Action Take-Two Interactive 0.07
## 9113 WiiU 2014 Action Ubisoft 0.08
## 9114 DS 2004 Puzzle Nintendo 0.08
## 9115 DS 2007 Adventure Zoo Digital Publishing 0.13
## 9116 XB 2003 Platform THQ 0.11
## 9117 DS 2009 Racing THQ 0.13
## 9118 DS 2007 Simulation Touchstone 0.07
## 9119 DS 2007 Action Zoo Digital Publishing 0.13
## 9120 GC 2002 Shooter Electronic Arts 0.11
## 9121 GC 2003 Action THQ 0.11
## 9122 PS2 2009 Sports Activision Value 0.07
## 9123 PS 1998 Adventure Sunsoft 0.08
## 9124 DS 2005 Role-Playing Tomy Corporation 0.00
## 9125 PS 2000 Racing Sony Computer Entertainment 0.08
## 9126 PS 1998 Strategy General Entertainment 0.00
## 9127 3DS 2012 Action Excalibur Publishing 0.00
## 9128 PS3 2008 Sports Electronic Arts 0.13
## 9129 PS2 2002 Sports Sony Computer Entertainment 0.07
## 9130 PSP 2011 Adventure Acquire 0.00
## 9131 PS 1997 Racing THQ 0.08
## 9132 PS2 2008 Action Capcom 0.07
## 9133 X360 2007 Simulation Ubisoft 0.11
## 9134 PS 1997 Fighting Namco Bandai Games 0.00
## 9135 XB 2004 Platform Vivendi Games 0.11
## 9136 DS 2007 Platform 505 Games 0.00
## 9137 PC 2015 Action Square Enix 0.03
## 9138 PS2 2008 Role-Playing Banpresto 0.07
## 9139 PSP 2005 Strategy Electronic Arts 0.11
## 9140 X360 2009 Action SouthPeak Games 0.10
## 9141 PS2 2005 Sports Sony Computer Entertainment 0.07
## 9142 PS2 2004 Shooter Play It 0.07
## 9143 PSP 2011 Strategy Namco Bandai Games 0.00
## 9144 X360 2010 Action Activision 0.11
## 9145 WiiU 2012 Action Ubisoft 0.06
## 9146 PS3 2011 Sports Ubisoft 0.00
## 9147 PS 2001 Sports Sony Computer Entertainment 0.08
## 9148 PS3 2008 Misc Sony Computer Entertainment 0.00
## 9149 PS 1997 Role-Playing Sony Computer Entertainment 0.08
## 9150 Wii 2009 Misc Warner Bros. Interactive Entertainment 0.13
## 9151 PSP 2007 Role-Playing Nippon Ichi Software 0.00
## 9153 N64 1999 Racing Codemasters 0.11
## 9154 N64 1999 Sports THQ 0.11
## 9155 GC 2002 Role-Playing Virgin Interactive 0.11
## 9156 N64 1998 Action GT Interactive 0.11
## 9157 PS 1999 Role-Playing Sunsoft 0.08
## 9158 PSV 2013 Fighting Warner Bros. Interactive Entertainment 0.11
## 9159 PS2 2008 Fighting Capcom 0.00
## 9160 DS 2010 Misc Atari 0.13
## 9161 PS2 2002 Shooter Electronic Arts 0.07
## 9162 X360 2010 Sports Codemasters 0.00
## 9163 PS 1995 Shooter Sony Computer Entertainment 0.02
## 9164 GC 2006 Adventure THQ 0.11
## 9165 DC 2000 Fighting Acclaim Entertainment 0.00
## 9166 Wii 2009 Sports Destineer 0.13
## 9167 PS 1997 Sports Mindscape 0.08
## 9168 PS2 2002 Adventure Sony Computer Entertainment 0.07
## 9169 X360 2009 Simulation Ubisoft 0.10
## 9170 PS 1997 Platform Kemco 0.08
## 9171 PSP 2011 Action D3Publisher 0.00
## 9173 DS 2007 Racing Activision 0.13
## 9174 DS 2005 Action Vivendi Games 0.12
## 9175 GBA 2002 Action Capcom 0.00
## 9176 XB 2004 Fighting Atari 0.10
## 9177 3DS 2012 Action Activision 0.12
## 9178 X360 2006 Action Vivendi Games 0.12
## 9179 PS2 2002 Racing Atari 0.07
## 9180 PS 1999 Adventure Mattel Interactive 0.08
## 9181 GBA 2003 Action TDK Mediactive 0.10
## 9182 SAT 1997 Adventure Imadio 0.00
## 9183 Wii 2009 Role-Playing Rising Star Games 0.10
## 9184 X360 2010 Misc Microsoft Game Studios 0.00
## 9185 3DS 2015 Action Capcom 0.00
## 9186 PS 1996 Sports Acclaim Entertainment 0.08
## 9187 GBA 2005 Platform Disney Interactive Studios 0.10
## 9188 DS 2005 Sports Konami Digital Entertainment 0.00
## 9189 XB 2005 Strategy Take-Two Interactive 0.11
## 9190 XB 2002 Adventure Swing! Entertainment 0.11
## 9191 PS 1996 Sports Konami Digital Entertainment 0.08
## 9192 PS3 2014 Sports Konami Digital Entertainment 0.00
## 9193 XB 2003 Action Capcom 0.08
## 9194 DS 2008 Action Mindscape 0.10
## 9195 DS 2011 Misc Activision 0.10
## 9196 GC 2002 Sports Midway Games 0.11
## 9197 NG 1993 Fighting SNK 0.00
## 9198 XOne 2014 Adventure Telltale Games 0.08
## 9199 DS 2006 Misc 505 Games 0.13
## 9200 PC 2012 Shooter Take-Two Interactive 0.10
## 9201 X360 2010 Action Electronic Arts 0.10
## 9202 X360 2011 Misc Konami Digital Entertainment 0.13
## 9203 PS 2001 Platform Unknown 0.08
## 9204 Wii 2011 Action Electronic Arts 0.08
## 9205 XB 2005 Platform Disney Interactive Studios 0.10
## 9206 PS3 2010 Misc Unknown 0.13
## 9207 WiiU 2012 Action Activision 0.09
## 9208 PS 1995 Simulation Virgin Interactive 0.08
## 9209 X360 2011 Adventure Ubisoft 0.10
## 9210 Wii 2007 Sports Konami Digital Entertainment 0.00
## 9211 PSV 2012 Fighting Sony Computer Entertainment 0.06
## 9212 PS3 2012 Action Ubisoft Annecy 0.00
## 9213 X360 2006 Sports Activision Value 0.13
## 9214 DS 2011 Racing D3Publisher 0.10
## 9215 PS3 2007 Sports Take-Two Interactive 0.13
## 9216 PS 1996 Puzzle Virgin Interactive 0.08
## 9217 DS 2008 Strategy SouthPeak Games 0.12
## 9218 GBA 2002 Action THQ 0.10
## 9219 GC 2002 Fighting Namco Bandai Games 0.04
## 9220 PSP 2007 Misc Oxygen Interactive 0.12
## 9221 PS2 2001 Misc Sony Music Entertainment 0.00
## 9222 PS 1999 Adventure Aqua Plus 0.00
## 9223 PSP 2007 Role-Playing 505 Games 0.07
## 9224 TG16 1995 Adventure NEC 0.00
## 9225 SNES 1998 Platform Capcom 0.00
## 9226 PS3 2014 Fighting Atlus 0.00
## 9227 WiiU 2012 Sports Take-Two Interactive 0.08
## 9228 Wii 2009 Misc Activision 0.12
## 9229 DS 2005 Action Konami Digital Entertainment 0.00
## 9230 Wii 2010 Misc Electronic Arts 0.13
## 9231 PC 2015 Simulation Paradox Interactive 0.00
## 9232 PSP 2011 Sports Sega 0.00
## 9233 PSP 2004 Misc Sony Computer Entertainment 0.00
## 9234 GC 2005 Sports Electronic Arts 0.11
## 9235 GC 2002 Racing Ubisoft 0.11
## EU_Sales JP_Sales Other_Sales Global_Sales
## 1 29.02 3.77 8.46 82.74
## 2 3.58 6.81 0.77 40.24
## 3 12.88 3.79 3.31 35.82
## 4 11.01 3.28 2.96 33.00
## 5 8.89 10.22 1.00 31.37
## 6 2.26 4.22 0.58 30.26
## 7 9.23 6.50 2.90 30.01
## 8 9.20 2.93 2.85 29.02
## 9 7.06 4.70 2.26 28.62
## 10 0.63 0.28 0.47 28.31
## 11 11.00 1.93 2.75 24.76
## 12 7.57 4.13 1.92 23.42
## 13 6.18 7.20 0.71 23.10
## 14 8.03 3.60 2.15 22.72
## 15 8.59 2.53 1.79 22.00
## 16 4.94 0.24 1.67 21.82
## 17 9.27 0.97 4.14 21.40
## 18 0.40 0.41 10.57 20.81
## 19 3.75 3.54 0.55 20.61
## 20 9.26 4.16 2.05 20.22
## 21 4.52 6.04 1.37 18.36
## 22 2.71 4.18 0.42 18.14
## 23 3.44 3.84 0.46 17.28
## 24 5.31 0.06 1.38 16.38
## 25 5.49 0.47 1.78 16.15
## 26 3.90 5.38 0.50 15.85
## 27 3.28 5.65 0.82 15.32
## 28 5.36 5.32 1.18 15.30
## 29 5.09 1.87 1.16 14.98
## 30 4.28 0.13 1.32 14.76
## 31 5.04 3.12 0.59 14.64
## 32 3.73 0.11 1.13 14.64
## 33 4.05 4.34 0.79 14.35
## 34 5.81 0.35 2.31 14.24
## 35 5.88 0.65 2.52 14.03
## 36 4.30 0.07 1.12 13.73
## 37 3.63 0.08 1.29 13.51
## 38 5.82 0.49 1.62 13.46
## 39 4.51 0.30 1.30 13.10
## 40 2.61 2.66 1.02 13.04
## 41 4.44 0.48 1.83 12.73
## 42 3.52 5.33 0.88 12.27
## 43 3.91 2.67 0.89 12.21
## 44 2.83 0.13 1.21 12.14
## 45 5.81 0.36 2.02 11.98
## 46 2.77 3.96 0.77 11.90
## 47 2.85 1.91 0.23 11.89
## 48 0.01 1.10 7.53 11.66
## 49 3.40 1.20 0.76 11.52
## 50 3.37 3.08 0.65 11.33
## 51 2.04 2.69 0.29 11.18
## 52 3.10 0.14 1.03 11.02
## 53 3.87 2.54 0.52 10.95
## 54 2.99 2.13 0.78 10.79
## 55 4.88 0.81 2.12 10.77
## 56 3.69 0.38 1.63 10.69
## 57 3.76 0.44 1.62 10.57
## 58 2.15 2.12 0.29 10.55
## 59 2.65 3.15 0.35 10.49
## 60 3.11 1.25 0.98 10.42
## 61 3.15 0.00 1.07 10.26
## 62 2.63 0.04 0.82 10.21
## 63 1.98 0.08 0.78 9.88
## 64 1.94 2.23 0.15 9.87
## 65 3.07 2.47 0.63 9.82
## 66 2.36 0.04 0.73 9.76
## 67 2.47 3.28 0.96 9.72
## 68 3.73 0.38 1.38 9.59
## 69 2.89 0.01 0.78 9.52
## 70 3.42 1.69 0.50 9.49
## 71 2.38 0.13 0.90 9.32
## 72 1.71 3.00 0.23 9.30
## 73 2.83 0.02 0.77 9.20
## 74 2.32 4.36 0.41 9.09
## 75 1.88 1.98 0.70 9.02
## 76 2.86 0.10 0.85 8.84
## 77 1.24 3.81 0.18 8.76
## 78 6.06 0.06 1.26 8.49
## 79 3.53 2.49 0.68 8.49
## 80 1.53 0.05 0.08 8.49
## 81 2.30 1.58 0.73 8.42
## 82 1.86 3.14 0.43 8.33
## 83 5.05 0.13 2.01 8.24
## 84 6.42 0.00 0.71 8.11
## 85 2.01 0.13 0.15 8.09
## 86 3.90 0.66 0.91 8.06
## 87 2.07 2.73 0.33 8.05
## 88 1.72 3.63 0.23 7.86
## 89 1.78 2.69 0.55 7.84
## 90 0.45 0.00 0.08 7.81
## 91 2.83 0.24 1.75 7.72
## 92 2.42 0.98 0.64 7.69
## 93 3.29 0.22 1.23 7.67
## 94 3.30 0.14 1.37 7.60
## 95 1.89 1.45 0.16 7.60
## 96 2.17 1.31 0.31 7.58
## 97 1.18 0.70 0.19 7.46
## 98 1.35 2.42 0.43 7.45
## 99 1.90 0.00 0.69 7.37
## 100 2.13 0.06 0.69 7.34
## 101 2.19 0.60 0.70 7.31
## 102 2.09 0.01 0.67 7.30
## 103 3.03 0.00 0.73 7.27
## 104 2.93 0.35 1.10 7.23
## 105 2.83 0.08 1.02 7.20
## 106 2.22 1.40 0.29 7.16
## 107 1.75 1.42 0.28 7.13
## 108 1.04 1.39 0.22 7.07
## 109 2.07 1.27 0.49 6.96
## 110 3.15 0.24 1.10 6.96
## 111 1.77 0.87 0.19 6.95
## 112 2.21 0.00 0.56 6.91
## 113 4.32 0.07 1.73 6.90
## 114 3.02 0.08 1.09 6.90
## 115 2.75 0.17 0.99 6.83
## 116 2.80 0.19 1.06 6.83
## 117 2.35 0.94 0.30 6.82
## 118 2.64 0.00 0.67 6.81
## 119 1.92 0.06 0.64 6.76
## 120 2.25 0.21 1.00 6.73
## 121 2.30 0.28 1.04 6.72
## 122 4.32 0.11 1.42 6.69
## 123 2.78 1.60 0.62 6.67
## 124 2.61 0.17 1.03 6.60
## 125 4.29 0.05 1.47 6.59
## 126 1.84 1.03 0.47 6.59
## 127 2.71 0.25 1.05 6.56
## 128 0.93 1.69 0.14 6.51
## 129 2.56 0.16 1.14 6.50
## 130 1.30 0.08 0.07 6.43
## 131 1.58 2.06 0.21 6.41
## 132 1.20 1.49 0.07 6.40
## 133 1.56 1.29 0.99 6.39
## 134 1.35 0.06 0.61 6.36
## 135 1.97 0.09 0.57 6.34
## 136 1.26 0.87 0.17 6.31
## 137 0.83 2.87 0.12 6.30
## 138 6.21 0.00 0.00 6.28
## 139 2.80 0.02 0.33 6.27
## 140 1.78 0.03 0.51 6.24
## 141 1.62 0.07 0.49 6.24
## 142 1.90 0.07 0.60 6.11
## 143 2.01 0.87 0.72 6.05
## 144 1.20 0.16 0.19 6.03
## 145 1.74 0.83 0.83 6.03
## 146 1.83 0.78 0.24 6.03
## 147 2.28 0.28 1.01 5.99
## 148 0.00 2.33 1.74 5.95
## 149 2.05 0.17 0.90 5.92
## 150 0.69 4.35 0.15 5.84
## 151 1.63 0.00 0.53 5.83
## 152 1.47 2.02 0.45 5.82
## 153 1.89 1.36 0.23 5.74
## 154 1.94 0.07 0.58 5.72
## 155 2.05 0.16 0.96 5.65
## 156 0.69 1.81 0.11 5.58
## 157 1.95 0.21 0.87 5.57
## 158 0.60 1.97 0.04 5.55
## 159 1.65 0.07 0.55 5.55
## 160 1.91 0.11 0.80 5.53
## 161 1.92 0.10 0.51 5.51
## 162 0.57 4.13 0.34 5.50
## 163 1.24 0.91 0.20 5.49
## 164 1.64 0.99 0.23 5.47
## 165 1.11 0.95 0.20 5.46
## 166 1.24 0.94 0.09 5.45
## 167 1.87 0.00 0.84 5.43
## 168 2.29 0.24 0.82 5.42
## 169 2.51 0.00 0.94 5.42
## 170 1.24 1.87 0.52 5.36
## 171 0.96 2.00 0.20 5.34
## 172 1.12 1.01 0.16 5.31
## 173 1.71 0.03 0.44 5.30
## 174 0.77 2.78 0.14 5.30
## 175 1.08 2.11 0.17 5.29
## 176 0.79 1.09 0.06 5.27
## 177 1.56 0.08 0.51 5.27
## 178 2.48 1.03 0.52 5.26
## 179 2.46 0.20 0.28 5.24
## 181 0.75 3.61 0.20 5.21
## 182 2.15 0.00 0.62 5.20
## 183 1.25 0.83 0.20 5.20
## 184 1.30 1.27 0.31 5.19
## 185 0.98 1.57 0.15 5.19
## 186 3.48 0.03 0.58 5.18
## 187 1.83 0.95 0.49 5.17
## 188 0.74 2.20 0.11 5.15
## 189 2.02 1.89 0.28 5.15
## 190 2.48 0.44 0.58 5.14
## 191 2.23 0.13 0.80 5.13
## 192 0.61 1.70 0.11 5.13
## 193 1.11 0.05 0.38 5.13
## 194 1.53 0.01 0.38 5.13
## 195 1.69 0.00 0.20 5.12
## 196 0.63 0.00 0.68 5.12
## 197 1.43 1.08 0.65 5.11
## 198 2.01 0.00 0.41 5.08
## 199 2.02 0.16 1.21 5.08
## 200 3.29 0.06 1.13 5.08
## 201 1.30 0.15 0.22 5.07
## 202 1.16 1.11 0.73 5.05
## 203 1.38 0.02 0.20 5.02
## 204 1.06 0.80 0.57 5.02
## 205 1.89 0.00 0.33 5.01
## 206 1.36 0.07 0.21 5.00
## 207 1.18 0.29 0.46 5.00
## 208 0.01 0.01 1.48 4.98
## 209 1.03 0.09 0.44 4.96
## 210 1.20 1.54 0.37 4.96
## 211 1.73 0.12 0.78 4.94
## 212 0.26 0.01 0.66 4.91
## 213 1.54 0.00 0.46 4.90
## 214 0.99 0.89 0.10 4.88
## 215 0.00 4.87 0.00 4.87
## 216 0.60 1.52 0.10 4.85
## 217 1.36 0.12 0.63 4.84
## 218 1.68 0.00 0.59 4.83
## 219 2.00 0.09 0.83 4.83
## 220 3.14 0.04 1.07 4.82
## 221 1.57 0.44 0.21 4.79
## 222 3.75 0.06 0.69 4.77
## 223 1.31 0.04 0.41 4.76
## 224 2.10 0.02 0.25 4.73
## 225 2.19 0.00 0.79 4.70
## 226 1.41 0.02 0.20 4.68
## 227 1.12 1.32 0.37 4.68
## 228 1.95 0.08 0.70 4.67
## 229 2.04 0.06 0.47 4.64
## 230 1.97 0.13 0.24 4.63
## 231 1.12 0.00 0.44 4.62
## 232 0.91 1.15 0.13 4.61
## 233 0.99 0.89 0.13 4.60
## 234 1.99 0.22 0.48 4.58
## 235 1.39 1.10 0.30 4.58
## 236 1.15 1.44 0.43 4.57
## 237 1.87 0.07 0.82 4.55
## 238 0.92 0.01 0.42 4.53
## 239 0.26 0.01 0.08 4.53
## 240 0.24 0.00 0.05 4.50
## 241 0.24 0.01 0.61 4.49
## 242 1.51 0.03 0.23 4.48
## 243 0.14 4.10 0.02 4.47
## 244 1.69 0.08 0.74 4.47
## 245 1.94 0.19 0.77 4.45
## 246 1.29 0.02 0.43 4.45
## 247 1.11 0.46 0.33 4.44
## 248 1.35 0.01 0.39 4.42
## 249 1.29 0.01 0.46 4.41
## 250 2.39 1.05 0.86 4.39
## 251 1.05 0.13 0.40 4.39
## 252 0.50 1.61 0.08 4.38
## 253 1.79 0.08 0.47 4.37
## 254 1.73 0.14 0.75 4.35
## 255 0.91 0.26 0.13 4.34
## 256 0.58 1.38 0.17 4.33
## 257 2.93 0.01 0.46 4.31
## 258 1.18 0.00 0.37 4.31
## 259 0.26 0.00 0.05 4.31
## 260 1.27 0.11 0.41 4.31
## 261 1.20 0.03 0.39 4.26
## 262 1.11 0.72 0.30 4.25
## 263 1.34 0.07 0.61 4.25
## 264 2.02 0.10 0.72 4.24
## 265 1.11 0.05 0.07 4.24
## 266 0.00 0.83 1.93 4.23
## 267 1.02 0.00 0.75 4.22
## 268 2.27 0.00 0.23 4.21
## 269 1.27 0.62 0.30 4.21
## 270 2.55 0.04 0.84 4.21
## 271 2.30 0.20 0.83 4.20
## 272 2.07 0.18 0.65 4.20
## 273 1.83 0.57 0.53 4.20
## 274 1.47 0.04 0.43 4.19
## 275 1.06 0.58 0.53 4.19
## 276 2.79 0.02 0.53 4.19
## 277 0.44 0.31 0.04 4.17
## 278 0.48 1.57 0.07 4.16
## 279 0.27 0.00 0.11 4.16
## 280 0.21 0.01 0.56 4.14
## 281 1.86 0.11 0.77 4.14
## 282 0.00 0.09 0.00 4.12
## 283 0.61 1.76 0.09 4.12
## 284 2.48 0.03 0.89 4.11
## 285 1.20 0.37 0.40 4.10
## 286 0.51 2.10 0.07 4.10
## 287 1.50 0.05 0.42 4.10
## 288 1.26 0.01 0.37 4.09
## 289 1.52 0.00 0.00 4.09
## 290 1.06 0.04 0.33 4.08
## 291 0.04 0.04 1.67 4.07
## 292 1.28 0.03 0.41 4.06
## 293 2.26 0.90 0.77 4.06
## 294 1.55 0.16 0.06 4.05
## 295 1.51 0.51 0.35 4.05
## 296 2.12 0.10 0.69 4.03
## 297 0.58 0.64 0.04 4.03
## 298 1.87 0.12 0.65 4.02
## 299 0.28 2.46 0.04 4.01
## 300 1.20 0.07 0.59 4.01
## 301 1.78 0.92 0.37 4.00
## 302 0.89 0.05 0.37 3.99
## 303 1.35 0.00 0.54 3.98
## 304 1.36 0.06 0.40 3.92
## 305 1.96 0.08 0.70 3.92
## 306 0.76 1.07 0.11 3.91
## 307 1.17 0.01 0.42 3.90
## 308 1.71 0.13 0.73 3.89
## 309 0.49 2.62 0.11 3.89
## 310 1.61 0.06 0.67 3.88
## 311 2.09 0.00 0.64 3.88
## 312 1.94 0.31 0.70 3.87
## 313 0.00 3.77 0.00 3.87
## 314 1.14 0.10 0.51 3.87
## 315 0.65 0.03 0.69 3.85
## 316 1.89 1.12 0.68 3.85
## 317 1.57 1.05 0.35 3.84
## 318 1.44 0.22 0.06 3.84
## 319 0.96 0.54 0.13 3.83
## 320 0.48 0.81 0.27 3.83
## 321 1.93 0.41 0.43 3.82
## 322 1.37 0.73 0.27 3.81
## 323 1.58 0.10 0.61 3.79
## 324 1.91 0.27 0.46 3.78
## 325 1.03 0.00 0.36 3.78
## 326 1.24 0.47 0.25 3.77
## 327 1.40 0.10 0.87 3.77
## 328 1.47 0.00 0.32 3.76
## 329 1.56 0.00 0.17 3.76
## 330 0.88 0.59 0.32 3.76
## 331 2.00 0.14 0.22 3.73
## 332 2.00 0.21 0.56 3.73
## 333 0.77 1.54 0.11 3.72
## 334 1.58 0.00 0.19 3.71
## 335 2.48 0.04 0.59 3.70
## 336 0.73 1.38 0.10 3.70
## 337 1.51 0.27 0.61 3.69
## 338 1.61 0.08 0.41 3.69
## 339 0.00 3.67 0.00 3.67
## 340 1.18 0.01 0.35 3.67
## 341 1.22 0.00 0.79 3.66
## 342 1.13 0.55 0.10 3.65
## 343 0.81 0.06 0.24 3.65
## 344 0.97 0.00 0.35 3.65
## 345 1.80 0.40 0.74 3.64
## 346 1.09 0.15 0.33 3.64
## 347 0.68 0.66 0.06 3.63
## 348 2.46 0.05 0.52 3.63
## 349 0.00 0.64 2.93 3.63
## 350 1.42 0.05 0.38 3.63
## 351 0.83 0.46 0.25 3.62
## 352 1.61 0.15 0.57 3.61
## 353 1.22 0.03 0.44 3.61
## 354 1.40 0.00 0.16 3.61
## 355 1.17 0.00 0.42 3.61
## 356 1.50 0.10 0.39 3.61
## 357 0.67 0.46 0.10 3.60
## 358 1.02 0.03 0.37 3.59
## 359 1.35 0.06 0.16 3.58
## 360 1.79 0.00 0.20 3.56
## 361 1.40 0.07 0.50 3.54
## 362 1.77 0.05 0.49 3.54
## 363 1.58 0.12 0.18 3.54
## 364 1.13 0.10 0.41 3.53
## 365 1.14 0.01 0.41 3.53
## 366 1.08 0.02 0.29 3.53
## 367 2.40 0.02 0.40 3.53
## 368 1.33 0.00 0.23 3.52
## 369 1.21 0.01 0.17 3.52
## 370 0.50 0.05 0.30 3.52
## 371 1.66 0.27 0.38 3.52
## 372 0.94 0.12 0.34 3.51
## 373 0.50 1.75 0.08 3.51
## 374 0.39 0.03 0.24 3.50
## 375 0.38 1.42 0.06 3.50
## 376 0.97 0.02 0.31 3.50
## 377 1.83 0.73 0.35 3.50
## 379 1.22 0.02 0.31 3.49
## 380 1.02 0.04 0.32 3.48
## 381 1.01 0.01 0.35 3.48
## 382 0.89 0.00 0.30 3.46
## 383 1.75 0.10 0.72 3.45
## 384 0.00 3.44 0.00 3.44
## 385 0.73 0.03 0.29 3.44
## 386 1.27 0.33 0.29 3.44
## 387 1.54 0.17 0.38 3.43
## 388 1.07 0.06 0.47 3.42
## 389 2.07 0.00 0.22 3.42
## 390 0.00 2.55 0.02 3.42
## 391 1.20 0.02 0.43 3.41
## 392 0.69 0.59 0.40 3.41
## 393 2.28 0.05 0.61 3.40
## 394 1.47 0.19 0.17 3.39
## 395 1.03 0.00 0.32 3.38
## 396 1.35 0.48 0.47 3.38
## 397 0.94 0.74 0.27 3.38
## 398 0.76 0.00 0.13 3.36
## 399 0.67 0.73 0.06 3.36
## 400 1.61 0.82 0.28 3.36
## 401 1.53 0.00 0.18 3.34
## 402 1.14 0.01 0.29 3.34
## 403 0.99 2.32 0.02 3.33
## 404 1.29 0.12 0.46 3.33
## 405 1.01 0.57 0.30 3.33
## 406 1.17 0.76 0.24 3.32
## 407 1.39 0.03 0.43 3.32
## 408 1.05 0.05 0.22 3.31
## 409 1.28 0.05 0.46 3.28
## 410 1.92 0.06 0.50 3.28
## 411 0.92 0.00 0.23 3.28
## 412 1.05 0.02 0.31 3.27
## 413 1.13 0.46 0.32 3.27
## 414 1.59 0.31 0.87 3.27
## 415 0.19 2.78 0.04 3.26
## 416 1.30 0.77 0.22 3.24
## 417 2.11 0.00 0.23 3.23
## 418 1.33 0.12 0.51 3.23
## 419 0.30 0.00 0.59 3.22
## 420 0.00 3.18 0.00 3.22
## 421 1.33 0.00 0.16 3.21
## 422 0.10 2.35 0.02 3.20
## 423 0.72 0.12 0.10 3.20
## 424 1.21 0.07 0.16 3.20
## 425 0.60 0.80 0.44 3.19
## 426 1.01 0.04 0.66 3.19
## 427 0.00 3.19 0.00 3.19
## 428 0.77 0.01 0.26 3.19
## 429 1.12 0.09 0.19 3.18
## 430 0.87 0.93 0.20 3.18
## 431 1.08 0.10 0.47 3.17
## 433 0.51 1.93 0.14 3.17
## 434 0.56 0.38 0.17 3.17
## 435 0.98 0.00 0.30 3.16
## 436 0.16 0.99 0.09 3.15
## 437 1.06 0.00 0.29 3.15
## 438 1.57 0.06 0.29 3.15
## 439 0.97 0.88 0.42 3.15
## 440 0.99 0.03 0.24 3.15
## 441 0.00 0.00 2.46 3.14
## 442 1.25 0.02 0.16 3.13
## 443 0.86 0.00 0.13 3.12
## 444 0.62 0.14 0.04 3.12
## 445 1.00 1.03 0.17 3.12
## 446 0.87 0.14 0.42 3.12
## 447 0.00 3.03 0.01 3.12
## 448 1.27 0.06 0.50 3.12
## 449 0.82 0.03 0.27 3.11
## 450 2.02 0.00 0.30 3.11
## 451 0.28 0.55 0.08 3.09
## 452 0.16 0.01 0.42 3.08
## 453 0.45 0.64 0.07 3.08
## 454 0.91 0.04 0.24 3.07
## 455 0.99 0.46 0.22 3.07
## 456 0.62 0.55 0.34 3.07
## 457 1.21 0.00 0.14 3.07
## 458 0.86 0.03 0.24 3.07
## 459 0.84 0.00 0.29 3.05
## 460 1.35 0.02 0.28 3.04
## 461 0.64 0.12 0.22 3.04
## 462 0.80 0.02 0.27 3.03
## 463 1.33 0.00 0.16 3.03
## 464 1.07 0.08 0.47 3.02
## 465 1.04 0.00 0.13 3.02
## 466 0.47 0.45 0.07 3.02
## 467 1.13 0.07 0.38 3.02
## 468 0.32 0.00 0.31 3.00
## 469 0.21 0.01 0.19 3.00
## 470 0.00 0.76 1.09 3.00
## 472 1.41 0.05 0.53 2.99
## 473 0.51 0.80 0.07 2.99
## 474 1.18 0.00 0.13 2.99
## 475 1.26 1.16 0.45 2.99
## 476 0.86 0.64 0.13 2.99
## 477 1.00 1.39 0.12 2.98
## 478 1.12 0.08 0.45 2.97
## 479 1.72 0.00 0.29 2.97
## 480 1.01 0.00 0.38 2.97
## 481 1.37 0.06 0.49 2.96
## 482 0.04 1.19 0.15 2.96
## 483 1.15 0.04 0.41 2.96
## 484 0.71 0.15 0.26 2.95
## 485 0.58 0.34 0.04 2.94
## 486 0.51 0.06 0.15 2.94
## 487 1.11 0.04 0.33 2.94
## 488 0.69 0.12 0.37 2.94
## 489 0.77 0.05 0.05 2.94
## 490 0.80 0.03 0.27 2.93
## 491 1.06 0.73 0.26 2.92
## 492 1.13 0.05 0.30 2.91
## 493 0.45 0.62 0.09 2.91
## 494 1.85 0.11 0.33 2.90
## 495 0.80 0.04 0.22 2.90
## 496 1.14 0.00 0.22 2.90
## 497 0.86 0.00 0.28 2.90
## 498 1.24 1.13 0.45 2.90
## 499 1.51 0.06 0.61 2.89
## 500 0.32 1.38 0.20 2.89
## 501 1.12 0.01 0.24 2.89
## 502 1.07 0.00 0.28 2.88
## 503 0.72 0.02 0.11 2.88
## 504 1.27 0.00 0.31 2.88
## 505 2.43 0.12 0.22 2.87
## 506 0.77 0.00 0.22 2.86
## 507 0.16 0.00 0.17 2.86
## 508 0.63 0.03 0.11 2.86
## 509 0.55 0.00 0.32 2.85
## 510 0.51 0.89 0.07 2.85
## 511 0.53 0.98 0.05 2.85
## 512 1.34 0.00 0.14 2.85
## 513 1.14 0.00 0.31 2.85
## 514 1.98 0.05 0.42 2.85
## 515 0.57 0.11 0.30 2.84
## 516 0.86 0.05 0.28 2.83
## 517 0.09 0.00 0.22 2.83
## 518 1.05 0.07 0.43 2.83
## 519 1.08 0.04 0.39 2.83
## 520 0.67 0.10 0.09 2.82
## 521 1.05 0.04 0.14 2.82
## 522 2.79 0.00 0.00 2.81
## 523 1.25 0.03 0.48 2.81
## 524 1.19 0.00 0.30 2.81
## 525 1.06 0.04 0.38 2.80
## 526 0.80 0.00 0.26 2.80
## 527 0.07 1.10 0.15 2.80
## 528 0.20 2.13 0.18 2.79
## 529 0.88 0.09 0.38 2.79
## 530 0.72 0.00 0.11 2.79
## 531 1.15 0.04 0.41 2.79
## 532 0.00 2.78 0.01 2.79
## 533 0.70 0.00 0.11 2.79
## 534 1.43 0.00 0.48 2.79
## 535 0.22 0.00 0.38 2.79
## 536 1.47 0.68 0.34 2.79
## 537 0.29 1.96 0.07 2.79
## 538 0.74 0.00 0.36 2.78
## 539 0.97 0.07 0.47 2.78
## 540 0.83 0.26 0.25 2.78
## 541 0.98 0.17 0.43 2.78
## 542 1.12 0.00 0.24 2.77
## 543 1.20 0.04 0.30 2.77
## 544 1.15 0.07 0.30 2.77
## 545 0.17 0.00 0.03 2.76
## 546 0.54 0.71 0.07 2.75
## 547 1.31 0.06 0.31 2.74
## 548 0.36 1.13 0.23 2.73
## 549 0.31 1.04 0.05 2.73
## 550 0.94 0.02 0.24 2.72
## 551 0.93 0.02 0.27 2.71
## 552 0.52 0.33 0.10 2.70
## 553 0.48 1.09 0.14 2.70
## 554 0.76 0.00 0.47 2.70
## 555 0.53 0.87 0.05 2.70
## 556 0.11 0.00 0.16 2.69
## 557 0.64 0.01 0.19 2.69
## 558 0.12 0.00 0.18 2.69
## 559 0.52 0.35 0.18 2.69
## 560 0.98 0.00 0.24 2.68
## 561 1.11 0.00 0.34 2.68
## 562 0.00 2.68 0.00 2.68
## 563 1.41 0.04 0.53 2.68
## 564 0.75 0.89 0.26 2.68
## 565 0.63 0.00 0.09 2.67
## 566 0.92 0.01 0.26 2.67
## 567 0.64 0.00 0.25 2.67
## 568 1.09 0.00 0.14 2.67
## 569 0.58 0.00 0.09 2.66
## 570 0.80 0.00 0.26 2.65
## 571 1.11 0.00 0.40 2.65
## 572 0.88 0.00 0.22 2.65
## 573 1.11 0.01 0.66 2.65
## 574 0.00 2.65 0.00 2.65
## 575 0.50 0.12 0.03 2.65
## 576 0.87 0.00 0.24 2.64
## 577 0.47 0.02 0.14 2.63
## 578 1.10 0.12 0.65 2.63
## 579 0.82 0.04 0.24 2.63
## 580 0.46 0.06 0.41 2.63
## 581 0.12 0.00 0.36 2.62
## 582 1.06 0.24 0.25 2.62
## 583 0.81 0.04 0.21 2.62
## 584 1.79 0.01 0.23 2.62
## 585 0.14 0.01 0.16 2.62
## 586 0.84 0.96 0.19 2.61
## 587 1.22 0.04 0.44 2.61
## 588 0.52 0.92 0.14 2.60
## 589 0.55 0.11 0.08 2.60
## 590 1.63 0.04 0.43 2.59
## 591 1.12 0.08 0.45 2.59
## 592 0.21 0.00 0.35 2.59
## 593 1.24 0.01 0.69 2.58
## 594 1.33 0.07 0.28 2.58
## 595 1.24 0.03 0.27 2.58
## 596 0.27 1.75 0.18 2.58
## 597 0.88 0.03 0.26 2.58
## 598 0.74 0.31 0.22 2.57
## 599 1.68 0.33 0.28 2.57
## 600 0.56 0.03 0.22 2.57
## 601 0.08 0.00 0.35 2.57
## 602 0.59 0.21 0.07 2.56
## 603 0.00 2.41 0.00 2.56
## 604 0.23 0.00 0.22 2.56
## 605 0.57 0.70 0.07 2.54
## 606 0.87 0.29 0.25 2.54
## 607 0.12 0.00 0.20 2.54
## 609 1.12 0.06 0.22 2.52
## 610 0.75 0.16 0.06 2.52
## 611 0.78 0.00 0.24 2.52
## 612 0.00 0.52 1.51 2.52
## 613 1.31 0.08 0.52 2.51
## 614 0.02 0.00 0.19 2.50
## 615 0.07 0.26 2.05 2.50
## 616 0.14 1.08 0.01 2.50
## 617 1.06 0.18 0.39 2.49
## 618 0.56 0.00 0.09 2.49
## 619 0.97 0.00 0.23 2.49
## 620 0.52 0.00 0.15 2.49
## 621 0.85 0.10 0.39 2.48
## 622 0.85 0.00 0.25 2.48
## 623 1.14 0.06 0.13 2.48
## 624 0.44 0.05 0.27 2.48
## 626 0.20 0.00 0.17 2.47
## 627 0.36 0.92 0.07 2.47
## 628 0.58 0.00 0.20 2.46
## 629 0.54 0.05 0.31 2.45
## 630 0.00 2.43 0.02 2.45
## 631 0.12 1.34 0.06 2.45
## 632 0.25 0.00 0.07 2.44
## 633 0.73 0.04 0.22 2.44
## 634 0.98 0.00 0.59 2.44
## 635 1.19 0.00 0.18 2.43
## 636 0.82 0.00 0.10 2.43
## 637 0.61 0.02 0.23 2.42
## 638 0.61 0.46 0.08 2.42
## 639 0.32 0.78 0.05 2.42
## 640 1.18 0.54 0.41 2.42
## 641 0.22 0.51 0.06 2.41
## 642 0.26 0.00 0.08 2.41
## 643 0.76 0.70 0.14 2.41
## 644 0.76 0.00 0.22 2.41
## 645 0.00 0.04 1.68 2.41
## 646 0.08 0.00 0.26 2.40
## 647 0.24 0.00 0.07 2.40
## 648 0.18 1.42 0.03 2.40
## 649 0.10 0.00 0.00 2.40
## 651 1.49 0.05 0.36 2.39
## 652 0.48 0.00 0.18 2.39
## 654 0.81 0.00 0.10 2.39
## 655 0.87 0.04 0.40 2.39
## 656 0.71 0.00 0.20 2.39
## 657 0.61 0.03 0.07 2.38
## 658 0.97 0.00 0.39 2.38
## 659 0.46 0.02 0.18 2.38
## 660 0.39 0.03 0.02 2.38
## 661 0.76 0.26 0.36 2.38
## 662 0.54 0.01 0.37 2.38
## 663 0.15 0.00 0.19 2.38
## 664 0.91 0.00 0.30 2.38
## 665 0.01 0.00 0.18 2.37
## 666 0.02 0.08 0.00 2.37
## 667 1.08 0.04 0.30 2.37
## 668 0.86 0.01 0.26 2.37
## 669 0.13 0.00 0.21 2.37
## 670 0.74 0.02 0.22 2.36
## 671 0.14 1.48 0.05 2.36
## 672 1.05 0.00 0.23 2.35
## 673 0.48 0.40 0.08 2.35
## 674 0.00 2.34 0.01 2.35
## 675 0.46 0.01 0.20 2.35
## 676 0.83 0.00 0.20 2.34
## 677 0.00 0.01 1.41 2.34
## 678 0.90 0.00 0.24 2.34
## 679 0.70 0.34 0.21 2.34
## 680 0.86 0.00 0.20 2.33
## 681 0.54 0.47 0.17 2.32
## 682 0.14 0.00 0.24 2.32
## 683 0.56 0.00 0.19 2.32
## 684 0.40 1.06 0.07 2.32
## 685 1.35 0.04 0.14 2.32
## 686 1.06 0.09 0.32 2.31
## 687 0.45 1.21 0.13 2.31
## 688 0.64 0.00 0.09 2.31
## 689 0.00 2.02 0.01 2.31
## 690 0.46 0.10 0.10 2.31
## 691 0.85 0.00 0.21 2.30
## 692 1.06 0.00 0.29 2.30
## 693 0.54 0.62 0.18 2.30
## 694 0.75 0.15 0.31 2.29
## 695 1.25 0.00 0.13 2.29
## 696 0.68 0.04 0.34 2.29
## 697 0.80 0.00 0.10 2.28
## 698 1.27 0.46 0.26 2.28
## 699 0.98 0.00 0.20 2.28
## 700 0.00 2.28 0.00 2.28
## 701 0.12 1.63 0.02 2.28
## 702 0.07 0.01 1.82 2.28
## 703 0.90 0.00 0.37 2.28
## 704 0.77 0.10 0.36 2.28
## 705 2.00 0.02 0.18 2.28
## 706 0.39 0.64 0.12 2.27
## 707 0.62 0.00 0.31 2.27
## 708 0.92 0.04 0.24 2.27
## 709 0.10 0.91 0.04 2.27
## 710 0.73 0.54 0.09 2.26
## 711 0.54 0.02 0.30 2.26
## 713 0.57 0.14 0.21 2.26
## 714 0.79 0.87 0.32 2.25
## 715 0.44 1.06 0.13 2.25
## 716 0.46 0.20 0.08 2.25
## 717 0.25 0.46 0.06 2.25
## 718 0.15 0.00 0.17 2.25
## 719 0.41 1.05 0.11 2.25
## 720 0.51 0.91 0.32 2.25
## 721 0.71 0.22 0.13 2.24
## 722 0.83 0.00 0.11 2.23
## 723 0.25 0.21 0.03 2.23
## 724 0.61 0.00 0.21 2.23
## 725 0.85 0.00 0.28 2.23
## 726 0.62 0.18 0.16 2.22
## 727 1.03 0.00 0.31 2.22
## 728 0.32 0.02 0.18 2.22
## 729 0.63 0.45 0.13 2.22
## 730 0.98 0.00 0.21 2.22
## 731 0.55 0.02 0.19 2.21
## 732 0.55 0.00 0.19 2.21
## 733 0.82 0.05 0.28 2.21
## 734 0.24 0.00 0.18 2.20
## 735 0.12 0.00 0.02 2.20
## 736 0.02 0.00 0.17 2.20
## 737 0.51 0.34 0.23 2.20
## 738 0.00 2.05 0.00 2.20
## 739 0.68 0.02 0.21 2.20
## 740 0.91 0.00 0.23 2.20
## 741 0.97 0.55 0.33 2.19
## 742 0.78 0.02 0.22 2.19
## 743 0.44 0.00 0.08 2.19
## 744 0.17 1.10 0.05 2.19
## 745 0.72 0.30 0.13 2.19
## 746 1.07 0.07 0.45 2.19
## 747 0.00 2.17 0.01 2.18
## 748 0.20 0.00 0.06 2.18
## 749 0.78 0.01 0.17 2.18
## 750 0.07 0.00 0.13 2.18
## 751 0.04 0.73 0.12 2.18
## 752 0.17 0.47 0.06 2.17
## 753 0.68 0.01 0.20 2.17
## 754 0.46 0.08 0.03 2.17
## 755 0.11 1.56 0.02 2.17
## 756 0.83 0.00 0.10 2.16
## 757 0.47 0.00 0.18 2.16
## 758 0.55 0.02 0.08 2.15
## 759 1.16 0.13 0.32 2.15
## 760 0.03 1.98 0.00 2.15
## 761 1.41 0.00 0.14 2.15
## 762 1.03 0.00 0.59 2.14
## 763 0.00 1.45 0.03 2.14
## 764 0.00 2.13 0.00 2.14
## 765 0.38 0.19 0.10 2.14
## 766 0.84 0.00 0.10 2.14
## 767 0.12 0.00 0.02 2.13
## 768 0.81 0.00 0.27 2.13
## 769 0.07 1.35 0.08 2.13
## 770 0.37 0.89 0.05 2.13
## 771 1.16 0.06 0.33 2.13
## 772 0.97 0.02 0.21 2.12
## 773 0.05 1.07 0.09 2.12
## 774 0.09 0.45 0.11 2.12
## 775 0.61 0.05 0.09 2.12
## 776 0.33 0.92 0.04 2.12
## 777 0.27 0.05 0.18 2.11
## 778 0.62 0.00 0.29 2.11
## 779 0.40 0.00 0.03 2.11
## 780 1.34 0.40 0.26 2.11
## 781 0.31 0.02 0.09 2.11
## 782 0.45 0.63 0.13 2.11
## 784 0.21 1.13 0.13 2.11
## 785 0.33 0.00 0.15 2.11
## 786 0.07 1.05 0.04 2.10
## 787 0.72 0.00 0.22 2.10
## 788 0.44 0.04 0.07 2.10
## 789 0.13 0.02 0.18 2.10
## 790 0.51 0.01 0.17 2.10
## 791 0.63 0.29 0.19 2.09
## 792 0.00 1.96 0.14 2.09
## 793 0.65 0.08 0.20 2.09
## 794 0.60 0.05 0.18 2.09
## 795 0.12 0.01 0.13 2.09
## 796 0.00 0.00 0.12 2.09
## 797 0.94 0.00 0.22 2.09
## 798 0.93 0.14 0.32 2.09
## 799 0.42 0.96 0.25 2.09
## 800 0.32 0.00 0.00 2.08
## 801 0.71 0.00 0.27 2.08
## 802 1.02 0.05 0.39 2.08
## 803 0.52 0.00 0.20 2.08
## 804 0.33 0.73 0.06 2.08
## 805 0.99 0.13 0.36 2.08
## 806 0.04 0.00 0.00 2.08
## 807 1.08 0.00 0.11 2.08
## 808 0.94 0.00 0.35 2.08
## 809 0.46 0.00 0.08 2.07
## 810 0.42 0.75 0.26 2.07
## 811 0.39 0.00 0.19 2.07
## 812 0.54 0.54 0.23 2.07
## 813 0.36 0.00 0.07 2.07
## 814 0.80 0.01 0.22 2.06
## 815 0.97 0.02 0.34 2.06
## 816 0.63 0.04 0.19 2.06
## 817 0.52 0.74 0.08 2.06
## 818 0.77 0.04 0.10 2.06
## 819 0.46 0.79 0.13 2.06
## 820 0.62 0.13 0.25 2.06
## 821 0.57 0.46 0.13 2.06
## 822 0.92 0.04 0.37 2.05
## 823 0.64 0.00 0.19 2.05
## 824 0.33 0.04 0.25 2.05
## 825 0.06 0.83 0.00 2.05
## 826 0.48 0.05 0.06 2.05
## 827 0.83 0.15 0.35 2.05
## 828 0.25 0.00 0.05 2.05
## 829 1.29 0.02 0.25 2.05
## 830 0.27 0.53 0.14 2.04
## 831 0.42 0.01 0.16 2.04
## 832 1.09 0.00 0.23 2.04
## 833 0.02 0.00 0.28 2.04
## 834 1.02 0.00 0.31 2.04
## 835 0.48 0.29 0.07 2.04
## 836 1.06 0.03 0.37 2.04
## 837 0.25 0.00 0.25 2.03
## 838 0.61 0.13 0.05 2.03
## 839 0.40 0.00 0.16 2.03
## 840 0.18 0.00 0.27 2.03
## 841 0.67 0.00 0.30 2.02
## 842 0.05 0.01 0.15 2.02
## 843 0.09 0.00 0.17 2.02
## 844 0.98 0.04 0.18 2.02
## 845 1.27 0.00 0.25 2.01
## 846 0.62 0.00 0.18 2.01
## 847 0.85 0.01 0.37 2.00
## 848 0.45 0.53 0.13 2.00
## 849 1.31 0.02 0.33 2.00
## 850 0.16 1.29 0.03 2.00
## 851 0.30 0.00 0.22 2.00
## 852 0.64 0.27 0.13 1.99
## 853 0.30 0.90 0.04 1.99
## 854 0.64 0.05 0.09 1.99
## 855 1.09 0.02 0.12 1.98
## 856 0.27 0.75 0.04 1.98
## 857 0.58 0.00 0.16 1.98
## 858 0.63 0.07 0.16 1.98
## 859 0.86 0.08 0.32 1.97
## 860 0.80 0.00 0.18 1.97
## 861 0.95 0.00 0.28 1.97
## 862 0.59 0.00 0.19 1.97
## 863 0.58 0.51 0.17 1.97
## 864 0.64 0.02 0.30 1.97
## 865 0.11 0.00 0.02 1.97
## 866 0.57 0.02 0.15 1.96
## 867 0.50 0.63 0.33 1.96
## 868 0.37 0.41 0.05 1.96
## 869 0.23 1.53 0.02 1.96
## 870 0.03 1.05 0.08 1.96
## 871 0.65 0.02 0.20 1.96
## 872 0.49 0.00 0.16 1.95
## 873 1.01 0.00 0.20 1.95
## 874 0.61 0.00 0.09 1.95
## 875 0.77 0.00 0.09 1.95
## 876 0.20 0.00 0.06 1.95
## 877 0.74 0.00 0.25 1.94
## 878 1.26 0.01 0.18 1.94
## 879 0.00 0.00 0.00 1.94
## 880 1.23 0.00 0.13 1.94
## 881 0.38 0.55 0.05 1.94
## 882 0.15 0.65 0.04 1.94
## 883 0.42 0.03 0.07 1.94
## 884 0.40 0.00 0.12 1.94
## 885 0.72 0.00 0.21 1.93
## 886 0.61 0.00 0.17 1.93
## 887 0.56 0.00 0.27 1.93
## 888 0.39 0.00 0.06 1.93
## 889 0.26 1.30 0.03 1.93
## 890 0.60 0.20 0.07 1.93
## 891 0.24 0.00 0.16 1.93
## 892 0.89 0.10 0.37 1.93
## 893 0.00 0.29 0.12 1.93
## 894 0.87 0.01 0.17 1.92
## 895 0.53 0.41 0.06 1.92
## 896 0.97 0.01 0.22 1.92
## 897 0.85 0.00 0.20 1.92
## 898 0.96 0.00 0.20 1.92
## 899 0.80 0.00 0.09 1.92
## 900 0.73 0.00 0.25 1.92
## 901 0.16 1.46 0.03 1.92
## 902 0.67 0.00 0.18 1.92
## 903 0.16 1.01 0.02 1.91
## 904 0.57 0.00 0.19 1.91
## 905 0.44 0.00 0.17 1.91
## 906 0.78 0.04 0.31 1.91
## 907 0.66 0.00 0.17 1.91
## 908 0.75 0.03 0.09 1.90
## 909 0.92 0.06 0.32 1.90
## 910 0.91 0.03 0.22 1.89
## 911 0.15 0.00 0.18 1.89
## 912 0.30 1.33 0.04 1.89
## 913 0.54 0.03 0.26 1.88
## 914 0.44 0.00 0.08 1.88
## 915 0.72 0.00 0.24 1.88
## 916 0.12 1.48 0.03 1.88
## 917 0.69 0.09 0.21 1.88
## 918 0.36 0.03 0.07 1.88
## 919 0.08 0.00 1.33 1.87
## 920 0.53 0.30 0.09 1.87
## 921 1.47 0.04 0.14 1.87
## 922 0.16 1.07 0.10 1.87
## 923 0.62 0.40 0.12 1.87
## 924 0.52 0.41 0.06 1.86
## 925 0.03 0.00 0.08 1.86
## 926 0.69 0.03 0.02 1.86
## 927 0.44 0.39 0.10 1.86
## 928 0.41 0.04 0.04 1.86
## 929 1.37 0.00 0.49 1.86
## 930 0.92 0.01 0.29 1.86
## 931 0.71 0.00 0.24 1.86
## 932 0.37 0.00 0.15 1.86
## 933 0.42 0.69 0.12 1.86
## 934 0.71 0.13 0.16 1.86
## 935 0.59 0.55 0.11 1.85
## 936 0.49 0.00 0.03 1.85
## 937 0.82 0.00 0.20 1.85
## 938 0.18 0.35 0.06 1.85
## 939 0.19 0.83 0.03 1.85
## 940 0.49 0.08 0.23 1.85
## 941 1.10 0.42 0.33 1.84
## 942 0.34 0.35 0.18 1.84
## 943 0.05 0.00 0.25 1.84
## 944 0.06 0.93 0.00 1.83
## 945 0.49 0.00 0.03 1.83
## 946 0.76 0.00 0.23 1.83
## 947 0.40 0.03 0.07 1.83
## 948 1.02 0.07 0.28 1.83
## 949 0.07 1.49 0.02 1.83
## 950 0.54 0.02 0.17 1.83
## 951 0.33 0.52 0.05 1.83
## 952 0.34 0.79 0.09 1.82
## 953 0.43 0.03 0.12 1.82
## 954 0.07 0.00 0.02 1.82
## 955 0.00 0.00 0.00 1.82
## 956 0.74 0.07 0.09 1.82
## 957 0.21 1.35 0.03 1.81
## 958 0.84 0.11 0.31 1.81
## 959 0.59 0.00 0.18 1.81
## 960 0.51 0.12 0.08 1.81
## 961 0.44 0.56 0.04 1.81
## 962 0.69 0.00 0.23 1.81
## 963 0.03 0.00 0.77 1.80
## 964 0.59 0.21 0.07 1.80
## 965 0.00 0.01 0.13 1.80
## 966 0.21 0.03 0.16 1.80
## 967 0.68 0.00 0.12 1.80
## 968 0.96 0.07 0.27 1.79
## 969 0.39 0.08 0.06 1.79
## 970 0.88 0.06 0.34 1.79
## 971 0.57 0.03 0.14 1.78
## 972 0.29 0.00 0.24 1.78
## 973 0.03 1.49 0.03 1.78
## 974 0.58 0.00 0.08 1.78
## 975 1.01 0.02 0.36 1.78
## 976 0.95 0.36 0.14 1.78
## 977 0.94 0.06 0.33 1.78
## 978 0.46 0.72 0.19 1.78
## 979 0.57 0.14 0.13 1.77
## 980 0.76 0.00 0.16 1.77
## 981 0.45 0.00 0.16 1.77
## 982 0.54 0.84 0.08 1.77
## 983 0.03 0.00 0.15 1.77
## 984 0.09 1.33 0.12 1.77
## 985 0.06 1.03 0.04 1.77
## 986 0.29 0.24 0.06 1.77
## 987 0.45 0.01 0.24 1.77
## 988 0.31 0.56 0.04 1.76
## 989 0.42 0.00 0.07 1.76
## 990 0.54 0.00 0.16 1.76
## 991 0.38 0.40 0.06 1.76
## 992 0.47 0.20 0.07 1.76
## 993 0.12 1.09 0.02 1.76
## 994 0.67 0.00 0.22 1.76
## 995 0.46 0.00 0.07 1.76
## 996 0.67 0.00 0.22 1.76
## 997 0.69 0.04 0.31 1.76
## 998 0.90 0.01 0.17 1.76
## 999 0.47 0.00 0.03 1.76
## 1000 0.48 0.00 0.16 1.76
## 1001 0.95 0.00 0.29 1.76
## 1002 1.07 0.02 0.32 1.76
## 1003 0.87 0.02 0.26 1.76
## 1004 0.04 0.00 0.04 1.75
## 1005 0.37 0.25 0.24 1.75
## 1006 0.45 0.00 0.07 1.75
## 1007 0.90 0.53 0.27 1.75
## 1008 0.54 0.03 0.18 1.75
## 1009 0.13 0.91 0.01 1.75
## 1010 0.34 0.21 0.27 1.75
## 1011 0.14 0.80 0.02 1.75
## 1012 0.66 0.08 0.18 1.75
## 1013 0.66 0.01 0.22 1.75
## 1014 0.46 0.00 0.03 1.75
## 1015 0.89 0.04 0.10 1.74
## 1016 0.49 0.45 0.17 1.74
## 1017 0.63 0.02 0.25 1.74
## 1018 0.40 0.00 0.16 1.74
## 1019 0.89 0.03 0.14 1.74
## 1020 0.61 0.01 0.16 1.74
## 1021 0.04 0.00 0.01 1.74
## 1022 0.04 0.00 0.04 1.74
## 1023 0.88 0.06 0.30 1.74
## 1024 0.75 0.13 0.27 1.74
## 1025 0.66 0.12 0.27 1.73
## 1026 0.66 0.00 0.22 1.73
## 1027 0.68 0.14 0.26 1.73
## 1028 0.20 0.00 0.05 1.73
## 1029 0.62 0.10 0.07 1.73
## 1030 0.44 0.00 0.14 1.73
## 1031 0.70 0.00 0.08 1.73
## 1032 0.52 0.01 0.14 1.73
## 1033 0.66 0.00 0.22 1.72
## 1034 0.78 0.06 0.27 1.72
## 1035 0.78 0.00 0.28 1.72
## 1036 0.18 0.00 0.94 1.72
## 1037 0.83 0.00 0.19 1.72
## 1038 0.98 0.00 0.33 1.72
## 1039 0.03 0.00 0.08 1.72
## 1040 0.21 0.55 0.15 1.72
## 1041 0.87 0.00 0.25 1.71
## 1042 0.16 0.00 0.12 1.71
## 1043 0.64 0.00 0.08 1.71
## 1044 0.41 0.00 0.15 1.71
## 1045 0.34 0.32 0.18 1.71
## 1046 0.55 0.00 0.07 1.71
## 1047 0.00 1.71 0.00 1.71
## 1048 0.39 0.00 0.06 1.71
## 1049 0.00 0.00 0.12 1.70
## 1050 1.08 0.03 0.26 1.70
## 1051 0.24 0.00 1.23 1.70
## 1052 0.42 0.14 0.15 1.70
## 1053 1.12 0.00 0.09 1.70
## 1054 0.21 0.79 0.08 1.70
## 1055 0.00 1.69 0.01 1.70
## 1056 0.83 0.00 0.19 1.70
## 1057 0.05 0.00 0.23 1.70
## 1058 0.34 0.04 0.10 1.69
## 1059 0.18 0.00 0.15 1.69
## 1060 0.54 0.02 0.25 1.69
## 1061 0.53 0.01 0.14 1.69
## 1062 0.64 0.00 0.11 1.69
## 1063 0.44 0.08 0.22 1.69
## 1064 1.01 0.00 0.13 1.69
## 1065 0.28 0.03 0.02 1.69
## 1066 0.48 0.04 0.07 1.69
## 1067 0.66 0.08 0.08 1.69
## 1068 0.71 0.01 0.18 1.69
## 1069 0.12 0.00 0.05 1.69
## 1070 0.52 0.00 0.19 1.69
## 1071 0.42 0.22 0.06 1.69
## 1072 0.52 0.07 0.30 1.69
## 1073 0.47 0.00 0.32 1.68
## 1074 0.64 0.00 0.22 1.68
## 1075 0.06 0.00 0.04 1.68
## 1076 0.64 0.00 0.15 1.68
## 1077 0.24 0.82 0.03 1.68
## 1078 0.87 0.33 0.10 1.68
## 1079 0.00 0.00 0.00 1.68
## 1080 0.30 0.00 0.14 1.68
## 1081 0.55 0.04 0.17 1.68
## 1082 0.27 0.17 0.06 1.68
## 1083 0.57 0.00 0.17 1.67
## 1084 0.52 0.00 0.22 1.67
## 1085 1.02 0.00 0.20 1.67
## 1086 0.05 0.00 0.04 1.67
## 1087 0.59 0.01 0.26 1.67
## 1088 0.67 0.42 0.15 1.67
## 1089 0.39 0.00 0.06 1.67
## 1090 0.30 0.42 0.04 1.67
## 1091 0.49 0.02 0.07 1.67
## 1092 0.95 0.03 0.10 1.67
## 1093 0.65 0.00 0.19 1.67
## 1094 0.59 0.04 0.07 1.67
## 1095 0.32 0.00 0.22 1.67
## 1096 0.09 0.00 0.23 1.67
## 1097 0.45 0.00 0.14 1.67
## 1098 0.66 0.11 0.26 1.66
## 1099 0.73 0.06 0.30 1.66
## 1100 0.30 0.31 0.04 1.66
## 1101 0.61 0.06 0.20 1.66
## 1102 0.64 0.01 0.14 1.66
## 1103 0.63 0.00 0.21 1.66
## 1104 0.70 0.02 0.18 1.66
## 1105 0.15 0.03 0.22 1.66
## 1106 0.12 0.54 0.04 1.66
## 1107 0.10 0.00 0.02 1.65
## 1108 0.11 0.60 0.05 1.65
## 1109 0.38 0.15 0.05 1.65
## 1110 0.68 0.33 0.16 1.65
## 1111 0.00 1.65 0.00 1.65
## 1112 0.38 0.02 0.16 1.65
## 1113 0.02 1.27 0.03 1.64
## 1114 0.05 0.76 0.03 1.64
## 1115 0.72 0.00 0.16 1.64
## 1116 0.10 0.00 0.02 1.64
## 1117 0.63 0.00 0.08 1.64
## 1118 0.26 0.61 0.03 1.64
## 1119 0.63 0.00 0.21 1.64
## 1120 0.15 0.00 0.05 1.64
## 1121 0.88 0.00 0.22 1.64
## 1122 0.48 0.00 0.14 1.64
## 1123 0.89 0.05 0.25 1.64
## 1124 0.02 0.00 0.07 1.63
## 1125 0.96 0.02 0.20 1.63
## 1126 0.25 0.56 0.04 1.63
## 1128 0.73 0.02 0.28 1.63
## 1129 0.34 0.00 0.10 1.63
## 1130 0.48 0.32 0.11 1.63
## 1131 0.14 0.00 0.15 1.63
## 1132 0.09 0.00 0.22 1.62
## 1133 0.85 0.02 0.17 1.62
## 1135 0.63 0.01 0.19 1.62
## 1136 0.61 0.03 0.15 1.62
## 1137 0.04 0.49 0.10 1.62
## 1138 0.11 0.45 0.04 1.62
## 1139 0.61 0.00 0.11 1.62
## 1140 0.38 0.30 0.13 1.61
## 1141 0.62 0.00 0.21 1.61
## 1142 0.53 0.03 0.13 1.61
## 1143 0.27 0.65 0.03 1.61
## 1144 0.00 1.61 0.01 1.61
## 1145 0.38 0.20 0.04 1.61
## 1146 1.18 0.00 0.43 1.61
## 1147 0.00 0.00 0.11 1.61
## 1148 0.68 0.01 0.13 1.61
## 1149 0.48 0.01 0.15 1.60
## 1150 0.99 0.00 0.22 1.60
## 1151 0.23 0.00 0.07 1.60
## 1152 0.69 0.02 0.18 1.60
## 1153 0.96 0.09 0.08 1.60
## 1154 0.09 0.00 0.02 1.60
## 1155 0.48 0.30 0.10 1.60
## 1156 0.02 1.36 0.02 1.60
## 1157 0.74 0.02 0.26 1.60
## 1158 0.44 0.06 0.04 1.60
## 1159 0.12 0.00 0.21 1.59
## 1160 1.58 0.00 0.00 1.59
## 1161 0.36 0.04 0.04 1.59
## 1162 0.41 0.46 0.10 1.59
## 1163 0.46 0.34 0.21 1.59
## 1164 0.09 0.00 0.02 1.59
## 1165 1.10 0.32 0.13 1.59
## 1166 0.44 0.07 0.15 1.59
## 1167 0.50 0.00 0.14 1.59
## 1168 0.60 0.00 0.10 1.59
## 1169 0.80 0.03 0.29 1.58
## 1170 0.56 0.00 0.15 1.58
## 1171 0.58 0.00 0.16 1.58
## 1172 0.60 0.01 0.17 1.58
## 1173 0.60 0.00 0.10 1.58
## 1174 0.80 0.01 0.15 1.58
## 1175 0.49 0.00 0.15 1.58
## 1176 0.76 0.00 0.17 1.58
## 1177 0.26 0.34 0.09 1.58
## 1178 0.37 0.00 0.15 1.58
## 1179 0.44 0.44 0.12 1.58
## 1180 0.65 0.00 0.08 1.58
## 1181 0.18 0.12 1.16 1.57
## 1182 0.60 0.00 0.20 1.57
## 1183 0.53 0.00 0.06 1.57
## 1184 0.11 0.46 0.04 1.57
## 1185 0.64 0.49 0.25 1.56
## 1186 0.60 0.00 0.20 1.56
## 1187 0.40 0.00 0.10 1.56
## 1188 0.14 0.81 0.02 1.56
## 1189 0.19 0.00 0.05 1.56
## 1190 0.44 0.33 0.21 1.56
## 1191 0.17 0.69 0.03 1.56
## 1192 0.00 1.56 0.00 1.56
## 1193 0.38 0.44 0.05 1.56
## 1194 0.75 0.01 0.21 1.56
## 1195 0.56 0.00 0.15 1.55
## 1196 0.54 0.04 0.25 1.55
## 1197 0.59 0.00 0.20 1.55
## 1198 0.57 0.00 0.07 1.55
## 1199 0.44 0.19 0.14 1.55
## 1200 0.47 0.02 0.22 1.55
## 1201 0.38 0.02 0.03 1.55
## 1202 0.87 0.02 0.09 1.55
## 1203 0.53 0.00 0.13 1.55
## 1204 0.53 0.00 0.22 1.55
## 1205 0.51 0.21 0.23 1.55
## 1206 0.00 0.00 0.00 1.55
## 1207 0.36 0.00 0.12 1.55
## 1208 0.50 0.24 0.11 1.55
## 1209 0.35 0.01 0.12 1.54
## 1210 0.43 0.29 0.14 1.54
## 1211 0.22 0.52 0.10 1.54
## 1212 0.44 0.08 0.19 1.54
## 1213 0.87 0.00 0.09 1.54
## 1214 0.02 0.02 0.10 1.54
## 1215 0.52 0.01 0.15 1.54
## 1216 0.07 0.00 0.21 1.54
## 1217 0.58 0.00 0.10 1.54
## 1218 0.69 0.00 0.21 1.53
## 1219 0.41 0.00 0.21 1.53
## 1220 0.65 0.01 0.17 1.53
## 1221 0.79 0.00 0.17 1.53
## 1222 0.29 0.00 0.05 1.53
## 1223 0.05 0.00 0.04 1.53
## 1224 0.43 0.00 0.14 1.53
## 1225 1.26 0.00 0.10 1.53
## 1226 0.15 0.25 0.04 1.53
## 1227 0.58 0.00 0.10 1.53
## 1228 0.52 0.15 0.12 1.52
## 1229 0.45 0.00 0.13 1.52
## 1230 0.69 0.00 0.39 1.52
## 1231 0.39 0.00 0.06 1.52
## 1232 0.90 0.00 0.27 1.52
## 1233 0.05 0.00 0.04 1.52
## 1234 0.00 1.52 0.00 1.52
## 1235 0.06 1.27 0.01 1.52
## 1236 0.04 0.00 0.04 1.52
## 1237 0.05 0.00 0.03 1.52
## 1238 0.72 0.04 0.26 1.52
## 1239 0.63 0.03 0.26 1.52
## 1240 0.31 0.06 0.04 1.52
## 1241 0.05 0.00 0.21 1.51
## 1242 0.09 0.00 0.12 1.51
## 1243 0.71 0.00 0.15 1.51
## 1244 0.54 0.00 0.13 1.51
## 1245 1.16 0.00 0.34 1.51
## 1246 0.00 1.51 0.00 1.51
## 1247 0.15 0.42 0.01 1.51
## 1248 1.16 0.00 0.11 1.51
## 1249 0.06 0.00 0.04 1.51
## 1250 0.03 0.00 1.13 1.51
## 1251 0.27 0.00 0.05 1.51
## 1252 0.32 0.11 0.08 1.50
## 1253 0.58 0.05 0.23 1.50
## 1254 0.52 0.15 0.17 1.50
## 1255 0.48 0.00 0.17 1.50
## 1256 0.05 0.00 0.04 1.50
## 1257 0.78 0.00 0.23 1.50
## 1258 0.31 0.00 0.11 1.50
## 1259 0.07 0.05 0.20 1.50
## 1260 0.27 0.02 0.02 1.50
## 1261 0.10 0.92 0.02 1.50
## 1262 0.36 0.09 0.05 1.50
## 1263 0.00 1.50 0.00 1.50
## 1264 0.53 0.09 0.12 1.50
## 1265 0.20 0.00 0.16 1.50
## 1266 0.14 0.10 0.04 1.50
## 1267 0.28 0.00 0.13 1.49
## 1268 0.38 0.36 0.04 1.49
## 1269 0.43 0.00 0.06 1.49
## 1270 0.00 0.00 0.27 1.49
## 1271 0.36 0.00 0.13 1.49
## 1272 0.36 0.25 0.06 1.49
## 1273 1.10 0.00 0.39 1.49
## 1274 0.52 0.01 0.14 1.49
## 1275 0.73 0.00 0.15 1.49
## 1276 0.69 0.28 0.14 1.48
## 1277 0.88 0.00 0.18 1.48
## 1278 0.37 0.52 0.12 1.48
## 1279 0.50 0.65 0.05 1.48
## 1280 0.25 0.02 0.02 1.48
## 1281 0.35 0.39 0.04 1.48
## 1282 0.47 0.03 0.20 1.48
## 1283 0.56 0.00 0.19 1.48
## 1284 0.20 0.00 0.20 1.48
## 1285 0.59 0.00 0.07 1.48
## 1286 0.92 0.00 0.17 1.47
## 1287 0.55 0.06 0.28 1.47
## 1288 0.41 0.14 0.20 1.47
## 1289 0.18 0.65 0.02 1.47
## 1290 0.37 0.00 0.06 1.47
## 1291 0.03 0.01 0.10 1.47
## 1292 0.40 0.44 0.18 1.47
## 1293 0.20 0.49 0.09 1.47
## 1294 0.40 0.00 0.12 1.47
## 1295 0.50 0.03 0.15 1.47
## 1296 0.20 0.00 0.12 1.47
## 1297 0.72 0.02 0.33 1.47
## 1298 0.19 0.89 0.10 1.46
## 1299 0.38 0.00 0.06 1.46
## 1300 0.40 0.02 0.12 1.46
## 1301 0.46 0.04 0.15 1.46
## 1302 0.56 0.00 0.19 1.46
## 1303 0.83 0.00 0.17 1.46
## 1305 0.48 0.02 0.12 1.46
## 1306 0.37 0.10 0.04 1.46
## 1307 0.08 0.00 0.02 1.46
## 1308 0.55 0.00 0.10 1.46
## 1309 0.24 0.25 0.04 1.46
## 1310 0.59 0.03 0.21 1.46
## 1311 0.40 0.00 0.11 1.46
## 1312 0.65 0.06 0.28 1.46
## 1313 0.20 0.04 0.05 1.46
## 1314 0.58 0.00 0.35 1.46
## 1315 0.75 0.07 0.12 1.46
## 1316 0.47 0.54 0.07 1.45
## 1317 0.44 0.00 0.12 1.45
## 1318 0.46 0.00 0.13 1.45
## 1319 0.49 0.01 0.21 1.45
## 1320 0.55 0.00 0.19 1.45
## 1321 1.13 0.00 0.32 1.45
## 1322 0.35 0.46 0.10 1.45
## 1323 0.76 0.00 0.16 1.45
## 1324 0.00 1.44 0.01 1.45
## 1325 0.00 1.45 0.00 1.45
## 1326 0.00 1.45 0.00 1.45
## 1327 0.00 1.44 0.01 1.45
## 1328 0.17 0.03 0.01 1.45
## 1329 0.34 0.00 0.13 1.45
## 1330 0.08 1.24 0.02 1.45
## 1331 0.05 0.00 0.02 1.45
## 1332 0.90 0.00 0.18 1.45
## 1333 0.53 0.00 0.13 1.44
## 1334 1.08 0.00 0.32 1.44
## 1335 0.42 0.00 0.28 1.44
## 1336 0.77 0.00 0.19 1.44
## 1337 0.07 1.09 0.02 1.44
## 1338 0.79 0.08 0.23 1.44
## 1339 0.38 0.00 0.13 1.44
## 1340 0.40 0.00 0.12 1.44
## 1341 0.07 0.02 0.11 1.44
## 1342 0.74 0.05 0.31 1.44
## 1343 0.32 0.00 0.09 1.44
## 1344 0.50 0.00 0.21 1.44
## 1345 0.08 0.00 0.19 1.44
## 1346 0.54 0.00 0.09 1.43
## 1347 0.37 0.00 0.11 1.43
## 1348 0.39 0.00 0.13 1.43
## 1349 0.46 0.00 0.13 1.43
## 1350 0.48 0.00 0.14 1.43
## 1351 0.23 0.35 0.03 1.43
## 1352 0.00 1.39 0.03 1.43
## 1353 0.54 0.00 0.09 1.43
## 1354 0.04 1.30 0.01 1.42
## 1355 0.54 0.00 0.18 1.42
## 1356 0.41 0.02 0.19 1.42
## 1357 0.05 0.00 0.02 1.42
## 1358 0.22 0.22 0.10 1.42
## 1359 0.08 0.00 0.19 1.42
## 1360 0.57 0.00 0.14 1.42
## 1361 0.12 0.71 0.02 1.42
## 1362 0.00 1.30 0.00 1.42
## 1363 0.40 0.00 0.13 1.42
## 1364 0.38 0.35 0.05 1.42
## 1365 0.21 1.18 0.03 1.42
## 1366 0.64 0.06 0.25 1.41
## 1367 0.51 0.00 0.32 1.41
## 1368 0.63 0.00 0.14 1.41
## 1369 0.34 0.00 0.13 1.41
## 1370 0.28 0.00 0.04 1.41
## 1371 0.34 0.00 0.11 1.41
## 1372 0.15 0.00 0.19 1.41
## 1373 0.37 0.03 0.05 1.41
## 1374 0.45 0.32 0.28 1.41
## 1375 0.31 0.13 0.10 1.41
## 1376 0.34 0.00 0.05 1.41
## 1377 0.47 0.77 0.17 1.41
## 1378 0.17 0.00 0.05 1.41
## 1379 0.54 0.00 0.18 1.41
## 1380 0.47 0.00 0.12 1.40
## 1381 0.28 0.00 0.05 1.40
## 1382 0.08 0.03 0.93 1.40
## 1383 0.20 0.00 0.05 1.40
## 1384 0.70 0.01 0.27 1.40
## 1385 0.52 0.08 0.06 1.40
## 1386 0.00 1.39 0.01 1.40
## 1387 0.86 0.00 0.16 1.40
## 1388 1.05 0.02 0.30 1.40
## 1389 0.53 0.00 0.09 1.39
## 1390 0.66 0.02 0.22 1.39
## 1391 0.42 0.54 0.10 1.39
## 1392 0.02 0.00 0.09 1.39
## 1393 0.60 0.07 0.23 1.39
## 1394 0.16 0.00 0.03 1.39
## 1395 0.17 0.15 0.02 1.39
## 1396 0.18 0.91 0.06 1.39
## 1397 0.38 0.00 0.13 1.39
## 1398 0.62 0.00 0.26 1.39
## 1399 0.48 0.02 0.12 1.39
## 1400 0.37 0.00 0.05 1.38
## 1401 0.56 0.00 0.33 1.38
## 1402 0.18 0.59 0.02 1.38
## 1403 0.32 0.49 0.07 1.38
## 1404 0.38 0.02 0.11 1.38
## 1405 0.54 0.00 0.07 1.38
## 1406 0.34 0.38 0.21 1.38
## 1407 0.57 0.15 0.22 1.38
## 1408 0.53 0.00 0.13 1.38
## 1409 0.04 0.00 0.09 1.38
## 1410 0.43 0.01 0.13 1.38
## 1411 0.53 0.00 0.18 1.38
## 1412 0.58 0.00 0.15 1.38
## 1413 0.01 0.00 0.76 1.37
## 1414 0.62 0.06 0.23 1.37
## 1415 0.70 0.16 0.26 1.37
## 1416 0.52 0.00 0.09 1.37
## 1417 0.78 0.01 0.09 1.37
## 1418 0.67 0.02 0.26 1.37
## 1419 0.50 0.01 0.13 1.37
## 1420 0.33 0.00 0.05 1.37
## 1421 0.60 0.00 0.22 1.37
## 1422 0.00 1.37 0.00 1.37
## 1423 0.27 0.02 0.22 1.36
## 1424 0.45 0.00 0.06 1.36
## 1425 0.66 0.00 0.07 1.36
## 1426 0.58 0.01 0.15 1.36
## 1427 0.04 0.00 1.09 1.36
## 1428 0.08 1.00 0.01 1.36
## 1429 0.00 1.36 0.00 1.36
## 1430 0.08 0.00 0.01 1.36
## 1431 0.51 0.28 0.09 1.36
## 1432 0.42 0.00 0.11 1.36
## 1433 0.52 0.00 0.17 1.36
## 1435 0.29 0.11 0.14 1.35
## 1436 0.00 1.26 0.09 1.35
## 1437 0.76 0.08 0.27 1.35
## 1438 0.03 0.00 0.03 1.35
## 1439 0.73 0.02 0.37 1.35
## 1440 0.01 0.06 0.09 1.35
## 1441 0.76 0.00 0.39 1.35
## 1442 0.57 0.05 0.14 1.35
## 1443 0.51 0.05 0.13 1.35
## 1444 0.36 0.05 0.18 1.35
## 1445 0.21 0.00 0.13 1.35
## 1446 0.05 1.06 0.02 1.35
## 1447 0.58 0.00 0.07 1.35
## 1448 0.34 0.08 0.13 1.35
## 1449 0.45 0.04 0.21 1.35
## 1450 0.04 1.03 0.04 1.35
## 1451 0.50 0.02 0.12 1.35
## 1452 0.04 1.07 0.09 1.35
## 1453 1.04 0.00 0.31 1.35
## 1454 0.89 0.01 0.14 1.35
## 1455 0.37 0.13 0.17 1.35
## 1456 0.21 0.01 0.18 1.34
## 1457 0.07 0.43 0.08 1.34
## 1458 0.04 0.10 0.11 1.34
## 1459 0.27 0.00 0.04 1.34
## 1460 0.43 0.00 0.06 1.34
## 1461 0.22 0.24 0.04 1.34
## 1462 0.05 0.05 0.01 1.34
## 1463 0.51 0.00 0.17 1.34
## 1464 0.02 0.00 0.00 1.34
## 1465 0.06 0.00 0.18 1.34
## 1466 0.50 0.01 0.21 1.33
## 1467 0.05 0.00 0.02 1.33
## 1468 0.42 0.00 0.11 1.33
## 1469 0.59 0.06 0.21 1.33
## 1470 0.36 0.00 0.11 1.33
## 1471 0.31 0.01 0.12 1.33
## 1472 0.35 0.01 0.05 1.33
## 1473 0.24 0.00 0.02 1.33
## 1474 0.38 0.01 0.05 1.33
## 1475 0.35 0.00 0.06 1.33
## 1476 0.50 0.00 0.09 1.33
## 1477 0.35 0.07 0.04 1.33
## 1478 0.31 0.00 0.11 1.33
## 1479 0.40 0.32 0.18 1.33
## 1480 0.51 0.00 0.17 1.33
## 1481 0.48 0.00 0.13 1.33
## 1482 0.17 0.58 0.06 1.33
## 1483 0.50 0.01 0.10 1.32
## 1484 0.38 0.02 0.24 1.32
## 1485 0.42 0.00 0.19 1.32
## 1486 0.36 0.40 0.17 1.32
## 1487 0.13 0.00 1.18 1.32
## 1488 0.43 0.18 0.19 1.32
## 1489 0.52 0.00 0.11 1.32
## 1490 1.16 0.02 0.11 1.32
## 1491 0.16 0.40 0.03 1.32
## 1492 0.08 0.00 0.18 1.32
## 1493 0.50 0.00 0.09 1.32
## 1494 0.04 0.96 0.01 1.32
## 1495 0.30 0.09 0.16 1.32
## 1496 0.50 0.00 0.09 1.32
## 1497 0.44 0.04 0.12 1.32
## 1498 0.45 0.00 0.11 1.32
## 1500 0.50 0.00 0.09 1.31
## 1501 0.50 0.00 0.17 1.31
## 1502 0.23 0.00 0.11 1.31
## 1503 0.42 0.05 0.13 1.31
## 1504 0.35 0.00 0.12 1.31
## 1505 0.00 0.00 0.09 1.31
## 1506 0.45 0.00 0.07 1.31
## 1507 0.67 0.00 0.07 1.31
## 1508 0.38 0.00 0.12 1.31
## 1509 0.07 0.00 0.02 1.31
## 1510 0.50 0.00 0.17 1.31
## 1511 0.49 0.00 0.13 1.31
## 1512 0.04 0.06 0.09 1.31
## 1513 0.43 0.00 0.04 1.31
## 1515 0.35 0.00 0.02 1.30
## 1516 0.57 0.06 0.21 1.30
## 1517 0.04 0.02 0.17 1.30
## 1518 0.44 0.09 0.21 1.30
## 1519 0.02 0.00 1.02 1.30
## 1520 0.48 0.00 0.13 1.30
## 1521 0.20 0.00 0.05 1.30
## 1522 0.00 1.29 0.01 1.30
## 1523 0.40 0.00 0.11 1.30
## 1524 0.38 0.28 0.08 1.30
## 1525 0.64 0.02 0.10 1.30
## 1526 0.66 0.02 0.15 1.29
## 1527 0.47 0.11 0.10 1.29
## 1528 0.02 0.85 0.03 1.29
## 1529 0.92 0.00 0.25 1.29
## 1530 0.27 0.45 0.04 1.29
## 1531 0.17 0.02 0.10 1.29
## 1532 0.44 0.00 0.12 1.29
## 1533 0.34 0.00 0.02 1.29
## 1534 0.49 0.00 0.16 1.29
## 1535 0.14 0.00 0.10 1.29
## 1536 0.40 0.00 0.12 1.29
## 1537 0.20 0.24 0.13 1.29
## 1538 0.05 0.00 0.01 1.29
## 1539 0.49 0.00 0.16 1.28
## 1540 0.45 0.01 0.11 1.28
## 1541 0.59 0.00 0.14 1.28
## 1542 0.46 0.17 0.20 1.28
## 1543 0.00 1.28 0.00 1.28
## 1544 0.56 0.00 0.11 1.28
## 1545 0.14 0.00 0.04 1.28
## 1546 0.45 0.00 0.11 1.28
## 1547 0.16 0.00 0.04 1.28
## 1548 0.49 0.00 0.16 1.28
## 1549 0.35 0.36 0.07 1.28
## 1550 0.49 0.00 0.16 1.28
## 1551 0.56 0.05 0.22 1.27
## 1552 0.40 0.21 0.08 1.27
## 1553 0.05 0.00 0.00 1.27
## 1554 0.03 0.00 0.52 1.27
## 1555 0.48 0.00 0.08 1.27
## 1556 0.30 0.47 0.06 1.27
## 1557 0.08 0.00 0.01 1.27
## 1558 0.16 0.00 0.11 1.27
## 1559 0.40 0.00 0.12 1.27
## 1560 0.37 0.00 0.05 1.27
## 1561 0.16 0.41 0.02 1.27
## 1562 0.38 0.00 0.12 1.27
## 1563 0.20 0.00 0.11 1.27
## 1564 0.38 0.26 0.13 1.27
## 1565 0.73 0.00 0.15 1.27
## 1566 0.30 0.06 0.03 1.27
## 1567 0.48 0.00 0.16 1.27
## 1568 0.26 0.53 0.08 1.27
## 1569 0.00 1.27 0.00 1.27
## 1570 0.57 0.00 0.14 1.26
## 1571 0.02 1.12 0.01 1.26
## 1572 1.01 0.00 0.25 1.26
## 1573 0.03 1.10 0.08 1.26
## 1574 0.05 0.62 0.05 1.26
## 1575 0.42 0.13 0.10 1.26
## 1576 0.52 0.03 0.21 1.26
## 1577 1.15 0.00 0.11 1.26
## 1578 1.13 0.01 0.10 1.26
## 1579 0.62 0.00 0.14 1.26
## 1580 0.22 0.00 0.04 1.26
## 1581 0.51 0.00 0.11 1.26
## 1582 0.68 0.00 0.12 1.26
## 1583 0.17 0.02 0.13 1.25
## 1584 0.47 0.00 0.08 1.25
## 1585 0.00 0.01 0.75 1.25
## 1587 0.53 0.03 0.22 1.25
## 1588 0.00 1.25 0.00 1.25
## 1589 0.00 1.25 0.00 1.25
## 1590 0.13 0.10 0.04 1.25
## 1591 0.53 0.01 0.23 1.25
## 1592 0.19 0.31 0.03 1.25
## 1593 0.04 0.03 0.16 1.25
## 1594 0.05 0.00 0.00 1.25
## 1595 0.48 0.00 0.16 1.25
## 1596 0.56 0.00 0.17 1.25
## 1597 0.16 0.00 0.04 1.25
## 1598 0.03 0.22 0.14 1.24
## 1599 0.48 0.00 0.16 1.24
## 1600 0.03 0.00 0.09 1.24
## 1601 0.19 0.67 0.09 1.24
## 1602 0.04 0.00 0.10 1.24
## 1603 0.41 0.00 0.19 1.24
## 1604 0.48 0.05 0.28 1.24
## 1605 0.44 0.00 0.06 1.24
## 1606 0.47 0.00 0.11 1.24
## 1607 0.19 0.75 0.06 1.24
## 1608 0.00 0.00 0.55 1.24
## 1609 0.22 0.43 0.03 1.24
## 1610 0.38 0.00 0.04 1.24
## 1611 0.55 0.00 0.13 1.23
## 1612 0.47 0.00 0.16 1.23
## 1613 0.64 0.07 0.22 1.23
## 1614 0.20 0.07 0.04 1.23
## 1615 0.57 0.00 0.07 1.23
## 1616 0.47 0.00 0.16 1.23
## 1617 0.47 0.00 0.08 1.23
## 1618 1.02 0.00 0.13 1.23
## 1619 0.14 0.00 0.10 1.23
## 1620 0.70 0.03 0.25 1.23
## 1621 0.17 0.75 0.02 1.23
## 1622 0.33 0.00 0.02 1.23
## 1623 0.47 0.00 0.08 1.23
## 1624 0.06 0.62 0.01 1.23
## 1625 0.27 0.12 0.04 1.23
## 1626 0.41 0.21 0.17 1.23
## 1627 0.11 0.70 0.02 1.23
## 1628 0.06 0.01 0.11 1.23
## 1629 0.08 0.00 0.23 1.23
## 1630 0.38 0.00 0.12 1.23
## 1631 0.63 0.00 0.10 1.23
## 1632 0.64 0.00 0.14 1.23
## 1633 0.53 0.00 0.20 1.22
## 1634 0.47 0.15 0.18 1.22
## 1635 0.16 0.46 0.03 1.22
## 1636 0.07 1.00 0.02 1.22
## 1637 0.30 0.12 0.04 1.22
## 1638 0.31 0.08 0.04 1.22
## 1639 0.08 0.85 0.02 1.22
## 1640 0.46 0.01 0.15 1.22
## 1641 0.75 0.11 0.25 1.22
## 1642 0.29 0.00 0.21 1.22
## 1643 0.05 0.00 0.03 1.22
## 1644 0.00 1.14 0.08 1.22
## 1645 0.27 0.27 0.07 1.22
## 1646 0.46 0.00 0.08 1.22
## 1647 0.19 0.00 0.05 1.22
## 1648 0.46 0.00 0.08 1.22
## 1649 0.46 0.01 0.15 1.22
## 1651 0.44 0.14 0.09 1.22
## 1652 0.04 0.00 0.16 1.21
## 1653 0.24 0.00 0.04 1.21
## 1654 0.40 0.00 0.04 1.21
## 1655 0.70 0.01 0.37 1.21
## 1656 0.14 0.00 0.04 1.21
## 1657 0.43 0.00 0.12 1.21
## 1658 0.17 0.35 0.03 1.21
## 1659 0.00 1.20 0.01 1.21
## 1660 0.48 0.01 0.06 1.21
## 1661 0.49 0.28 0.10 1.21
## 1662 0.48 0.01 0.03 1.21
## 1663 0.32 0.00 0.02 1.21
## 1664 0.46 0.00 0.08 1.21
## 1665 0.65 0.00 0.32 1.21
## 1666 0.88 0.31 0.00 1.20
## 1667 0.46 0.00 0.15 1.20
## 1668 0.49 0.00 0.20 1.20
## 1669 0.04 0.00 0.16 1.20
## 1670 0.13 0.56 0.03 1.20
## 1671 0.59 0.00 0.10 1.20
## 1672 0.31 0.00 0.12 1.20
## 1673 0.37 0.01 0.11 1.20
## 1674 0.60 0.00 0.19 1.20
## 1675 0.00 1.20 0.00 1.20
## 1676 0.00 1.20 0.00 1.20
## 1677 0.00 1.20 0.00 1.20
## 1678 0.05 0.00 0.02 1.20
## 1679 0.39 0.36 0.04 1.20
## 1680 0.43 0.01 0.04 1.20
## 1681 0.46 0.00 0.15 1.20
## 1682 0.03 0.36 0.07 1.20
## 1683 0.17 0.42 0.06 1.20
## 1684 0.24 0.86 0.09 1.20
## 1685 0.49 0.00 0.21 1.19
## 1686 0.35 0.38 0.09 1.19
## 1687 0.45 0.00 0.08 1.19
## 1688 0.36 0.19 0.09 1.19
## 1689 0.47 0.00 0.28 1.19
## 1690 0.32 0.00 0.02 1.19
## 1691 0.84 0.11 0.15 1.19
## 1692 0.23 0.00 0.04 1.19
## 1693 0.64 0.27 0.10 1.19
## 1694 0.04 0.00 0.16 1.19
## 1695 0.13 0.04 0.01 1.19
## 1696 0.14 0.35 0.02 1.19
## 1697 0.16 0.00 0.04 1.19
## 1699 0.66 0.00 0.12 1.19
## 1700 0.27 0.01 0.04 1.19
## 1701 0.24 0.29 0.02 1.19
## 1702 0.14 0.00 0.22 1.19
## 1703 0.31 0.33 0.08 1.19
## 1704 0.20 0.00 0.08 1.19
## 1705 0.45 0.00 0.08 1.18
## 1706 0.07 0.00 0.01 1.18
## 1707 0.25 0.36 0.10 1.18
## 1708 0.49 0.00 0.29 1.18
## 1709 0.00 1.08 0.00 1.18
## 1710 0.24 0.38 0.04 1.18
## 1711 0.18 0.44 0.06 1.18
## 1712 0.31 0.00 0.02 1.18
## 1713 0.46 0.02 0.17 1.18
## 1714 0.49 0.01 0.20 1.18
## 1715 0.15 0.00 0.08 1.18
## 1716 0.07 0.04 0.66 1.18
## 1717 0.14 0.52 0.02 1.18
## 1718 1.06 0.00 0.09 1.17
## 1719 0.44 0.00 0.08 1.17
## 1720 0.37 0.00 0.10 1.17
## 1721 0.26 0.02 0.15 1.17
## 1722 0.04 0.00 0.16 1.17
## 1723 0.45 0.00 0.15 1.17
## 1724 0.31 0.15 0.11 1.17
## 1725 0.49 0.01 0.12 1.17
## 1726 0.47 0.01 0.10 1.17
## 1727 0.10 0.39 0.00 1.17
## 1728 0.64 0.04 0.18 1.17
## 1729 0.38 0.02 0.03 1.17
## 1730 0.00 1.17 0.00 1.17
## 1731 0.45 0.00 0.15 1.17
## 1732 0.44 0.00 0.08 1.17
## 1733 0.11 0.83 0.08 1.17
## 1734 0.36 0.00 0.05 1.17
## 1735 0.95 0.00 0.22 1.17
## 1736 0.44 0.00 0.08 1.17
## 1737 0.51 0.01 0.13 1.17
## 1738 0.23 0.00 0.11 1.17
## 1739 0.25 0.21 0.02 1.17
## 1740 0.52 0.02 0.20 1.16
## 1741 0.28 0.00 0.10 1.16
## 1742 0.45 0.00 0.14 1.16
## 1743 0.52 0.01 0.25 1.16
## 1744 0.25 0.30 0.16 1.16
## 1745 0.04 0.00 0.16 1.16
## 1746 0.44 0.00 0.15 1.16
## 1747 0.58 0.00 0.13 1.16
## 1748 0.27 0.43 0.08 1.16
## 1749 0.39 0.00 0.11 1.16
## 1750 0.44 0.00 0.15 1.16
## 1751 0.28 0.07 0.02 1.16
## 1752 0.08 0.50 0.01 1.16
## 1753 0.27 0.00 0.05 1.16
## 1754 0.16 0.77 0.02 1.16
## 1755 0.44 0.00 0.08 1.16
## 1756 0.39 0.02 0.25 1.16
## 1757 0.51 0.00 0.12 1.16
## 1758 0.38 0.09 0.17 1.16
## 1759 0.28 0.00 0.05 1.16
## 1760 0.68 0.01 0.32 1.16
## 1761 0.54 0.00 0.10 1.16
## 1762 1.14 0.00 0.01 1.15
## 1763 0.46 0.00 0.17 1.15
## 1764 0.44 0.00 0.15 1.15
## 1765 0.33 0.09 0.16 1.15
## 1766 0.44 0.00 0.15 1.15
## 1767 0.07 0.00 0.01 1.15
## 1768 0.46 0.06 0.18 1.15
## 1769 0.35 0.01 0.11 1.15
## 1770 1.12 0.00 0.03 1.15
## 1771 0.20 0.41 0.03 1.15
## 1772 0.00 1.15 0.00 1.15
## 1773 0.00 1.15 0.00 1.15
## 1774 0.52 0.00 0.13 1.15
## 1775 0.22 0.05 0.12 1.15
## 1776 0.16 0.46 0.03 1.15
## 1777 0.51 0.00 0.19 1.15
## 1778 0.00 1.15 0.00 1.15
## 1779 0.44 0.00 0.15 1.15
## 1780 0.43 0.00 0.07 1.15
## 1781 0.00 1.07 0.07 1.15
## 1782 0.26 0.35 0.07 1.14
## 1783 0.43 0.00 0.07 1.14
## 1784 0.34 0.25 0.11 1.14
## 1785 0.03 0.20 0.13 1.14
## 1786 0.17 0.65 0.07 1.14
## 1787 0.03 0.76 0.04 1.14
## 1788 0.04 0.00 0.16 1.14
## 1789 0.59 0.02 0.22 1.14
## 1790 0.75 0.00 0.14 1.14
## 1791 0.23 0.00 0.02 1.14
## 1792 0.16 0.25 0.03 1.14
## 1793 0.17 0.48 0.02 1.14
## 1794 0.23 0.47 0.03 1.14
## 1795 0.37 0.15 0.04 1.14
## 1796 0.38 0.00 0.05 1.14
## 1797 0.30 0.00 0.02 1.14
## 1798 0.51 0.00 0.62 1.14
## 1799 0.37 0.00 0.11 1.14
## 1800 0.10 0.88 0.03 1.14
## 1801 0.39 0.01 0.03 1.14
## 1802 0.10 0.00 0.03 1.13
## 1803 0.41 0.06 0.16 1.13
## 1804 0.43 0.00 0.09 1.13
## 1805 0.00 1.06 0.07 1.13
## 1806 0.30 0.00 0.02 1.13
## 1807 0.37 0.37 0.06 1.13
## 1808 0.12 0.00 0.02 1.13
## 1809 0.56 0.00 0.19 1.13
## 1810 0.05 0.84 0.01 1.13
## 1811 0.43 0.00 0.07 1.13
## 1812 0.39 0.00 0.10 1.13
## 1813 0.56 0.04 0.19 1.13
## 1814 0.21 0.62 0.08 1.13
## 1815 0.30 0.00 0.02 1.13
## 1816 0.30 0.00 0.15 1.13
## 1817 0.30 0.01 0.09 1.12
## 1818 0.06 0.00 0.01 1.12
## 1819 0.43 0.00 0.14 1.12
## 1820 0.24 0.30 0.02 1.12
## 1821 0.37 0.02 0.10 1.12
## 1822 0.33 0.28 0.15 1.12
## 1823 0.37 0.10 0.16 1.12
## 1824 0.20 0.01 0.08 1.12
## 1825 0.40 0.00 0.10 1.12
## 1826 0.00 0.01 0.08 1.12
## 1827 0.40 0.00 0.05 1.12
## 1828 0.06 0.63 0.02 1.12
## 1829 0.30 0.00 0.54 1.12
## 1830 1.12 0.00 0.00 1.12
## 1831 0.26 0.00 0.04 1.12
## 1832 0.23 0.00 0.04 1.11
## 1833 0.58 0.04 0.17 1.11
## 1834 0.37 0.00 0.11 1.11
## 1835 0.57 0.03 0.20 1.11
## 1836 0.04 0.00 0.15 1.11
## 1837 0.40 0.00 0.08 1.11
## 1839 0.38 0.00 0.05 1.11
## 1840 0.07 0.70 0.01 1.11
## 1841 0.00 1.10 0.01 1.11
## 1842 0.14 0.00 0.03 1.11
## 1843 0.46 0.00 0.12 1.11
## 1844 0.31 0.29 0.06 1.11
## 1845 0.13 0.73 0.07 1.11
## 1846 0.35 0.00 0.23 1.11
## 1847 0.42 0.00 0.17 1.11
## 1848 0.40 0.00 0.17 1.10
## 1849 0.06 0.00 0.01 1.10
## 1850 0.53 0.01 0.12 1.10
## 1851 0.33 0.17 0.08 1.10
## 1852 0.06 0.00 0.01 1.10
## 1853 0.42 0.00 0.07 1.10
## 1854 0.53 0.00 0.21 1.10
## 1855 0.52 0.00 0.12 1.10
## 1856 0.46 0.01 0.18 1.10
## 1857 0.00 1.10 0.00 1.10
## 1858 0.00 1.10 0.00 1.10
## 1859 0.00 1.10 0.00 1.10
## 1860 0.00 1.10 0.00 1.10
## 1861 0.33 0.29 0.03 1.10
## 1862 0.12 0.45 0.02 1.10
## 1863 0.09 0.00 0.09 1.10
## 1864 0.40 0.04 0.13 1.10
## 1865 0.75 0.00 0.23 1.10
## 1866 0.84 0.00 0.25 1.10
## 1867 0.21 0.31 0.04 1.10
## 1868 0.33 0.01 0.22 1.10
## 1869 0.10 0.72 0.02 1.10
## 1870 0.22 0.45 0.12 1.10
## 1871 0.41 0.00 0.25 1.09
## 1872 0.36 0.00 0.10 1.09
## 1873 0.55 0.00 0.31 1.09
## 1874 0.04 0.84 0.16 1.09
## 1875 0.17 0.01 0.09 1.09
## 1876 0.29 0.00 0.02 1.09
## 1877 0.52 0.08 0.20 1.09
## 1878 0.05 0.00 0.02 1.09
## 1879 0.00 1.07 0.02 1.09
## 1880 0.18 0.00 0.16 1.09
## 1881 0.04 0.00 0.08 1.09
## 1882 0.02 0.00 0.05 1.09
## 1883 0.97 0.00 0.11 1.09
## 1884 0.03 0.01 0.15 1.09
## 1885 0.37 0.00 0.11 1.09
## 1886 0.42 0.00 0.14 1.09
## 1887 0.00 1.02 0.07 1.09
## 1888 0.28 0.04 0.13 1.09
## 1889 0.54 0.00 0.11 1.09
## 1890 0.52 0.00 0.22 1.09
## 1891 0.47 0.09 0.09 1.09
## 1892 0.41 0.00 0.07 1.09
## 1893 0.26 0.00 0.09 1.09
## 1894 0.41 0.00 0.14 1.08
## 1895 0.41 0.03 0.18 1.08
## 1896 0.41 0.00 0.14 1.08
## 1897 0.64 0.00 0.08 1.08
## 1898 0.12 0.00 0.09 1.08
## 1899 0.41 0.00 0.14 1.08
## 1900 0.43 0.00 0.11 1.08
## 1901 0.32 0.20 0.09 1.08
## 1902 0.00 0.00 0.06 1.08
## 1903 0.50 0.03 0.28 1.08
## 1904 0.69 0.00 0.12 1.08
## 1905 0.59 0.00 0.22 1.08
## 1906 0.06 0.00 0.01 1.08
## 1907 0.43 0.01 0.11 1.08
## 1908 0.34 0.00 0.10 1.08
## 1909 0.59 0.01 0.21 1.08
## 1910 0.40 0.13 0.08 1.08
## 1911 0.30 0.00 0.11 1.08
## 1912 0.41 0.00 0.07 1.08
## 1913 0.29 0.00 0.02 1.08
## 1914 0.29 0.00 0.02 1.08
## 1915 0.18 0.19 0.03 1.08
## 1916 0.35 0.09 0.16 1.08
## 1917 0.18 0.03 0.07 1.08
## 1918 0.00 0.00 0.06 1.07
## 1919 0.00 1.00 0.07 1.07
## 1920 0.03 0.00 0.15 1.07
## 1921 0.32 0.00 0.10 1.07
## 1922 0.39 0.02 0.09 1.07
## 1923 0.40 0.03 0.11 1.07
## 1924 0.12 0.77 0.02 1.07
## 1925 0.98 0.00 0.09 1.07
## 1926 0.01 0.00 0.54 1.07
## 1927 0.90 0.04 0.05 1.07
## 1928 0.06 0.21 0.07 1.07
## 1929 0.40 0.00 0.07 1.07
## 1930 0.15 0.13 0.05 1.07
## 1931 0.44 0.00 0.20 1.07
## 1932 0.64 0.05 0.25 1.07
## 1933 0.63 0.00 0.34 1.07
## 1934 0.30 0.00 0.10 1.07
## 1935 0.12 0.71 0.07 1.07
## 1936 0.42 0.00 0.10 1.07
## 1937 0.40 0.00 0.07 1.07
## 1938 0.40 0.00 0.07 1.06
## 1939 0.04 0.00 0.14 1.06
## 1940 0.40 0.00 0.11 1.06
## 1941 0.41 0.00 0.14 1.06
## 1942 0.74 0.00 0.10 1.06
## 1943 0.29 0.01 0.10 1.06
## 1944 0.67 0.00 0.23 1.06
## 1945 0.02 0.01 0.08 1.06
## 1946 0.00 0.99 0.07 1.06
## 1947 0.65 0.00 0.13 1.06
## 1948 0.41 0.00 0.14 1.06
## 1949 0.50 0.05 0.19 1.06
## 1950 0.30 0.01 0.10 1.06
## 1951 0.81 0.00 0.08 1.06
## 1952 0.41 0.00 0.14 1.06
## 1953 0.44 0.00 0.18 1.06
## 1954 0.04 0.00 0.01 1.06
## 1955 0.05 0.00 0.01 1.06
## 1956 0.40 0.00 0.11 1.06
## 1957 0.01 0.00 0.08 1.06
## 1958 0.02 0.00 0.00 1.06
## 1959 0.41 0.10 0.16 1.06
## 1960 0.28 0.00 0.02 1.06
## 1961 0.59 0.03 0.22 1.06
## 1962 0.40 0.00 0.14 1.06
## 1963 0.39 0.00 0.17 1.06
## 1964 0.06 0.64 0.04 1.06
## 1965 0.38 0.00 0.09 1.05
## 1966 0.05 0.00 0.01 1.05
## 1967 0.11 0.00 0.13 1.05
## 1968 0.54 0.00 0.08 1.05
## 1969 0.47 0.00 0.18 1.05
## 1970 0.05 0.00 0.01 1.05
## 1971 0.66 0.00 0.12 1.05
## 1972 0.00 1.05 0.00 1.05
## 1973 0.00 0.92 0.13 1.05
## 1974 0.00 1.05 0.00 1.05
## 1975 0.00 1.04 0.01 1.05
## 1976 0.34 0.03 0.13 1.05
## 1977 0.40 0.00 0.13 1.05
## 1978 0.48 0.12 0.15 1.05
## 1979 0.26 0.00 0.01 1.05
## 1980 0.11 0.00 0.03 1.05
## 1981 0.49 0.00 0.11 1.05
## 1982 0.38 0.01 0.11 1.05
## 1983 0.51 0.00 0.02 1.05
## 1984 0.49 0.00 0.11 1.05
## 1985 0.32 0.00 0.10 1.05
## 1986 0.13 0.66 0.07 1.05
## 1987 0.06 0.37 0.04 1.05
## 1988 0.40 0.00 0.11 1.05
## 1989 0.47 0.00 0.11 1.04
## 1990 0.40 0.00 0.13 1.04
## 1992 0.37 0.26 0.09 1.04
## 1993 0.37 0.00 0.09 1.04
## 1994 0.06 0.83 0.07 1.04
## 1995 0.39 0.00 0.07 1.04
## 1996 0.35 0.02 0.10 1.04
## 1997 0.30 0.22 0.07 1.04
## 1998 0.12 0.45 0.03 1.04
## 1999 0.03 0.00 0.14 1.04
## 2000 0.35 0.01 0.09 1.04
## 2001 0.16 0.37 0.12 1.04
## 2002 0.20 0.31 0.03 1.04
## 2003 0.10 0.00 0.03 1.04
## 2004 0.33 0.00 0.09 1.04
## 2005 0.69 0.02 0.15 1.04
## 2006 0.46 0.00 0.05 1.04
## 2007 0.06 0.41 0.05 1.04
## 2008 0.34 0.00 0.09 1.04
## 2009 0.27 0.00 0.09 1.04
## 2010 0.48 0.02 0.19 1.04
## 2011 0.58 0.00 0.30 1.04
## 2012 0.34 0.00 0.22 1.04
## 2013 0.40 0.01 0.17 1.04
## 2014 0.03 0.00 0.14 1.03
## 2015 0.33 0.01 0.14 1.03
## 2016 0.02 0.00 0.08 1.03
## 2017 0.51 0.01 0.18 1.03
## 2018 0.23 0.00 0.08 1.03
## 2019 0.39 0.00 0.13 1.03
## 2021 0.00 0.85 0.00 1.03
## 2022 0.47 0.00 0.11 1.03
## 2023 0.07 0.00 0.00 1.03
## 2024 0.01 0.00 0.08 1.03
## 2025 0.12 0.51 0.02 1.03
## 2026 0.32 0.01 0.08 1.02
## 2027 0.59 0.01 0.11 1.02
## 2028 0.46 0.00 0.11 1.02
## 2029 0.05 0.02 0.08 1.02
## 2030 0.36 0.05 0.08 1.02
## 2031 0.26 0.01 0.03 1.02
## 2032 0.40 0.00 0.11 1.02
## 2033 0.21 0.45 0.08 1.02
## 2034 0.12 0.49 0.02 1.02
## 2035 0.40 0.00 0.11 1.02
## 2036 0.39 0.00 0.07 1.02
## 2037 0.04 0.22 0.06 1.02
## 2038 0.03 0.00 0.03 1.02
## 2039 0.40 0.00 0.17 1.02
## 2040 0.39 0.00 0.13 1.02
## 2041 0.38 0.00 0.07 1.01
## 2042 0.28 0.10 0.30 1.01
## 2043 0.35 0.02 0.10 1.01
## 2044 0.36 0.03 0.21 1.01
## 2045 0.46 0.01 0.09 1.01
## 2046 0.22 0.05 0.10 1.01
## 2047 0.12 0.00 0.02 1.01
## 2048 0.93 0.00 0.08 1.01
## 2049 0.44 0.00 0.09 1.01
## 2050 0.00 1.01 0.00 1.01
## 2051 0.08 0.74 0.07 1.01
## 2052 0.48 0.02 0.18 1.01
## 2053 0.53 0.00 0.20 1.01
## 2054 0.61 0.00 0.18 1.01
## 2055 0.00 0.00 0.07 1.00
## 2056 0.38 0.00 0.13 1.00
## 2057 0.19 0.46 0.07 1.00
## 2058 0.76 0.03 0.09 1.00
## 2059 0.24 0.38 0.08 1.00
## 2060 0.14 0.21 0.00 1.00
## 2061 0.15 0.19 0.01 1.00
## 2062 0.10 0.47 0.02 1.00
## 2063 0.25 0.09 0.03 1.00
## 2064 0.00 1.00 0.00 1.00
## 2065 0.18 0.03 0.00 1.00
## 2066 0.33 0.02 0.15 1.00
## 2067 0.21 0.00 0.07 1.00
## 2068 0.90 0.02 0.00 1.00
## 2069 0.38 0.00 0.07 1.00
## 2070 0.38 0.00 0.07 1.00
## 2071 0.49 0.04 0.22 1.00
## 2072 0.38 0.00 0.07 1.00
## 2073 0.10 0.74 0.03 1.00
## 2074 0.04 0.01 0.08 1.00
## 2075 0.27 0.05 0.15 1.00
## 2076 0.38 0.00 0.17 1.00
## 2077 0.04 0.00 0.06 1.00
## 2078 0.35 0.00 0.16 1.00
## 2079 0.28 0.00 0.08 1.00
## 2080 0.78 0.00 0.04 1.00
## 2081 0.38 0.00 0.07 1.00
## 2082 0.28 0.00 0.08 0.99
## 2083 0.07 0.39 0.05 0.99
## 2084 0.21 0.00 0.04 0.99
## 2085 0.20 0.00 0.03 0.99
## 2086 0.31 0.00 0.10 0.99
## 2088 0.34 0.01 0.08 0.99
## 2089 0.31 0.12 0.19 0.99
## 2090 0.00 0.00 0.06 0.99
## 2091 0.46 0.00 0.17 0.99
## 2092 0.30 0.00 0.09 0.99
## 2093 0.30 0.00 0.09 0.99
## 2094 0.38 0.00 0.06 0.99
## 2095 0.52 0.04 0.09 0.99
## 2096 0.05 0.00 0.07 0.99
## 2097 0.28 0.00 0.19 0.99
## 2098 0.23 0.38 0.08 0.99
## 2099 0.15 0.00 0.11 0.99
## 2100 0.50 0.00 0.11 0.99
## 2101 0.65 0.00 0.11 0.99
## 2102 0.20 0.00 0.03 0.99
## 2103 0.80 0.00 0.18 0.99
## 2104 0.88 0.00 0.08 0.99
## 2105 0.05 0.00 0.08 0.98
## 2106 0.53 0.19 0.25 0.98
## 2107 0.62 0.00 0.14 0.98
## 2108 0.26 0.16 0.08 0.98
## 2109 0.19 0.00 0.07 0.98
## 2110 0.19 0.28 0.02 0.98
## 2111 0.46 0.00 0.17 0.98
## 2112 0.13 0.21 0.02 0.98
## 2113 0.04 0.00 0.01 0.98
## 2116 0.10 0.27 0.05 0.98
## 2117 0.38 0.00 0.17 0.98
## 2118 0.54 0.01 0.18 0.98
## 2119 0.39 0.06 0.15 0.98
## 2120 0.44 0.00 0.08 0.98
## 2121 0.92 0.00 0.05 0.98
## 2122 0.41 0.06 0.18 0.98
## 2123 0.43 0.51 0.01 0.98
## 2124 0.05 0.00 0.10 0.98
## 2125 0.00 0.00 0.10 0.98
## 2126 0.27 0.00 0.09 0.98
## 2127 0.02 0.86 0.01 0.98
## 2128 0.32 0.15 0.14 0.97
## 2129 0.01 0.00 0.08 0.97
## 2130 0.37 0.00 0.10 0.97
## 2131 0.21 0.00 0.03 0.97
## 2132 0.44 0.00 0.13 0.97
## 2133 0.02 0.00 0.08 0.97
## 2134 0.18 0.29 0.01 0.97
## 2136 0.35 0.00 0.10 0.97
## 2137 0.33 0.00 0.08 0.97
## 2138 0.37 0.00 0.12 0.97
## 2139 0.03 0.03 0.13 0.97
## 2140 0.10 0.00 0.10 0.97
## 2141 0.60 0.00 0.04 0.97
## 2142 0.37 0.00 0.08 0.97
## 2143 0.00 0.97 0.00 0.97
## 2144 0.05 0.00 0.01 0.97
## 2145 0.19 0.00 0.03 0.97
## 2147 0.31 0.28 0.16 0.97
## 2148 0.37 0.00 0.06 0.97
## 2149 0.07 0.00 0.07 0.96
## 2150 0.25 0.26 0.07 0.96
## 2151 0.36 0.00 0.06 0.96
## 2152 0.28 0.04 0.14 0.96
## 2153 0.00 0.90 0.06 0.96
## 2154 0.17 0.00 0.07 0.96
## 2155 0.00 0.96 0.00 0.96
## 2156 0.49 0.00 0.10 0.96
## 2157 0.44 0.00 0.22 0.96
## 2158 0.22 0.00 0.02 0.96
## 2159 0.06 0.57 0.01 0.96
## 2160 0.33 0.00 0.09 0.96
## 2161 0.34 0.20 0.13 0.96
## 2162 0.37 0.00 0.12 0.96
## 2163 0.00 0.96 0.00 0.96
## 2164 0.54 0.00 0.11 0.96
## 2165 0.33 0.09 0.12 0.96
## 2166 0.00 0.53 0.03 0.96
## 2167 0.28 0.22 0.09 0.96
## 2168 0.15 0.00 0.04 0.96
## 2169 0.56 0.00 0.15 0.96
## 2170 0.36 0.13 0.07 0.96
## 2171 0.33 0.15 0.15 0.96
## 2172 0.40 0.00 0.08 0.95
## 2173 0.04 0.00 0.04 0.95
## 2175 0.03 0.00 0.13 0.95
## 2176 0.45 0.00 0.14 0.95
## 2177 0.19 0.00 0.03 0.95
## 2178 0.30 0.00 0.08 0.95
## 2179 0.22 0.00 0.09 0.95
## 2180 0.51 0.00 0.17 0.95
## 2181 0.39 0.00 0.10 0.95
## 2182 0.17 0.46 0.06 0.95
## 2183 0.21 0.41 0.07 0.95
## 2184 0.25 0.00 0.02 0.95
## 2185 0.36 0.00 0.06 0.95
## 2186 0.28 0.00 0.13 0.95
## 2187 0.40 0.00 0.16 0.95
## 2188 0.43 0.00 0.10 0.95
## 2189 0.41 0.05 0.15 0.95
## 2190 0.31 0.01 0.13 0.95
## 2191 0.24 0.00 0.08 0.95
## 2192 0.17 0.00 0.08 0.95
## 2193 0.38 0.00 0.08 0.95
## 2194 0.43 0.18 0.09 0.95
## 2195 0.03 0.00 0.13 0.94
## 2196 0.50 0.00 0.17 0.94
## 2197 0.71 0.01 0.21 0.94
## 2198 0.27 0.13 0.07 0.94
## 2199 0.19 0.00 0.03 0.94
## 2200 0.17 0.00 0.08 0.94
## 2201 0.36 0.00 0.06 0.94
## 2202 0.04 0.00 0.07 0.94
## 2203 0.53 0.00 0.13 0.94
## 2204 0.36 0.00 0.12 0.94
## 2205 0.29 0.33 0.05 0.94
## 2206 0.36 0.02 0.08 0.94
## 2207 0.26 0.09 0.08 0.94
## 2208 0.03 0.00 0.13 0.94
## 2209 0.20 0.00 0.03 0.94
## 2210 0.07 0.71 0.06 0.94
## 2211 0.00 0.00 0.07 0.94
## 2212 0.35 0.00 0.06 0.94
## 2213 0.30 0.08 0.08 0.94
## 2214 0.03 0.04 0.12 0.94
## 2215 0.33 0.00 0.04 0.94
## 2216 0.06 0.63 0.05 0.94
## 2217 0.36 0.00 0.12 0.94
## 2218 0.03 0.00 0.13 0.94
## 2219 0.36 0.00 0.12 0.93
## 2220 0.45 0.02 0.10 0.93
## 2221 0.09 0.00 0.06 0.93
## 2222 0.58 0.00 0.20 0.93
## 2223 0.25 0.00 0.02 0.93
## 2224 0.30 0.00 0.04 0.93
## 2225 0.41 0.00 0.11 0.93
## 2226 0.52 0.02 0.11 0.93
## 2227 0.16 0.36 0.08 0.93
## 2228 0.42 0.02 0.14 0.93
## 2229 0.32 0.02 0.10 0.93
## 2230 0.44 0.00 0.15 0.93
## 2231 0.01 0.00 0.07 0.93
## 2232 0.25 0.00 0.02 0.93
## 2233 0.05 0.00 0.01 0.93
## 2234 0.09 0.32 0.01 0.93
## 2235 0.06 0.42 0.00 0.93
## 2236 0.20 0.00 0.01 0.93
## 2237 0.25 0.00 0.02 0.93
## 2238 0.03 0.00 0.13 0.93
## 2239 0.31 0.00 0.08 0.93
## 2240 0.19 0.00 0.03 0.93
## 2241 0.34 0.00 0.15 0.93
## 2242 0.00 0.93 0.00 0.93
## 2243 0.22 0.16 0.07 0.93
## 2244 0.35 0.00 0.06 0.93
## 2245 0.35 0.00 0.12 0.92
## 2246 0.35 0.00 0.12 0.92
## 2247 0.33 0.21 0.08 0.92
## 2248 0.35 0.00 0.06 0.92
## 2249 0.00 0.00 0.06 0.92
## 2250 0.35 0.00 0.06 0.92
## 2251 0.65 0.00 0.10 0.92
## 2252 0.28 0.00 0.12 0.92
## 2253 0.21 0.00 0.16 0.92
## 2254 0.26 0.00 0.08 0.92
## 2255 0.20 0.02 0.07 0.92
## 2256 0.00 0.00 0.05 0.92
## 2257 0.35 0.00 0.06 0.92
## 2258 0.32 0.00 0.09 0.92
## 2259 0.27 0.00 0.02 0.92
## 2260 0.09 0.43 0.01 0.92
## 2261 0.83 0.00 0.08 0.92
## 2262 0.20 0.53 0.03 0.92
## 2263 0.33 0.01 0.08 0.92
## 2264 0.39 0.00 0.15 0.92
## 2265 0.14 0.46 0.06 0.92
## 2266 0.39 0.12 0.14 0.92
## 2267 0.00 0.00 0.06 0.92
## 2268 0.18 0.00 0.03 0.92
## 2269 0.35 0.00 0.12 0.92
## 2270 0.08 0.66 0.06 0.92
## 2271 0.27 0.11 0.09 0.92
## 2272 0.08 0.00 0.17 0.92
## 2273 0.46 0.05 0.17 0.92
## 2274 0.40 0.04 0.15 0.91
## 2275 0.00 0.00 0.07 0.91
## 2276 0.35 0.00 0.12 0.91
## 2277 0.43 0.00 0.16 0.91
## 2278 0.17 0.29 0.05 0.91
## 2279 0.24 0.01 0.09 0.91
## 2280 0.35 0.00 0.12 0.91
## 2281 0.27 0.21 0.09 0.91
## 2282 0.30 0.00 0.13 0.91
## 2283 0.80 0.02 0.07 0.91
## 2284 0.17 0.00 0.01 0.91
## 2285 0.26 0.00 0.12 0.91
## 2286 0.38 0.00 0.08 0.91
## 2288 0.15 0.00 0.08 0.91
## 2289 0.26 0.00 0.08 0.91
## 2290 0.00 0.91 0.00 0.91
## 2291 0.26 0.00 0.04 0.91
## 2292 0.34 0.00 0.14 0.91
## 2293 0.28 0.00 0.07 0.91
## 2294 0.37 0.00 0.15 0.91
## 2295 0.35 0.00 0.12 0.90
## 2297 0.00 0.90 0.00 0.90
## 2298 0.35 0.00 0.12 0.90
## 2299 0.12 0.04 0.08 0.90
## 2300 0.03 0.00 0.12 0.90
## 2301 0.48 0.00 0.14 0.90
## 2302 0.29 0.15 0.08 0.90
## 2303 0.34 0.00 0.06 0.90
## 2304 0.49 0.00 0.10 0.90
## 2305 0.43 0.03 0.18 0.90
## 2306 0.34 0.00 0.06 0.90
## 2307 0.13 0.55 0.05 0.90
## 2308 0.43 0.01 0.05 0.90
## 2309 0.36 0.05 0.22 0.90
## 2310 0.26 0.00 0.12 0.90
## 2311 0.29 0.00 0.09 0.90
## 2312 0.05 0.00 0.01 0.90
## 2313 0.03 0.01 0.12 0.90
## 2314 0.22 0.00 0.03 0.90
## 2315 0.37 0.01 0.10 0.90
## 2316 0.48 0.00 0.09 0.90
## 2317 0.33 0.00 0.14 0.90
## 2318 0.52 0.00 0.09 0.90
## 2319 0.00 0.00 0.06 0.90
## 2320 0.32 0.01 0.15 0.90
## 2321 0.24 0.00 0.04 0.90
## 2322 0.05 0.00 0.04 0.90
## 2323 0.34 0.00 0.11 0.90
## 2324 0.10 0.00 0.06 0.90
## 2325 0.24 0.00 0.03 0.89
## 2326 0.38 0.01 0.16 0.89
## 2327 0.28 0.00 0.18 0.89
## 2328 0.01 0.00 0.07 0.89
## 2329 0.03 0.00 0.12 0.89
## 2330 0.42 0.01 0.14 0.89
## 2331 0.22 0.05 0.02 0.89
## 2332 0.29 0.01 0.09 0.89
## 2333 0.03 0.00 0.12 0.89
## 2334 0.17 0.24 0.02 0.89
## 2335 0.19 0.00 0.10 0.89
## 2336 0.16 0.30 0.02 0.89
## 2337 0.00 0.89 0.00 0.89
## 2338 0.18 0.00 0.02 0.89
## 2339 0.43 0.00 0.10 0.89
## 2340 0.11 0.56 0.06 0.89
## 2341 0.63 0.00 0.11 0.89
## 2342 0.34 0.00 0.11 0.89
## 2343 0.47 0.00 0.14 0.89
## 2344 0.13 0.46 0.08 0.89
## 2345 0.36 0.04 0.07 0.89
## 2346 0.59 0.01 0.10 0.89
## 2347 0.00 0.01 0.07 0.89
## 2348 0.79 0.00 0.09 0.89
## 2349 0.24 0.21 0.06 0.89
## 2350 0.25 0.01 0.07 0.89
## 2351 0.21 0.00 0.08 0.89
## 2352 0.34 0.00 0.06 0.89
## 2353 0.68 0.00 0.20 0.89
## 2354 0.00 0.89 0.00 0.89
## 2355 0.30 0.09 0.06 0.88
## 2356 0.36 0.00 0.08 0.88
## 2357 0.41 0.01 0.08 0.88
## 2358 0.79 0.00 0.08 0.88
## 2359 0.82 0.00 0.06 0.88
## 2360 0.20 0.00 0.07 0.88
## 2361 0.21 0.00 0.08 0.88
## 2362 0.10 0.00 0.06 0.88
## 2363 0.22 0.30 0.05 0.88
## 2364 0.34 0.00 0.11 0.88
## 2365 0.06 0.00 0.50 0.88
## 2366 0.22 0.12 0.07 0.88
## 2367 0.33 0.00 0.06 0.88
## 2368 0.38 0.00 0.07 0.88
## 2369 0.26 0.12 0.17 0.88
## 2370 0.28 0.01 0.08 0.88
## 2371 0.33 0.13 0.14 0.88
## 2372 0.33 0.00 0.11 0.88
## 2373 0.44 0.01 0.09 0.88
## 2374 0.11 0.62 0.06 0.88
## 2375 0.19 0.00 0.03 0.87
## 2376 0.33 0.00 0.06 0.87
## 2377 0.33 0.00 0.06 0.87
## 2378 0.11 0.00 0.06 0.87
## 2379 0.40 0.00 0.09 0.87
## 2380 0.00 0.87 0.00 0.87
## 2381 0.11 0.00 0.06 0.87
## 2382 0.29 0.01 0.09 0.87
## 2383 0.24 0.00 0.03 0.87
## 2384 0.40 0.02 0.16 0.87
## 2385 0.29 0.09 0.06 0.87
## 2386 0.03 0.00 0.12 0.87
## 2387 0.19 0.00 0.07 0.87
## 2388 0.00 0.00 0.06 0.87
## 2389 0.30 0.09 0.11 0.87
## 2390 0.33 0.00 0.06 0.87
## 2391 0.54 0.01 0.18 0.87
## 2392 0.31 0.02 0.09 0.87
## 2393 0.03 0.00 0.12 0.87
## 2394 0.29 0.00 0.12 0.87
## 2395 0.33 0.00 0.06 0.87
## 2396 0.44 0.00 0.23 0.87
## 2397 0.31 0.00 0.09 0.87
## 2398 0.03 0.00 0.12 0.87
## 2399 0.20 0.00 0.08 0.87
## 2400 0.17 0.00 0.07 0.87
## 2401 0.37 0.00 0.02 0.87
## 2402 0.33 0.00 0.11 0.87
## 2403 0.20 0.30 0.06 0.87
## 2404 0.52 0.00 0.23 0.87
## 2405 0.09 0.64 0.03 0.87
## 2406 0.32 0.00 0.08 0.87
## 2407 0.05 0.00 0.01 0.87
## 2408 0.15 0.45 0.07 0.87
## 2409 0.59 0.00 0.18 0.87
## 2410 0.00 0.86 0.00 0.86
## 2411 0.63 0.00 0.11 0.86
## 2412 0.72 0.12 0.01 0.86
## 2413 0.37 0.01 0.14 0.86
## 2414 0.37 0.00 0.15 0.86
## 2415 0.06 0.21 0.05 0.86
## 2417 0.33 0.00 0.11 0.86
## 2418 0.00 0.86 0.00 0.86
## 2419 0.33 0.00 0.06 0.86
## 2420 0.04 0.00 0.01 0.86
## 2421 0.32 0.00 0.06 0.86
## 2422 0.34 0.18 0.12 0.86
## 2424 0.00 0.20 0.05 0.86
## 2425 0.43 0.02 0.09 0.86
## 2426 0.13 0.51 0.04 0.86
## 2427 0.16 0.08 0.10 0.86
## 2428 0.43 0.00 0.07 0.85
## 2429 0.26 0.01 0.12 0.85
## 2430 0.65 0.00 0.11 0.85
## 2431 0.32 0.00 0.06 0.85
## 2432 0.31 0.00 0.08 0.85
## 2433 0.01 0.00 0.07 0.85
## 2434 0.00 0.00 0.07 0.85
## 2435 0.32 0.00 0.07 0.85
## 2436 0.09 0.57 0.06 0.85
## 2437 0.18 0.00 0.03 0.85
## 2438 0.27 0.01 0.12 0.85
## 2439 0.04 0.00 0.06 0.85
## 2440 0.07 0.37 0.01 0.85
## 2441 0.47 0.00 0.10 0.85
## 2442 0.32 0.00 0.06 0.85
## 2443 0.06 0.00 0.09 0.85
## 2444 0.35 0.00 0.14 0.85
## 2445 0.25 0.00 0.08 0.85
## 2446 0.00 0.00 0.53 0.85
## 2447 0.32 0.00 0.06 0.85
## 2448 0.32 0.00 0.11 0.85
## 2449 0.10 0.44 0.04 0.85
## 2450 0.25 0.20 0.08 0.85
## 2451 0.25 0.00 0.07 0.85
## 2452 0.29 0.02 0.07 0.85
## 2453 0.37 0.03 0.16 0.84
## 2454 0.17 0.00 0.02 0.84
## 2455 0.11 0.13 0.05 0.84
## 2456 0.34 0.00 0.13 0.84
## 2457 0.21 0.11 0.10 0.84
## 2458 0.00 0.00 0.16 0.84
## 2459 0.01 0.01 0.07 0.84
## 2460 0.28 0.14 0.06 0.84
## 2461 0.30 0.00 0.09 0.84
## 2462 0.17 0.00 0.02 0.84
## 2463 0.00 0.00 0.06 0.84
## 2464 0.27 0.05 0.12 0.84
## 2465 0.32 0.00 0.11 0.84
## 2466 0.03 0.06 0.06 0.84
## 2467 0.00 0.52 0.00 0.84
## 2468 0.22 0.10 0.10 0.84
## 2469 0.32 0.00 0.05 0.84
## 2470 0.25 0.00 0.07 0.84
## 2471 0.32 0.00 0.11 0.84
## 2472 0.32 0.03 0.14 0.84
## 2473 0.16 0.39 0.05 0.84
## 2474 0.32 0.00 0.11 0.84
## 2475 0.22 0.00 0.01 0.84
## 2476 0.48 0.04 0.19 0.84
## 2477 0.33 0.05 0.14 0.84
## 2478 0.00 0.00 0.74 0.84
## 2479 0.38 0.01 0.08 0.84
## 2480 0.32 0.00 0.05 0.84
## 2481 0.31 0.00 0.08 0.83
## 2482 0.15 0.40 0.05 0.83
## 2483 0.19 0.34 0.06 0.83
## 2484 0.37 0.00 0.09 0.83
## 2486 0.22 0.00 0.01 0.83
## 2487 0.21 0.01 0.19 0.83
## 2488 0.21 0.28 0.07 0.83
## 2489 0.18 0.01 0.03 0.83
## 2490 0.20 0.00 0.06 0.83
## 2491 0.00 0.83 0.00 0.83
## 2492 0.31 0.00 0.05 0.83
## 2493 0.26 0.12 0.05 0.83
## 2494 0.00 0.00 0.05 0.83
## 2495 0.03 0.00 0.11 0.83
## 2496 0.00 0.00 0.06 0.83
## 2497 0.17 0.00 0.07 0.83
## 2499 0.00 0.00 0.06 0.83
## 2500 0.37 0.00 0.14 0.83
## 2501 0.20 0.11 0.09 0.83
## 2502 0.31 0.00 0.05 0.83
## 2503 0.31 0.00 0.05 0.83
## 2504 0.34 0.09 0.07 0.82
## 2505 0.22 0.00 0.03 0.82
## 2506 0.02 0.00 0.09 0.82
## 2507 0.21 0.00 0.15 0.82
## 2508 0.17 0.00 0.02 0.82
## 2509 0.03 0.00 0.11 0.82
## 2510 0.30 0.00 0.08 0.82
## 2511 0.12 0.00 0.06 0.82
## 2512 0.26 0.08 0.13 0.82
## 2513 0.11 0.00 0.03 0.82
## 2514 0.10 0.28 0.02 0.82
## 2515 0.19 0.00 0.01 0.82
## 2516 0.11 0.00 0.02 0.82
## 2517 0.05 0.00 0.01 0.82
## 2518 0.41 0.00 0.22 0.82
## 2519 0.28 0.19 0.12 0.82
## 2520 0.19 0.14 0.06 0.82
## 2521 0.31 0.00 0.10 0.82
## 2522 0.35 0.00 0.14 0.82
## 2523 0.28 0.00 0.07 0.82
## 2524 0.11 0.00 0.15 0.82
## 2525 0.33 0.01 0.09 0.82
## 2526 0.33 0.00 0.09 0.82
## 2527 0.04 0.36 0.08 0.82
## 2528 0.40 0.00 0.13 0.82
## 2530 0.13 0.00 0.07 0.82
## 2531 0.07 0.00 0.07 0.82
## 2532 0.00 0.81 0.00 0.81
## 2533 0.03 0.00 0.06 0.81
## 2534 0.31 0.00 0.10 0.81
## 2535 0.00 0.81 0.00 0.81
## 2536 0.25 0.07 0.17 0.81
## 2537 0.04 0.66 0.05 0.81
## 2538 0.00 0.81 0.00 0.81
## 2539 0.31 0.00 0.05 0.81
## 2540 0.00 0.00 0.05 0.81
## 2541 0.16 0.00 0.02 0.81
## 2542 0.00 0.76 0.05 0.81
## 2543 0.35 0.00 0.13 0.81
## 2544 0.05 0.63 0.05 0.81
## 2545 0.00 0.81 0.00 0.81
## 2546 0.58 0.03 0.08 0.81
## 2547 0.12 0.00 0.01 0.81
## 2548 0.08 0.27 0.01 0.81
## 2549 0.31 0.00 0.10 0.81
## 2550 0.35 0.00 0.13 0.81
## 2551 0.00 0.81 0.00 0.81
## 2552 0.40 0.00 0.09 0.81
## 2553 0.26 0.30 0.04 0.81
## 2554 0.31 0.00 0.05 0.81
## 2555 0.30 0.01 0.07 0.81
## 2556 0.00 0.00 0.06 0.81
## 2557 0.21 0.00 0.07 0.81
## 2558 0.00 0.75 0.05 0.81
## 2559 0.27 0.09 0.09 0.81
## 2560 0.03 0.00 0.11 0.81
## 2561 0.21 0.00 0.07 0.81
## 2562 0.00 0.00 0.06 0.80
## 2563 0.25 0.02 0.07 0.80
## 2564 0.33 0.00 0.07 0.80
## 2565 0.30 0.00 0.05 0.80
## 2566 0.02 0.74 0.01 0.80
## 2567 0.16 0.00 0.02 0.80
## 2568 0.50 0.00 0.11 0.80
## 2569 0.30 0.00 0.05 0.80
## 2570 0.31 0.00 0.10 0.80
## 2571 0.39 0.00 0.22 0.80
## 2572 0.30 0.00 0.05 0.80
## 2573 0.37 0.00 0.07 0.80
## 2574 0.33 0.20 0.18 0.80
## 2575 0.25 0.00 0.07 0.80
## 2576 0.35 0.00 0.07 0.80
## 2577 0.35 0.00 0.13 0.80
## 2578 0.19 0.03 0.13 0.80
## 2579 0.29 0.00 0.08 0.80
## 2580 0.46 0.00 0.25 0.80
## 2581 0.28 0.00 0.04 0.80
## 2582 0.24 0.07 0.06 0.80
## 2583 0.28 0.00 0.07 0.80
## 2584 0.32 0.22 0.12 0.80
## 2585 0.01 0.00 0.06 0.80
## 2586 0.00 0.75 0.05 0.80
## 2588 0.09 0.00 0.02 0.80
## 2589 0.19 0.00 0.06 0.80
## 2590 0.22 0.00 0.07 0.80
## 2591 0.22 0.13 0.06 0.80
## 2592 0.00 0.80 0.00 0.80
## 2593 0.00 0.80 0.00 0.80
## 2594 0.36 0.04 0.14 0.80
## 2595 0.24 0.01 0.08 0.79
## 2596 0.30 0.29 0.16 0.79
## 2597 0.04 0.00 0.01 0.79
## 2598 0.02 0.00 0.11 0.79
## 2599 0.25 0.03 0.11 0.79
## 2600 0.34 0.00 0.08 0.79
## 2601 0.00 0.00 0.18 0.79
## 2602 0.00 0.74 0.05 0.79
## 2603 0.03 0.30 0.04 0.79
## 2604 0.16 0.00 0.02 0.79
## 2605 0.00 0.74 0.05 0.79
## 2606 0.51 0.00 0.11 0.79
## 2607 0.30 0.00 0.05 0.79
## 2608 0.25 0.00 0.12 0.79
## 2609 0.11 0.00 0.07 0.79
## 2610 0.15 0.00 0.01 0.79
## 2611 0.07 0.32 0.01 0.79
## 2612 0.20 0.21 0.06 0.79
## 2613 0.03 0.02 0.10 0.79
## 2614 0.22 0.23 0.07 0.79
## 2615 0.00 0.79 0.00 0.79
## 2616 0.21 0.08 0.07 0.79
## 2617 0.27 0.01 0.07 0.79
## 2618 0.02 0.00 0.06 0.79
## 2619 0.03 0.00 0.01 0.79
## 2620 0.52 0.00 0.11 0.79
## 2621 0.30 0.03 0.08 0.79
## 2622 0.19 0.01 0.10 0.79
## 2623 0.03 0.00 0.11 0.79
## 2624 0.49 0.00 0.05 0.79
## 2625 0.32 0.17 0.07 0.79
## 2626 0.27 0.01 0.07 0.79
## 2627 0.20 0.27 0.05 0.79
## 2628 0.48 0.25 0.06 0.78
## 2629 0.05 0.01 0.06 0.78
## 2630 0.04 0.00 0.01 0.78
## 2631 0.56 0.00 0.10 0.78
## 2632 0.21 0.00 0.01 0.78
## 2633 0.04 0.11 0.06 0.78
## 2634 0.77 0.00 0.00 0.78
## 2635 0.30 0.00 0.05 0.78
## 2636 0.00 0.00 0.61 0.78
## 2637 0.30 0.00 0.07 0.78
## 2638 0.00 0.00 0.06 0.78
## 2639 0.69 0.00 0.09 0.78
## 2640 0.30 0.00 0.05 0.78
## 2641 0.00 0.00 0.06 0.78
## 2642 0.29 0.00 0.05 0.78
## 2643 0.30 0.12 0.07 0.78
## 2644 0.42 0.13 0.10 0.78
## 2645 0.43 0.00 0.24 0.78
## 2646 0.24 0.00 0.16 0.78
## 2647 0.19 0.00 0.06 0.78
## 2648 0.15 0.03 0.06 0.78
## 2649 0.02 0.00 0.11 0.78
## 2650 0.33 0.01 0.20 0.78
## 2651 0.29 0.00 0.07 0.78
## 2652 0.00 0.78 0.00 0.78
## 2653 0.05 0.00 0.01 0.78
## 2654 0.16 0.00 0.02 0.78
## 2655 0.36 0.00 0.09 0.78
## 2656 0.29 0.00 0.05 0.78
## 2657 0.35 0.00 0.08 0.78
## 2658 0.40 0.00 0.09 0.77
## 2659 0.23 0.00 0.07 0.77
## 2660 0.02 0.03 0.06 0.77
## 2661 0.05 0.00 0.01 0.77
## 2662 0.29 0.00 0.05 0.77
## 2663 0.29 0.00 0.05 0.77
## 2664 0.05 0.00 0.05 0.77
## 2665 0.04 0.00 0.01 0.77
## 2666 0.32 0.03 0.19 0.77
## 2667 0.31 0.00 0.12 0.77
## 2668 0.14 0.32 0.10 0.77
## 2669 0.02 0.00 0.10 0.77
## 2670 0.04 0.00 0.01 0.77
## 2671 0.29 0.00 0.05 0.77
## 2672 0.19 0.11 0.10 0.77
## 2673 0.04 0.00 0.01 0.77
## 2674 0.22 0.00 0.02 0.77
## 2675 0.00 0.77 0.00 0.77
## 2676 0.20 0.00 0.01 0.77
## 2677 0.10 0.00 0.06 0.77
## 2678 0.27 0.00 0.06 0.77
## 2679 0.00 0.00 0.06 0.77
## 2680 0.29 0.00 0.10 0.77
## 2681 0.29 0.00 0.10 0.77
## 2682 0.14 0.38 0.04 0.77
## 2683 0.17 0.14 0.01 0.77
## 2684 0.29 0.00 0.10 0.77
## 2685 0.08 0.56 0.03 0.77
## 2686 0.29 0.00 0.10 0.76
## 2687 0.04 0.00 0.36 0.76
## 2688 0.12 0.42 0.05 0.76
## 2689 0.40 0.01 0.14 0.76
## 2690 0.47 0.00 0.08 0.76
## 2691 0.37 0.03 0.07 0.76
## 2692 0.38 0.00 0.03 0.76
## 2693 0.02 0.00 0.10 0.76
## 2694 0.29 0.00 0.10 0.76
## 2695 0.11 0.43 0.05 0.76
## 2696 0.18 0.00 0.12 0.76
## 2697 0.00 0.71 0.05 0.76
## 2698 0.24 0.08 0.06 0.76
## 2699 0.24 0.07 0.10 0.76
## 2700 0.32 0.00 0.11 0.76
## 2701 0.01 0.00 0.06 0.76
## 2702 0.43 0.11 0.13 0.76
## 2703 0.39 0.00 0.08 0.76
## 2704 0.26 0.00 0.12 0.76
## 2705 0.00 0.76 0.00 0.76
## 2706 0.16 0.00 0.01 0.76
## 2707 0.00 0.76 0.00 0.76
## 2708 0.03 0.62 0.02 0.76
## 2709 0.29 0.00 0.10 0.76
## 2710 0.29 0.00 0.36 0.76
## 2711 0.04 0.00 0.05 0.76
## 2712 0.31 0.01 0.08 0.76
## 2713 0.48 0.00 0.14 0.76
## 2714 0.12 0.00 0.03 0.76
## 2715 0.15 0.30 0.04 0.76
## 2716 0.20 0.00 0.01 0.76
## 2717 0.46 0.00 0.06 0.76
## 2718 0.24 0.13 0.08 0.76
## 2719 0.38 0.01 0.21 0.76
## 2720 0.32 0.01 0.13 0.76
## 2721 0.20 0.01 0.06 0.76
## 2722 0.02 0.07 0.09 0.76
## 2723 0.29 0.00 0.10 0.76
## 2724 0.39 0.00 0.09 0.76
## 2725 0.44 0.00 0.08 0.76
## 2726 0.38 0.06 0.14 0.76
## 2727 0.09 0.02 0.05 0.76
## 2728 0.00 0.76 0.00 0.76
## 2729 0.53 0.00 0.11 0.76
## 2730 0.21 0.01 0.07 0.75
## 2731 0.03 0.00 0.06 0.75
## 2732 0.00 0.00 0.54 0.75
## 2733 0.21 0.00 0.14 0.75
## 2734 0.24 0.00 0.11 0.75
## 2735 0.21 0.20 0.05 0.75
## 2736 0.39 0.00 0.19 0.75
## 2737 0.19 0.00 0.09 0.75
## 2738 0.22 0.01 0.11 0.75
## 2739 0.17 0.00 0.07 0.75
## 2740 0.21 0.01 0.07 0.75
## 2741 0.28 0.00 0.11 0.75
## 2742 0.29 0.00 0.10 0.75
## 2743 0.11 0.00 0.01 0.75
## 2744 0.26 0.00 0.06 0.75
## 2745 0.24 0.13 0.08 0.75
## 2746 0.28 0.02 0.12 0.75
## 2747 0.19 0.23 0.05 0.75
## 2748 0.00 0.00 0.06 0.75
## 2749 0.29 0.00 0.18 0.75
## 2750 0.24 0.00 0.03 0.75
## 2751 0.18 0.19 0.05 0.75
## 2752 0.32 0.00 0.13 0.75
## 2753 0.26 0.00 0.07 0.75
## 2754 0.31 0.01 0.12 0.75
## 2755 0.17 0.30 0.06 0.75
## 2756 0.02 0.00 0.10 0.75
## 2757 0.28 0.00 0.07 0.75
## 2758 0.22 0.01 0.06 0.75
## 2759 0.43 0.01 0.11 0.75
## 2760 0.16 0.00 0.09 0.75
## 2761 0.37 0.00 0.08 0.75
## 2762 0.14 0.00 0.05 0.75
## 2763 0.16 0.22 0.07 0.74
## 2764 0.00 0.74 0.00 0.74
## 2765 0.28 0.00 0.10 0.74
## 2766 0.22 0.24 0.09 0.74
## 2767 0.28 0.00 0.10 0.74
## 2768 0.19 0.00 0.14 0.74
## 2769 0.30 0.02 0.06 0.74
## 2770 0.27 0.00 0.06 0.74
## 2771 0.01 0.00 0.06 0.74
## 2772 0.30 0.25 0.04 0.74
## 2773 0.16 0.15 0.01 0.74
## 2774 0.32 0.01 0.12 0.74
## 2775 0.35 0.02 0.06 0.74
## 2776 0.37 0.02 0.13 0.74
## 2778 0.00 0.00 0.05 0.74
## 2779 0.10 0.00 0.03 0.74
## 2780 0.45 0.00 0.13 0.74
## 2781 0.20 0.00 0.01 0.74
## 2782 0.28 0.00 0.09 0.74
## 2783 0.30 0.00 0.08 0.74
## 2784 0.28 0.00 0.05 0.74
## 2785 0.25 0.14 0.08 0.74
## 2786 0.12 0.00 0.03 0.74
## 2788 0.41 0.00 0.15 0.74
## 2789 0.38 0.00 0.14 0.74
## 2790 0.12 0.24 0.07 0.74
## 2791 0.11 0.30 0.02 0.74
## 2792 0.01 0.25 0.04 0.74
## 2793 0.16 0.22 0.08 0.73
## 2794 0.05 0.00 0.06 0.73
## 2795 0.09 0.46 0.05 0.73
## 2796 0.00 0.73 0.00 0.73
## 2797 0.15 0.17 0.01 0.73
## 2798 0.41 0.00 0.09 0.73
## 2799 0.00 0.73 0.00 0.73
## 2800 0.17 0.00 0.01 0.73
## 2801 0.51 0.01 0.09 0.73
## 2802 0.04 0.00 0.06 0.73
## 2803 0.00 0.32 0.04 0.73
## 2804 0.28 0.00 0.05 0.73
## 2805 0.00 0.73 0.00 0.73
## 2806 0.16 0.00 0.03 0.73
## 2807 0.04 0.00 0.01 0.73
## 2808 0.07 0.00 0.05 0.73
## 2809 0.34 0.00 0.07 0.73
## 2810 0.01 0.00 0.05 0.73
## 2811 0.41 0.01 0.08 0.73
## 2812 0.00 0.00 0.06 0.73
## 2813 0.00 0.73 0.00 0.73
## 2814 0.16 0.00 0.03 0.73
## 2815 0.02 0.17 0.08 0.73
## 2816 0.19 0.00 0.01 0.73
## 2817 0.14 0.02 0.09 0.73
## 2818 0.32 0.00 0.08 0.73
## 2819 0.28 0.00 0.09 0.73
## 2820 0.15 0.00 0.06 0.73
## 2821 0.31 0.00 0.08 0.73
## 2822 0.28 0.00 0.06 0.72
## 2823 0.02 0.53 0.01 0.72
## 2824 0.15 0.00 0.02 0.72
## 2825 0.36 0.00 0.10 0.72
## 2826 0.30 0.00 0.07 0.72
## 2827 0.19 0.00 0.01 0.72
## 2828 0.02 0.00 0.10 0.72
## 2829 0.46 0.00 0.08 0.72
## 2830 0.00 0.72 0.00 0.72
## 2831 0.22 0.08 0.10 0.72
## 2832 0.00 0.67 0.05 0.72
## 2833 0.27 0.00 0.05 0.72
## 2834 0.02 0.01 0.10 0.72
## 2835 0.17 0.00 0.03 0.72
## 2836 0.02 0.00 0.10 0.72
## 2837 0.27 0.00 0.05 0.72
## 2838 0.00 0.70 0.02 0.72
## 2840 0.00 0.00 0.05 0.72
## 2841 0.27 0.00 0.05 0.72
## 2842 0.31 0.00 0.06 0.72
## 2843 0.28 0.00 0.09 0.72
## 2844 0.04 0.00 0.01 0.72
## 2845 0.38 0.02 0.13 0.72
## 2846 0.31 0.00 0.18 0.72
## 2847 0.04 0.00 0.06 0.72
## 2848 0.19 0.00 0.01 0.72
## 2849 0.39 0.00 0.08 0.72
## 2850 0.00 0.00 0.05 0.72
## 2851 0.19 0.22 0.04 0.72
## 2852 0.04 0.61 0.01 0.72
## 2853 0.15 0.20 0.07 0.72
## 2854 0.27 0.00 0.05 0.72
## 2855 0.50 0.00 0.09 0.72
## 2856 0.69 0.00 0.03 0.72
## 2857 0.53 0.00 0.00 0.71
## 2858 0.24 0.00 0.03 0.71
## 2859 0.02 0.00 0.03 0.71
## 2860 0.01 0.50 0.02 0.71
## 2861 0.00 0.00 0.05 0.71
## 2862 0.23 0.00 0.06 0.71
## 2863 0.13 0.37 0.06 0.71
## 2864 0.27 0.00 0.09 0.71
## 2865 0.40 0.00 0.14 0.71
## 2866 0.15 0.29 0.05 0.71
## 2867 0.08 0.41 0.04 0.71
## 2868 0.27 0.00 0.09 0.71
## 2869 0.07 0.27 0.04 0.71
## 2870 0.04 0.00 0.07 0.71
## 2871 0.14 0.00 0.02 0.71
## 2872 0.27 0.00 0.05 0.71
## 2873 0.20 0.00 0.02 0.71
## 2874 0.27 0.00 0.09 0.71
## 2875 0.00 0.00 0.06 0.71
## 2876 0.25 0.06 0.11 0.71
## 2877 0.13 0.07 0.02 0.71
## 2878 0.22 0.00 0.07 0.71
## 2879 0.00 0.00 0.05 0.71
## 2880 0.14 0.00 0.02 0.71
## 2881 0.19 0.00 0.01 0.71
## 2882 0.27 0.00 0.09 0.71
## 2883 0.00 0.71 0.00 0.71
## 2884 0.18 0.00 0.01 0.71
## 2885 0.13 0.00 0.01 0.71
## 2886 0.09 0.17 0.06 0.71
## 2887 0.37 0.00 0.19 0.71
## 2888 0.00 0.71 0.00 0.71
## 2889 0.05 0.44 0.02 0.71
## 2890 0.60 0.00 0.10 0.71
## 2891 0.10 0.41 0.05 0.71
## 2892 0.31 0.00 0.17 0.71
## 2893 0.27 0.00 0.05 0.71
## 2894 0.27 0.00 0.05 0.71
## 2895 0.26 0.01 0.06 0.71
## 2896 0.23 0.00 0.07 0.71
## 2897 0.15 0.00 0.03 0.71
## 2898 0.00 0.00 0.05 0.71
## 2899 0.14 0.00 0.07 0.71
## 2900 0.29 0.00 0.11 0.71
## 2901 0.21 0.00 0.14 0.71
## 2902 0.39 0.01 0.16 0.71
## 2903 0.50 0.00 0.15 0.70
## 2904 0.10 0.00 0.05 0.70
## 2905 0.14 0.00 0.02 0.70
## 2906 0.18 0.12 0.06 0.70
## 2907 0.00 0.70 0.00 0.70
## 2908 0.27 0.00 0.05 0.70
## 2909 0.31 0.00 0.07 0.70
## 2910 0.16 0.00 0.02 0.70
## 2911 0.00 0.00 0.05 0.70
## 2912 0.27 0.00 0.09 0.70
## 2913 0.10 0.00 0.06 0.70
## 2914 0.14 0.00 0.02 0.70
## 2915 0.19 0.00 0.01 0.70
## 2916 0.27 0.00 0.09 0.70
## 2917 0.27 0.00 0.05 0.70
## 2918 0.19 0.00 0.03 0.70
## 2919 0.30 0.00 0.12 0.70
## 2920 0.25 0.00 0.06 0.70
## 2921 0.25 0.00 0.06 0.70
## 2922 0.36 0.01 0.13 0.70
## 2923 0.03 0.58 0.05 0.70
## 2924 0.19 0.00 0.01 0.70
## 2925 0.25 0.00 0.07 0.70
## 2926 0.20 0.00 0.06 0.70
## 2927 0.01 0.12 0.05 0.70
## 2928 0.27 0.00 0.09 0.70
## 2929 0.26 0.00 0.10 0.70
## 2930 0.40 0.00 0.16 0.70
## 2931 0.26 0.00 0.05 0.70
## 2932 0.27 0.00 0.09 0.70
## 2933 0.13 0.36 0.04 0.70
## 2934 0.18 0.22 0.08 0.70
## 2935 0.27 0.00 0.09 0.70
## 2936 0.26 0.00 0.06 0.70
## 2937 0.00 0.00 0.05 0.70
## 2938 0.14 0.17 0.01 0.70
## 2939 0.00 0.70 0.00 0.70
## 2940 0.18 0.00 0.01 0.70
## 2941 0.04 0.00 0.01 0.69
## 2942 0.26 0.00 0.06 0.69
## 2943 0.31 0.05 0.05 0.69
## 2944 0.21 0.00 0.06 0.69
## 2945 0.01 0.26 0.17 0.69
## 2946 0.17 0.00 0.05 0.69
## 2947 0.10 0.00 0.06 0.69
## 2949 0.26 0.00 0.05 0.69
## 2950 0.13 0.00 0.02 0.69
## 2951 0.33 0.00 0.11 0.69
## 2952 0.02 0.00 0.09 0.69
## 2953 0.00 0.00 0.05 0.69
## 2954 0.33 0.00 0.12 0.69
## 2955 0.18 0.00 0.01 0.69
## 2956 0.00 0.69 0.00 0.69
## 2957 0.00 0.69 0.00 0.69
## 2958 0.14 0.00 0.02 0.69
## 2959 0.26 0.00 0.05 0.69
## 2960 0.09 0.01 0.07 0.69
## 2961 0.20 0.42 0.07 0.69
## 2962 0.38 0.00 0.10 0.69
## 2963 0.14 0.00 0.02 0.69
## 2964 0.36 0.00 0.13 0.69
## 2965 0.14 0.00 0.02 0.69
## 2966 0.61 0.02 0.04 0.69
## 2967 0.08 0.00 0.06 0.69
## 2968 0.20 0.18 0.06 0.69
## 2969 0.35 0.00 0.06 0.69
## 2970 0.32 0.00 0.10 0.69
## 2971 0.26 0.00 0.09 0.68
## 2972 0.18 0.00 0.01 0.68
## 2973 0.23 0.00 0.06 0.68
## 2974 0.00 0.33 0.02 0.68
## 2975 0.03 0.00 0.05 0.68
## 2976 0.26 0.00 0.04 0.68
## 2977 0.13 0.18 0.04 0.68
## 2978 0.04 0.00 0.02 0.68
## 2979 0.25 0.00 0.11 0.68
## 2980 0.36 0.00 0.11 0.68
## 2981 0.29 0.02 0.12 0.68
## 2982 0.02 0.00 0.03 0.68
## 2983 0.26 0.00 0.04 0.68
## 2984 0.33 0.03 0.06 0.68
## 2985 0.14 0.00 0.02 0.68
## 2986 0.02 0.00 0.09 0.68
## 2987 0.11 0.28 0.08 0.68
## 2988 0.30 0.04 0.12 0.68
## 2989 0.00 0.34 0.02 0.68
## 2990 0.11 0.00 0.03 0.68
## 2991 0.33 0.00 0.13 0.68
## 2992 0.23 0.00 0.06 0.68
## 2993 0.17 0.22 0.04 0.68
## 2994 0.10 0.38 0.04 0.68
## 2995 0.33 0.00 0.06 0.68
## 2996 0.01 0.00 0.05 0.68
## 2997 0.38 0.00 0.01 0.68
## 2998 0.43 0.00 0.05 0.68
## 2999 0.04 0.04 0.05 0.68
## 3000 0.15 0.00 0.02 0.68
## 3001 0.22 0.11 0.07 0.68
## 3002 0.59 0.00 0.09 0.68
## 3003 0.18 0.20 0.06 0.68
## 3004 0.04 0.00 0.04 0.68
## 3005 0.22 0.01 0.10 0.68
## 3006 0.26 0.00 0.09 0.68
## 3007 0.52 0.00 0.02 0.67
## 3008 0.24 0.00 0.11 0.67
## 3009 0.01 0.42 0.02 0.67
## 3010 0.16 0.00 0.02 0.67
## 3011 0.17 0.00 0.05 0.67
## 3012 0.21 0.11 0.09 0.67
## 3013 0.34 0.00 0.13 0.67
## 3014 0.25 0.00 0.04 0.67
## 3015 0.22 0.00 0.06 0.67
## 3016 0.25 0.00 0.04 0.67
## 3017 0.22 0.00 0.10 0.67
## 3018 0.18 0.00 0.03 0.67
## 3019 0.28 0.00 0.06 0.67
## 3020 0.13 0.00 0.05 0.67
## 3021 0.00 0.67 0.00 0.67
## 3022 0.25 0.00 0.04 0.67
## 3023 0.17 0.00 0.02 0.67
## 3024 0.17 0.23 0.06 0.67
## 3025 0.32 0.00 0.07 0.67
## 3026 0.00 0.67 0.00 0.67
## 3027 0.42 0.00 0.05 0.67
## 3028 0.36 0.00 0.14 0.67
## 3029 0.31 0.01 0.11 0.67
## 3030 0.28 0.00 0.16 0.67
## 3031 0.16 0.00 0.07 0.67
## 3032 0.13 0.31 0.04 0.67
## 3033 0.66 0.00 0.01 0.67
## 3034 0.18 0.01 0.05 0.67
## 3035 0.30 0.00 0.08 0.67
## 3036 0.33 0.00 0.11 0.67
## 3037 0.41 0.00 0.08 0.67
## 3038 0.21 0.01 0.05 0.67
## 3039 0.29 0.01 0.07 0.67
## 3040 0.06 0.00 0.05 0.67
## 3041 0.64 0.00 0.02 0.67
## 3042 0.25 0.00 0.09 0.67
## 3043 0.20 0.00 0.14 0.67
## 3044 0.58 0.00 0.09 0.67
## 3045 0.03 0.00 0.01 0.67
## 3046 0.05 0.25 0.04 0.67
## 3047 0.11 0.00 0.05 0.67
## 3048 0.26 0.05 0.11 0.67
## 3049 0.53 0.00 0.12 0.67
## 3051 0.00 0.66 0.00 0.66
## 3052 0.25 0.00 0.04 0.66
## 3053 0.15 0.00 0.02 0.66
## 3054 0.24 0.01 0.10 0.66
## 3055 0.23 0.03 0.06 0.66
## 3056 0.02 0.00 0.09 0.66
## 3057 0.25 0.00 0.08 0.66
## 3058 0.01 0.13 0.26 0.66
## 3059 0.25 0.00 0.04 0.66
## 3060 0.25 0.00 0.04 0.66
## 3061 0.25 0.00 0.08 0.66
## 3062 0.16 0.00 0.02 0.66
## 3063 0.02 0.00 0.09 0.66
## 3064 0.10 0.00 0.06 0.66
## 3065 0.00 0.66 0.00 0.66
## 3066 0.13 0.00 0.02 0.66
## 3067 0.00 0.66 0.00 0.66
## 3068 0.00 0.64 0.02 0.66
## 3069 0.18 0.00 0.01 0.66
## 3070 0.38 0.00 0.14 0.66
## 3071 0.24 0.00 0.07 0.66
## 3072 0.25 0.00 0.08 0.66
## 3073 0.25 0.00 0.04 0.66
## 3074 0.52 0.00 0.12 0.66
## 3075 0.03 0.55 0.02 0.66
## 3076 0.02 0.33 0.03 0.66
## 3077 0.25 0.00 0.14 0.66
## 3078 0.20 0.00 0.03 0.66
## 3079 0.22 0.00 0.10 0.66
## 3080 0.04 0.00 0.01 0.66
## 3081 0.35 0.00 0.16 0.66
## 3082 0.14 0.19 0.04 0.66
## 3083 0.17 0.00 0.01 0.66
## 3084 0.13 0.30 0.05 0.66
## 3085 0.00 0.62 0.00 0.66
## 3086 0.17 0.00 0.01 0.66
## 3087 0.08 0.41 0.04 0.66
## 3088 0.14 0.00 0.02 0.66
## 3089 0.08 0.00 0.08 0.66
## 3090 0.27 0.00 0.16 0.66
## 3091 0.00 0.66 0.00 0.66
## 3092 0.44 0.03 0.09 0.66
## 3093 0.25 0.00 0.07 0.66
## 3094 0.25 0.00 0.04 0.66
## 3095 0.22 0.00 0.06 0.65
## 3096 0.22 0.00 0.10 0.65
## 3097 0.00 0.00 0.41 0.65
## 3098 0.22 0.01 0.10 0.65
## 3099 0.25 0.00 0.05 0.65
## 3100 0.23 0.00 0.07 0.65
## 3101 0.14 0.29 0.05 0.65
## 3102 0.11 0.12 0.02 0.65
## 3103 0.25 0.00 0.08 0.65
## 3104 0.22 0.00 0.14 0.65
## 3105 0.09 0.30 0.01 0.65
## 3106 0.28 0.00 0.07 0.65
## 3107 0.25 0.00 0.08 0.65
## 3108 0.04 0.00 0.05 0.65
## 3109 0.17 0.00 0.01 0.65
## 3110 0.01 0.58 0.04 0.65
## 3111 0.14 0.00 0.06 0.65
## 3112 0.00 0.00 0.07 0.65
## 3113 0.20 0.00 0.06 0.65
## 3114 0.17 0.00 0.01 0.65
## 3115 0.03 0.27 0.03 0.65
## 3116 0.25 0.00 0.04 0.65
## 3117 0.15 0.26 0.05 0.65
## 3118 0.50 0.00 0.15 0.65
## 3119 0.04 0.00 0.01 0.65
## 3120 0.25 0.00 0.08 0.65
## 3121 0.02 0.00 0.09 0.65
## 3122 0.05 0.00 0.60 0.65
## 3123 0.24 0.00 0.04 0.65
## 3124 0.18 0.00 0.12 0.65
## 3125 0.11 0.00 0.05 0.65
## 3126 0.15 0.20 0.07 0.65
## 3127 0.14 0.22 0.09 0.65
## 3128 0.00 0.65 0.00 0.65
## 3129 0.23 0.05 0.10 0.65
## 3130 0.20 0.00 0.06 0.65
## 3131 0.00 0.65 0.00 0.65
## 3132 0.04 0.40 0.03 0.65
## 3133 0.39 0.00 0.09 0.64
## 3134 0.00 0.00 0.05 0.64
## 3135 0.07 0.00 0.44 0.64
## 3136 0.17 0.00 0.01 0.64
## 3137 0.24 0.00 0.05 0.64
## 3138 0.25 0.00 0.08 0.64
## 3139 0.25 0.00 0.15 0.64
## 3140 0.31 0.00 0.13 0.64
## 3141 0.25 0.00 0.08 0.64
## 3143 0.15 0.00 0.02 0.64
## 3144 0.09 0.01 0.05 0.64
## 3145 0.02 0.00 0.09 0.64
## 3146 0.04 0.00 0.07 0.64
## 3147 0.17 0.07 0.09 0.64
## 3148 0.23 0.00 0.05 0.64
## 3149 0.35 0.00 0.06 0.64
## 3150 0.29 0.00 0.10 0.64
## 3151 0.19 0.00 0.02 0.64
## 3152 0.24 0.00 0.08 0.64
## 3153 0.32 0.00 0.07 0.64
## 3154 0.04 0.00 0.03 0.64
## 3155 0.33 0.00 0.09 0.64
## 3156 0.04 0.00 0.05 0.64
## 3157 0.15 0.00 0.01 0.64
## 3158 0.10 0.04 0.05 0.64
## 3159 0.22 0.00 0.02 0.64
## 3160 0.17 0.00 0.01 0.64
## 3161 0.21 0.00 0.06 0.64
## 3162 0.33 0.00 0.01 0.64
## 3163 0.12 0.34 0.04 0.64
## 3164 0.20 0.20 0.07 0.64
## 3165 0.17 0.00 0.06 0.64
## 3166 0.43 0.00 0.14 0.64
## 3167 0.17 0.00 0.01 0.64
## 3168 0.20 0.09 0.10 0.64
## 3169 0.17 0.00 0.01 0.64
## 3170 0.09 0.27 0.05 0.64
## 3171 0.28 0.00 0.11 0.64
## 3172 0.24 0.00 0.08 0.64
## 3173 0.32 0.00 0.10 0.64
## 3174 0.42 0.00 0.14 0.64
## 3175 0.04 0.00 0.01 0.64
## 3176 0.03 0.00 0.01 0.64
## 3177 0.02 0.01 0.05 0.64
## 3178 0.12 0.00 0.05 0.64
## 3179 0.26 0.11 0.06 0.64
## 3180 0.10 0.04 0.05 0.64
## 3181 0.24 0.00 0.08 0.64
## 3182 0.33 0.01 0.10 0.64
## 3183 0.00 0.00 0.04 0.64
## 3184 0.21 0.01 0.06 0.63
## 3185 0.02 0.00 0.09 0.63
## 3186 0.24 0.00 0.04 0.63
## 3187 0.12 0.00 0.44 0.63
## 3188 0.16 0.00 0.06 0.63
## 3189 0.45 0.03 0.15 0.63
## 3190 0.34 0.00 0.07 0.63
## 3191 0.19 0.00 0.03 0.63
## 3192 0.24 0.00 0.04 0.63
## 3193 0.40 0.00 0.04 0.63
## 3194 0.14 0.00 0.06 0.63
## 3196 0.02 0.00 0.09 0.63
## 3197 0.23 0.01 0.10 0.63
## 3198 0.17 0.00 0.01 0.63
## 3199 0.23 0.00 0.09 0.63
## 3200 0.24 0.00 0.10 0.63
## 3201 0.09 0.00 0.09 0.63
## 3202 0.00 0.63 0.00 0.63
## 3203 0.35 0.00 0.07 0.63
## 3204 0.13 0.00 0.01 0.63
## 3205 0.05 0.25 0.01 0.63
## 3206 0.09 0.00 0.04 0.63
## 3207 0.20 0.00 0.05 0.63
## 3208 0.19 0.00 0.06 0.63
## 3209 0.00 0.00 0.05 0.63
## 3210 0.00 0.63 0.00 0.63
## 3211 0.21 0.00 0.09 0.63
## 3212 0.05 0.00 0.04 0.63
## 3213 0.29 0.01 0.10 0.63
## 3214 0.09 0.38 0.03 0.63
## 3215 0.05 0.00 0.14 0.63
## 3216 0.04 0.00 0.01 0.63
## 3217 0.23 0.00 0.06 0.63
## 3219 0.23 0.00 0.00 0.63
## 3220 0.34 0.00 0.05 0.63
## 3221 0.25 0.00 0.06 0.63
## 3222 0.00 0.63 0.00 0.63
## 3223 0.37 0.00 0.06 0.63
## 3224 0.20 0.16 0.05 0.63
## 3225 0.24 0.00 0.08 0.63
## 3226 0.06 0.34 0.04 0.63
## 3227 0.00 0.59 0.04 0.63
## 3228 0.17 0.00 0.05 0.63
## 3229 0.03 0.15 0.34 0.63
## 3230 0.24 0.00 0.04 0.63
## 3231 0.16 0.00 0.05 0.63
## 3232 0.22 0.00 0.06 0.63
## 3233 0.27 0.01 0.11 0.63
## 3234 0.29 0.00 0.07 0.63
## 3235 0.24 0.00 0.04 0.63
## 3236 0.13 0.00 0.02 0.63
## 3237 0.00 0.32 0.00 0.62
## 3238 0.00 0.62 0.00 0.62
## 3240 0.20 0.00 0.03 0.62
## 3241 0.24 0.00 0.04 0.62
## 3242 0.26 0.00 0.06 0.62
## 3243 0.22 0.11 0.09 0.62
## 3244 0.13 0.29 0.04 0.62
## 3245 0.24 0.00 0.04 0.62
## 3246 0.23 0.08 0.09 0.62
## 3247 0.13 0.00 0.02 0.62
## 3248 0.42 0.00 0.05 0.62
## 3249 0.03 0.00 0.01 0.62
## 3250 0.13 0.00 0.02 0.62
## 3251 0.28 0.00 0.06 0.62
## 3252 0.23 0.22 0.08 0.62
## 3253 0.20 0.00 0.06 0.62
## 3254 0.24 0.00 0.08 0.62
## 3255 0.20 0.07 0.09 0.62
## 3256 0.04 0.57 0.01 0.62
## 3257 0.21 0.00 0.06 0.62
## 3258 0.10 0.12 0.02 0.62
## 3259 0.22 0.00 0.03 0.62
## 3260 0.20 0.00 0.02 0.62
## 3261 0.34 0.02 0.09 0.62
## 3262 0.23 0.00 0.04 0.62
## 3263 0.00 0.00 0.04 0.62
## 3264 0.24 0.00 0.08 0.62
## 3265 0.01 0.00 0.04 0.62
## 3266 0.14 0.27 0.06 0.62
## 3267 0.03 0.00 0.01 0.62
## 3268 0.18 0.09 0.08 0.62
## 3269 0.23 0.00 0.14 0.62
## 3270 0.14 0.23 0.04 0.62
## 3271 0.24 0.00 0.08 0.62
## 3272 0.00 0.62 0.00 0.62
## 3273 0.12 0.00 0.02 0.62
## 3274 0.17 0.00 0.11 0.62
## 3275 0.00 0.62 0.00 0.62
## 3276 0.00 0.62 0.00 0.62
## 3277 0.26 0.00 0.07 0.62
## 3278 0.03 0.00 0.00 0.62
## 3279 0.00 0.62 0.00 0.62
## 3280 0.00 0.62 0.00 0.62
## 3281 0.02 0.00 0.00 0.62
## 3282 0.00 0.58 0.04 0.62
## 3283 0.57 0.04 0.00 0.61
## 3284 0.13 0.11 0.04 0.61
## 3285 0.00 0.00 0.05 0.61
## 3286 0.04 0.00 0.57 0.61
## 3287 0.15 0.00 0.11 0.61
## 3288 0.29 0.01 0.11 0.61
## 3289 0.13 0.00 0.02 0.61
## 3290 0.02 0.57 0.01 0.61
## 3291 0.11 0.34 0.05 0.61
## 3292 0.18 0.00 0.05 0.61
## 3293 0.16 0.00 0.01 0.61
## 3294 0.23 0.00 0.08 0.61
## 3295 0.16 0.00 0.01 0.61
## 3296 0.21 0.00 0.05 0.61
## 3297 0.10 0.00 0.05 0.61
## 3298 0.23 0.00 0.05 0.61
## 3299 0.07 0.00 0.04 0.61
## 3300 0.16 0.00 0.01 0.61
## 3301 0.23 0.00 0.08 0.61
## 3302 0.00 0.00 0.03 0.61
## 3303 0.00 0.61 0.00 0.61
## 3304 0.44 0.00 0.07 0.61
## 3305 0.17 0.14 0.05 0.61
## 3306 0.23 0.00 0.04 0.61
## 3307 0.07 0.42 0.03 0.61
## 3308 0.24 0.00 0.06 0.61
## 3309 0.21 0.00 0.03 0.61
## 3310 0.23 0.00 0.04 0.61
## 3311 0.09 0.01 0.04 0.61
## 3312 0.27 0.00 0.15 0.61
## 3313 0.00 0.00 0.05 0.61
## 3314 0.03 0.21 0.03 0.61
## 3315 0.00 0.00 0.05 0.61
## 3316 0.00 0.00 0.05 0.61
## 3317 0.23 0.00 0.06 0.61
## 3318 0.10 0.22 0.01 0.61
## 3319 0.16 0.00 0.01 0.61
## 3320 0.23 0.00 0.04 0.61
## 3321 0.16 0.00 0.01 0.61
## 3322 0.16 0.00 0.01 0.61
## 3323 0.12 0.00 0.02 0.61
## 3324 0.21 0.00 0.06 0.61
## 3325 0.16 0.01 0.06 0.61
## 3326 0.16 0.00 0.01 0.61
## 3327 0.02 0.00 0.00 0.61
## 3328 0.05 0.00 0.05 0.61
## 3329 0.16 0.00 0.01 0.61
## 3330 0.20 0.00 0.06 0.61
## 3331 0.02 0.00 0.08 0.61
## 3332 0.24 0.00 0.06 0.61
## 3333 0.24 0.00 0.06 0.61
## 3334 0.14 0.33 0.02 0.60
## 3335 0.16 0.00 0.01 0.60
## 3336 0.11 0.25 0.06 0.60
## 3337 0.16 0.00 0.01 0.60
## 3338 0.02 0.00 0.08 0.60
## 3339 0.10 0.09 0.02 0.60
## 3340 0.23 0.00 0.08 0.60
## 3341 0.16 0.00 0.02 0.60
## 3342 0.00 0.60 0.00 0.60
## 3343 0.25 0.00 0.06 0.60
## 3344 0.02 0.00 0.08 0.60
## 3345 0.19 0.00 0.05 0.60
## 3346 0.22 0.00 0.05 0.60
## 3348 0.19 0.20 0.04 0.60
## 3349 0.15 0.00 0.08 0.60
## 3350 0.22 0.03 0.05 0.60
## 3351 0.25 0.04 0.09 0.60
## 3352 0.37 0.00 0.10 0.60
## 3353 0.14 0.21 0.04 0.60
## 3354 0.18 0.00 0.29 0.60
## 3355 0.23 0.00 0.08 0.60
## 3356 0.24 0.00 0.14 0.60
## 3357 0.02 0.00 0.08 0.60
## 3358 0.00 0.60 0.00 0.60
## 3359 0.23 0.00 0.08 0.60
## 3360 0.21 0.00 0.05 0.60
## 3361 0.08 0.14 0.01 0.60
## 3362 0.26 0.23 0.02 0.60
## 3363 0.15 0.00 0.06 0.60
## 3364 0.23 0.00 0.08 0.60
## 3365 0.23 0.00 0.04 0.60
## 3366 0.00 0.56 0.04 0.60
## 3367 0.00 0.56 0.04 0.60
## 3368 0.03 0.03 0.05 0.60
## 3369 0.25 0.00 0.11 0.60
## 3370 0.28 0.00 0.06 0.60
## 3371 0.23 0.00 0.04 0.60
## 3372 0.01 0.00 0.04 0.60
## 3373 0.00 0.60 0.00 0.60
## 3374 0.13 0.00 0.07 0.60
## 3375 0.16 0.00 0.05 0.60
## 3376 0.20 0.00 0.06 0.60
## 3377 0.24 0.00 0.10 0.60
## 3378 0.23 0.00 0.08 0.60
## 3379 0.22 0.00 0.06 0.60
## 3380 0.22 0.00 0.09 0.60
## 3381 0.00 0.60 0.00 0.60
## 3382 0.00 0.31 0.02 0.60
## 3383 0.53 0.00 0.06 0.59
## 3384 0.23 0.00 0.08 0.59
## 3385 0.35 0.00 0.11 0.59
## 3386 0.46 0.00 0.07 0.59
## 3387 0.38 0.00 0.07 0.59
## 3388 0.00 0.59 0.00 0.59
## 3389 0.00 0.00 0.03 0.59
## 3390 0.00 0.56 0.04 0.59
## 3391 0.34 0.00 0.10 0.59
## 3392 0.22 0.00 0.04 0.59
## 3393 0.22 0.00 0.04 0.59
## 3394 0.12 0.00 0.02 0.59
## 3395 0.11 0.23 0.03 0.59
## 3396 0.22 0.00 0.06 0.59
## 3397 0.28 0.05 0.10 0.59
## 3398 0.22 0.00 0.04 0.59
## 3399 0.31 0.00 0.09 0.59
## 3400 0.00 0.55 0.04 0.59
## 3401 0.23 0.00 0.08 0.59
## 3402 0.00 0.59 0.00 0.59
## 3403 0.24 0.00 0.14 0.59
## 3404 0.03 0.00 0.01 0.59
## 3405 0.28 0.00 0.07 0.59
## 3406 0.17 0.16 0.06 0.59
## 3407 0.13 0.00 0.02 0.59
## 3408 0.12 0.00 0.02 0.59
## 3409 0.03 0.00 0.01 0.59
## 3410 0.00 0.00 0.04 0.59
## 3411 0.02 0.00 0.04 0.59
## 3412 0.03 0.00 0.04 0.59
## 3413 0.11 0.00 0.01 0.59
## 3414 0.11 0.00 0.01 0.59
## 3415 0.21 0.00 0.05 0.59
## 3416 0.08 0.14 0.02 0.59
## 3417 0.00 0.59 0.00 0.59
## 3418 0.14 0.02 0.04 0.59
## 3419 0.16 0.00 0.07 0.59
## 3420 0.09 0.42 0.03 0.59
## 3421 0.22 0.01 0.23 0.59
## 3423 0.04 0.00 0.05 0.59
## 3424 0.18 0.00 0.05 0.59
## 3425 0.22 0.00 0.04 0.59
## 3426 0.34 0.00 0.07 0.59
## 3427 0.22 0.00 0.08 0.59
## 3428 0.02 0.13 0.04 0.59
## 3429 0.22 0.08 0.08 0.59
## 3430 0.14 0.00 0.10 0.59
## 3431 0.25 0.00 0.09 0.59
## 3432 0.21 0.00 0.09 0.59
## 3433 0.13 0.11 0.01 0.59
## 3434 0.22 0.00 0.07 0.59
## 3435 0.37 0.00 0.07 0.59
## 3436 0.00 0.59 0.00 0.59
## 3437 0.22 0.00 0.10 0.59
## 3438 0.17 0.14 0.06 0.58
## 3439 0.37 0.00 0.07 0.58
## 3440 0.01 0.00 0.04 0.58
## 3441 0.22 0.00 0.07 0.58
## 3442 0.23 0.00 0.06 0.58
## 3443 0.25 0.00 0.05 0.58
## 3444 0.00 0.55 0.04 0.58
## 3445 0.19 0.07 0.04 0.58
## 3446 0.02 0.00 0.04 0.58
## 3447 0.18 0.00 0.10 0.58
## 3448 0.03 0.00 0.01 0.58
## 3449 0.04 0.47 0.01 0.58
## 3450 0.02 0.00 0.08 0.58
## 3451 0.03 0.17 0.03 0.58
## 3452 0.31 0.00 0.07 0.58
## 3453 0.18 0.00 0.05 0.58
## 3454 0.18 0.00 0.39 0.58
## 3455 0.22 0.02 0.04 0.58
## 3456 0.29 0.00 0.07 0.58
## 3457 0.22 0.00 0.05 0.58
## 3458 0.30 0.00 0.07 0.58
## 3459 0.00 0.00 0.04 0.58
## 3460 0.19 0.02 0.06 0.58
## 3461 0.22 0.00 0.04 0.58
## 3462 0.26 0.00 0.05 0.58
## 3463 0.22 0.00 0.07 0.58
## 3464 0.15 0.00 0.05 0.58
## 3465 0.06 0.22 0.03 0.58
## 3466 0.39 0.00 0.03 0.58
## 3467 0.40 0.00 0.04 0.58
## 3468 0.30 0.19 0.03 0.58
## 3470 0.22 0.00 0.07 0.58
## 3471 0.16 0.16 0.04 0.58
## 3472 0.00 0.54 0.04 0.58
## 3473 0.22 0.00 0.03 0.58
## 3474 0.22 0.00 0.07 0.58
## 3475 0.22 0.00 0.04 0.58
## 3476 0.15 0.00 0.01 0.58
## 3477 0.00 0.31 0.02 0.58
## 3478 0.02 0.50 0.01 0.58
## 3479 0.00 0.00 0.04 0.58
## 3480 0.22 0.00 0.07 0.58
## 3481 0.22 0.00 0.04 0.58
## 3482 0.00 0.58 0.00 0.58
## 3483 0.00 0.00 0.04 0.58
## 3484 0.27 0.00 0.09 0.58
## 3485 0.05 0.26 0.03 0.58
## 3486 0.00 0.58 0.00 0.58
## 3487 0.09 0.00 0.06 0.58
## 3488 0.11 0.14 0.06 0.58
## 3489 0.10 0.06 0.06 0.58
## 3490 0.22 0.00 0.04 0.58
## 3491 0.12 0.00 0.02 0.58
## 3492 0.00 0.00 0.04 0.58
## 3493 0.22 0.00 0.07 0.58
## 3494 0.02 0.00 0.08 0.58
## 3495 0.12 0.00 0.07 0.58
## 3496 0.41 0.01 0.06 0.58
## 3497 0.02 0.00 0.04 0.58
## 3498 0.22 0.00 0.04 0.58
## 3499 0.17 0.02 0.05 0.58
## 3500 0.02 0.00 0.00 0.58
## 3501 0.53 0.00 0.04 0.58
## 3503 0.22 0.00 0.07 0.58
## 3504 0.37 0.00 0.12 0.57
## 3505 0.00 0.27 0.02 0.57
## 3506 0.16 0.13 0.04 0.57
## 3507 0.23 0.00 0.06 0.57
## 3508 0.04 0.00 0.04 0.57
## 3509 0.00 0.00 0.04 0.57
## 3510 0.24 0.00 0.02 0.57
## 3511 0.22 0.00 0.07 0.57
## 3512 0.15 0.00 0.01 0.57
## 3513 0.28 0.00 0.06 0.57
## 3514 0.00 0.57 0.00 0.57
## 3515 0.15 0.00 0.05 0.57
## 3516 0.24 0.00 0.06 0.57
## 3517 0.00 0.54 0.04 0.57
## 3518 0.15 0.00 0.01 0.57
## 3519 0.24 0.01 0.09 0.57
## 3520 0.00 0.00 0.04 0.57
## 3521 0.08 0.35 0.04 0.57
## 3522 0.02 0.00 0.33 0.57
## 3523 0.23 0.00 0.13 0.57
## 3524 0.27 0.00 0.06 0.57
## 3525 0.11 0.00 0.02 0.57
## 3526 0.17 0.04 0.05 0.57
## 3527 0.45 0.00 0.11 0.57
## 3528 0.01 0.00 0.04 0.57
## 3529 0.02 0.00 0.08 0.57
## 3530 0.15 0.00 0.04 0.57
## 3531 0.02 0.00 0.04 0.57
## 3532 0.12 0.03 0.07 0.57
## 3533 0.00 0.57 0.00 0.57
## 3534 0.08 0.00 0.00 0.57
## 3535 0.01 0.00 0.04 0.57
## 3536 0.12 0.29 0.07 0.57
## 3537 0.25 0.00 0.05 0.57
## 3538 0.12 0.00 0.02 0.57
## 3539 0.08 0.35 0.03 0.57
## 3540 0.20 0.00 0.05 0.57
## 3541 0.03 0.00 0.04 0.57
## 3542 0.22 0.00 0.07 0.57
## 3543 0.02 0.00 0.08 0.57
## 3544 0.11 0.02 0.02 0.57
## 3545 0.00 0.57 0.00 0.57
## 3546 0.10 0.00 0.02 0.57
## 3547 0.25 0.04 0.09 0.57
## 3548 0.00 0.57 0.00 0.57
## 3549 0.22 0.00 0.06 0.57
## 3550 0.16 0.00 0.02 0.57
## 3551 0.15 0.17 0.05 0.57
## 3552 0.21 0.00 0.04 0.57
## 3553 0.22 0.00 0.07 0.57
## 3554 0.19 0.00 0.09 0.57
## 3555 0.12 0.00 0.05 0.57
## 3556 0.31 0.00 0.06 0.57
## 3557 0.40 0.00 0.07 0.57
## 3558 0.22 0.05 0.09 0.57
## 3559 0.28 0.00 0.05 0.56
## 3560 0.08 0.34 0.04 0.56
## 3561 0.11 0.00 0.02 0.56
## 3562 0.18 0.09 0.06 0.56
## 3563 0.04 0.24 0.03 0.56
## 3564 0.15 0.00 0.01 0.56
## 3565 0.15 0.00 0.01 0.56
## 3566 0.22 0.00 0.07 0.56
## 3567 0.15 0.00 0.01 0.56
## 3568 0.22 0.00 0.07 0.56
## 3569 0.11 0.13 0.01 0.56
## 3570 0.14 0.00 0.02 0.56
## 3571 0.22 0.00 0.07 0.56
## 3572 0.21 0.00 0.04 0.56
## 3573 0.21 0.00 0.07 0.56
## 3574 0.08 0.00 0.07 0.56
## 3575 0.15 0.00 0.01 0.56
## 3576 0.21 0.00 0.07 0.56
## 3577 0.05 0.22 0.03 0.56
## 3578 0.21 0.00 0.07 0.56
## 3579 0.21 0.00 0.04 0.56
## 3580 0.19 0.00 0.05 0.56
## 3581 0.21 0.00 0.07 0.56
## 3582 0.15 0.00 0.02 0.56
## 3583 0.22 0.00 0.06 0.56
## 3584 0.21 0.00 0.07 0.56
## 3585 0.15 0.00 0.01 0.56
## 3586 0.11 0.00 0.02 0.56
## 3587 0.21 0.00 0.04 0.56
## 3588 0.11 0.00 0.04 0.56
## 3589 0.02 0.00 0.04 0.56
## 3590 0.11 0.00 0.02 0.56
## 3591 0.09 0.07 0.01 0.56
## 3592 0.02 0.45 0.00 0.56
## 3593 0.21 0.00 0.07 0.56
## 3594 0.14 0.12 0.04 0.56
## 3595 0.12 0.26 0.04 0.56
## 3596 0.08 0.00 0.04 0.56
## 3597 0.09 0.27 0.06 0.56
## 3598 0.15 0.01 0.05 0.56
## 3599 0.35 0.00 0.07 0.56
## 3600 0.00 0.56 0.00 0.56
## 3601 0.21 0.00 0.07 0.56
## 3602 0.23 0.00 0.06 0.56
## 3603 0.21 0.00 0.07 0.56
## 3604 0.15 0.00 0.01 0.56
## 3605 0.15 0.00 0.01 0.56
## 3606 0.15 0.00 0.02 0.56
## 3607 0.18 0.00 0.05 0.56
## 3608 0.24 0.00 0.14 0.56
## 3609 0.21 0.00 0.07 0.56
## 3610 0.00 0.56 0.00 0.56
## 3611 0.02 0.00 0.04 0.56
## 3612 0.02 0.00 0.02 0.56
## 3613 0.00 0.56 0.00 0.56
## 3614 0.23 0.00 0.04 0.56
## 3615 0.04 0.00 0.04 0.56
## 3616 0.09 0.22 0.06 0.56
## 3617 0.23 0.00 0.06 0.56
## 3618 0.26 0.00 0.06 0.56
## 3619 0.21 0.00 0.07 0.56
## 3620 0.02 0.14 0.03 0.56
## 3621 0.02 0.00 0.03 0.56
## 3622 0.00 0.00 0.04 0.56
## 3623 0.21 0.00 0.07 0.56
## 3624 0.36 0.00 0.02 0.56
## 3625 0.12 0.00 0.01 0.56
## 3626 0.08 0.02 0.06 0.56
## 3627 0.14 0.00 0.05 0.56
## 3628 0.18 0.06 0.04 0.55
## 3629 0.20 0.14 0.07 0.55
## 3630 0.21 0.00 0.04 0.55
## 3631 0.11 0.00 0.04 0.55
## 3632 0.16 0.00 0.05 0.55
## 3633 0.21 0.00 0.07 0.55
## 3634 0.01 0.15 0.06 0.55
## 3635 0.13 0.00 0.08 0.55
## 3636 0.11 0.00 0.02 0.55
## 3637 0.00 0.55 0.00 0.55
## 3638 0.28 0.00 0.05 0.55
## 3639 0.22 0.00 0.09 0.55
## 3640 0.13 0.00 0.02 0.55
## 3641 0.00 0.52 0.04 0.55
## 3642 0.00 0.55 0.00 0.55
## 3643 0.17 0.00 0.07 0.55
## 3644 0.03 0.00 0.01 0.55
## 3645 0.21 0.00 0.04 0.55
## 3646 0.00 0.00 0.04 0.55
## 3647 0.21 0.00 0.04 0.55
## 3648 0.00 0.55 0.00 0.55
## 3649 0.00 0.55 0.00 0.55
## 3650 0.16 0.12 0.05 0.55
## 3651 0.21 0.00 0.07 0.55
## 3652 0.15 0.04 0.07 0.55
## 3653 0.16 0.03 0.05 0.55
## 3654 0.04 0.00 0.04 0.55
## 3655 0.27 0.00 0.10 0.55
## 3656 0.22 0.00 0.00 0.55
## 3657 0.33 0.00 0.05 0.55
## 3658 0.00 0.55 0.00 0.55
## 3659 0.01 0.00 0.05 0.55
## 3660 0.00 0.00 0.04 0.55
## 3661 0.00 0.00 0.04 0.55
## 3662 0.18 0.00 0.02 0.55
## 3663 0.08 0.24 0.01 0.55
## 3664 0.21 0.00 0.04 0.55
## 3665 0.25 0.02 0.09 0.55
## 3666 0.21 0.00 0.04 0.55
## 3667 0.00 0.51 0.04 0.55
## 3668 0.00 0.55 0.00 0.55
## 3669 0.13 0.00 0.02 0.55
## 3670 0.00 0.55 0.00 0.55
## 3671 0.21 0.07 0.08 0.55
## 3672 0.15 0.00 0.01 0.55
## 3673 0.00 0.55 0.00 0.55
## 3674 0.19 0.00 0.05 0.55
## 3675 0.00 0.21 0.03 0.55
## 3676 0.02 0.00 0.04 0.55
## 3677 0.15 0.00 0.01 0.55
## 3678 0.05 0.36 0.02 0.55
## 3679 0.20 0.02 0.04 0.55
## 3680 0.14 0.00 0.02 0.55
## 3681 0.02 0.00 0.07 0.55
## 3682 0.24 0.03 0.05 0.55
## 3683 0.00 0.00 0.04 0.55
## 3684 0.21 0.00 0.07 0.55
## 3685 0.21 0.00 0.04 0.55
## 3686 0.12 0.00 0.02 0.55
## 3687 0.08 0.13 0.07 0.55
## 3688 0.32 0.00 0.10 0.54
## 3689 0.00 0.00 0.19 0.54
## 3690 0.06 0.00 0.48 0.54
## 3691 0.02 0.00 0.04 0.54
## 3692 0.03 0.01 0.05 0.54
## 3693 0.12 0.00 0.02 0.54
## 3694 0.35 0.00 0.04 0.54
## 3695 0.00 0.54 0.00 0.54
## 3696 0.00 0.54 0.00 0.54
## 3697 0.03 0.08 0.04 0.54
## 3698 0.17 0.04 0.05 0.54
## 3699 0.40 0.00 0.07 0.54
## 3700 0.11 0.00 0.02 0.54
## 3701 0.27 0.02 0.14 0.54
## 3702 0.21 0.00 0.07 0.54
## 3703 0.08 0.03 0.04 0.54
## 3704 0.33 0.01 0.11 0.54
## 3705 0.20 0.00 0.08 0.54
## 3706 0.11 0.25 0.04 0.54
## 3707 0.14 0.00 0.01 0.54
## 3708 0.30 0.00 0.09 0.54
## 3709 0.14 0.38 0.02 0.54
## 3710 0.00 0.54 0.00 0.54
## 3711 0.21 0.00 0.05 0.54
## 3712 0.24 0.10 0.07 0.54
## 3713 0.23 0.00 0.06 0.54
## 3714 0.21 0.00 0.07 0.54
## 3715 0.09 0.00 0.04 0.54
## 3717 0.03 0.00 0.01 0.54
## 3718 0.10 0.00 0.01 0.54
## 3719 0.39 0.00 0.03 0.54
## 3720 0.00 0.54 0.00 0.54
## 3721 0.10 0.01 0.04 0.54
## 3722 0.13 0.13 0.06 0.54
## 3723 0.06 0.35 0.04 0.54
## 3724 0.08 0.16 0.01 0.54
## 3725 0.00 0.54 0.00 0.54
## 3726 0.23 0.00 0.06 0.54
## 3727 0.00 0.50 0.04 0.54
## 3728 0.10 0.00 0.04 0.54
## 3729 0.16 0.18 0.09 0.54
## 3730 0.21 0.00 0.05 0.54
## 3731 0.00 0.00 0.03 0.54
## 3732 0.03 0.15 0.03 0.54
## 3733 0.29 0.01 0.11 0.54
## 3734 0.23 0.00 0.09 0.54
## 3735 0.14 0.00 0.01 0.54
## 3736 0.17 0.00 0.05 0.54
## 3737 0.11 0.00 0.01 0.54
## 3738 0.14 0.00 0.05 0.54
## 3739 0.06 0.00 0.02 0.54
## 3740 0.08 0.00 0.04 0.54
## 3741 0.01 0.10 0.04 0.54
## 3742 0.00 0.54 0.00 0.54
## 3743 0.21 0.00 0.07 0.54
## 3744 0.05 0.48 0.00 0.54
## 3745 0.02 0.00 0.07 0.54
## 3746 0.20 0.00 0.04 0.54
## 3747 0.32 0.00 0.08 0.54
## 3748 0.17 0.00 0.04 0.54
## 3749 0.03 0.00 0.01 0.54
## 3750 0.01 0.48 0.00 0.54
## 3751 0.20 0.00 0.07 0.54
## 3752 0.20 0.00 0.07 0.54
## 3753 0.05 0.24 0.03 0.54
## 3755 0.20 0.00 0.07 0.54
## 3756 0.37 0.00 0.04 0.54
## 3757 0.00 0.53 0.00 0.53
## 3758 0.27 0.00 0.05 0.53
## 3759 0.20 0.00 0.07 0.53
## 3760 0.05 0.38 0.03 0.53
## 3761 0.02 0.00 0.07 0.53
## 3762 0.00 0.00 0.04 0.53
## 3763 0.20 0.00 0.07 0.53
## 3764 0.07 0.17 0.05 0.53
## 3765 0.07 0.27 0.05 0.53
## 3766 0.20 0.00 0.07 0.53
## 3767 0.14 0.00 0.01 0.53
## 3768 0.02 0.00 0.07 0.53
## 3769 0.20 0.00 0.03 0.53
## 3770 0.20 0.00 0.07 0.53
## 3771 0.11 0.00 0.02 0.53
## 3772 0.00 0.33 0.02 0.53
## 3773 0.21 0.00 0.06 0.53
## 3774 0.20 0.00 0.07 0.53
## 3775 0.20 0.00 0.03 0.53
## 3776 0.20 0.00 0.07 0.53
## 3777 0.11 0.00 0.02 0.53
## 3778 0.20 0.00 0.03 0.53
## 3779 0.19 0.02 0.04 0.53
## 3780 0.10 0.00 0.04 0.53
## 3781 0.00 0.53 0.00 0.53
## 3782 0.00 0.53 0.00 0.53
## 3783 0.00 0.53 0.00 0.53
## 3784 0.17 0.00 0.02 0.53
## 3785 0.32 0.00 0.12 0.53
## 3786 0.14 0.12 0.04 0.53
## 3787 0.19 0.00 0.01 0.53
## 3788 0.26 0.02 0.14 0.53
## 3789 0.19 0.00 0.02 0.53
## 3790 0.28 0.00 0.09 0.53
## 3791 0.20 0.00 0.07 0.53
## 3792 0.19 0.00 0.03 0.53
## 3793 0.20 0.00 0.07 0.53
## 3794 0.27 0.02 0.05 0.53
## 3795 0.09 0.00 0.01 0.53
## 3796 0.00 0.00 0.04 0.53
## 3797 0.10 0.00 0.08 0.53
## 3798 0.11 0.00 0.01 0.53
## 3799 0.21 0.00 0.05 0.53
## 3800 0.00 0.00 0.03 0.53
## 3801 0.00 0.49 0.03 0.53
## 3802 0.20 0.01 0.08 0.53
## 3803 0.15 0.00 0.05 0.53
## 3804 0.20 0.00 0.05 0.53
## 3805 0.26 0.00 0.10 0.53
## 3806 0.00 0.00 0.04 0.53
## 3807 0.29 0.00 0.16 0.53
## 3808 0.20 0.00 0.07 0.53
## 3809 0.11 0.00 0.01 0.53
## 3810 0.20 0.00 0.07 0.53
## 3811 0.02 0.00 0.07 0.53
## 3812 0.20 0.00 0.13 0.53
## 3813 0.00 0.53 0.00 0.53
## 3814 0.01 0.00 0.04 0.53
## 3815 0.17 0.00 0.08 0.53
## 3816 0.03 0.16 0.03 0.53
## 3817 0.13 0.00 0.05 0.53
## 3818 0.16 0.04 0.10 0.53
## 3819 0.03 0.00 0.00 0.53
## 3820 0.03 0.00 0.00 0.53
## 3821 0.00 0.49 0.03 0.53
## 3822 0.20 0.00 0.07 0.53
## 3823 0.09 0.19 0.01 0.52
## 3824 0.00 0.52 0.00 0.52
## 3825 0.01 0.00 0.04 0.52
## 3826 0.20 0.00 0.03 0.52
## 3827 0.01 0.02 0.04 0.52
## 3828 0.00 0.52 0.00 0.52
## 3829 0.11 0.00 0.04 0.52
## 3830 0.37 0.00 0.07 0.52
## 3831 0.04 0.00 0.04 0.52
## 3832 0.02 0.00 0.05 0.52
## 3833 0.00 0.00 0.39 0.52
## 3834 0.20 0.00 0.03 0.52
## 3835 0.00 0.00 0.04 0.52
## 3836 0.20 0.00 0.03 0.52
## 3837 0.04 0.00 0.04 0.52
## 3838 0.14 0.16 0.05 0.52
## 3839 0.20 0.00 0.07 0.52
## 3840 0.11 0.00 0.02 0.52
## 3841 0.08 0.22 0.04 0.52
## 3842 0.00 0.02 0.04 0.52
## 3843 0.12 0.00 0.06 0.52
## 3844 0.20 0.00 0.03 0.52
## 3845 0.07 0.16 0.01 0.52
## 3846 0.20 0.00 0.03 0.52
## 3847 0.07 0.28 0.02 0.52
## 3848 0.08 0.28 0.03 0.52
## 3849 0.29 0.00 0.06 0.52
## 3850 0.24 0.00 0.05 0.52
## 3851 0.15 0.01 0.10 0.52
## 3852 0.32 0.00 0.11 0.52
## 3853 0.02 0.00 0.03 0.52
## 3854 0.21 0.00 0.09 0.52
## 3855 0.13 0.18 0.04 0.52
## 3856 0.00 0.52 0.00 0.52
## 3857 0.19 0.02 0.06 0.52
## 3858 0.04 0.00 0.04 0.52
## 3859 0.20 0.00 0.07 0.52
## 3860 0.12 0.00 0.02 0.52
## 3861 0.14 0.00 0.01 0.52
## 3862 0.04 0.08 0.04 0.52
## 3863 0.00 0.01 0.04 0.52
## 3864 0.20 0.00 0.07 0.52
## 3865 0.07 0.31 0.03 0.52
## 3866 0.00 0.52 0.00 0.52
## 3867 0.20 0.00 0.07 0.52
## 3868 0.14 0.00 0.01 0.52
## 3869 0.14 0.00 0.01 0.52
## 3870 0.00 0.00 0.04 0.52
## 3871 0.11 0.20 0.03 0.52
## 3872 0.05 0.00 0.00 0.52
## 3873 0.12 0.00 0.05 0.52
## 3874 0.11 0.00 0.02 0.52
## 3875 0.19 0.00 0.03 0.52
## 3876 0.20 0.00 0.07 0.52
## 3877 0.02 0.00 0.04 0.51
## 3878 0.10 0.25 0.03 0.51
## 3879 0.46 0.00 0.06 0.51
## 3880 0.17 0.01 0.04 0.51
## 3882 0.20 0.00 0.07 0.51
## 3883 0.13 0.00 0.04 0.51
## 3884 0.07 0.27 0.05 0.51
## 3885 0.25 0.00 0.09 0.51
## 3886 0.05 0.35 0.03 0.51
## 3887 0.12 0.00 0.04 0.51
## 3888 0.20 0.00 0.07 0.51
## 3889 0.29 0.00 0.04 0.51
## 3890 0.18 0.00 0.04 0.51
## 3891 0.20 0.07 0.12 0.51
## 3892 0.21 0.00 0.05 0.51
## 3893 0.23 0.02 0.09 0.51
## 3894 0.27 0.06 0.05 0.51
## 3895 0.21 0.00 0.05 0.51
## 3896 0.00 0.51 0.00 0.51
## 3897 0.10 0.00 0.01 0.51
## 3898 0.00 0.51 0.00 0.51
## 3899 0.20 0.00 0.07 0.51
## 3900 0.19 0.00 0.03 0.51
## 3901 0.00 0.00 0.04 0.51
## 3902 0.01 0.00 0.04 0.51
## 3903 0.03 0.17 0.03 0.51
## 3904 0.01 0.30 0.02 0.51
## 3905 0.14 0.00 0.01 0.51
## 3906 0.09 0.02 0.04 0.51
## 3907 0.09 0.00 0.01 0.51
## 3908 0.00 0.51 0.00 0.51
## 3909 0.26 0.22 0.02 0.51
## 3910 0.00 0.00 0.04 0.51
## 3911 0.13 0.00 0.05 0.51
## 3912 0.19 0.00 0.08 0.51
## 3913 0.02 0.00 0.04 0.51
## 3914 0.23 0.00 0.09 0.51
## 3915 0.04 0.00 0.02 0.51
## 3916 0.00 0.48 0.03 0.51
## 3917 0.14 0.00 0.01 0.51
## 3918 0.03 0.00 0.04 0.51
## 3919 0.12 0.20 0.04 0.51
## 3920 0.22 0.02 0.09 0.51
## 3921 0.04 0.11 0.04 0.51
## 3922 0.28 0.00 0.15 0.51
## 3923 0.16 0.00 0.05 0.51
## 3924 0.02 0.30 0.02 0.51
## 3925 0.03 0.07 0.04 0.51
## 3926 0.02 0.00 0.07 0.51
## 3927 0.21 0.00 0.12 0.51
## 3928 0.19 0.01 0.04 0.51
## 3929 0.01 0.00 0.03 0.51
## 3930 0.11 0.00 0.02 0.51
## 3931 0.19 0.00 0.06 0.51
## 3932 0.00 0.51 0.00 0.51
## 3933 0.05 0.00 0.04 0.51
## 3934 0.24 0.00 0.08 0.51
## 3935 0.42 0.00 0.09 0.51
## 3936 0.13 0.00 0.01 0.51
## 3937 0.19 0.00 0.06 0.51
## 3938 0.01 0.00 0.04 0.51
## 3939 0.11 0.00 0.02 0.51
## 3940 0.19 0.00 0.06 0.51
## 3941 0.03 0.00 0.01 0.51
## 3942 0.17 0.05 0.06 0.51
## 3943 0.17 0.00 0.05 0.51
## 3944 0.25 0.02 0.09 0.51
## 3945 0.19 0.00 0.06 0.51
## 3946 0.33 0.00 0.06 0.51
## 3947 0.19 0.00 0.03 0.51
## 3948 0.13 0.00 0.01 0.50
## 3949 0.35 0.00 0.06 0.50
## 3950 0.01 0.00 0.04 0.50
## 3951 0.02 0.00 0.07 0.50
## 3952 0.19 0.00 0.06 0.50
## 3954 0.03 0.00 0.01 0.50
## 3955 0.15 0.04 0.04 0.50
## 3956 0.34 0.00 0.07 0.50
## 3957 0.12 0.00 0.07 0.50
## 3958 0.06 0.00 0.02 0.50
## 3959 0.12 0.11 0.05 0.50
## 3960 0.00 0.50 0.00 0.50
## 3961 0.02 0.32 0.02 0.50
## 3962 0.10 0.00 0.01 0.50
## 3963 0.19 0.00 0.03 0.50
## 3964 0.19 0.00 0.06 0.50
## 3965 0.19 0.00 0.06 0.50
## 3966 0.19 0.00 0.06 0.50
## 3967 0.03 0.00 0.01 0.50
## 3968 0.19 0.00 0.06 0.50
## 3969 0.19 0.00 0.06 0.50
## 3970 0.19 0.00 0.04 0.50
## 3971 0.26 0.00 0.04 0.50
## 3972 0.12 0.00 0.04 0.50
## 3973 0.03 0.00 0.04 0.50
## 3974 0.07 0.18 0.02 0.50
## 3975 0.11 0.07 0.05 0.50
## 3976 0.00 0.00 0.04 0.50
## 3977 0.09 0.00 0.01 0.50
## 3978 0.01 0.00 0.04 0.50
## 3979 0.19 0.00 0.06 0.50
## 3980 0.05 0.31 0.01 0.50
## 3981 0.04 0.17 0.02 0.50
## 3982 0.00 0.50 0.00 0.50
## 3983 0.18 0.00 0.05 0.50
## 3984 0.01 0.00 0.04 0.50
## 3985 0.02 0.03 0.04 0.50
## 3986 0.19 0.00 0.03 0.50
## 3987 0.10 0.08 0.02 0.50
## 3988 0.07 0.29 0.03 0.50
## 3989 0.25 0.01 0.13 0.50
## 3990 0.19 0.00 0.06 0.50
## 3991 0.22 0.00 0.08 0.50
## 3992 0.19 0.00 0.06 0.50
## 3993 0.16 0.00 0.04 0.50
## 3994 0.02 0.00 0.07 0.50
## 3995 0.00 0.00 0.03 0.50
## 3996 0.24 0.00 0.04 0.50
## 3997 0.00 0.00 0.04 0.50
## 3998 0.08 0.28 0.03 0.50
## 3999 0.17 0.00 0.05 0.50
## 4000 0.16 0.00 0.05 0.50
## 4001 0.10 0.00 0.01 0.50
## 4002 0.19 0.00 0.06 0.50
## 4003 0.00 0.50 0.00 0.50
## 4004 0.07 0.32 0.03 0.50
## 4005 0.19 0.00 0.06 0.50
## 4006 0.13 0.00 0.01 0.50
## 4007 0.00 0.50 0.00 0.50
## 4008 0.00 0.46 0.03 0.50
## 4009 0.02 0.00 0.07 0.50
## 4010 0.01 0.00 0.07 0.50
## 4011 0.20 0.00 0.08 0.50
## 4012 0.19 0.00 0.06 0.50
## 4013 0.20 0.01 0.04 0.50
## 4014 0.03 0.00 0.01 0.50
## 4015 0.19 0.00 0.06 0.50
## 4016 0.03 0.00 0.01 0.50
## 4017 0.03 0.00 0.01 0.50
## 4018 0.15 0.12 0.03 0.50
## 4019 0.00 0.00 0.04 0.49
## 4020 0.12 0.03 0.04 0.49
## 4021 0.17 0.13 0.03 0.49
## 4022 0.15 0.05 0.04 0.49
## 4023 0.02 0.00 0.04 0.49
## 4024 0.13 0.00 0.01 0.49
## 4025 0.20 0.00 0.08 0.49
## 4026 0.03 0.00 0.01 0.49
## 4027 0.00 0.49 0.00 0.49
## 4028 0.29 0.00 0.11 0.49
## 4029 0.01 0.00 0.07 0.49
## 4030 0.23 0.01 0.05 0.49
## 4031 0.13 0.02 0.04 0.49
## 4032 0.10 0.00 0.01 0.49
## 4033 0.15 0.07 0.03 0.49
## 4034 0.13 0.00 0.01 0.49
## 4035 0.13 0.00 0.02 0.49
## 4036 0.00 0.00 0.03 0.49
## 4037 0.00 0.00 0.04 0.49
## 4038 0.13 0.00 0.01 0.49
## 4039 0.10 0.24 0.03 0.49
## 4040 0.31 0.00 0.06 0.49
## 4041 0.00 0.49 0.00 0.49
## 4042 0.00 0.49 0.00 0.49
## 4043 0.11 0.00 0.02 0.49
## 4044 0.20 0.00 0.05 0.49
## 4045 0.12 0.16 0.03 0.49
## 4046 0.30 0.00 0.03 0.49
## 4047 0.18 0.03 0.05 0.49
## 4048 0.02 0.02 0.03 0.49
## 4049 0.23 0.00 0.07 0.49
## 4050 0.17 0.00 0.04 0.49
## 4051 0.00 0.49 0.00 0.49
## 4052 0.26 0.09 0.07 0.49
## 4053 0.19 0.00 0.06 0.49
## 4054 0.15 0.00 0.33 0.49
## 4055 0.19 0.00 0.06 0.49
## 4056 0.04 0.04 0.04 0.49
## 4057 0.17 0.00 0.04 0.49
## 4058 0.00 0.49 0.00 0.49
## 4059 0.30 0.00 0.05 0.49
## 4060 0.00 0.46 0.03 0.49
## 4061 0.01 0.00 0.22 0.49
## 4062 0.47 0.00 0.02 0.49
## 4063 0.45 0.00 0.03 0.49
## 4064 0.09 0.02 0.01 0.49
## 4065 0.19 0.00 0.06 0.49
## 4066 0.31 0.02 0.08 0.49
## 4067 0.11 0.00 0.02 0.49
## 4068 0.00 0.00 0.03 0.49
## 4069 0.18 0.00 0.03 0.49
## 4070 0.35 0.00 0.06 0.49
## 4071 0.16 0.02 0.04 0.49
## 4072 0.00 0.49 0.00 0.49
## 4073 0.10 0.05 0.03 0.49
## 4074 0.05 0.35 0.02 0.49
## 4075 0.00 0.49 0.00 0.49
## 4076 0.02 0.00 0.04 0.49
## 4077 0.45 0.00 0.03 0.49
## 4078 0.23 0.07 0.07 0.49
## 4079 0.06 0.00 0.04 0.49
## 4080 0.01 0.00 0.04 0.49
## 4081 0.21 0.01 0.08 0.49
## 4082 0.25 0.00 0.11 0.48
## 4083 0.02 0.00 0.04 0.48
## 4084 0.11 0.01 0.04 0.48
## 4085 0.48 0.00 0.00 0.48
## 4086 0.02 0.00 0.07 0.48
## 4087 0.18 0.05 0.09 0.48
## 4088 0.01 0.29 0.02 0.48
## 4089 0.13 0.00 0.01 0.48
## 4090 0.27 0.00 0.06 0.48
## 4091 0.03 0.00 0.04 0.48
## 4092 0.14 0.17 0.03 0.48
## 4093 0.13 0.00 0.01 0.48
## 4094 0.00 0.45 0.03 0.48
## 4095 0.11 0.00 0.02 0.48
## 4096 0.19 0.01 0.05 0.48
## 4097 0.03 0.00 0.01 0.48
## 4098 0.00 0.48 0.00 0.48
## 4099 0.17 0.00 0.05 0.48
## 4100 0.20 0.01 0.05 0.48
## 4101 0.24 0.00 0.05 0.48
## 4102 0.18 0.00 0.06 0.48
## 4103 0.02 0.00 0.07 0.48
## 4104 0.18 0.00 0.03 0.48
## 4105 0.03 0.00 0.04 0.48
## 4106 0.00 0.00 0.04 0.48
## 4107 0.18 0.00 0.03 0.48
## 4108 0.36 0.00 0.04 0.48
## 4109 0.15 0.00 0.10 0.48
## 4110 0.07 0.13 0.03 0.48
## 4111 0.21 0.00 0.05 0.48
## 4112 0.24 0.03 0.12 0.48
## 4113 0.18 0.00 0.06 0.48
## 4114 0.01 0.00 0.03 0.48
## 4115 0.04 0.00 0.00 0.48
## 4116 0.06 0.11 0.06 0.48
## 4117 0.02 0.00 0.07 0.48
## 4118 0.18 0.00 0.06 0.48
## 4119 0.26 0.00 0.04 0.48
## 4120 0.07 0.00 0.00 0.48
## 4121 0.18 0.00 0.03 0.48
## 4122 0.11 0.06 0.05 0.48
## 4123 0.43 0.00 0.05 0.48
## 4124 0.18 0.00 0.06 0.48
## 4125 0.24 0.00 0.05 0.48
## 4126 0.18 0.00 0.04 0.48
## 4127 0.25 0.01 0.05 0.48
## 4128 0.00 0.00 0.03 0.48
## 4129 0.01 0.07 0.02 0.48
## 4130 0.18 0.00 0.03 0.48
## 4131 0.02 0.00 0.04 0.48
## 4132 0.13 0.00 0.01 0.48
## 4133 0.01 0.31 0.02 0.48
## 4134 0.28 0.00 0.06 0.48
## 4135 0.06 0.27 0.02 0.48
## 4136 0.19 0.01 0.04 0.48
## 4137 0.11 0.00 0.02 0.48
## 4138 0.27 0.01 0.00 0.48
## 4139 0.05 0.00 0.24 0.48
## 4140 0.03 0.00 0.00 0.48
## 4141 0.40 0.00 0.01 0.48
## 4142 0.03 0.04 0.04 0.48
## 4143 0.18 0.00 0.06 0.48
## 4144 0.09 0.00 0.04 0.48
## 4145 0.27 0.00 0.06 0.48
## 4147 0.11 0.19 0.04 0.47
## 4148 0.02 0.00 0.01 0.47
## 4149 0.16 0.04 0.03 0.47
## 4150 0.02 0.00 0.00 0.47
## 4151 0.11 0.18 0.03 0.47
## 4153 0.16 0.01 0.07 0.47
## 4154 0.17 0.01 0.05 0.47
## 4155 0.18 0.00 0.06 0.47
## 4156 0.10 0.03 0.03 0.47
## 4157 0.02 0.00 0.06 0.47
## 4158 0.23 0.00 0.05 0.47
## 4159 0.01 0.00 0.04 0.47
## 4160 0.10 0.00 0.04 0.47
## 4161 0.00 0.47 0.00 0.47
## 4162 0.18 0.00 0.03 0.47
## 4163 0.04 0.03 0.04 0.47
## 4164 0.16 0.09 0.08 0.47
## 4165 0.17 0.00 0.08 0.47
## 4166 0.18 0.00 0.03 0.47
## 4167 0.18 0.00 0.06 0.47
## 4168 0.16 0.04 0.06 0.47
## 4169 0.28 0.00 0.04 0.47
## 4170 0.13 0.00 0.04 0.47
## 4171 0.00 0.47 0.00 0.47
## 4172 0.04 0.38 0.01 0.47
## 4173 0.01 0.00 0.04 0.47
## 4174 0.21 0.00 0.04 0.47
## 4175 0.00 0.46 0.01 0.47
## 4176 0.03 0.39 0.01 0.47
## 4177 0.18 0.00 0.06 0.47
## 4178 0.02 0.00 0.04 0.47
## 4179 0.30 0.05 0.12 0.47
## 4180 0.30 0.01 0.12 0.47
## 4181 0.45 0.00 0.02 0.47
## 4182 0.22 0.02 0.12 0.47
## 4183 0.00 0.47 0.00 0.47
## 4184 0.02 0.00 0.04 0.47
## 4185 0.25 0.00 0.08 0.47
## 4186 0.18 0.00 0.06 0.47
## 4187 0.06 0.08 0.05 0.47
## 4188 0.17 0.00 0.01 0.47
## 4189 0.08 0.00 0.01 0.47
## 4190 0.00 0.44 0.03 0.47
## 4191 0.08 0.00 0.01 0.47
## 4192 0.09 0.00 0.04 0.47
## 4193 0.29 0.00 0.18 0.47
## 4194 0.03 0.10 0.03 0.47
## 4195 0.02 0.00 0.00 0.47
## 4196 0.13 0.01 0.04 0.47
## 4197 0.13 0.00 0.04 0.47
## 4198 0.18 0.00 0.06 0.47
## 4199 0.10 0.00 0.02 0.47
## 4201 0.05 0.00 0.05 0.47
## 4202 0.33 0.00 0.10 0.47
## 4203 0.18 0.00 0.03 0.47
## 4204 0.00 0.00 0.04 0.47
## 4205 0.00 0.00 0.03 0.47
## 4206 0.00 0.47 0.00 0.47
## 4207 0.00 0.47 0.00 0.47
## 4208 0.38 0.00 0.09 0.47
## 4209 0.03 0.00 0.17 0.47
## 4210 0.18 0.00 0.06 0.47
## 4211 0.07 0.00 0.04 0.47
## 4212 0.12 0.00 0.01 0.47
## 4213 0.01 0.00 0.06 0.47
## 4214 0.01 0.46 0.00 0.47
## 4215 0.18 0.00 0.03 0.47
## 4216 0.41 0.00 0.06 0.47
## 4217 0.12 0.00 0.01 0.47
## 4218 0.15 0.00 0.07 0.47
## 4219 0.00 0.22 0.02 0.47
## 4220 0.01 0.00 0.03 0.47
## 4221 0.18 0.00 0.06 0.47
## 4222 0.09 0.00 0.01 0.47
## 4223 0.08 0.07 0.01 0.47
## 4224 0.01 0.00 0.00 0.47
## 4225 0.18 0.00 0.06 0.46
## 4226 0.18 0.00 0.06 0.46
## 4227 0.15 0.00 0.05 0.46
## 4228 0.12 0.00 0.01 0.46
## 4229 0.06 0.00 0.05 0.46
## 4230 0.09 0.12 0.01 0.46
## 4231 0.11 0.00 0.02 0.46
## 4232 0.12 0.00 0.01 0.46
## 4234 0.00 0.00 0.03 0.46
## 4235 0.17 0.00 0.03 0.46
## 4236 0.03 0.00 0.04 0.46
## 4237 0.17 0.01 0.07 0.46
## 4238 0.12 0.00 0.01 0.46
## 4239 0.15 0.06 0.05 0.46
## 4240 0.12 0.00 0.09 0.46
## 4241 0.00 0.46 0.00 0.46
## 4242 0.10 0.20 0.03 0.46
## 4243 0.00 0.46 0.00 0.46
## 4244 0.12 0.00 0.01 0.46
## 4245 0.29 0.00 0.05 0.46
## 4246 0.25 0.00 0.09 0.46
## 4247 0.12 0.00 0.01 0.46
## 4248 0.03 0.21 0.02 0.46
## 4249 0.03 0.02 0.04 0.46
## 4250 0.04 0.00 0.05 0.46
## 4251 0.16 0.00 0.04 0.46
## 4252 0.18 0.00 0.06 0.46
## 4253 0.01 0.00 0.06 0.46
## 4254 0.06 0.00 0.04 0.46
## 4255 0.09 0.00 0.04 0.46
## 4256 0.01 0.00 0.06 0.46
## 4257 0.12 0.00 0.01 0.46
## 4258 0.19 0.00 0.08 0.46
## 4259 0.17 0.00 0.03 0.46
## 4260 0.14 0.00 0.09 0.46
## 4261 0.00 0.00 0.03 0.46
## 4262 0.16 0.24 0.01 0.46
## 4263 0.17 0.00 0.03 0.46
## 4264 0.16 0.00 0.04 0.46
## 4265 0.01 0.00 0.06 0.46
## 4266 0.25 0.03 0.09 0.46
## 4267 0.12 0.00 0.04 0.46
## 4268 0.03 0.00 0.00 0.46
## 4269 0.18 0.00 0.06 0.46
## 4270 0.18 0.00 0.06 0.46
## 4271 0.12 0.00 0.01 0.46
## 4272 0.12 0.00 0.01 0.46
## 4273 0.19 0.00 0.07 0.46
## 4274 0.28 0.00 0.07 0.46
## 4275 0.01 0.12 0.03 0.46
## 4276 0.00 0.00 0.03 0.46
## 4277 0.09 0.00 0.04 0.46
## 4278 0.16 0.00 0.04 0.46
## 4279 0.05 0.00 0.03 0.46
## 4280 0.17 0.00 0.06 0.46
## 4281 0.00 0.46 0.00 0.46
## 4282 0.23 0.00 0.05 0.46
## 4283 0.24 0.00 0.12 0.46
## 4284 0.18 0.00 0.04 0.46
## 4285 0.12 0.00 0.04 0.46
## 4286 0.17 0.00 0.03 0.46
## 4287 0.13 0.00 0.04 0.46
## 4288 0.10 0.23 0.05 0.46
## 4289 0.17 0.00 0.03 0.46
## 4290 0.17 0.00 0.06 0.46
## 4291 0.38 0.01 0.06 0.46
## 4292 0.00 0.00 0.04 0.46
## 4293 0.17 0.00 0.05 0.46
## 4294 0.00 0.46 0.00 0.46
## 4295 0.11 0.17 0.04 0.46
## 4296 0.23 0.00 0.04 0.46
## 4297 0.00 0.45 0.01 0.46
## 4298 0.11 0.07 0.05 0.46
## 4299 0.00 0.00 0.03 0.46
## 4300 0.05 0.34 0.01 0.46
## 4301 0.20 0.00 0.04 0.46
## 4302 0.08 0.00 0.02 0.46
## 4303 0.00 0.00 0.03 0.46
## 4304 0.17 0.00 0.03 0.46
## 4305 0.02 0.01 0.04 0.46
## 4306 0.16 0.03 0.07 0.46
## 4307 0.35 0.00 0.10 0.46
## 4308 0.10 0.15 0.07 0.46
## 4309 0.00 0.45 0.00 0.45
## 4310 0.15 0.00 0.04 0.45
## 4311 0.03 0.38 0.02 0.45
## 4312 0.12 0.00 0.01 0.45
## 4313 0.13 0.09 0.08 0.45
## 4314 0.17 0.00 0.03 0.45
## 4315 0.21 0.00 0.04 0.45
## 4316 0.00 0.00 0.03 0.45
## 4317 0.00 0.45 0.00 0.45
## 4318 0.25 0.01 0.08 0.45
## 4319 0.00 0.45 0.00 0.45
## 4320 0.09 0.02 0.01 0.45
## 4321 0.06 0.00 0.03 0.45
## 4322 0.10 0.00 0.02 0.45
## 4323 0.00 0.45 0.00 0.45
## 4324 0.00 0.00 0.03 0.45
## 4325 0.06 0.16 0.01 0.45
## 4326 0.37 0.00 0.05 0.45
## 4327 0.17 0.00 0.06 0.45
## 4328 0.16 0.02 0.07 0.45
## 4329 0.03 0.00 0.03 0.45
## 4330 0.21 0.07 0.03 0.45
## 4332 0.01 0.00 0.03 0.45
## 4333 0.01 0.00 0.06 0.45
## 4334 0.26 0.00 0.05 0.45
## 4335 0.00 0.00 0.03 0.45
## 4336 0.03 0.00 0.03 0.45
## 4337 0.11 0.00 0.04 0.45
## 4338 0.03 0.00 0.00 0.45
## 4339 0.17 0.00 0.03 0.45
## 4340 0.17 0.00 0.06 0.45
## 4341 0.00 0.42 0.03 0.45
## 4342 0.28 0.00 0.05 0.45
## 4343 0.17 0.00 0.06 0.45
## 4344 0.15 0.00 0.04 0.45
## 4345 0.10 0.00 0.02 0.45
## 4346 0.02 0.00 0.03 0.45
## 4347 0.02 0.00 0.00 0.45
## 4348 0.13 0.00 0.06 0.45
## 4349 0.11 0.01 0.04 0.45
## 4350 0.01 0.00 0.03 0.45
## 4351 0.21 0.00 0.07 0.45
## 4352 0.00 0.00 0.03 0.45
## 4353 0.18 0.15 0.05 0.45
## 4354 0.17 0.00 0.03 0.45
## 4355 0.14 0.00 0.04 0.45
## 4356 0.26 0.05 0.05 0.45
## 4357 0.12 0.00 0.01 0.45
## 4358 0.26 0.00 0.08 0.45
## 4359 0.00 0.45 0.00 0.45
## 4360 0.02 0.32 0.01 0.45
## 4361 0.00 0.45 0.00 0.45
## 4362 0.22 0.10 0.05 0.45
## 4363 0.17 0.00 0.06 0.45
## 4364 0.00 0.45 0.00 0.45
## 4365 0.08 0.00 0.01 0.45
## 4366 0.08 0.00 0.01 0.45
## 4367 0.13 0.07 0.06 0.45
## 4368 0.14 0.00 0.04 0.45
## 4369 0.33 0.00 0.03 0.45
## 4370 0.01 0.00 0.03 0.45
## 4371 0.00 0.00 0.03 0.45
## 4372 0.12 0.00 0.01 0.45
## 4373 0.03 0.00 0.20 0.45
## 4374 0.00 0.42 0.03 0.45
## 4375 0.19 0.00 0.05 0.45
## 4376 0.14 0.01 0.04 0.45
## 4377 0.12 0.00 0.01 0.45
## 4378 0.24 0.00 0.05 0.45
## 4380 0.00 0.42 0.03 0.45
## 4382 0.06 0.00 0.39 0.45
## 4383 0.13 0.06 0.08 0.45
## 4384 0.00 0.42 0.03 0.45
## 4385 0.02 0.00 0.34 0.45
## 4386 0.02 0.00 0.03 0.45
## 4387 0.03 0.36 0.01 0.45
## 4388 0.05 0.00 0.05 0.45
## 4389 0.17 0.00 0.03 0.45
## 4390 0.10 0.00 0.02 0.45
## 4391 0.04 0.00 0.03 0.45
## 4392 0.26 0.00 0.14 0.45
## 4393 0.09 0.00 0.01 0.45
## 4394 0.02 0.00 0.00 0.45
## 4395 0.09 0.00 0.01 0.45
## 4396 0.00 0.31 0.01 0.45
## 4397 0.07 0.00 0.01 0.45
## 4398 0.17 0.00 0.03 0.45
## 4399 0.17 0.00 0.06 0.45
## 4400 0.09 0.19 0.03 0.45
## 4401 0.16 0.13 0.03 0.45
## 4402 0.22 0.00 0.05 0.45
## 4403 0.03 0.00 0.00 0.45
## 4404 0.17 0.00 0.06 0.45
## 4405 0.12 0.00 0.01 0.45
## 4406 0.22 0.00 0.12 0.45
## 4407 0.16 0.00 0.04 0.45
## 4408 0.00 0.00 0.03 0.45
## 4409 0.11 0.00 0.04 0.45
## 4410 0.17 0.00 0.06 0.44
## 4411 0.15 0.00 0.08 0.44
## 4412 0.01 0.00 0.06 0.44
## 4413 0.01 0.00 0.06 0.44
## 4414 0.33 0.02 0.03 0.44
## 4415 0.02 0.00 0.00 0.44
## 4416 0.17 0.00 0.06 0.44
## 4417 0.01 0.00 0.06 0.44
## 4418 0.21 0.00 0.04 0.44
## 4419 0.11 0.00 0.04 0.44
## 4420 0.17 0.00 0.06 0.44
## 4421 0.21 0.00 0.04 0.44
## 4422 0.17 0.00 0.06 0.44
## 4423 0.12 0.00 0.02 0.44
## 4424 0.00 0.00 0.03 0.44
## 4425 0.13 0.00 0.04 0.44
## 4426 0.20 0.03 0.08 0.44
## 4427 0.01 0.02 0.00 0.44
## 4428 0.17 0.00 0.06 0.44
## 4429 0.10 0.00 0.02 0.44
## 4430 0.13 0.01 0.04 0.44
## 4431 0.15 0.00 0.04 0.44
## 4432 0.00 0.41 0.03 0.44
## 4433 0.08 0.00 0.01 0.44
## 4434 0.01 0.00 0.06 0.44
## 4435 0.20 0.00 0.05 0.44
## 4436 0.15 0.00 0.04 0.44
## 4437 0.10 0.00 0.02 0.44
## 4438 0.00 0.43 0.01 0.44
## 4439 0.17 0.00 0.03 0.44
## 4440 0.22 0.00 0.04 0.44
## 4441 0.05 0.30 0.03 0.44
## 4442 0.10 0.11 0.05 0.44
## 4443 0.12 0.00 0.04 0.44
## 4444 0.10 0.00 0.02 0.44
## 4445 0.29 0.00 0.05 0.44
## 4446 0.01 0.00 0.03 0.44
## 4447 0.04 0.01 0.04 0.44
## 4448 0.00 0.44 0.00 0.44
## 4449 0.17 0.00 0.03 0.44
## 4450 0.17 0.00 0.03 0.44
## 4451 0.00 0.44 0.00 0.44
## 4452 0.03 0.15 0.10 0.44
## 4453 0.08 0.00 0.01 0.44
## 4454 0.14 0.06 0.04 0.44
## 4455 0.00 0.00 0.03 0.44
## 4456 0.18 0.00 0.07 0.44
## 4457 0.09 0.00 0.01 0.44
## 4458 0.00 0.44 0.00 0.44
## 4459 0.17 0.00 0.03 0.44
## 4460 0.00 0.00 0.03 0.44
## 4461 0.00 0.00 0.03 0.44
## 4462 0.07 0.12 0.06 0.44
## 4463 0.08 0.00 0.02 0.44
## 4464 0.00 0.44 0.00 0.44
## 4465 0.17 0.00 0.03 0.44
## 4466 0.00 0.43 0.01 0.44
## 4467 0.14 0.00 0.04 0.44
## 4468 0.09 0.00 0.01 0.44
## 4469 0.12 0.00 0.01 0.44
## 4471 0.00 0.44 0.00 0.44
## 4472 0.00 0.00 0.02 0.44
## 4474 0.12 0.00 0.06 0.44
## 4475 0.09 0.00 0.01 0.44
## 4476 0.12 0.00 0.01 0.44
## 4477 0.11 0.01 0.03 0.44
## 4478 0.09 0.00 0.01 0.44
## 4479 0.12 0.00 0.01 0.44
## 4480 0.01 0.00 0.06 0.44
## 4481 0.06 0.00 0.38 0.44
## 4482 0.00 0.44 0.00 0.44
## 4483 0.00 0.00 0.03 0.44
## 4484 0.00 0.44 0.00 0.44
## 4485 0.00 0.44 0.00 0.44
## 4486 0.17 0.00 0.06 0.44
## 4487 0.00 0.00 0.03 0.44
## 4488 0.01 0.00 0.06 0.44
## 4489 0.09 0.08 0.07 0.44
## 4490 0.00 0.26 0.01 0.44
## 4491 0.07 0.00 0.02 0.44
## 4492 0.00 0.00 0.03 0.44
## 4493 0.10 0.07 0.01 0.43
## 4494 0.18 0.00 0.07 0.43
## 4495 0.13 0.06 0.03 0.43
## 4496 0.01 0.00 0.03 0.43
## 4497 0.17 0.00 0.06 0.43
## 4498 0.02 0.00 0.00 0.43
## 4499 0.12 0.00 0.01 0.43
## 4500 0.00 0.00 0.26 0.43
## 4501 0.16 0.00 0.03 0.43
## 4502 0.09 0.00 0.02 0.43
## 4503 0.12 0.00 0.01 0.43
## 4504 0.36 0.00 0.06 0.43
## 4505 0.01 0.00 0.06 0.43
## 4506 0.21 0.01 0.08 0.43
## 4507 0.00 0.00 0.03 0.43
## 4508 0.00 0.43 0.00 0.43
## 4509 0.02 0.00 0.02 0.43
## 4510 0.18 0.00 0.04 0.43
## 4511 0.04 0.00 0.04 0.43
## 4512 0.03 0.00 0.03 0.43
## 4513 0.17 0.00 0.06 0.43
## 4514 0.09 0.14 0.03 0.43
## 4515 0.16 0.00 0.03 0.43
## 4516 0.20 0.00 0.07 0.43
## 4517 0.17 0.00 0.06 0.43
## 4518 0.02 0.00 0.00 0.43
## 4519 0.17 0.00 0.06 0.43
## 4520 0.03 0.10 0.02 0.43
## 4521 0.11 0.00 0.01 0.43
## 4522 0.07 0.17 0.01 0.43
## 4523 0.00 0.43 0.00 0.43
## 4524 0.15 0.01 0.04 0.43
## 4525 0.07 0.21 0.03 0.43
## 4526 0.19 0.00 0.04 0.43
## 4527 0.11 0.00 0.01 0.43
## 4528 0.04 0.00 0.24 0.43
## 4529 0.16 0.00 0.06 0.43
## 4530 0.15 0.00 0.04 0.43
## 4531 0.05 0.00 0.03 0.43
## 4532 0.14 0.00 0.01 0.43
## 4533 0.06 0.07 0.06 0.43
## 4534 0.22 0.00 0.06 0.43
## 4535 0.01 0.00 0.03 0.43
## 4536 0.03 0.04 0.03 0.43
## 4538 0.01 0.00 0.06 0.43
## 4539 0.38 0.00 0.05 0.43
## 4540 0.16 0.00 0.05 0.43
## 4541 0.07 0.24 0.03 0.43
## 4542 0.00 0.03 0.03 0.43
## 4543 0.07 0.25 0.02 0.43
## 4544 0.08 0.09 0.05 0.43
## 4545 0.19 0.00 0.08 0.43
## 4546 0.01 0.23 0.02 0.43
## 4547 0.16 0.00 0.05 0.43
## 4548 0.05 0.29 0.02 0.43
## 4549 0.34 0.00 0.07 0.43
## 4550 0.17 0.00 0.04 0.43
## 4551 0.09 0.00 0.01 0.43
## 4552 0.00 0.00 0.03 0.43
## 4553 0.01 0.00 0.03 0.43
## 4554 0.11 0.00 0.01 0.43
## 4555 0.18 0.00 0.03 0.43
## 4556 0.10 0.00 0.05 0.43
## 4557 0.08 0.00 0.01 0.43
## 4558 0.02 0.00 0.03 0.43
## 4559 0.00 0.00 0.03 0.43
## 4560 0.14 0.00 0.04 0.43
## 4561 0.16 0.00 0.05 0.43
## 4562 0.16 0.00 0.03 0.43
## 4563 0.17 0.00 0.07 0.43
## 4564 0.16 0.00 0.05 0.43
## 4565 0.17 0.00 0.10 0.43
## 4566 0.20 0.00 0.12 0.43
## 4567 0.00 0.00 0.03 0.42
## 4568 0.00 0.42 0.00 0.42
## 4569 0.00 0.42 0.00 0.42
## 4570 0.09 0.00 0.01 0.42
## 4571 0.16 0.00 0.04 0.42
## 4572 0.19 0.00 0.11 0.42
## 4573 0.02 0.16 0.02 0.42
## 4574 0.16 0.00 0.05 0.42
## 4575 0.05 0.22 0.01 0.42
## 4576 0.13 0.00 0.06 0.42
## 4577 0.01 0.00 0.06 0.42
## 4578 0.16 0.00 0.05 0.42
## 4579 0.09 0.00 0.01 0.42
## 4580 0.10 0.00 0.01 0.42
## 4581 0.15 0.00 0.04 0.42
## 4582 0.16 0.00 0.05 0.42
## 4583 0.16 0.00 0.03 0.42
## 4584 0.00 0.42 0.00 0.42
## 4585 0.16 0.00 0.03 0.42
## 4586 0.13 0.04 0.04 0.42
## 4587 0.08 0.00 0.01 0.42
## 4588 0.23 0.00 0.04 0.42
## 4589 0.00 0.41 0.01 0.42
## 4590 0.00 0.00 0.03 0.42
## 4591 0.04 0.01 0.04 0.42
## 4592 0.20 0.10 0.11 0.42
## 4593 0.16 0.00 0.03 0.42
## 4594 0.16 0.00 0.05 0.42
## 4595 0.16 0.00 0.03 0.42
## 4596 0.01 0.16 0.03 0.42
## 4597 0.19 0.00 0.04 0.42
## 4598 0.01 0.00 0.03 0.42
## 4599 0.00 0.00 0.00 0.42
## 4600 0.16 0.00 0.03 0.42
## 4601 0.00 0.42 0.00 0.42
## 4602 0.09 0.00 0.02 0.42
## 4603 0.11 0.00 0.01 0.42
## 4604 0.16 0.00 0.05 0.42
## 4605 0.16 0.00 0.05 0.42
## 4606 0.16 0.00 0.05 0.42
## 4607 0.03 0.04 0.03 0.42
## 4608 0.01 0.00 0.06 0.42
## 4609 0.17 0.03 0.04 0.42
## 4610 0.11 0.00 0.01 0.42
## 4611 0.02 0.00 0.03 0.42
## 4612 0.11 0.00 0.01 0.42
## 4613 0.16 0.00 0.03 0.42
## 4614 0.00 0.00 0.03 0.42
## 4615 0.00 0.39 0.03 0.42
## 4616 0.00 0.00 0.03 0.42
## 4617 0.00 0.42 0.00 0.42
## 4618 0.05 0.00 0.02 0.42
## 4619 0.00 0.42 0.00 0.42
## 4620 0.08 0.12 0.03 0.42
## 4621 0.16 0.00 0.05 0.42
## 4622 0.06 0.00 0.00 0.42
## 4623 0.07 0.00 0.00 0.42
## 4624 0.07 0.00 0.00 0.42
## 4625 0.00 0.39 0.03 0.42
## 4626 0.07 0.00 0.00 0.42
## 4627 0.08 0.00 0.01 0.42
## 4628 0.16 0.00 0.07 0.42
## 4629 0.25 0.02 0.06 0.42
## 4630 0.01 0.00 0.06 0.42
## 4631 0.15 0.00 0.03 0.42
## 4632 0.09 0.00 0.02 0.42
## 4633 0.08 0.00 0.01 0.42
## 4634 0.03 0.00 0.03 0.42
## 4635 0.00 0.42 0.00 0.42
## 4636 0.11 0.00 0.01 0.42
## 4637 0.16 0.00 0.05 0.42
## 4638 0.00 0.42 0.00 0.42
## 4639 0.08 0.00 0.01 0.42
## 4640 0.00 0.00 0.03 0.42
## 4641 0.16 0.00 0.05 0.42
## 4642 0.03 0.00 0.03 0.42
## 4643 0.03 0.00 0.03 0.42
## 4644 0.10 0.16 0.03 0.42
## 4645 0.00 0.00 0.03 0.42
## 4646 0.16 0.00 0.05 0.42
## 4647 0.08 0.00 0.01 0.42
## 4648 0.14 0.05 0.05 0.42
## 4649 0.12 0.03 0.05 0.42
## 4650 0.05 0.13 0.02 0.42
## 4651 0.02 0.35 0.03 0.42
## 4652 0.11 0.00 0.01 0.42
## 4653 0.09 0.00 0.01 0.42
## 4654 0.17 0.03 0.04 0.42
## 4655 0.09 0.00 0.01 0.42
## 4656 0.13 0.00 0.08 0.42
## 4657 0.00 0.00 0.03 0.42
## 4658 0.11 0.09 0.03 0.42
## 4659 0.12 0.11 0.03 0.42
## 4660 0.21 0.00 0.08 0.42
## 4661 0.00 0.25 0.01 0.42
## 4662 0.18 0.00 0.07 0.42
## 4663 0.09 0.00 0.01 0.42
## 4664 0.28 0.00 0.14 0.42
## 4665 0.16 0.00 0.05 0.42
## 4666 0.12 0.10 0.03 0.42
## 4667 0.11 0.12 0.03 0.42
## 4668 0.16 0.00 0.05 0.42
## 4669 0.09 0.04 0.07 0.42
## 4670 0.16 0.00 0.05 0.42
## 4671 0.00 0.42 0.00 0.42
## 4672 0.05 0.06 0.04 0.42
## 4673 0.10 0.00 0.02 0.42
## 4674 0.02 0.00 0.03 0.41
## 4675 0.16 0.00 0.05 0.41
## 4676 0.12 0.11 0.04 0.41
## 4677 0.12 0.00 0.04 0.41
## 4678 0.00 0.41 0.00 0.41
## 4679 0.16 0.00 0.05 0.41
## 4680 0.11 0.00 0.01 0.41
## 4681 0.16 0.00 0.05 0.41
## 4682 0.11 0.00 0.01 0.41
## 4683 0.07 0.15 0.06 0.41
## 4685 0.00 0.00 0.00 0.41
## 4686 0.21 0.05 0.11 0.41
## 4687 0.00 0.41 0.00 0.41
## 4688 0.16 0.00 0.03 0.41
## 4689 0.01 0.00 0.06 0.41
## 4690 0.39 0.00 0.02 0.41
## 4691 0.01 0.00 0.03 0.41
## 4692 0.16 0.00 0.05 0.41
## 4693 0.16 0.00 0.03 0.41
## 4694 0.13 0.00 0.02 0.41
## 4695 0.00 0.41 0.00 0.41
## 4696 0.16 0.00 0.03 0.41
## 4697 0.16 0.00 0.03 0.41
## 4698 0.00 0.39 0.03 0.41
## 4699 0.17 0.02 0.06 0.41
## 4700 0.00 0.41 0.00 0.41
## 4701 0.10 0.00 0.03 0.41
## 4702 0.15 0.00 0.09 0.41
## 4703 0.19 0.00 0.04 0.41
## 4704 0.22 0.00 0.05 0.41
## 4705 0.16 0.00 0.04 0.41
## 4706 0.16 0.00 0.05 0.41
## 4707 0.00 0.41 0.00 0.41
## 4708 0.03 0.04 0.03 0.41
## 4709 0.08 0.09 0.04 0.41
## 4710 0.16 0.00 0.05 0.41
## 4711 0.08 0.00 0.06 0.41
## 4712 0.00 0.41 0.00 0.41
## 4713 0.01 0.00 0.06 0.41
## 4714 0.10 0.00 0.04 0.41
## 4715 0.03 0.00 0.03 0.41
## 4716 0.00 0.00 0.04 0.41
## 4717 0.16 0.00 0.03 0.41
## 4718 0.23 0.00 0.09 0.41
## 4719 0.00 0.41 0.00 0.41
## 4720 0.10 0.00 0.07 0.41
## 4721 0.02 0.00 0.03 0.41
## 4722 0.00 0.41 0.00 0.41
## 4723 0.03 0.00 0.03 0.41
## 4724 0.07 0.00 0.06 0.41
## 4725 0.08 0.00 0.03 0.41
## 4726 0.16 0.00 0.03 0.41
## 4727 0.14 0.00 0.04 0.41
## 4728 0.00 0.41 0.00 0.41
## 4729 0.02 0.25 0.04 0.41
## 4730 0.07 0.00 0.00 0.41
## 4731 0.27 0.00 0.06 0.41
## 4732 0.16 0.00 0.05 0.41
## 4733 0.26 0.00 0.09 0.41
## 4734 0.16 0.00 0.05 0.41
## 4735 0.09 0.16 0.03 0.41
## 4736 0.00 0.00 0.02 0.41
## 4737 0.19 0.00 0.04 0.41
## 4738 0.13 0.00 0.04 0.41
## 4739 0.00 0.38 0.03 0.41
## 4740 0.15 0.00 0.07 0.41
## 4741 0.23 0.00 0.04 0.41
## 4742 0.11 0.00 0.04 0.41
## 4743 0.18 0.00 0.07 0.41
## 4744 0.06 0.00 0.20 0.41
## 4745 0.10 0.08 0.03 0.41
## 4746 0.12 0.04 0.03 0.41
## 4747 0.02 0.01 0.03 0.41
## 4748 0.08 0.19 0.03 0.41
## 4749 0.16 0.00 0.05 0.41
## 4750 0.08 0.00 0.01 0.41
## 4751 0.01 0.00 0.03 0.41
## 4752 0.01 0.00 0.06 0.41
## 4753 0.00 0.41 0.00 0.41
## 4754 0.15 0.00 0.03 0.41
## 4755 0.10 0.12 0.03 0.41
## 4756 0.01 0.00 0.06 0.41
## 4757 0.00 0.40 0.01 0.41
## 4758 0.02 0.00 0.03 0.41
## 4759 0.16 0.00 0.04 0.41
## 4760 0.04 0.00 0.03 0.41
## 4761 0.12 0.00 0.06 0.41
## 4762 0.09 0.00 0.03 0.41
## 4763 0.17 0.00 0.06 0.41
## 4764 0.00 0.41 0.00 0.41
## 4765 0.02 0.00 0.16 0.41
## 4766 0.00 0.41 0.00 0.41
## 4767 0.01 0.00 0.06 0.41
## 4768 0.00 0.41 0.00 0.41
## 4769 0.16 0.00 0.05 0.41
## 4770 0.13 0.00 0.04 0.41
## 4771 0.11 0.00 0.04 0.41
## 4772 0.15 0.00 0.03 0.41
## 4773 0.01 0.00 0.06 0.41
## 4774 0.31 0.00 0.07 0.41
## 4775 0.12 0.06 0.05 0.41
## 4776 0.18 0.00 0.04 0.41
## 4777 0.00 0.00 0.03 0.41
## 4778 0.15 0.00 0.05 0.41
## 4779 0.15 0.00 0.03 0.40
## 4780 0.15 0.00 0.03 0.40
## 4781 0.02 0.00 0.00 0.40
## 4782 0.26 0.00 0.07 0.40
## 4783 0.13 0.26 0.01 0.40
## 4784 0.01 0.00 0.03 0.40
## 4785 0.02 0.00 0.00 0.40
## 4786 0.20 0.00 0.04 0.40
## 4787 0.06 0.16 0.06 0.40
## 4788 0.03 0.01 0.03 0.40
## 4789 0.08 0.00 0.01 0.40
## 4790 0.04 0.01 0.04 0.40
## 4791 0.20 0.00 0.08 0.40
## 4793 0.00 0.40 0.00 0.40
## 4794 0.21 0.00 0.08 0.40
## 4795 0.00 0.40 0.00 0.40
## 4796 0.01 0.00 0.05 0.40
## 4797 0.15 0.00 0.05 0.40
## 4799 0.00 0.00 0.03 0.40
## 4800 0.00 0.40 0.00 0.40
## 4801 0.20 0.02 0.08 0.40
## 4802 0.02 0.00 0.00 0.40
## 4803 0.15 0.00 0.05 0.40
## 4804 0.08 0.00 0.01 0.40
## 4805 0.03 0.04 0.03 0.40
## 4806 0.01 0.09 0.03 0.40
## 4807 0.00 0.40 0.00 0.40
## 4808 0.01 0.00 0.03 0.40
## 4809 0.15 0.00 0.05 0.40
## 4810 0.11 0.00 0.01 0.40
## 4811 0.00 0.38 0.03 0.40
## 4812 0.07 0.07 0.01 0.40
## 4813 0.15 0.00 0.03 0.40
## 4814 0.08 0.00 0.01 0.40
## 4815 0.08 0.00 0.04 0.40
## 4816 0.00 0.40 0.00 0.40
## 4817 0.06 0.00 0.03 0.40
## 4818 0.03 0.00 0.03 0.40
## 4819 0.08 0.08 0.03 0.40
## 4820 0.00 0.00 0.03 0.40
## 4821 0.14 0.00 0.04 0.40
## 4822 0.00 0.40 0.00 0.40
## 4823 0.15 0.00 0.03 0.40
## 4824 0.19 0.00 0.07 0.40
## 4825 0.01 0.00 0.27 0.40
## 4826 0.00 0.40 0.00 0.40
## 4827 0.07 0.00 0.00 0.40
## 4828 0.07 0.00 0.00 0.40
## 4829 0.03 0.00 0.00 0.40
## 4830 0.07 0.00 0.00 0.40
## 4831 0.15 0.00 0.05 0.40
## 4832 0.01 0.00 0.05 0.40
## 4833 0.15 0.00 0.03 0.40
## 4834 0.10 0.00 0.03 0.40
## 4835 0.30 0.00 0.04 0.40
## 4836 0.15 0.00 0.05 0.40
## 4837 0.01 0.00 0.05 0.40
## 4838 0.17 0.00 0.04 0.40
## 4839 0.15 0.00 0.05 0.40
## 4840 0.17 0.00 0.06 0.40
## 4841 0.11 0.00 0.01 0.40
## 4842 0.01 0.00 0.00 0.40
## 4843 0.07 0.00 0.01 0.40
## 4844 0.08 0.00 0.01 0.40
## 4845 0.14 0.00 0.04 0.40
## 4846 0.14 0.00 0.02 0.40
## 4847 0.15 0.00 0.03 0.40
## 4848 0.00 0.39 0.01 0.40
## 4849 0.11 0.00 0.01 0.40
## 4850 0.03 0.00 0.03 0.40
## 4851 0.05 0.00 0.03 0.40
## 4852 0.16 0.00 0.04 0.40
## 4853 0.14 0.04 0.03 0.40
## 4854 0.23 0.00 0.05 0.40
## 4855 0.15 0.00 0.03 0.40
## 4856 0.00 0.40 0.00 0.40
## 4857 0.12 0.01 0.03 0.40
## 4858 0.16 0.00 0.07 0.40
## 4860 0.08 0.00 0.01 0.40
## 4861 0.03 0.00 0.02 0.40
## 4862 0.00 0.37 0.03 0.40
## 4863 0.04 0.24 0.02 0.40
## 4864 0.15 0.00 0.05 0.40
## 4865 0.15 0.00 0.03 0.40
## 4867 0.12 0.00 0.06 0.40
## 4868 0.32 0.00 0.07 0.40
## 4869 0.00 0.40 0.00 0.40
## 4870 0.08 0.00 0.01 0.40
## 4871 0.10 0.00 0.03 0.40
## 4872 0.00 0.00 0.03 0.40
## 4873 0.19 0.00 0.03 0.40
## 4874 0.06 0.01 0.03 0.40
## 4875 0.00 0.40 0.00 0.40
## 4876 0.13 0.00 0.04 0.40
## 4877 0.01 0.00 0.05 0.40
## 4878 0.15 0.00 0.05 0.39
## 4879 0.15 0.00 0.07 0.39
## 4880 0.15 0.00 0.05 0.39
## 4881 0.11 0.00 0.02 0.39
## 4882 0.23 0.01 0.09 0.39
## 4883 0.17 0.00 0.03 0.39
## 4884 0.15 0.01 0.05 0.39
## 4885 0.18 0.00 0.06 0.39
## 4886 0.01 0.00 0.00 0.39
## 4887 0.00 0.00 0.03 0.39
## 4888 0.14 0.03 0.06 0.39
## 4889 0.18 0.00 0.07 0.39
## 4890 0.01 0.00 0.03 0.39
## 4891 0.00 0.00 0.03 0.39
## 4892 0.00 0.39 0.00 0.39
## 4893 0.15 0.00 0.03 0.39
## 4894 0.15 0.00 0.03 0.39
## 4895 0.02 0.00 0.00 0.39
## 4896 0.00 0.39 0.00 0.39
## 4897 0.10 0.00 0.01 0.39
## 4898 0.02 0.00 0.03 0.39
## 4899 0.01 0.01 0.05 0.39
## 4900 0.17 0.00 0.09 0.39
## 4901 0.08 0.00 0.01 0.39
## 4902 0.14 0.04 0.04 0.39
## 4903 0.00 0.39 0.00 0.39
## 4904 0.00 0.00 0.00 0.39
## 4905 0.26 0.00 0.05 0.39
## 4906 0.00 0.00 0.03 0.39
## 4907 0.12 0.00 0.03 0.39
## 4908 0.07 0.03 0.06 0.39
## 4909 0.02 0.00 0.00 0.39
## 4910 0.00 0.00 0.03 0.39
## 4911 0.05 0.16 0.04 0.39
## 4912 0.15 0.00 0.03 0.39
## 4913 0.00 0.00 0.03 0.39
## 4914 0.08 0.00 0.01 0.39
## 4915 0.16 0.00 0.05 0.39
## 4916 0.01 0.03 0.05 0.39
## 4917 0.00 0.37 0.03 0.39
## 4918 0.04 0.15 0.02 0.39
## 4919 0.17 0.01 0.04 0.39
## 4920 0.19 0.00 0.06 0.39
## 4921 0.13 0.00 0.04 0.39
## 4922 0.17 0.00 0.03 0.39
## 4923 0.02 0.00 0.03 0.39
## 4924 0.17 0.00 0.04 0.39
## 4925 0.06 0.05 0.03 0.39
## 4926 0.00 0.39 0.00 0.39
## 4927 0.32 0.00 0.07 0.39
## 4928 0.08 0.00 0.01 0.39
## 4929 0.01 0.00 0.07 0.39
## 4930 0.10 0.00 0.01 0.39
## 4931 0.03 0.00 0.00 0.39
## 4932 0.00 0.34 0.05 0.39
## 4933 0.07 0.00 0.00 0.39
## 4934 0.07 0.00 0.00 0.39
## 4936 0.06 0.09 0.01 0.39
## 4937 0.32 0.00 0.07 0.39
## 4938 0.15 0.00 0.05 0.39
## 4939 0.00 0.00 0.03 0.39
## 4940 0.13 0.06 0.04 0.39
## 4941 0.15 0.00 0.05 0.39
## 4942 0.00 0.00 0.02 0.39
## 4943 0.12 0.00 0.04 0.39
## 4944 0.14 0.00 0.03 0.39
## 4945 0.00 0.39 0.00 0.39
## 4946 0.15 0.00 0.05 0.39
## 4947 0.02 0.00 0.04 0.39
## 4948 0.11 0.00 0.04 0.39
## 4949 0.24 0.00 0.08 0.39
## 4950 0.02 0.00 0.03 0.39
## 4951 0.15 0.00 0.05 0.39
## 4952 0.15 0.00 0.07 0.39
## 4953 0.00 0.39 0.00 0.39
## 4954 0.13 0.00 0.03 0.39
## 4955 0.00 0.39 0.00 0.39
## 4956 0.01 0.00 0.03 0.39
## 4957 0.01 0.00 0.03 0.39
## 4958 0.10 0.00 0.01 0.39
## 4959 0.15 0.00 0.05 0.39
## 4960 0.00 0.00 0.04 0.39
## 4961 0.00 0.39 0.00 0.39
## 4962 0.15 0.00 0.05 0.39
## 4963 0.08 0.00 0.01 0.39
## 4964 0.09 0.00 0.03 0.39
## 4965 0.00 0.00 0.03 0.39
## 4966 0.15 0.00 0.05 0.39
## 4967 0.15 0.00 0.05 0.39
## 4968 0.02 0.00 0.00 0.39
## 4969 0.00 0.36 0.03 0.39
## 4970 0.05 0.20 0.01 0.39
## 4971 0.08 0.01 0.03 0.39
## 4972 0.15 0.00 0.04 0.39
## 4973 0.36 0.00 0.02 0.39
## 4974 0.10 0.00 0.01 0.39
## 4975 0.00 0.00 0.00 0.38
## 4976 0.17 0.03 0.06 0.38
## 4977 0.15 0.00 0.05 0.38
## 4978 0.04 0.28 0.01 0.38
## 4979 0.00 0.20 0.01 0.38
## 4980 0.15 0.00 0.03 0.38
## 4981 0.23 0.00 0.07 0.38
## 4982 0.00 0.38 0.00 0.38
## 4983 0.05 0.25 0.02 0.38
## 4984 0.00 0.38 0.00 0.38
## 4985 0.15 0.00 0.03 0.38
## 4986 0.05 0.12 0.05 0.38
## 4987 0.00 0.36 0.03 0.38
## 4988 0.11 0.00 0.04 0.38
## 4989 0.08 0.00 0.01 0.38
## 4990 0.15 0.00 0.05 0.38
## 4991 0.00 0.00 0.03 0.38
## 4992 0.12 0.06 0.03 0.38
## 4993 0.00 0.38 0.00 0.38
## 4994 0.18 0.00 0.03 0.38
## 4995 0.07 0.00 0.04 0.38
## 4996 0.35 0.00 0.03 0.38
## 4997 0.01 0.37 0.00 0.38
## 4998 0.17 0.00 0.07 0.38
## 4999 0.10 0.00 0.01 0.38
## 5000 0.04 0.19 0.03 0.38
## 5001 0.15 0.00 0.05 0.38
## 5002 0.08 0.00 0.01 0.38
## 5003 0.12 0.00 0.03 0.38
## 5004 0.00 0.31 0.01 0.38
## 5005 0.00 0.38 0.00 0.38
## 5006 0.10 0.00 0.01 0.38
## 5007 0.00 0.00 0.28 0.38
## 5008 0.15 0.00 0.05 0.38
## 5009 0.05 0.00 0.04 0.38
## 5010 0.00 0.38 0.00 0.38
## 5011 0.23 0.00 0.04 0.38
## 5012 0.00 0.00 0.03 0.38
## 5013 0.08 0.00 0.01 0.38
## 5014 0.11 0.00 0.06 0.38
## 5015 0.08 0.17 0.03 0.38
## 5016 0.20 0.00 0.03 0.38
## 5017 0.22 0.00 0.04 0.38
## 5018 0.14 0.00 0.02 0.38
## 5019 0.00 0.36 0.02 0.38
## 5020 0.15 0.00 0.05 0.38
## 5021 0.15 0.00 0.05 0.38
## 5022 0.00 0.38 0.00 0.38
## 5023 0.08 0.00 0.01 0.38
## 5024 0.15 0.00 0.05 0.38
## 5025 0.15 0.02 0.06 0.38
## 5026 0.10 0.00 0.01 0.38
## 5027 0.11 0.10 0.02 0.38
## 5028 0.15 0.00 0.05 0.38
## 5029 0.03 0.00 0.03 0.38
## 5030 0.04 0.00 0.04 0.38
## 5031 0.00 0.36 0.02 0.38
## 5032 0.05 0.25 0.02 0.38
## 5033 0.15 0.00 0.05 0.38
## 5034 0.00 0.38 0.00 0.38
## 5035 0.21 0.00 0.04 0.38
## 5036 0.15 0.00 0.05 0.38
## 5037 0.01 0.00 0.05 0.38
## 5038 0.00 0.00 0.17 0.38
## 5039 0.02 0.00 0.02 0.38
## 5040 0.15 0.01 0.06 0.38
## 5041 0.12 0.00 0.07 0.38
## 5042 0.23 0.00 0.04 0.38
## 5043 0.00 0.38 0.00 0.38
## 5044 0.14 0.00 0.02 0.38
## 5045 0.20 0.00 0.04 0.38
## 5046 0.08 0.00 0.01 0.38
## 5047 0.01 0.00 0.05 0.38
## 5048 0.14 0.00 0.02 0.38
## 5049 0.00 0.38 0.00 0.38
## 5050 0.15 0.00 0.09 0.38
## 5051 0.06 0.07 0.01 0.38
## 5052 0.00 0.38 0.00 0.38
## 5053 0.05 0.20 0.01 0.38
## 5054 0.14 0.00 0.02 0.38
## 5055 0.14 0.00 0.02 0.38
## 5056 0.09 0.00 0.03 0.38
## 5057 0.29 0.01 0.05 0.38
## 5058 0.16 0.00 0.06 0.38
## 5059 0.13 0.00 0.06 0.38
## 5060 0.00 0.00 0.26 0.38
## 5061 0.03 0.00 0.03 0.38
## 5063 0.00 0.00 0.03 0.38
## 5064 0.12 0.00 0.03 0.38
## 5065 0.02 0.00 0.00 0.38
## 5066 0.00 0.00 0.02 0.38
## 5067 0.05 0.25 0.03 0.38
## 5068 0.14 0.00 0.05 0.38
## 5069 0.08 0.00 0.01 0.38
## 5070 0.00 0.38 0.00 0.38
## 5071 0.07 0.00 0.07 0.38
## 5072 0.20 0.00 0.06 0.38
## 5073 0.01 0.00 0.03 0.38
## 5074 0.13 0.11 0.02 0.38
## 5075 0.01 0.06 0.02 0.38
## 5076 0.02 0.21 0.01 0.38
## 5077 0.03 0.00 0.03 0.38
## 5078 0.17 0.00 0.06 0.38
## 5080 0.08 0.00 0.01 0.38
## 5081 0.03 0.00 0.03 0.38
## 5082 0.00 0.00 0.03 0.37
## 5083 0.02 0.00 0.00 0.37
## 5084 0.00 0.00 0.03 0.37
## 5085 0.07 0.19 0.02 0.37
## 5086 0.00 0.00 0.03 0.37
## 5087 0.12 0.00 0.04 0.37
## 5088 0.19 0.00 0.07 0.37
## 5089 0.03 0.13 0.02 0.37
## 5090 0.17 0.00 0.07 0.37
## 5091 0.03 0.00 0.03 0.37
## 5092 0.00 0.35 0.02 0.37
## 5093 0.00 0.00 0.02 0.37
## 5094 0.21 0.00 0.04 0.37
## 5095 0.00 0.00 0.21 0.37
## 5096 0.07 0.00 0.01 0.37
## 5097 0.15 0.03 0.06 0.37
## 5098 0.12 0.04 0.04 0.37
## 5099 0.08 0.00 0.01 0.37
## 5100 0.00 0.00 0.03 0.37
## 5101 0.00 0.00 0.03 0.37
## 5102 0.06 0.21 0.02 0.37
## 5103 0.14 0.00 0.05 0.37
## 5104 0.17 0.00 0.04 0.37
## 5105 0.14 0.00 0.03 0.37
## 5106 0.00 0.37 0.00 0.37
## 5107 0.01 0.00 0.03 0.37
## 5108 0.13 0.00 0.03 0.37
## 5109 0.07 0.00 0.01 0.37
## 5110 0.14 0.00 0.05 0.37
## 5111 0.14 0.00 0.05 0.37
## 5112 0.18 0.01 0.10 0.37
## 5113 0.14 0.00 0.05 0.37
## 5114 0.14 0.00 0.05 0.37
## 5115 0.00 0.00 0.03 0.37
## 5116 0.00 0.37 0.00 0.37
## 5117 0.00 0.37 0.00 0.37
## 5118 0.13 0.00 0.03 0.37
## 5119 0.18 0.00 0.06 0.37
## 5120 0.01 0.00 0.05 0.37
## 5121 0.00 0.35 0.02 0.37
## 5122 0.12 0.01 0.03 0.37
## 5123 0.20 0.00 0.11 0.37
## 5124 0.00 0.00 0.02 0.37
## 5125 0.00 0.32 0.05 0.37
## 5126 0.06 0.00 0.00 0.37
## 5127 0.06 0.00 0.00 0.37
## 5128 0.02 0.00 0.00 0.37
## 5129 0.07 0.00 0.01 0.37
## 5130 0.19 0.02 0.10 0.37
## 5131 0.17 0.00 0.06 0.37
## 5132 0.17 0.00 0.10 0.37
## 5133 0.33 0.00 0.03 0.37
## 5134 0.07 0.00 0.01 0.37
## 5135 0.00 0.37 0.00 0.37
## 5136 0.10 0.00 0.01 0.37
## 5137 0.17 0.01 0.07 0.37
## 5138 0.15 0.00 0.04 0.37
## 5139 0.00 0.36 0.01 0.37
## 5140 0.18 0.02 0.06 0.37
## 5141 0.00 0.00 0.03 0.37
## 5142 0.00 0.00 0.03 0.37
## 5143 0.00 0.37 0.00 0.37
## 5144 0.13 0.02 0.04 0.37
## 5145 0.00 0.00 0.00 0.37
## 5146 0.08 0.15 0.02 0.37
## 5147 0.01 0.02 0.03 0.37
## 5148 0.00 0.37 0.00 0.37
## 5149 0.07 0.18 0.02 0.37
## 5150 0.00 0.00 0.03 0.37
## 5151 0.22 0.00 0.03 0.37
## 5152 0.21 0.00 0.07 0.37
## 5153 0.00 0.37 0.00 0.37
## 5154 0.19 0.00 0.07 0.37
## 5155 0.00 0.37 0.00 0.37
## 5156 0.12 0.00 0.05 0.37
## 5157 0.13 0.00 0.06 0.37
## 5158 0.05 0.00 0.07 0.37
## 5159 0.32 0.00 0.04 0.37
## 5160 0.01 0.00 0.05 0.37
## 5161 0.00 0.00 0.03 0.37
## 5162 0.02 0.00 0.03 0.36
## 5164 0.08 0.00 0.03 0.36
## 5165 0.00 0.00 0.03 0.36
## 5166 0.07 0.00 0.01 0.36
## 5167 0.00 0.36 0.00 0.36
## 5168 0.06 0.21 0.02 0.36
## 5169 0.00 0.36 0.00 0.36
## 5170 0.09 0.01 0.03 0.36
## 5171 0.14 0.00 0.05 0.36
## 5173 0.17 0.05 0.05 0.36
## 5174 0.00 0.36 0.00 0.36
## 5175 0.00 0.36 0.00 0.36
## 5176 0.00 0.36 0.00 0.36
## 5177 0.14 0.00 0.05 0.36
## 5178 0.14 0.00 0.05 0.36
## 5179 0.14 0.00 0.05 0.36
## 5180 0.00 0.36 0.00 0.36
## 5181 0.01 0.16 0.02 0.36
## 5182 0.19 0.00 0.10 0.36
## 5183 0.16 0.00 0.03 0.36
## 5184 0.13 0.00 0.03 0.36
## 5185 0.09 0.01 0.05 0.36
## 5186 0.09 0.14 0.03 0.36
## 5187 0.14 0.00 0.05 0.36
## 5188 0.09 0.00 0.03 0.36
## 5189 0.08 0.04 0.03 0.36
## 5190 0.14 0.00 0.02 0.36
## 5191 0.03 0.27 0.02 0.36
## 5192 0.10 0.00 0.01 0.36
## 5193 0.11 0.08 0.04 0.36
## 5194 0.00 0.00 0.03 0.36
## 5195 0.00 0.34 0.02 0.36
## 5198 0.05 0.00 0.03 0.36
## 5199 0.01 0.00 0.03 0.36
## 5200 0.13 0.00 0.03 0.36
## 5201 0.00 0.36 0.00 0.36
## 5202 0.14 0.00 0.02 0.36
## 5203 0.14 0.00 0.05 0.36
## 5204 0.08 0.00 0.01 0.36
## 5205 0.10 0.00 0.01 0.36
## 5206 0.02 0.23 0.04 0.36
## 5207 0.06 0.00 0.00 0.36
## 5208 0.06 0.00 0.00 0.36
## 5209 0.02 0.16 0.05 0.36
## 5210 0.00 0.00 0.03 0.36
## 5211 0.14 0.00 0.02 0.36
## 5212 0.11 0.00 0.05 0.36
## 5213 0.10 0.00 0.01 0.36
## 5214 0.00 0.00 0.03 0.36
## 5215 0.08 0.00 0.01 0.36
## 5216 0.20 0.00 0.04 0.36
## 5217 0.00 0.35 0.01 0.36
## 5218 0.00 0.36 0.00 0.36
## 5219 0.09 0.01 0.03 0.36
## 5220 0.14 0.00 0.02 0.36
## 5221 0.03 0.00 0.02 0.36
## 5222 0.00 0.00 0.03 0.36
## 5223 0.06 0.00 0.03 0.36
## 5224 0.08 0.00 0.01 0.36
## 5225 0.00 0.00 0.02 0.36
## 5226 0.00 0.36 0.00 0.36
## 5227 0.10 0.00 0.03 0.36
## 5228 0.25 0.00 0.04 0.36
## 5229 0.14 0.00 0.05 0.36
## 5230 0.00 0.36 0.00 0.36
## 5231 0.12 0.00 0.06 0.36
## 5232 0.17 0.00 0.07 0.36
## 5233 0.00 0.36 0.00 0.36
## 5234 0.09 0.00 0.03 0.36
## 5235 0.14 0.00 0.05 0.36
## 5236 0.14 0.00 0.05 0.36
## 5237 0.00 0.33 0.02 0.36
## 5238 0.00 0.36 0.00 0.36
## 5239 0.32 0.00 0.03 0.36
## 5240 0.00 0.35 0.01 0.36
## 5242 0.01 0.00 0.02 0.36
## 5243 0.25 0.00 0.05 0.36
## 5244 0.11 0.00 0.05 0.36
## 5245 0.31 0.00 0.05 0.36
## 5246 0.00 0.33 0.02 0.36
## 5247 0.02 0.00 0.00 0.36
## 5248 0.04 0.00 0.02 0.36
## 5249 0.08 0.00 0.01 0.36
## 5250 0.10 0.00 0.03 0.36
## 5251 0.00 0.36 0.00 0.36
## 5252 0.13 0.00 0.02 0.36
## 5253 0.00 0.36 0.00 0.36
## 5254 0.06 0.00 0.04 0.36
## 5255 0.02 0.11 0.02 0.36
## 5256 0.14 0.00 0.05 0.36
## 5257 0.07 0.00 0.05 0.36
## 5258 0.14 0.00 0.05 0.36
## 5259 0.26 0.00 0.09 0.36
## 5260 0.00 0.36 0.00 0.36
## 5261 0.00 0.00 0.02 0.36
## 5262 0.04 0.23 0.02 0.36
## 5263 0.10 0.00 0.01 0.36
## 5264 0.16 0.00 0.04 0.35
## 5265 0.01 0.00 0.03 0.35
## 5266 0.13 0.00 0.02 0.35
## 5267 0.02 0.03 0.03 0.35
## 5268 0.09 0.00 0.01 0.35
## 5269 0.09 0.00 0.03 0.35
## 5270 0.14 0.00 0.05 0.35
## 5271 0.07 0.00 0.01 0.35
## 5272 0.06 0.19 0.02 0.35
## 5273 0.00 0.35 0.00 0.35
## 5274 0.18 0.00 0.07 0.35
## 5275 0.03 0.08 0.02 0.35
## 5276 0.14 0.00 0.05 0.35
## 5277 0.07 0.00 0.03 0.35
## 5278 0.00 0.35 0.00 0.35
## 5279 0.20 0.00 0.07 0.35
## 5280 0.00 0.35 0.00 0.35
## 5281 0.16 0.00 0.06 0.35
## 5282 0.12 0.01 0.03 0.35
## 5283 0.13 0.00 0.05 0.35
## 5284 0.09 0.00 0.01 0.35
## 5285 0.08 0.00 0.01 0.35
## 5286 0.18 0.00 0.04 0.35
## 5287 0.00 0.35 0.00 0.35
## 5288 0.04 0.23 0.01 0.35
## 5289 0.10 0.07 0.03 0.35
## 5290 0.01 0.30 0.00 0.35
## 5291 0.15 0.00 0.04 0.35
## 5292 0.00 0.35 0.00 0.35
## 5293 0.11 0.05 0.04 0.35
## 5294 0.13 0.00 0.04 0.35
## 5295 0.02 0.28 0.02 0.35
## 5296 0.09 0.00 0.01 0.35
## 5297 0.00 0.35 0.00 0.35
## 5298 0.08 0.04 0.04 0.35
## 5299 0.02 0.00 0.02 0.35
## 5300 0.03 0.00 0.03 0.35
## 5301 0.18 0.00 0.04 0.35
## 5302 0.10 0.00 0.03 0.35
## 5304 0.00 0.09 0.02 0.35
## 5305 0.00 0.29 0.06 0.35
## 5306 0.19 0.03 0.07 0.35
## 5307 0.17 0.00 0.06 0.35
## 5308 0.14 0.00 0.03 0.35
## 5309 0.10 0.00 0.03 0.35
## 5310 0.13 0.00 0.04 0.35
## 5311 0.07 0.00 0.01 0.35
## 5312 0.09 0.00 0.01 0.35
## 5313 0.00 0.00 0.02 0.35
## 5314 0.13 0.00 0.04 0.35
## 5315 0.13 0.00 0.02 0.35
## 5316 0.08 0.00 0.01 0.35
## 5317 0.14 0.00 0.03 0.35
## 5318 0.16 0.01 0.06 0.35
## 5319 0.13 0.00 0.04 0.35
## 5320 0.13 0.00 0.04 0.35
## 5321 0.07 0.16 0.02 0.35
## 5322 0.20 0.00 0.04 0.35
## 5323 0.05 0.14 0.03 0.35
## 5324 0.07 0.00 0.04 0.35
## 5325 0.13 0.00 0.04 0.35
## 5326 0.00 0.32 0.02 0.35
## 5327 0.13 0.00 0.04 0.35
## 5328 0.13 0.00 0.04 0.35
## 5329 0.13 0.00 0.04 0.35
## 5330 0.07 0.00 0.01 0.35
## 5331 0.00 0.00 0.03 0.35
## 5332 0.13 0.00 0.04 0.35
## 5333 0.20 0.00 0.05 0.35
## 5334 0.00 0.35 0.00 0.35
## 5335 0.13 0.00 0.02 0.35
## 5336 0.08 0.15 0.03 0.35
## 5337 0.01 0.00 0.03 0.35
## 5338 0.13 0.00 0.02 0.35
## 5339 0.00 0.35 0.00 0.35
## 5340 0.13 0.00 0.04 0.35
## 5341 0.14 0.00 0.03 0.35
## 5342 0.00 0.00 0.03 0.35
## 5343 0.21 0.00 0.08 0.35
## 5344 0.07 0.00 0.01 0.35
## 5345 0.07 0.15 0.04 0.35
## 5346 0.13 0.00 0.06 0.35
## 5347 0.13 0.00 0.04 0.35
## 5348 0.01 0.01 0.03 0.35
## 5349 0.23 0.00 0.03 0.35
## 5350 0.00 0.32 0.02 0.34
## 5351 0.00 0.00 0.02 0.34
## 5352 0.09 0.00 0.01 0.34
## 5353 0.00 0.34 0.00 0.34
## 5354 0.15 0.00 0.08 0.34
## 5355 0.09 0.00 0.01 0.34
## 5356 0.13 0.00 0.04 0.34
## 5357 0.09 0.12 0.03 0.34
## 5358 0.00 0.34 0.00 0.34
## 5359 0.13 0.00 0.02 0.34
## 5360 0.03 0.09 0.02 0.34
## 5361 0.15 0.00 0.06 0.34
## 5362 0.04 0.20 0.01 0.34
## 5363 0.07 0.00 0.03 0.34
## 5364 0.00 0.00 0.03 0.34
## 5365 0.03 0.00 0.03 0.34
## 5366 0.02 0.02 0.03 0.34
## 5367 0.02 0.00 0.00 0.34
## 5368 0.09 0.00 0.01 0.34
## 5369 0.06 0.19 0.02 0.34
## 5370 0.16 0.00 0.03 0.34
## 5371 0.16 0.00 0.03 0.34
## 5372 0.13 0.00 0.04 0.34
## 5373 0.00 0.34 0.00 0.34
## 5374 0.12 0.00 0.03 0.34
## 5375 0.03 0.00 0.25 0.34
## 5376 0.09 0.00 0.01 0.34
## 5377 0.00 0.09 0.02 0.34
## 5378 0.13 0.00 0.02 0.34
## 5379 0.13 0.00 0.04 0.34
## 5380 0.07 0.00 0.01 0.34
## 5381 0.13 0.00 0.04 0.34
## 5382 0.02 0.00 0.00 0.34
## 5383 0.02 0.00 0.00 0.34
## 5384 0.15 0.00 0.03 0.34
## 5385 0.03 0.00 0.03 0.34
## 5386 0.03 0.00 0.02 0.34
## 5387 0.07 0.00 0.01 0.34
## 5388 0.03 0.15 0.02 0.34
## 5389 0.11 0.00 0.01 0.34
## 5390 0.02 0.00 0.00 0.34
## 5391 0.17 0.00 0.04 0.34
## 5392 0.01 0.00 0.03 0.34
## 5393 0.11 0.03 0.05 0.34
## 5394 0.00 0.34 0.00 0.34
## 5395 0.06 0.00 0.00 0.34
## 5396 0.02 0.00 0.00 0.34
## 5397 0.13 0.00 0.06 0.34
## 5398 0.09 0.00 0.03 0.34
## 5399 0.13 0.00 0.02 0.34
## 5400 0.03 0.00 0.03 0.34
## 5401 0.02 0.00 0.00 0.34
## 5402 0.34 0.00 0.00 0.34
## 5403 0.13 0.00 0.04 0.34
## 5404 0.15 0.00 0.05 0.34
## 5405 0.07 0.00 0.01 0.34
## 5406 0.00 0.34 0.00 0.34
## 5407 0.03 0.23 0.02 0.34
## 5408 0.01 0.00 0.02 0.34
## 5409 0.00 0.00 0.02 0.34
## 5410 0.18 0.00 0.03 0.34
## 5411 0.01 0.03 0.02 0.34
## 5412 0.02 0.16 0.02 0.34
## 5413 0.02 0.00 0.03 0.34
## 5414 0.13 0.00 0.02 0.34
## 5415 0.21 0.00 0.04 0.34
## 5416 0.07 0.00 0.01 0.34
## 5417 0.15 0.00 0.03 0.34
## 5418 0.00 0.00 0.02 0.34
## 5419 0.02 0.00 0.03 0.34
## 5420 0.13 0.00 0.03 0.34
## 5421 0.09 0.00 0.01 0.34
## 5422 0.17 0.00 0.05 0.34
## 5423 0.07 0.00 0.01 0.34
## 5424 0.10 0.00 0.03 0.34
## 5425 0.02 0.00 0.22 0.34
## 5426 0.25 0.00 0.08 0.34
## 5427 0.00 0.34 0.00 0.34
## 5428 0.00 0.02 0.03 0.34
## 5429 0.02 0.00 0.03 0.34
## 5430 0.12 0.00 0.05 0.34
## 5431 0.03 0.25 0.01 0.34
## 5432 0.04 0.00 0.02 0.34
## 5433 0.13 0.00 0.02 0.34
## 5434 0.13 0.00 0.04 0.34
## 5435 0.01 0.00 0.03 0.34
## 5436 0.14 0.00 0.03 0.34
## 5437 0.07 0.00 0.01 0.34
## 5438 0.18 0.00 0.04 0.34
## 5439 0.13 0.00 0.04 0.34
## 5440 0.00 0.33 0.00 0.33
## 5441 0.15 0.07 0.05 0.33
## 5442 0.14 0.02 0.03 0.33
## 5443 0.11 0.00 0.01 0.33
## 5444 0.13 0.00 0.03 0.33
## 5445 0.14 0.00 0.04 0.33
## 5446 0.04 0.21 0.02 0.33
## 5447 0.10 0.08 0.03 0.33
## 5448 0.08 0.14 0.03 0.33
## 5449 0.07 0.01 0.03 0.33
## 5450 0.13 0.00 0.04 0.33
## 5451 0.09 0.00 0.01 0.33
## 5452 0.04 0.22 0.02 0.33
## 5453 0.29 0.00 0.04 0.33
## 5454 0.00 0.18 0.01 0.33
## 5455 0.01 0.02 0.03 0.33
## 5456 0.12 0.00 0.08 0.33
## 5457 0.18 0.00 0.03 0.33
## 5458 0.13 0.00 0.02 0.33
## 5459 0.00 0.33 0.00 0.33
## 5460 0.00 0.00 0.02 0.33
## 5461 0.15 0.00 0.03 0.33
## 5462 0.15 0.00 0.05 0.33
## 5463 0.14 0.00 0.05 0.33
## 5464 0.30 0.00 0.03 0.33
## 5465 0.05 0.00 0.03 0.33
## 5466 0.09 0.00 0.05 0.33
## 5467 0.07 0.00 0.01 0.33
## 5468 0.01 0.16 0.01 0.33
## 5469 0.07 0.00 0.01 0.33
## 5470 0.07 0.00 0.01 0.33
## 5471 0.02 0.00 0.03 0.33
## 5472 0.00 0.00 0.02 0.33
## 5473 0.00 0.00 0.02 0.33
## 5474 0.10 0.08 0.03 0.33
## 5475 0.07 0.00 0.01 0.33
## 5476 0.13 0.06 0.03 0.33
## 5477 0.00 0.00 0.03 0.33
## 5478 0.13 0.00 0.04 0.33
## 5479 0.07 0.00 0.01 0.33
## 5480 0.00 0.10 0.02 0.33
## 5481 0.00 0.00 0.03 0.33
## 5482 0.00 0.31 0.02 0.33
## 5483 0.13 0.08 0.04 0.33
## 5484 0.07 0.00 0.01 0.33
## 5485 0.25 0.00 0.08 0.33
## 5486 0.15 0.00 0.04 0.33
## 5487 0.13 0.00 0.04 0.33
## 5488 0.09 0.00 0.01 0.33
## 5489 0.09 0.00 0.03 0.33
## 5490 0.13 0.00 0.04 0.33
## 5491 0.00 0.31 0.02 0.33
## 5492 0.13 0.00 0.05 0.33
## 5493 0.08 0.00 0.03 0.33
## 5494 0.00 0.33 0.00 0.33
## 5495 0.00 0.33 0.00 0.33
## 5496 0.13 0.00 0.03 0.33
## 5497 0.00 0.03 0.03 0.33
## 5498 0.00 0.00 0.03 0.33
## 5499 0.13 0.00 0.04 0.33
## 5500 0.18 0.00 0.05 0.33
## 5501 0.13 0.00 0.04 0.33
## 5502 0.06 0.09 0.01 0.33
## 5503 0.11 0.06 0.05 0.33
## 5504 0.03 0.00 0.16 0.33
## 5505 0.06 0.00 0.01 0.33
## 5506 0.09 0.00 0.01 0.33
## 5507 0.04 0.23 0.01 0.33
## 5508 0.18 0.00 0.06 0.33
## 5510 0.06 0.00 0.00 0.33
## 5511 0.00 0.33 0.00 0.33
## 5512 0.12 0.01 0.03 0.33
## 5513 0.12 0.00 0.02 0.33
## 5514 0.07 0.15 0.02 0.33
## 5515 0.04 0.00 0.03 0.33
## 5516 0.04 0.00 0.02 0.33
## 5517 0.08 0.12 0.03 0.33
## 5518 0.00 0.33 0.00 0.33
## 5519 0.00 0.00 0.02 0.33
## 5520 0.12 0.00 0.05 0.33
## 5521 0.07 0.00 0.01 0.33
## 5522 0.01 0.08 0.02 0.33
## 5523 0.14 0.00 0.08 0.33
## 5524 0.28 0.00 0.03 0.33
## 5525 0.13 0.00 0.04 0.33
## 5526 0.13 0.00 0.04 0.33
## 5527 0.01 0.00 0.03 0.33
## 5528 0.16 0.00 0.09 0.33
## 5529 0.15 0.00 0.06 0.33
## 5530 0.07 0.00 0.01 0.33
## 5531 0.03 0.00 0.02 0.33
## 5532 0.00 0.00 0.02 0.33
## 5533 0.10 0.00 0.03 0.33
## 5534 0.00 0.31 0.02 0.33
## 5535 0.09 0.00 0.01 0.33
## 5536 0.00 0.33 0.00 0.33
## 5537 0.17 0.00 0.04 0.33
## 5538 0.12 0.00 0.02 0.33
## 5539 0.09 0.00 0.01 0.33
## 5540 0.17 0.00 0.06 0.33
## 5541 0.00 0.32 0.01 0.33
## 5542 0.00 0.33 0.00 0.33
## 5543 0.12 0.00 0.03 0.33
## 5544 0.11 0.00 0.03 0.33
## 5545 0.08 0.00 0.03 0.33
## 5546 0.07 0.00 0.01 0.33
## 5547 0.00 0.33 0.00 0.33
## 5548 0.16 0.00 0.03 0.33
## 5549 0.04 0.08 0.02 0.33
## 5550 0.00 0.31 0.02 0.33
## 5551 0.01 0.00 0.03 0.33
## 5552 0.11 0.04 0.02 0.33
## 5553 0.16 0.01 0.06 0.33
## 5554 0.05 0.05 0.03 0.33
## 5555 0.03 0.16 0.02 0.33
## 5556 0.00 0.33 0.00 0.33
## 5557 0.11 0.00 0.03 0.33
## 5558 0.07 0.00 0.01 0.33
## 5559 0.08 0.10 0.03 0.33
## 5560 0.02 0.00 0.00 0.33
## 5561 0.00 0.19 0.01 0.33
## 5562 0.15 0.00 0.07 0.33
## 5563 0.07 0.00 0.01 0.33
## 5564 0.00 0.00 0.02 0.33
## 5565 0.02 0.00 0.00 0.33
## 5566 0.09 0.00 0.03 0.33
## 5567 0.00 0.00 0.02 0.33
## 5568 0.04 0.16 0.01 0.33
## 5569 0.01 0.08 0.02 0.33
## 5570 0.00 0.30 0.02 0.33
## 5571 0.07 0.00 0.01 0.33
## 5572 0.12 0.00 0.04 0.33
## 5573 0.10 0.01 0.07 0.33
## 5574 0.15 0.00 0.05 0.33
## 5575 0.05 0.00 0.03 0.33
## 5576 0.14 0.00 0.03 0.32
## 5577 0.00 0.00 0.03 0.32
## 5578 0.06 0.20 0.02 0.32
## 5579 0.01 0.00 0.00 0.32
## 5580 0.09 0.00 0.01 0.32
## 5581 0.12 0.00 0.04 0.32
## 5582 0.00 0.32 0.00 0.32
## 5583 0.16 0.00 0.04 0.32
## 5584 0.12 0.00 0.04 0.32
## 5585 0.12 0.00 0.02 0.32
## 5586 0.08 0.16 0.03 0.32
## 5587 0.04 0.02 0.03 0.32
## 5588 0.14 0.00 0.06 0.32
## 5589 0.00 0.00 0.03 0.32
## 5590 0.11 0.00 0.03 0.32
## 5591 0.00 0.00 0.02 0.32
## 5592 0.08 0.03 0.02 0.32
## 5593 0.01 0.12 0.01 0.32
## 5594 0.02 0.00 0.00 0.32
## 5595 0.00 0.32 0.00 0.32
## 5596 0.11 0.00 0.03 0.32
## 5597 0.04 0.10 0.03 0.32
## 5598 0.12 0.00 0.04 0.32
## 5599 0.02 0.15 0.02 0.32
## 5600 0.12 0.00 0.02 0.32
## 5601 0.03 0.00 0.01 0.32
## 5602 0.15 0.00 0.06 0.32
## 5603 0.00 0.30 0.02 0.32
## 5604 0.13 0.00 0.08 0.32
## 5605 0.08 0.00 0.03 0.32
## 5606 0.00 0.00 0.02 0.32
## 5607 0.27 0.00 0.05 0.32
## 5608 0.02 0.00 0.03 0.32
## 5609 0.13 0.00 0.03 0.32
## 5610 0.03 0.00 0.03 0.32
## 5611 0.00 0.00 0.02 0.32
## 5612 0.04 0.21 0.02 0.32
## 5613 0.12 0.00 0.02 0.32
## 5614 0.16 0.02 0.05 0.32
## 5615 0.02 0.00 0.03 0.32
## 5616 0.07 0.12 0.02 0.32
## 5617 0.14 0.00 0.03 0.32
## 5618 0.00 0.32 0.00 0.32
## 5620 0.26 0.00 0.06 0.32
## 5621 0.12 0.00 0.04 0.32
## 5622 0.24 0.00 0.05 0.32
## 5623 0.11 0.00 0.03 0.32
## 5624 0.00 0.00 0.02 0.32
## 5625 0.12 0.00 0.04 0.32
## 5627 0.00 0.00 0.02 0.32
## 5628 0.14 0.00 0.03 0.32
## 5629 0.06 0.00 0.01 0.32
## 5630 0.12 0.00 0.04 0.32
## 5631 0.04 0.13 0.00 0.32
## 5632 0.12 0.00 0.02 0.32
## 5633 0.00 0.32 0.00 0.32
## 5634 0.24 0.00 0.05 0.32
## 5635 0.08 0.00 0.01 0.32
## 5636 0.12 0.00 0.02 0.32
## 5637 0.28 0.00 0.04 0.32
## 5638 0.12 0.00 0.02 0.32
## 5639 0.02 0.00 0.03 0.32
## 5640 0.12 0.00 0.04 0.32
## 5641 0.12 0.00 0.02 0.32
## 5642 0.03 0.00 0.03 0.32
## 5643 0.12 0.00 0.04 0.32
## 5644 0.30 0.00 0.02 0.32
## 5645 0.00 0.32 0.00 0.32
## 5646 0.00 0.32 0.00 0.32
## 5647 0.00 0.30 0.02 0.32
## 5648 0.08 0.00 0.01 0.32
## 5649 0.12 0.00 0.04 0.32
## 5650 0.00 0.00 0.03 0.32
## 5651 0.08 0.00 0.01 0.32
## 5652 0.00 0.32 0.00 0.32
## 5653 0.12 0.00 0.03 0.32
## 5654 0.12 0.00 0.04 0.32
## 5655 0.12 0.00 0.04 0.32
## 5656 0.15 0.00 0.03 0.32
## 5657 0.08 0.00 0.01 0.32
## 5659 0.02 0.00 0.00 0.32
## 5660 0.12 0.00 0.02 0.32
## 5661 0.00 0.32 0.00 0.32
## 5662 0.14 0.02 0.06 0.32
## 5663 0.18 0.00 0.10 0.32
## 5664 0.07 0.00 0.01 0.32
## 5665 0.02 0.00 0.02 0.32
## 5666 0.00 0.32 0.00 0.32
## 5667 0.00 0.32 0.00 0.32
## 5668 0.00 0.32 0.00 0.32
## 5669 0.08 0.00 0.01 0.32
## 5671 0.00 0.30 0.02 0.32
## 5672 0.00 0.30 0.02 0.32
## 5673 0.00 0.32 0.00 0.32
## 5674 0.07 0.00 0.01 0.32
## 5675 0.08 0.00 0.01 0.32
## 5676 0.00 0.00 0.28 0.32
## 5677 0.01 0.00 0.02 0.32
## 5678 0.00 0.00 0.02 0.32
## 5679 0.07 0.00 0.01 0.32
## 5680 0.12 0.00 0.04 0.32
## 5681 0.01 0.00 0.02 0.32
## 5682 0.00 0.32 0.00 0.32
## 5683 0.12 0.00 0.02 0.32
## 5684 0.06 0.16 0.02 0.32
## 5685 0.15 0.00 0.09 0.32
## 5686 0.06 0.03 0.02 0.32
## 5687 0.04 0.02 0.02 0.32
## 5688 0.12 0.00 0.04 0.32
## 5689 0.02 0.00 0.20 0.32
## 5690 0.12 0.00 0.06 0.32
## 5691 0.00 0.32 0.00 0.32
## 5692 0.04 0.00 0.03 0.32
## 5693 0.04 0.08 0.02 0.32
## 5694 0.00 0.32 0.00 0.32
## 5695 0.08 0.00 0.01 0.32
## 5696 0.12 0.00 0.02 0.32
## 5697 0.17 0.00 0.05 0.32
## 5698 0.00 0.32 0.00 0.32
## 5699 0.17 0.00 0.05 0.32
## 5700 0.11 0.00 0.03 0.31
## 5701 0.14 0.00 0.05 0.31
## 5702 0.19 0.00 0.04 0.31
## 5703 0.18 0.00 0.03 0.31
## 5704 0.12 0.00 0.02 0.31
## 5705 0.00 0.31 0.00 0.31
## 5706 0.07 0.00 0.01 0.31
## 5707 0.00 0.00 0.02 0.31
## 5708 0.12 0.00 0.02 0.31
## 5709 0.00 0.00 0.02 0.31
## 5710 0.04 0.00 0.02 0.31
## 5711 0.00 0.31 0.00 0.31
## 5712 0.00 0.01 0.02 0.31
## 5713 0.08 0.00 0.01 0.31
## 5714 0.15 0.00 0.06 0.31
## 5715 0.00 0.31 0.00 0.31
## 5716 0.15 0.06 0.03 0.31
## 5717 0.00 0.31 0.00 0.31
## 5718 0.00 0.31 0.00 0.31
## 5719 0.12 0.00 0.02 0.31
## 5720 0.01 0.00 0.02 0.31
## 5721 0.01 0.01 0.02 0.31
## 5722 0.07 0.00 0.01 0.31
## 5723 0.12 0.00 0.04 0.31
## 5724 0.01 0.00 0.02 0.31
## 5725 0.03 0.00 0.03 0.31
## 5726 0.04 0.10 0.02 0.31
## 5727 0.00 0.31 0.00 0.31
## 5728 0.10 0.00 0.03 0.31
## 5729 0.00 0.00 0.02 0.31
## 5730 0.19 0.03 0.04 0.31
## 5731 0.12 0.00 0.04 0.31
## 5732 0.12 0.00 0.02 0.31
## 5733 0.07 0.00 0.01 0.31
## 5734 0.07 0.00 0.01 0.31
## 5735 0.07 0.00 0.01 0.31
## 5736 0.01 0.00 0.02 0.31
## 5737 0.07 0.13 0.02 0.31
## 5738 0.12 0.00 0.02 0.31
## 5739 0.00 0.00 0.02 0.31
## 5740 0.13 0.00 0.03 0.31
## 5741 0.09 0.00 0.03 0.31
## 5742 0.20 0.00 0.03 0.31
## 5743 0.06 0.16 0.02 0.31
## 5744 0.00 0.31 0.00 0.31
## 5745 0.00 0.00 0.02 0.31
## 5746 0.00 0.31 0.00 0.31
## 5747 0.12 0.00 0.02 0.31
## 5748 0.07 0.00 0.01 0.31
## 5749 0.08 0.00 0.01 0.31
## 5750 0.00 0.29 0.02 0.31
## 5751 0.01 0.00 0.03 0.31
## 5752 0.00 0.00 0.02 0.31
## 5753 0.04 0.17 0.03 0.31
## 5754 0.00 0.26 0.05 0.31
## 5755 0.02 0.13 0.10 0.31
## 5756 0.06 0.00 0.00 0.31
## 5757 0.06 0.00 0.00 0.31
## 5758 0.06 0.00 0.00 0.31
## 5759 0.00 0.26 0.05 0.31
## 5760 0.29 0.00 0.02 0.31
## 5761 0.00 0.00 0.00 0.31
## 5762 0.05 0.00 0.02 0.31
## 5763 0.10 0.00 0.03 0.31
## 5764 0.00 0.31 0.00 0.31
## 5765 0.00 0.00 0.02 0.31
## 5766 0.10 0.00 0.03 0.31
## 5767 0.00 0.31 0.00 0.31
## 5768 0.00 0.00 0.02 0.31
## 5769 0.04 0.00 0.03 0.31
## 5771 0.02 0.09 0.02 0.31
## 5772 0.08 0.00 0.01 0.31
## 5773 0.11 0.02 0.02 0.31
## 5774 0.02 0.00 0.00 0.31
## 5775 0.12 0.00 0.04 0.31
## 5776 0.04 0.00 0.03 0.31
## 5777 0.00 0.00 0.02 0.31
## 5778 0.12 0.00 0.04 0.31
## 5779 0.00 0.31 0.00 0.31
## 5780 0.00 0.00 0.02 0.31
## 5781 0.05 0.00 0.02 0.31
## 5782 0.00 0.00 0.02 0.31
## 5783 0.12 0.00 0.02 0.31
## 5784 0.05 0.00 0.01 0.31
## 5785 0.00 0.29 0.02 0.31
## 5786 0.00 0.00 0.02 0.31
## 5787 0.13 0.00 0.04 0.31
## 5788 0.06 0.00 0.01 0.31
## 5789 0.00 0.31 0.00 0.31
## 5790 0.12 0.00 0.05 0.31
## 5791 0.17 0.00 0.03 0.31
## 5792 0.12 0.00 0.02 0.31
## 5793 0.12 0.00 0.04 0.31
## 5794 0.00 0.00 0.02 0.31
## 5795 0.07 0.04 0.03 0.31
## 5796 0.12 0.00 0.04 0.31
## 5797 0.12 0.00 0.02 0.31
## 5798 0.12 0.00 0.04 0.31
## 5800 0.00 0.31 0.00 0.31
## 5801 0.02 0.00 0.00 0.31
## 5802 0.12 0.00 0.04 0.31
## 5803 0.12 0.00 0.02 0.31
## 5804 0.05 0.14 0.04 0.31
## 5805 0.01 0.10 0.02 0.31
## 5806 0.04 0.00 0.02 0.31
## 5807 0.00 0.00 0.02 0.31
## 5808 0.06 0.00 0.02 0.31
## 5809 0.12 0.00 0.02 0.31
## 5810 0.06 0.00 0.03 0.31
## 5811 0.13 0.01 0.08 0.31
## 5812 0.07 0.00 0.01 0.31
## 5813 0.12 0.00 0.02 0.31
## 5814 0.00 0.30 0.01 0.31
## 5815 0.12 0.00 0.02 0.31
## 5816 0.12 0.00 0.04 0.31
## 5817 0.00 0.31 0.00 0.31
## 5818 0.00 0.31 0.00 0.31
## 5819 0.12 0.00 0.04 0.31
## 5820 0.10 0.00 0.03 0.31
## 5821 0.01 0.00 0.02 0.30
## 5822 0.08 0.07 0.02 0.30
## 5823 0.08 0.00 0.01 0.30
## 5824 0.00 0.00 0.02 0.30
## 5825 0.07 0.00 0.01 0.30
## 5826 0.08 0.00 0.01 0.30
## 5827 0.12 0.06 0.05 0.30
## 5828 0.13 0.00 0.03 0.30
## 5829 0.00 0.30 0.00 0.30
## 5830 0.00 0.30 0.00 0.30
## 5831 0.12 0.00 0.02 0.30
## 5832 0.00 0.30 0.00 0.30
## 5833 0.04 0.00 0.02 0.30
## 5834 0.08 0.00 0.01 0.30
## 5835 0.12 0.00 0.02 0.30
## 5836 0.00 0.30 0.00 0.30
## 5837 0.03 0.00 0.03 0.30
## 5838 0.04 0.01 0.03 0.30
## 5840 0.12 0.00 0.07 0.30
## 5841 0.00 0.08 0.02 0.30
## 5842 0.25 0.00 0.05 0.30
## 5843 0.03 0.21 0.02 0.30
## 5844 0.12 0.00 0.04 0.30
## 5845 0.04 0.00 0.02 0.30
## 5846 0.06 0.00 0.01 0.30
## 5847 0.08 0.00 0.01 0.30
## 5848 0.12 0.00 0.04 0.30
## 5849 0.10 0.00 0.03 0.30
## 5850 0.00 0.00 0.02 0.30
## 5851 0.00 0.30 0.00 0.30
## 5852 0.09 0.00 0.03 0.30
## 5853 0.08 0.00 0.01 0.30
## 5854 0.12 0.00 0.04 0.30
## 5855 0.00 0.30 0.00 0.30
## 5856 0.00 0.30 0.01 0.30
## 5857 0.00 0.30 0.00 0.30
## 5858 0.11 0.00 0.02 0.30
## 5859 0.16 0.00 0.08 0.30
## 5860 0.12 0.00 0.04 0.30
## 5861 0.23 0.00 0.06 0.30
## 5863 0.00 0.30 0.00 0.30
## 5864 0.02 0.00 0.02 0.30
## 5865 0.03 0.00 0.02 0.30
## 5866 0.00 0.00 0.02 0.30
## 5867 0.00 0.30 0.00 0.30
## 5868 0.00 0.19 0.02 0.30
## 5869 0.00 0.30 0.00 0.30
## 5870 0.24 0.00 0.05 0.30
## 5872 0.07 0.07 0.02 0.30
## 5873 0.13 0.00 0.05 0.30
## 5874 0.00 0.00 0.02 0.30
## 5875 0.06 0.06 0.02 0.30
## 5876 0.01 0.00 0.02 0.30
## 5877 0.11 0.06 0.04 0.30
## 5878 0.05 0.17 0.03 0.30
## 5879 0.02 0.20 0.01 0.30
## 5880 0.04 0.19 0.01 0.30
## 5881 0.00 0.30 0.00 0.30
## 5882 0.00 0.30 0.00 0.30
## 5883 0.16 0.05 0.04 0.30
## 5884 0.11 0.00 0.04 0.30
## 5885 0.00 0.08 0.01 0.30
## 5886 0.06 0.00 0.00 0.30
## 5887 0.06 0.00 0.00 0.30
## 5888 0.00 0.30 0.00 0.30
## 5889 0.08 0.00 0.01 0.30
## 5890 0.12 0.00 0.03 0.30
## 5891 0.04 0.00 0.02 0.30
## 5892 0.08 0.00 0.05 0.30
## 5893 0.00 0.28 0.02 0.30
## 5894 0.00 0.30 0.00 0.30
## 5895 0.11 0.00 0.04 0.30
## 5896 0.08 0.00 0.01 0.30
## 5897 0.00 0.30 0.00 0.30
## 5898 0.03 0.05 0.02 0.30
## 5899 0.03 0.11 0.03 0.30
## 5900 0.11 0.00 0.02 0.30
## 5901 0.23 0.00 0.05 0.30
## 5903 0.11 0.00 0.04 0.30
## 5904 0.07 0.10 0.03 0.30
## 5905 0.00 0.30 0.00 0.30
## 5906 0.04 0.00 0.02 0.30
## 5907 0.12 0.00 0.03 0.30
## 5908 0.02 0.14 0.01 0.30
## 5909 0.00 0.30 0.00 0.30
## 5910 0.05 0.15 0.02 0.30
## 5911 0.02 0.00 0.02 0.30
## 5912 0.27 0.00 0.03 0.30
## 5913 0.00 0.00 0.02 0.30
## 5915 0.19 0.00 0.03 0.30
## 5916 0.11 0.00 0.04 0.30
## 5917 0.00 0.00 0.03 0.30
## 5918 0.01 0.00 0.02 0.30
## 5919 0.07 0.00 0.02 0.30
## 5920 0.24 0.00 0.05 0.30
## 5921 0.00 0.30 0.00 0.30
## 5922 0.00 0.30 0.00 0.30
## 5923 0.07 0.14 0.02 0.30
## 5924 0.13 0.00 0.05 0.30
## 5925 0.11 0.00 0.04 0.30
## 5926 0.00 0.00 0.02 0.30
## 5927 0.00 0.30 0.00 0.30
## 5928 0.14 0.00 0.03 0.30
## 5929 0.01 0.00 0.27 0.30
## 5930 0.00 0.30 0.00 0.30
## 5931 0.09 0.00 0.03 0.30
## 5932 0.00 0.29 0.01 0.30
## 5933 0.00 0.10 0.02 0.30
## 5934 0.00 0.00 0.00 0.30
## 5935 0.00 0.30 0.00 0.30
## 5936 0.10 0.01 0.05 0.30
## 5937 0.08 0.00 0.01 0.30
## 5938 0.08 0.00 0.01 0.30
## 5939 0.07 0.00 0.04 0.30
## 5940 0.11 0.00 0.02 0.30
## 5941 0.10 0.00 0.03 0.30
## 5942 0.00 0.02 0.02 0.30
## 5943 0.00 0.30 0.00 0.30
## 5944 0.06 0.00 0.01 0.30
## 5945 0.00 0.30 0.00 0.30
## 5946 0.11 0.00 0.04 0.30
## 5947 0.06 0.00 0.01 0.30
## 5948 0.01 0.12 0.01 0.30
## 5949 0.14 0.00 0.03 0.30
## 5950 0.26 0.00 0.01 0.30
## 5951 0.06 0.00 0.02 0.30
## 5952 0.03 0.00 0.02 0.30
## 5953 0.06 0.00 0.01 0.30
## 5954 0.13 0.00 0.03 0.30
## 5955 0.06 0.00 0.01 0.30
## 5956 0.00 0.00 0.02 0.29
## 5957 0.02 0.00 0.00 0.29
## 5958 0.00 0.00 0.02 0.29
## 5959 0.11 0.00 0.04 0.29
## 5960 0.01 0.00 0.03 0.29
## 5961 0.07 0.11 0.03 0.29
## 5962 0.06 0.00 0.02 0.29
## 5963 0.14 0.00 0.03 0.29
## 5964 0.10 0.04 0.02 0.29
## 5965 0.01 0.00 0.02 0.29
## 5966 0.01 0.00 0.03 0.29
## 5967 0.21 0.00 0.04 0.29
## 5968 0.10 0.00 0.03 0.29
## 5969 0.08 0.00 0.01 0.29
## 5970 0.00 0.29 0.01 0.29
## 5971 0.02 0.00 0.03 0.29
## 5972 0.12 0.12 0.04 0.29
## 5973 0.00 0.29 0.00 0.29
## 5974 0.09 0.00 0.03 0.29
## 5975 0.00 0.04 0.02 0.29
## 5976 0.06 0.00 0.01 0.29
## 5977 0.16 0.02 0.05 0.29
## 5978 0.08 0.07 0.03 0.29
## 5979 0.11 0.00 0.02 0.29
## 5980 0.02 0.25 0.01 0.29
## 5981 0.07 0.00 0.03 0.29
## 5982 0.00 0.29 0.00 0.29
## 5983 0.03 0.00 0.02 0.29
## 5984 0.10 0.17 0.02 0.29
## 5985 0.03 0.00 0.15 0.29
## 5986 0.14 0.01 0.05 0.29
## 5987 0.06 0.00 0.01 0.29
## 5988 0.11 0.00 0.04 0.29
## 5989 0.22 0.05 0.00 0.29
## 5990 0.11 0.00 0.06 0.29
## 5991 0.02 0.22 0.02 0.29
## 5992 0.00 0.27 0.02 0.29
## 5993 0.16 0.00 0.05 0.29
## 5994 0.00 0.00 0.02 0.29
## 5995 0.12 0.00 0.03 0.29
## 5996 0.00 0.29 0.00 0.29
## 5997 0.00 0.14 0.01 0.29
## 5998 0.11 0.00 0.02 0.29
## 5999 0.00 0.27 0.02 0.29
## 6000 0.10 0.03 0.03 0.29
## 6001 0.10 0.00 0.02 0.29
## 6002 0.11 0.00 0.04 0.29
## 6003 0.00 0.29 0.00 0.29
## 6004 0.03 0.00 0.02 0.29
## 6005 0.13 0.01 0.03 0.29
## 6006 0.00 0.28 0.01 0.29
## 6007 0.05 0.03 0.03 0.29
## 6008 0.02 0.00 0.00 0.29
## 6009 0.00 0.00 0.02 0.29
## 6010 0.06 0.00 0.01 0.29
## 6011 0.04 0.00 0.02 0.29
## 6012 0.08 0.00 0.02 0.29
## 6013 0.05 0.15 0.03 0.29
## 6014 0.00 0.28 0.01 0.29
## 6015 0.12 0.00 0.05 0.29
## 6016 0.11 0.00 0.03 0.29
## 6017 0.11 0.00 0.04 0.29
## 6018 0.13 0.00 0.03 0.29
## 6019 0.11 0.00 0.04 0.29
## 6020 0.01 0.10 0.04 0.29
## 6021 0.20 0.00 0.03 0.29
## 6022 0.02 0.00 0.00 0.29
## 6023 0.00 0.29 0.00 0.29
## 6024 0.06 0.00 0.00 0.29
## 6025 0.06 0.00 0.00 0.29
## 6026 0.06 0.00 0.00 0.29
## 6027 0.06 0.00 0.00 0.29
## 6028 0.05 0.02 0.00 0.29
## 6029 0.06 0.00 0.00 0.29
## 6030 0.06 0.00 0.00 0.29
## 6031 0.06 0.00 0.00 0.29
## 6032 0.03 0.14 0.02 0.29
## 6033 0.23 0.00 0.06 0.29
## 6034 0.25 0.00 0.04 0.29
## 6035 0.08 0.00 0.01 0.29
## 6036 0.11 0.00 0.04 0.29
## 6037 0.04 0.00 0.02 0.29
## 6038 0.11 0.00 0.04 0.29
## 6039 0.07 0.05 0.02 0.29
## 6040 0.06 0.00 0.01 0.29
## 6041 0.10 0.00 0.02 0.29
## 6042 0.09 0.00 0.02 0.29
## 6044 0.09 0.00 0.03 0.29
## 6045 0.00 0.29 0.00 0.29
## 6046 0.06 0.00 0.01 0.29
## 6047 0.00 0.27 0.02 0.29
## 6048 0.06 0.00 0.01 0.29
## 6049 0.15 0.01 0.03 0.29
## 6050 0.09 0.19 0.01 0.29
## 6051 0.06 0.00 0.01 0.29
## 6052 0.11 0.00 0.02 0.29
## 6053 0.13 0.00 0.03 0.29
## 6054 0.00 0.29 0.00 0.29
## 6055 0.17 0.00 0.03 0.29
## 6056 0.00 0.00 0.02 0.29
## 6057 0.00 0.00 0.02 0.29
## 6058 0.11 0.00 0.04 0.29
## 6059 0.00 0.29 0.00 0.29
## 6060 0.05 0.15 0.02 0.29
## 6061 0.05 0.16 0.02 0.29
## 6062 0.00 0.00 0.02 0.29
## 6063 0.10 0.01 0.02 0.29
## 6064 0.00 0.10 0.02 0.29
## 6065 0.12 0.00 0.05 0.29
## 6066 0.00 0.00 0.02 0.29
## 6067 0.15 0.00 0.02 0.29
## 6068 0.01 0.00 0.02 0.29
## 6069 0.11 0.00 0.02 0.29
## 6070 0.00 0.00 0.02 0.29
## 6071 0.00 0.29 0.00 0.29
## 6072 0.15 0.00 0.03 0.29
## 6073 0.11 0.00 0.04 0.29
## 6074 0.00 0.14 0.02 0.29
## 6075 0.11 0.00 0.02 0.29
## 6076 0.00 0.29 0.00 0.29
## 6077 0.02 0.21 0.02 0.29
## 6078 0.11 0.00 0.04 0.29
## 6079 0.00 0.29 0.00 0.29
## 6080 0.11 0.00 0.04 0.29
## 6081 0.00 0.00 0.02 0.29
## 6082 0.11 0.00 0.02 0.29
## 6083 0.12 0.00 0.03 0.29
## 6084 0.00 0.00 0.02 0.29
## 6085 0.00 0.29 0.00 0.29
## 6086 0.00 0.27 0.02 0.29
## 6087 0.00 0.00 0.02 0.29
## 6088 0.12 0.00 0.02 0.29
## 6089 0.00 0.29 0.00 0.29
## 6090 0.00 0.29 0.00 0.29
## 6091 0.07 0.08 0.03 0.29
## 6092 0.12 0.00 0.05 0.29
## 6093 0.06 0.00 0.01 0.29
## 6094 0.00 0.22 0.01 0.29
## 6095 0.00 0.00 0.02 0.29
## 6096 0.06 0.00 0.01 0.29
## 6097 0.11 0.00 0.02 0.29
## 6098 0.00 0.00 0.02 0.29
## 6099 0.00 0.29 0.00 0.29
## 6100 0.00 0.00 0.02 0.29
## 6101 0.08 0.00 0.01 0.29
## 6102 0.03 0.17 0.01 0.29
## 6103 0.10 0.00 0.05 0.29
## 6104 0.18 0.00 0.03 0.29
## 6105 0.00 0.00 0.02 0.28
## 6106 0.21 0.00 0.04 0.28
## 6107 0.14 0.00 0.03 0.28
## 6108 0.11 0.00 0.04 0.28
## 6109 0.11 0.00 0.04 0.28
## 6110 0.06 0.05 0.02 0.28
## 6111 0.11 0.00 0.02 0.28
## 6112 0.00 0.28 0.00 0.28
## 6113 0.08 0.00 0.01 0.28
## 6114 0.08 0.00 0.01 0.28
## 6115 0.00 0.00 0.02 0.28
## 6116 0.00 0.28 0.00 0.28
## 6117 0.01 0.00 0.02 0.28
## 6118 0.00 0.28 0.00 0.28
## 6119 0.11 0.00 0.02 0.28
## 6120 0.11 0.00 0.02 0.28
## 6121 0.06 0.00 0.01 0.28
## 6122 0.10 0.00 0.03 0.28
## 6123 0.07 0.10 0.02 0.28
## 6124 0.02 0.00 0.02 0.28
## 6125 0.08 0.07 0.04 0.28
## 6127 0.06 0.00 0.01 0.28
## 6128 0.08 0.00 0.01 0.28
## 6129 0.08 0.00 0.01 0.28
## 6130 0.11 0.00 0.04 0.28
## 6131 0.07 0.00 0.04 0.28
## 6132 0.00 0.28 0.00 0.28
## 6133 0.06 0.00 0.01 0.28
## 6134 0.00 0.28 0.00 0.28
## 6135 0.08 0.00 0.01 0.28
## 6136 0.17 0.09 0.02 0.28
## 6137 0.16 0.09 0.03 0.28
## 6138 0.00 0.01 0.02 0.28
## 6139 0.06 0.00 0.01 0.28
## 6140 0.00 0.28 0.00 0.28
## 6141 0.01 0.00 0.02 0.28
## 6142 0.11 0.00 0.03 0.28
## 6143 0.08 0.00 0.01 0.28
## 6144 0.02 0.00 0.02 0.28
## 6145 0.00 0.28 0.01 0.28
## 6146 0.02 0.00 0.00 0.28
## 6147 0.11 0.00 0.04 0.28
## 6148 0.01 0.00 0.00 0.28
## 6149 0.10 0.00 0.03 0.28
## 6150 0.12 0.00 0.02 0.28
## 6151 0.11 0.00 0.02 0.28
## 6152 0.12 0.02 0.05 0.28
## 6153 0.11 0.00 0.04 0.28
## 6155 0.06 0.00 0.01 0.28
## 6156 0.00 0.28 0.00 0.28
## 6157 0.02 0.12 0.01 0.28
## 6158 0.06 0.00 0.03 0.28
## 6159 0.07 0.00 0.01 0.28
## 6160 0.06 0.00 0.05 0.28
## 6161 0.00 0.28 0.00 0.28
## 6162 0.00 0.28 0.00 0.28
## 6163 0.00 0.28 0.00 0.28
## 6164 0.11 0.00 0.04 0.28
## 6165 0.00 0.28 0.00 0.28
## 6166 0.00 0.28 0.00 0.28
## 6167 0.02 0.00 0.14 0.28
## 6168 0.07 0.00 0.01 0.28
## 6169 0.00 0.00 0.02 0.28
## 6170 0.23 0.00 0.05 0.28
## 6171 0.11 0.00 0.04 0.28
## 6172 0.00 0.00 0.02 0.28
## 6173 0.11 0.01 0.05 0.28
## 6174 0.11 0.00 0.04 0.28
## 6175 0.06 0.00 0.01 0.28
## 6176 0.14 0.00 0.05 0.28
## 6177 0.11 0.00 0.04 0.28
## 6178 0.00 0.00 0.02 0.28
## 6179 0.00 0.00 0.02 0.28
## 6180 0.07 0.00 0.01 0.28
## 6181 0.10 0.03 0.03 0.28
## 6182 0.12 0.00 0.02 0.28
## 6183 0.00 0.00 0.02 0.28
## 6184 0.10 0.00 0.03 0.28
## 6185 0.08 0.00 0.02 0.28
## 6186 0.11 0.00 0.04 0.28
## 6187 0.03 0.03 0.02 0.28
## 6188 0.07 0.00 0.01 0.28
## 6189 0.06 0.10 0.02 0.28
## 6190 0.11 0.00 0.04 0.28
## 6191 0.12 0.01 0.03 0.28
## 6192 0.11 0.00 0.04 0.28
## 6193 0.01 0.23 0.01 0.28
## 6194 0.06 0.00 0.01 0.28
## 6195 0.09 0.04 0.04 0.28
## 6197 0.11 0.00 0.02 0.28
## 6198 0.07 0.00 0.01 0.28
## 6199 0.00 0.28 0.00 0.28
## 6200 0.11 0.00 0.05 0.28
## 6201 0.06 0.00 0.01 0.28
## 6202 0.06 0.00 0.01 0.28
## 6203 0.02 0.00 0.02 0.28
## 6204 0.00 0.28 0.00 0.28
## 6205 0.13 0.00 0.03 0.28
## 6206 0.21 0.03 0.03 0.28
## 6207 0.11 0.00 0.04 0.28
## 6208 0.22 0.00 0.05 0.28
## 6209 0.11 0.00 0.04 0.28
## 6210 0.11 0.00 0.04 0.28
## 6211 0.03 0.12 0.04 0.28
## 6213 0.01 0.00 0.02 0.28
## 6214 0.11 0.00 0.04 0.28
## 6215 0.01 0.00 0.02 0.28
## 6216 0.02 0.00 0.03 0.28
## 6217 0.04 0.17 0.01 0.28
## 6218 0.00 0.28 0.00 0.28
## 6219 0.04 0.17 0.02 0.28
## 6220 0.00 0.00 0.02 0.28
## 6221 0.11 0.00 0.02 0.28
## 6222 0.09 0.00 0.04 0.28
## 6223 0.00 0.28 0.00 0.28
## 6224 0.06 0.00 0.01 0.28
## 6225 0.10 0.00 0.03 0.28
## 6226 0.01 0.00 0.16 0.28
## 6227 0.00 0.28 0.00 0.28
## 6228 0.11 0.00 0.02 0.28
## 6229 0.00 0.00 0.02 0.28
## 6230 0.00 0.28 0.00 0.28
## 6231 0.11 0.00 0.04 0.28
## 6232 0.00 0.27 0.01 0.28
## 6233 0.00 0.28 0.00 0.28
## 6234 0.00 0.26 0.02 0.28
## 6235 0.01 0.00 0.02 0.28
## 6236 0.16 0.00 0.03 0.28
## 6237 0.06 0.00 0.01 0.28
## 6238 0.00 0.00 0.02 0.28
## 6239 0.00 0.00 0.02 0.28
## 6240 0.10 0.02 0.04 0.28
## 6241 0.10 0.00 0.02 0.28
## 6242 0.11 0.00 0.04 0.28
## 6243 0.06 0.00 0.01 0.28
## 6244 0.11 0.00 0.04 0.28
## 6245 0.11 0.00 0.04 0.28
## 6246 0.07 0.19 0.01 0.28
## 6247 0.04 0.00 0.02 0.28
## 6248 0.09 0.00 0.02 0.28
## 6249 0.00 0.27 0.01 0.28
## 6250 0.11 0.00 0.04 0.28
## 6251 0.07 0.00 0.00 0.28
## 6252 0.03 0.00 0.03 0.28
## 6253 0.19 0.00 0.05 0.28
## 6254 0.00 0.28 0.00 0.28
## 6255 0.04 0.15 0.02 0.28
## 6256 0.00 0.28 0.00 0.28
## 6257 0.00 0.28 0.00 0.28
## 6258 0.00 0.00 0.02 0.28
## 6259 0.07 0.18 0.03 0.28
## 6260 0.10 0.00 0.05 0.28
## 6261 0.00 0.28 0.00 0.28
## 6262 0.00 0.20 0.01 0.27
## 6263 0.11 0.00 0.04 0.27
## 6264 0.00 0.27 0.00 0.27
## 6265 0.10 0.00 0.04 0.27
## 6266 0.02 0.00 0.00 0.27
## 6267 0.20 0.00 0.02 0.27
## 6268 0.00 0.00 0.02 0.27
## 6269 0.06 0.00 0.01 0.27
## 6270 0.06 0.00 0.03 0.27
## 6271 0.00 0.26 0.02 0.27
## 6272 0.06 0.00 0.01 0.27
## 6274 0.07 0.00 0.00 0.27
## 6275 0.00 0.26 0.02 0.27
## 6276 0.06 0.11 0.02 0.27
## 6277 0.07 0.00 0.00 0.27
## 6278 0.11 0.00 0.03 0.27
## 6279 0.01 0.00 0.02 0.27
## 6280 0.00 0.27 0.00 0.27
## 6281 0.10 0.00 0.02 0.27
## 6282 0.06 0.00 0.01 0.27
## 6283 0.10 0.00 0.03 0.27
## 6285 0.00 0.00 0.02 0.27
## 6286 0.01 0.00 0.17 0.27
## 6287 0.01 0.15 0.01 0.27
## 6288 0.10 0.00 0.02 0.27
## 6289 0.02 0.22 0.02 0.27
## 6290 0.10 0.00 0.02 0.27
## 6291 0.10 0.00 0.02 0.27
## 6292 0.12 0.02 0.04 0.27
## 6293 0.12 0.00 0.03 0.27
## 6294 0.00 0.19 0.01 0.27
## 6295 0.03 0.11 0.01 0.27
## 6296 0.00 0.10 0.01 0.27
## 6297 0.01 0.00 0.00 0.27
## 6298 0.17 0.00 0.09 0.27
## 6299 0.16 0.00 0.02 0.27
## 6300 0.10 0.00 0.03 0.27
## 6301 0.10 0.00 0.02 0.27
## 6302 0.00 0.27 0.00 0.27
## 6303 0.00 0.27 0.00 0.27
## 6304 0.10 0.00 0.02 0.27
## 6305 0.10 0.00 0.03 0.27
## 6306 0.05 0.00 0.01 0.27
## 6307 0.00 0.27 0.00 0.27
## 6308 0.10 0.00 0.02 0.27
## 6309 0.00 0.27 0.00 0.27
## 6310 0.07 0.12 0.01 0.27
## 6311 0.10 0.00 0.03 0.27
## 6312 0.07 0.00 0.00 0.27
## 6313 0.10 0.00 0.03 0.27
## 6314 0.04 0.00 0.04 0.27
## 6316 0.01 0.00 0.02 0.27
## 6318 0.02 0.00 0.00 0.27
## 6319 0.01 0.00 0.14 0.27
## 6321 0.16 0.00 0.05 0.27
## 6322 0.08 0.00 0.01 0.27
## 6323 0.00 0.27 0.00 0.27
## 6324 0.10 0.00 0.03 0.27
## 6325 0.07 0.00 0.00 0.27
## 6326 0.08 0.06 0.04 0.27
## 6327 0.05 0.00 0.01 0.27
## 6328 0.15 0.00 0.03 0.27
## 6329 0.05 0.00 0.01 0.27
## 6330 0.00 0.27 0.00 0.27
## 6331 0.00 0.26 0.01 0.27
## 6332 0.07 0.00 0.00 0.27
## 6333 0.00 0.27 0.00 0.27
## 6334 0.10 0.00 0.03 0.27
## 6335 0.14 0.00 0.05 0.27
## 6336 0.06 0.00 0.01 0.27
## 6337 0.01 0.00 0.02 0.27
## 6338 0.10 0.00 0.03 0.27
## 6339 0.04 0.00 0.03 0.27
## 6340 0.06 0.00 0.01 0.27
## 6341 0.00 0.00 0.02 0.27
## 6342 0.13 0.00 0.04 0.27
## 6343 0.02 0.00 0.00 0.27
## 6344 0.00 0.27 0.00 0.27
## 6345 0.02 0.00 0.00 0.27
## 6346 0.08 0.00 0.01 0.27
## 6347 0.05 0.00 0.00 0.27
## 6348 0.11 0.00 0.03 0.27
## 6349 0.10 0.00 0.03 0.27
## 6350 0.00 0.27 0.00 0.27
## 6351 0.01 0.25 0.01 0.27
## 6352 0.10 0.00 0.03 0.27
## 6353 0.12 0.00 0.03 0.27
## 6354 0.19 0.00 0.04 0.27
## 6355 0.10 0.00 0.03 0.27
## 6356 0.06 0.00 0.01 0.27
## 6357 0.07 0.00 0.00 0.27
## 6358 0.05 0.14 0.02 0.27
## 6359 0.12 0.00 0.02 0.27
## 6360 0.04 0.00 0.00 0.27
## 6361 0.00 0.00 0.02 0.27
## 6362 0.00 0.16 0.01 0.27
## 6363 0.12 0.00 0.02 0.27
## 6364 0.00 0.27 0.00 0.27
## 6365 0.03 0.00 0.03 0.27
## 6366 0.11 0.02 0.02 0.27
## 6367 0.00 0.00 0.02 0.27
## 6368 0.00 0.00 0.02 0.27
## 6369 0.00 0.27 0.00 0.27
## 6370 0.00 0.12 0.01 0.27
## 6371 0.00 0.26 0.01 0.27
## 6372 0.10 0.00 0.03 0.27
## 6373 0.05 0.00 0.01 0.27
## 6374 0.08 0.00 0.02 0.27
## 6375 0.06 0.00 0.01 0.27
## 6376 0.09 0.00 0.03 0.27
## 6377 0.10 0.00 0.02 0.27
## 6378 0.00 0.00 0.02 0.27
## 6379 0.00 0.00 0.02 0.27
## 6380 0.00 0.27 0.00 0.27
## 6381 0.21 0.01 0.04 0.27
## 6382 0.07 0.00 0.00 0.27
## 6383 0.00 0.00 0.02 0.27
## 6384 0.02 0.00 0.02 0.27
## 6385 0.03 0.00 0.02 0.27
## 6386 0.01 0.00 0.02 0.27
## 6387 0.10 0.00 0.02 0.27
## 6388 0.10 0.00 0.03 0.27
## 6389 0.11 0.00 0.08 0.27
## 6390 0.00 0.25 0.02 0.27
## 6391 0.00 0.27 0.00 0.27
## 6392 0.05 0.00 0.01 0.27
## 6393 0.00 0.00 0.02 0.27
## 6394 0.09 0.00 0.02 0.27
## 6395 0.08 0.00 0.00 0.27
## 6396 0.00 0.27 0.00 0.27
## 6397 0.00 0.00 0.02 0.27
## 6398 0.10 0.00 0.03 0.27
## 6399 0.00 0.00 0.02 0.27
## 6400 0.10 0.00 0.02 0.27
## 6401 0.06 0.00 0.02 0.27
## 6403 0.00 0.00 0.02 0.27
## 6404 0.10 0.00 0.02 0.27
## 6405 0.06 0.00 0.01 0.27
## 6406 0.00 0.00 0.02 0.27
## 6407 0.14 0.00 0.04 0.27
## 6408 0.09 0.00 0.02 0.27
## 6409 0.05 0.00 0.02 0.27
## 6410 0.00 0.00 0.02 0.27
## 6411 0.04 0.14 0.02 0.27
## 6412 0.11 0.00 0.05 0.27
## 6413 0.10 0.00 0.02 0.27
## 6414 0.00 0.27 0.00 0.27
## 6415 0.00 0.00 0.02 0.27
## 6416 0.10 0.00 0.03 0.27
## 6417 0.10 0.00 0.03 0.27
## 6418 0.06 0.04 0.04 0.27
## 6419 0.00 0.00 0.02 0.27
## 6420 0.02 0.00 0.02 0.27
## 6421 0.10 0.00 0.03 0.27
## 6422 0.00 0.00 0.02 0.27
## 6423 0.07 0.11 0.03 0.27
## 6424 0.00 0.00 0.02 0.27
## 6425 0.00 0.27 0.00 0.27
## 6426 0.07 0.00 0.00 0.27
## 6427 0.09 0.00 0.02 0.27
## 6428 0.05 0.16 0.02 0.27
## 6429 0.00 0.00 0.02 0.27
## 6430 0.00 0.00 0.02 0.27
## 6431 0.00 0.00 0.02 0.27
## 6432 0.08 0.00 0.02 0.27
## 6433 0.10 0.00 0.03 0.27
## 6434 0.10 0.00 0.03 0.27
## 6435 0.04 0.14 0.02 0.27
## 6436 0.06 0.00 0.02 0.27
## 6437 0.04 0.09 0.03 0.27
## 6438 0.07 0.00 0.00 0.27
## 6439 0.06 0.00 0.01 0.27
## 6440 0.00 0.25 0.02 0.27
## 6441 0.00 0.01 0.02 0.26
## 6442 0.09 0.03 0.03 0.26
## 6443 0.00 0.00 0.02 0.26
## 6444 0.00 0.00 0.02 0.26
## 6445 0.07 0.00 0.00 0.26
## 6446 0.18 0.00 0.02 0.26
## 6447 0.01 0.00 0.02 0.26
## 6448 0.02 0.00 0.02 0.26
## 6449 0.04 0.00 0.02 0.26
## 6450 0.00 0.26 0.00 0.26
## 6451 0.00 0.26 0.00 0.26
## 6452 0.03 0.00 0.02 0.26
## 6453 0.00 0.26 0.00 0.26
## 6454 0.02 0.00 0.02 0.26
## 6455 0.10 0.00 0.03 0.26
## 6456 0.05 0.04 0.01 0.26
## 6457 0.00 0.25 0.02 0.26
## 6458 0.00 0.00 0.02 0.26
## 6459 0.06 0.11 0.02 0.26
## 6460 0.07 0.00 0.06 0.26
## 6461 0.00 0.26 0.00 0.26
## 6462 0.03 0.14 0.01 0.26
## 6463 0.10 0.00 0.02 0.26
## 6464 0.10 0.00 0.03 0.26
## 6465 0.10 0.00 0.03 0.26
## 6466 0.19 0.00 0.02 0.26
## 6467 0.18 0.00 0.04 0.26
## 6468 0.10 0.00 0.02 0.26
## 6469 0.00 0.26 0.00 0.26
## 6470 0.00 0.26 0.00 0.26
## 6471 0.10 0.00 0.03 0.26
## 6472 0.07 0.17 0.02 0.26
## 6473 0.07 0.00 0.00 0.26
## 6474 0.00 0.26 0.00 0.26
## 6475 0.06 0.00 0.04 0.26
## 6476 0.16 0.00 0.05 0.26
## 6477 0.02 0.00 0.16 0.26
## 6478 0.00 0.26 0.00 0.26
## 6479 0.00 0.00 0.02 0.26
## 6480 0.00 0.00 0.02 0.26
## 6481 0.00 0.26 0.00 0.26
## 6482 0.10 0.00 0.03 0.26
## 6483 0.03 0.00 0.02 0.26
## 6484 0.08 0.05 0.03 0.26
## 6485 0.00 0.00 0.02 0.26
## 6486 0.00 0.26 0.00 0.26
## 6487 0.07 0.00 0.00 0.26
## 6488 0.00 0.26 0.00 0.26
## 6489 0.00 0.00 0.00 0.26
## 6490 0.01 0.25 0.00 0.26
## 6491 0.07 0.00 0.00 0.26
## 6492 0.00 0.26 0.01 0.26
## 6493 0.07 0.00 0.00 0.26
## 6494 0.10 0.01 0.05 0.26
## 6495 0.10 0.00 0.02 0.26
## 6496 0.06 0.05 0.02 0.26
## 6498 0.00 0.00 0.02 0.26
## 6499 0.05 0.00 0.01 0.26
## 6500 0.10 0.00 0.03 0.26
## 6501 0.00 0.26 0.00 0.26
## 6502 0.00 0.00 0.02 0.26
## 6503 0.00 0.00 0.02 0.26
## 6504 0.09 0.00 0.02 0.26
## 6505 0.24 0.00 0.02 0.26
## 6506 0.20 0.00 0.05 0.26
## 6507 0.00 0.26 0.00 0.26
## 6508 0.00 0.00 0.02 0.26
## 6509 0.10 0.00 0.02 0.26
## 6510 0.05 0.07 0.01 0.26
## 6511 0.00 0.25 0.01 0.26
## 6512 0.00 0.25 0.01 0.26
## 6513 0.00 0.00 0.02 0.26
## 6514 0.10 0.00 0.03 0.26
## 6515 0.05 0.00 0.03 0.26
## 6516 0.07 0.00 0.02 0.26
## 6517 0.01 0.14 0.01 0.26
## 6518 0.03 0.18 0.02 0.26
## 6519 0.00 0.26 0.00 0.26
## 6520 0.04 0.01 0.03 0.26
## 6521 0.00 0.26 0.00 0.26
## 6522 0.00 0.26 0.00 0.26
## 6523 0.05 0.00 0.00 0.26
## 6524 0.05 0.00 0.00 0.26
## 6525 0.05 0.00 0.00 0.26
## 6526 0.05 0.00 0.00 0.26
## 6527 0.10 0.00 0.03 0.26
## 6528 0.05 0.14 0.02 0.26
## 6529 0.10 0.00 0.03 0.26
## 6530 0.07 0.00 0.00 0.26
## 6531 0.00 0.10 0.03 0.26
## 6532 0.00 0.26 0.00 0.26
## 6533 0.10 0.00 0.06 0.26
## 6534 0.07 0.00 0.02 0.26
## 6535 0.06 0.00 0.01 0.26
## 6536 0.05 0.00 0.01 0.26
## 6537 0.14 0.00 0.02 0.26
## 6538 0.01 0.00 0.00 0.26
## 6539 0.01 0.00 0.13 0.26
## 6540 0.00 0.26 0.00 0.26
## 6541 0.03 0.00 0.03 0.26
## 6542 0.09 0.00 0.03 0.26
## 6543 0.06 0.00 0.01 0.26
## 6544 0.15 0.00 0.06 0.26
## 6545 0.08 0.00 0.02 0.26
## 6546 0.08 0.00 0.02 0.26
## 6547 0.10 0.00 0.02 0.26
## 6548 0.10 0.00 0.03 0.26
## 6549 0.05 0.00 0.01 0.26
## 6550 0.00 0.25 0.00 0.26
## 6551 0.00 0.00 0.02 0.26
## 6552 0.01 0.11 0.01 0.26
## 6553 0.00 0.26 0.00 0.26
## 6554 0.15 0.00 0.02 0.26
## 6555 0.04 0.11 0.01 0.26
## 6556 0.00 0.00 0.02 0.26
## 6557 0.03 0.00 0.02 0.26
## 6558 0.00 0.00 0.02 0.26
## 6559 0.00 0.26 0.00 0.26
## 6560 0.07 0.00 0.00 0.26
## 6561 0.00 0.26 0.00 0.26
## 6562 0.07 0.00 0.02 0.26
## 6563 0.07 0.00 0.00 0.26
## 6564 0.06 0.00 0.01 0.26
## 6565 0.15 0.00 0.08 0.26
## 6566 0.10 0.00 0.03 0.26
## 6567 0.10 0.00 0.02 0.26
## 6568 0.15 0.00 0.03 0.26
## 6569 0.00 0.26 0.00 0.26
## 6570 0.06 0.00 0.02 0.26
## 6571 0.11 0.00 0.05 0.26
## 6572 0.10 0.00 0.03 0.26
## 6573 0.03 0.06 0.02 0.26
## 6574 0.00 0.00 0.02 0.26
## 6575 0.06 0.00 0.01 0.26
## 6576 0.00 0.24 0.02 0.26
## 6577 0.00 0.26 0.00 0.26
## 6578 0.08 0.02 0.04 0.26
## 6579 0.05 0.00 0.01 0.26
## 6580 0.01 0.00 0.02 0.26
## 6581 0.07 0.00 0.00 0.26
## 6582 0.05 0.13 0.02 0.26
## 6583 0.00 0.26 0.00 0.26
## 6584 0.01 0.00 0.00 0.26
## 6585 0.01 0.00 0.02 0.26
## 6586 0.00 0.26 0.00 0.26
## 6587 0.00 0.26 0.00 0.26
## 6588 0.07 0.00 0.00 0.26
## 6589 0.11 0.10 0.01 0.26
## 6590 0.00 0.00 0.02 0.26
## 6591 0.05 0.00 0.01 0.26
## 6592 0.06 0.00 0.01 0.26
## 6593 0.21 0.00 0.05 0.26
## 6594 0.10 0.00 0.03 0.26
## 6595 0.21 0.00 0.04 0.26
## 6596 0.10 0.00 0.02 0.26
## 6597 0.13 0.00 0.03 0.26
## 6598 0.10 0.00 0.03 0.26
## 6599 0.25 0.00 0.00 0.26
## 6600 0.00 0.25 0.01 0.26
## 6601 0.06 0.04 0.00 0.26
## 6602 0.00 0.02 0.02 0.26
## 6603 0.10 0.00 0.03 0.26
## 6604 0.01 0.00 0.02 0.26
## 6605 0.00 0.26 0.00 0.26
## 6606 0.06 0.00 0.01 0.26
## 6607 0.05 0.00 0.01 0.26
## 6608 0.07 0.00 0.00 0.25
## 6609 0.05 0.00 0.01 0.25
## 6610 0.00 0.24 0.02 0.25
## 6611 0.06 0.00 0.03 0.25
## 6612 0.00 0.25 0.00 0.25
## 6613 0.01 0.00 0.02 0.25
## 6614 0.10 0.00 0.03 0.25
## 6615 0.01 0.00 0.02 0.25
## 6616 0.00 0.00 0.02 0.25
## 6617 0.10 0.00 0.02 0.25
## 6618 0.15 0.00 0.06 0.25
## 6619 0.12 0.00 0.04 0.25
## 6620 0.01 0.00 0.08 0.25
## 6621 0.04 0.06 0.01 0.25
## 6622 0.00 0.00 0.02 0.25
## 6623 0.10 0.00 0.03 0.25
## 6624 0.00 0.25 0.00 0.25
## 6625 0.10 0.00 0.04 0.25
## 6626 0.04 0.06 0.02 0.25
## 6627 0.09 0.03 0.02 0.25
## 6628 0.07 0.00 0.00 0.25
## 6629 0.00 0.00 0.02 0.25
## 6630 0.05 0.00 0.01 0.25
## 6631 0.04 0.10 0.03 0.25
## 6632 0.00 0.25 0.00 0.25
## 6633 0.00 0.25 0.00 0.25
## 6634 0.11 0.00 0.04 0.25
## 6635 0.05 0.00 0.01 0.25
## 6636 0.10 0.00 0.03 0.25
## 6637 0.05 0.00 0.01 0.25
## 6638 0.02 0.00 0.03 0.25
## 6639 0.10 0.00 0.02 0.25
## 6640 0.07 0.00 0.00 0.25
## 6641 0.00 0.25 0.00 0.25
## 6642 0.00 0.24 0.02 0.25
## 6643 0.05 0.00 0.01 0.25
## 6644 0.10 0.00 0.02 0.25
## 6645 0.01 0.00 0.02 0.25
## 6646 0.04 0.00 0.01 0.25
## 6647 0.10 0.00 0.02 0.25
## 6649 0.07 0.00 0.00 0.25
## 6650 0.02 0.00 0.02 0.25
## 6651 0.09 0.00 0.02 0.25
## 6652 0.07 0.00 0.02 0.25
## 6653 0.07 0.00 0.03 0.25
## 6654 0.09 0.02 0.04 0.25
## 6655 0.10 0.00 0.03 0.25
## 6656 0.10 0.00 0.02 0.25
## 6657 0.14 0.00 0.02 0.25
## 6658 0.10 0.00 0.02 0.25
## 6659 0.01 0.00 0.02 0.25
## 6660 0.00 0.25 0.00 0.25
## 6661 0.10 0.00 0.04 0.25
## 6662 0.23 0.00 0.03 0.25
## 6663 0.05 0.00 0.01 0.25
## 6664 0.04 0.10 0.01 0.25
## 6665 0.05 0.00 0.01 0.25
## 6666 0.01 0.00 0.02 0.25
## 6667 0.05 0.00 0.01 0.25
## 6668 0.07 0.00 0.00 0.25
## 6669 0.00 0.00 0.00 0.25
## 6670 0.00 0.25 0.00 0.25
## 6671 0.10 0.00 0.03 0.25
## 6672 0.05 0.00 0.02 0.25
## 6673 0.13 0.00 0.06 0.25
## 6674 0.00 0.23 0.02 0.25
## 6675 0.02 0.00 0.02 0.25
## 6676 0.07 0.00 0.00 0.25
## 6677 0.05 0.00 0.01 0.25
## 6678 0.05 0.00 0.01 0.25
## 6679 0.09 0.00 0.02 0.25
## 6680 0.08 0.00 0.01 0.25
## 6681 0.00 0.00 0.02 0.25
## 6682 0.00 0.25 0.00 0.25
## 6683 0.02 0.00 0.02 0.25
## 6684 0.08 0.00 0.02 0.25
## 6685 0.04 0.05 0.00 0.25
## 6686 0.02 0.00 0.00 0.25
## 6687 0.05 0.00 0.00 0.25
## 6688 0.05 0.00 0.00 0.25
## 6689 0.05 0.00 0.00 0.25
## 6690 0.13 0.00 0.01 0.25
## 6691 0.05 0.00 0.00 0.25
## 6692 0.02 0.00 0.00 0.25
## 6693 0.05 0.00 0.00 0.25
## 6694 0.14 0.00 0.04 0.25
## 6695 0.21 0.00 0.04 0.25
## 6696 0.10 0.00 0.03 0.25
## 6697 0.05 0.00 0.01 0.25
## 6698 0.10 0.00 0.03 0.25
## 6699 0.00 0.23 0.02 0.25
## 6700 0.05 0.00 0.01 0.25
## 6701 0.09 0.00 0.02 0.25
## 6702 0.07 0.00 0.02 0.25
## 6703 0.10 0.00 0.03 0.25
## 6704 0.01 0.24 0.00 0.25
## 6705 0.00 0.25 0.00 0.25
## 6706 0.13 0.00 0.04 0.25
## 6707 0.00 0.25 0.00 0.25
## 6708 0.17 0.00 0.04 0.25
## 6709 0.05 0.00 0.02 0.25
## 6710 0.04 0.00 0.04 0.25
## 6711 0.02 0.10 0.01 0.25
## 6712 0.01 0.12 0.02 0.25
## 6713 0.03 0.18 0.01 0.25
## 6714 0.03 0.00 0.02 0.25
## 6715 0.09 0.00 0.02 0.25
## 6716 0.03 0.00 0.02 0.25
## 6717 0.07 0.00 0.00 0.25
## 6718 0.00 0.24 0.01 0.25
## 6719 0.08 0.00 0.03 0.25
## 6720 0.09 0.00 0.02 0.25
## 6721 0.04 0.00 0.02 0.25
## 6722 0.00 0.25 0.00 0.25
## 6723 0.05 0.03 0.02 0.25
## 6724 0.09 0.00 0.04 0.25
## 6725 0.00 0.25 0.00 0.25
## 6726 0.11 0.00 0.02 0.25
## 6727 0.09 0.00 0.03 0.25
## 6728 0.06 0.00 0.02 0.25
## 6729 0.01 0.00 0.00 0.25
## 6730 0.05 0.00 0.01 0.25
## 6731 0.09 0.00 0.02 0.25
## 6732 0.13 0.00 0.05 0.25
## 6733 0.01 0.03 0.02 0.25
## 6734 0.09 0.00 0.02 0.25
## 6735 0.00 0.00 0.02 0.25
## 6736 0.01 0.00 0.02 0.25
## 6737 0.09 0.00 0.03 0.25
## 6738 0.01 0.03 0.02 0.25
## 6739 0.09 0.00 0.03 0.25
## 6740 0.05 0.00 0.01 0.25
## 6741 0.09 0.00 0.03 0.25
## 6742 0.09 0.00 0.02 0.25
## 6743 0.04 0.00 0.03 0.25
## 6744 0.22 0.00 0.01 0.25
## 6745 0.09 0.00 0.02 0.25
## 6746 0.16 0.00 0.03 0.25
## 6747 0.00 0.25 0.00 0.25
## 6748 0.12 0.00 0.05 0.25
## 6749 0.04 0.00 0.03 0.25
## 6750 0.16 0.00 0.03 0.25
## 6751 0.09 0.00 0.02 0.25
## 6752 0.03 0.15 0.02 0.25
## 6753 0.05 0.00 0.01 0.25
## 6754 0.11 0.00 0.02 0.25
## 6755 0.09 0.00 0.03 0.25
## 6756 0.00 0.23 0.02 0.25
## 6757 0.01 0.00 0.02 0.25
## 6758 0.07 0.00 0.00 0.25
## 6759 0.00 0.00 0.02 0.25
## 6760 0.05 0.00 0.01 0.25
## 6761 0.07 0.00 0.00 0.25
## 6762 0.14 0.00 0.08 0.25
## 6763 0.01 0.00 0.02 0.25
## 6764 0.05 0.00 0.01 0.25
## 6765 0.19 0.00 0.02 0.25
## 6766 0.14 0.00 0.03 0.25
## 6767 0.04 0.10 0.01 0.25
## 6768 0.03 0.12 0.01 0.25
## 6769 0.09 0.00 0.03 0.25
## 6770 0.10 0.00 0.02 0.25
## 6771 0.09 0.00 0.03 0.24
## 6772 0.00 0.24 0.00 0.24
## 6773 0.09 0.00 0.03 0.24
## 6774 0.07 0.00 0.02 0.24
## 6775 0.06 0.00 0.00 0.24
## 6776 0.00 0.23 0.02 0.24
## 6777 0.01 0.00 0.02 0.24
## 6779 0.10 0.00 0.02 0.24
## 6780 0.16 0.00 0.05 0.24
## 6781 0.00 0.12 0.01 0.24
## 6782 0.00 0.00 0.02 0.24
## 6783 0.02 0.00 0.02 0.24
## 6784 0.00 0.24 0.00 0.24
## 6785 0.09 0.00 0.02 0.24
## 6786 0.10 0.00 0.02 0.24
## 6787 0.03 0.16 0.02 0.24
## 6788 0.09 0.00 0.02 0.24
## 6789 0.00 0.00 0.02 0.24
## 6790 0.09 0.00 0.02 0.24
## 6791 0.06 0.00 0.02 0.24
## 6792 0.07 0.00 0.02 0.24
## 6793 0.00 0.00 0.02 0.24
## 6794 0.03 0.06 0.05 0.24
## 6795 0.10 0.00 0.03 0.24
## 6796 0.00 0.16 0.00 0.24
## 6797 0.02 0.00 0.02 0.24
## 6798 0.09 0.00 0.03 0.24
## 6799 0.00 0.23 0.02 0.24
## 6800 0.09 0.00 0.03 0.24
## 6801 0.06 0.08 0.01 0.24
## 6802 0.00 0.00 0.02 0.24
## 6803 0.05 0.00 0.01 0.24
## 6804 0.00 0.23 0.02 0.24
## 6805 0.09 0.00 0.03 0.24
## 6806 0.00 0.00 0.02 0.24
## 6808 0.08 0.02 0.03 0.24
## 6809 0.00 0.24 0.00 0.24
## 6810 0.12 0.00 0.02 0.24
## 6811 0.09 0.00 0.03 0.24
## 6812 0.01 0.12 0.01 0.24
## 6813 0.05 0.00 0.01 0.24
## 6814 0.04 0.05 0.01 0.24
## 6815 0.06 0.00 0.00 0.24
## 6816 0.03 0.16 0.02 0.24
## 6817 0.09 0.00 0.02 0.24
## 6818 0.13 0.00 0.05 0.24
## 6819 0.09 0.00 0.02 0.24
## 6820 0.05 0.00 0.01 0.24
## 6821 0.00 0.18 0.01 0.24
## 6822 0.01 0.00 0.02 0.24
## 6823 0.07 0.00 0.02 0.24
## 6824 0.02 0.00 0.02 0.24
## 6825 0.01 0.00 0.02 0.24
## 6826 0.15 0.00 0.02 0.24
## 6827 0.12 0.00 0.02 0.24
## 6828 0.00 0.00 0.02 0.24
## 6829 0.00 0.18 0.01 0.24
## 6830 0.02 0.00 0.02 0.24
## 6831 0.05 0.00 0.01 0.24
## 6832 0.05 0.00 0.02 0.24
## 6834 0.09 0.00 0.03 0.24
## 6835 0.05 0.01 0.04 0.24
## 6836 0.05 0.00 0.01 0.24
## 6837 0.09 0.00 0.05 0.24
## 6838 0.19 0.00 0.05 0.24
## 6839 0.05 0.00 0.01 0.24
## 6840 0.01 0.05 0.02 0.24
## 6841 0.00 0.00 0.02 0.24
## 6842 0.00 0.24 0.00 0.24
## 6843 0.00 0.24 0.00 0.24
## 6844 0.05 0.00 0.01 0.24
## 6845 0.06 0.00 0.02 0.24
## 6846 0.21 0.00 0.01 0.24
## 6847 0.00 0.24 0.00 0.24
## 6848 0.05 0.00 0.01 0.24
## 6849 0.00 0.06 0.01 0.24
## 6850 0.06 0.00 0.00 0.24
## 6851 0.05 0.00 0.02 0.24
## 6852 0.05 0.00 0.01 0.24
## 6853 0.00 0.00 0.02 0.24
## 6854 0.11 0.00 0.04 0.24
## 6855 0.00 0.24 0.00 0.24
## 6856 0.06 0.00 0.00 0.24
## 6857 0.09 0.00 0.03 0.24
## 6858 0.00 0.00 0.02 0.24
## 6859 0.09 0.00 0.03 0.24
## 6860 0.00 0.07 0.01 0.24
## 6861 0.05 0.00 0.01 0.24
## 6862 0.00 0.01 0.02 0.24
## 6863 0.02 0.00 0.02 0.24
## 6864 0.00 0.24 0.00 0.24
## 6865 0.03 0.00 0.03 0.24
## 6866 0.03 0.00 0.02 0.24
## 6867 0.01 0.00 0.00 0.24
## 6868 0.05 0.00 0.00 0.24
## 6869 0.05 0.00 0.00 0.24
## 6870 0.05 0.00 0.00 0.24
## 6871 0.05 0.00 0.00 0.24
## 6872 0.05 0.00 0.00 0.24
## 6873 0.05 0.00 0.00 0.24
## 6874 0.02 0.00 0.02 0.24
## 6875 0.09 0.00 0.03 0.24
## 6876 0.00 0.24 0.00 0.24
## 6877 0.10 0.00 0.02 0.24
## 6878 0.05 0.00 0.01 0.24
## 6879 0.09 0.00 0.02 0.24
## 6880 0.05 0.00 0.01 0.24
## 6881 0.23 0.00 0.01 0.24
## 6882 0.00 0.00 0.02 0.24
## 6883 0.06 0.00 0.00 0.24
## 6884 0.00 0.00 0.02 0.24
## 6885 0.00 0.00 0.02 0.24
## 6886 0.08 0.00 0.02 0.24
## 6887 0.00 0.23 0.01 0.24
## 6888 0.09 0.00 0.02 0.24
## 6889 0.00 0.24 0.00 0.24
## 6890 0.06 0.00 0.03 0.24
## 6891 0.13 0.00 0.02 0.24
## 6892 0.07 0.06 0.03 0.24
## 6893 0.05 0.00 0.01 0.24
## 6894 0.09 0.00 0.03 0.24
## 6895 0.14 0.00 0.02 0.24
## 6896 0.04 0.00 0.02 0.24
## 6897 0.01 0.00 0.00 0.24
## 6898 0.00 0.24 0.00 0.24
## 6899 0.05 0.00 0.02 0.24
## 6900 0.06 0.00 0.02 0.24
## 6901 0.08 0.06 0.02 0.24
## 6902 0.05 0.00 0.01 0.24
## 6903 0.09 0.00 0.02 0.24
## 6904 0.00 0.03 0.02 0.24
## 6905 0.14 0.00 0.03 0.24
## 6906 0.06 0.00 0.00 0.24
## 6907 0.06 0.00 0.00 0.24
## 6908 0.03 0.00 0.02 0.24
## 6909 0.24 0.00 0.00 0.24
## 6910 0.06 0.01 0.02 0.24
## 6911 0.10 0.00 0.02 0.24
## 6912 0.02 0.04 0.02 0.24
## 6913 0.09 0.00 0.03 0.24
## 6914 0.09 0.00 0.02 0.24
## 6915 0.09 0.00 0.03 0.24
## 6916 0.07 0.00 0.05 0.24
## 6917 0.00 0.00 0.02 0.24
## 6918 0.18 0.00 0.05 0.24
## 6919 0.14 0.01 0.05 0.24
## 6921 0.10 0.00 0.02 0.24
## 6922 0.06 0.11 0.01 0.24
## 6923 0.09 0.00 0.02 0.24
## 6924 0.02 0.04 0.04 0.24
## 6925 0.06 0.00 0.02 0.24
## 6926 0.09 0.00 0.02 0.24
## 6928 0.05 0.00 0.02 0.24
## 6929 0.10 0.00 0.05 0.24
## 6930 0.11 0.00 0.03 0.24
## 6931 0.21 0.00 0.02 0.24
## 6932 0.09 0.00 0.02 0.24
## 6933 0.05 0.00 0.02 0.24
## 6934 0.01 0.13 0.01 0.24
## 6935 0.05 0.00 0.01 0.24
## 6936 0.06 0.00 0.00 0.24
## 6937 0.00 0.24 0.00 0.24
## 6939 0.09 0.00 0.02 0.24
## 6940 0.01 0.00 0.00 0.24
## 6941 0.01 0.00 0.00 0.24
## 6942 0.10 0.00 0.02 0.24
## 6943 0.05 0.00 0.02 0.24
## 6944 0.12 0.00 0.02 0.24
## 6945 0.00 0.13 0.01 0.24
## 6946 0.00 0.00 0.01 0.24
## 6947 0.06 0.00 0.04 0.24
## 6948 0.01 0.04 0.02 0.24
## 6949 0.09 0.01 0.04 0.24
## 6950 0.07 0.01 0.02 0.24
## 6951 0.06 0.00 0.02 0.24
## 6952 0.09 0.00 0.03 0.24
## 6953 0.08 0.00 0.04 0.23
## 6954 0.05 0.00 0.02 0.23
## 6955 0.03 0.00 0.02 0.23
## 6956 0.09 0.00 0.02 0.23
## 6957 0.00 0.00 0.02 0.23
## 6958 0.09 0.00 0.03 0.23
## 6959 0.09 0.00 0.03 0.23
## 6960 0.06 0.00 0.02 0.23
## 6961 0.00 0.23 0.00 0.23
## 6962 0.01 0.12 0.01 0.23
## 6963 0.00 0.23 0.00 0.23
## 6964 0.09 0.00 0.02 0.23
## 6965 0.21 0.00 0.02 0.23
## 6966 0.22 0.00 0.02 0.23
## 6968 0.00 0.00 0.02 0.23
## 6970 0.00 0.23 0.01 0.23
## 6971 0.05 0.00 0.01 0.23
## 6972 0.05 0.00 0.01 0.23
## 6973 0.11 0.00 0.05 0.23
## 6974 0.04 0.00 0.02 0.23
## 6975 0.05 0.00 0.01 0.23
## 6976 0.05 0.00 0.02 0.23
## 6977 0.09 0.11 0.03 0.23
## 6978 0.00 0.23 0.00 0.23
## 6979 0.01 0.06 0.01 0.23
## 6980 0.10 0.01 0.02 0.23
## 6981 0.05 0.00 0.02 0.23
## 6982 0.02 0.05 0.02 0.23
## 6983 0.00 0.00 0.02 0.23
## 6984 0.03 0.00 0.03 0.23
## 6985 0.00 0.23 0.00 0.23
## 6986 0.02 0.08 0.00 0.23
## 6987 0.06 0.00 0.04 0.23
## 6988 0.13 0.00 0.02 0.23
## 6989 0.02 0.00 0.02 0.23
## 6990 0.13 0.00 0.03 0.23
## 6991 0.05 0.00 0.01 0.23
## 6992 0.19 0.00 0.05 0.23
## 6993 0.09 0.00 0.03 0.23
## 6994 0.05 0.00 0.01 0.23
## 6995 0.00 0.23 0.00 0.23
## 6996 0.00 0.23 0.00 0.23
## 6997 0.07 0.00 0.03 0.23
## 6998 0.06 0.00 0.04 0.23
## 6999 0.09 0.00 0.03 0.23
## 7000 0.00 0.00 0.02 0.23
## 7001 0.00 0.00 0.02 0.23
## 7002 0.09 0.00 0.03 0.23
## 7003 0.00 0.23 0.00 0.23
## 7004 0.01 0.00 0.02 0.23
## 7005 0.00 0.23 0.00 0.23
## 7006 0.01 0.00 0.00 0.23
## 7007 0.01 0.00 0.02 0.23
## 7008 0.10 0.00 0.04 0.23
## 7009 0.05 0.00 0.01 0.23
## 7010 0.05 0.00 0.01 0.23
## 7011 0.02 0.00 0.02 0.23
## 7012 0.00 0.00 0.02 0.23
## 7013 0.10 0.00 0.02 0.23
## 7014 0.09 0.00 0.03 0.23
## 7015 0.00 0.23 0.00 0.23
## 7016 0.01 0.00 0.06 0.23
## 7017 0.05 0.00 0.01 0.23
## 7018 0.06 0.00 0.03 0.23
## 7019 0.09 0.00 0.03 0.23
## 7020 0.05 0.00 0.02 0.23
## 7021 0.09 0.00 0.02 0.23
## 7022 0.00 0.23 0.00 0.23
## 7023 0.00 0.23 0.00 0.23
## 7024 0.05 0.00 0.01 0.23
## 7025 0.00 0.00 0.02 0.23
## 7026 0.11 0.00 0.02 0.23
## 7027 0.02 0.00 0.02 0.23
## 7028 0.01 0.00 0.02 0.23
## 7029 0.02 0.00 0.02 0.23
## 7030 0.01 0.00 0.02 0.23
## 7031 0.09 0.00 0.02 0.23
## 7032 0.09 0.00 0.02 0.23
## 7033 0.00 0.00 0.02 0.23
## 7034 0.06 0.00 0.00 0.23
## 7035 0.16 0.00 0.07 0.23
## 7037 0.09 0.00 0.02 0.23
## 7038 0.12 0.09 0.02 0.23
## 7039 0.03 0.18 0.01 0.23
## 7040 0.06 0.02 0.02 0.23
## 7041 0.08 0.00 0.02 0.23
## 7042 0.00 0.00 0.01 0.23
## 7043 0.06 0.00 0.00 0.23
## 7044 0.06 0.00 0.02 0.23
## 7045 0.05 0.00 0.03 0.23
## 7046 0.00 0.23 0.00 0.23
## 7047 0.09 0.00 0.02 0.23
## 7048 0.00 0.00 0.02 0.23
## 7049 0.13 0.00 0.02 0.23
## 7050 0.09 0.00 0.03 0.23
## 7051 0.22 0.00 0.01 0.23
## 7052 0.05 0.00 0.01 0.23
## 7053 0.07 0.00 0.03 0.23
## 7054 0.12 0.00 0.03 0.23
## 7055 0.09 0.00 0.03 0.23
## 7056 0.00 0.00 0.02 0.23
## 7057 0.06 0.00 0.00 0.23
## 7058 0.04 0.00 0.04 0.23
## 7059 0.02 0.00 0.02 0.23
## 7060 0.19 0.00 0.04 0.23
## 7061 0.00 0.23 0.00 0.23
## 7062 0.02 0.00 0.02 0.23
## 7063 0.01 0.00 0.02 0.23
## 7064 0.00 0.23 0.00 0.23
## 7065 0.01 0.00 0.02 0.23
## 7066 0.00 0.23 0.00 0.23
## 7067 0.00 0.23 0.00 0.23
## 7068 0.00 0.23 0.00 0.23
## 7069 0.09 0.00 0.03 0.23
## 7070 0.06 0.00 0.02 0.23
## 7071 0.00 0.13 0.01 0.23
## 7072 0.09 0.00 0.03 0.23
## 7073 0.14 0.00 0.07 0.23
## 7074 0.00 0.00 0.01 0.23
## 7075 0.00 0.23 0.00 0.23
## 7076 0.09 0.00 0.01 0.23
## 7077 0.06 0.00 0.00 0.23
## 7078 0.00 0.00 0.02 0.23
## 7079 0.00 0.23 0.00 0.23
## 7080 0.00 0.23 0.00 0.23
## 7081 0.01 0.07 0.01 0.23
## 7082 0.09 0.00 0.03 0.23
## 7083 0.06 0.00 0.00 0.23
## 7084 0.00 0.00 0.02 0.23
## 7085 0.00 0.23 0.00 0.23
## 7086 0.05 0.00 0.01 0.23
## 7087 0.00 0.23 0.00 0.23
## 7088 0.05 0.00 0.01 0.23
## 7089 0.10 0.03 0.02 0.23
## 7090 0.09 0.00 0.03 0.23
## 7091 0.05 0.10 0.02 0.23
## 7092 0.09 0.00 0.01 0.23
## 7093 0.00 0.23 0.00 0.23
## 7094 0.09 0.00 0.03 0.23
## 7095 0.00 0.23 0.00 0.23
## 7096 0.09 0.00 0.01 0.23
## 7097 0.00 0.21 0.01 0.23
## 7098 0.05 0.00 0.01 0.23
## 7099 0.09 0.00 0.03 0.23
## 7100 0.09 0.00 0.03 0.23
## 7101 0.03 0.00 0.02 0.23
## 7102 0.03 0.00 0.02 0.23
## 7103 0.04 0.12 0.01 0.23
## 7104 0.00 0.00 0.02 0.23
## 7105 0.04 0.12 0.01 0.23
## 7106 0.05 0.00 0.01 0.23
## 7107 0.00 0.12 0.01 0.23
## 7108 0.09 0.00 0.03 0.23
## 7109 0.01 0.04 0.02 0.23
## 7110 0.01 0.00 0.02 0.23
## 7111 0.00 0.00 0.02 0.23
## 7112 0.00 0.00 0.01 0.23
## 7113 0.09 0.00 0.03 0.23
## 7114 0.01 0.00 0.02 0.23
## 7115 0.09 0.00 0.03 0.23
## 7116 0.00 0.00 0.02 0.23
## 7117 0.09 0.00 0.03 0.23
## 7118 0.10 0.00 0.04 0.23
## 7119 0.07 0.00 0.02 0.23
## 7120 0.00 0.00 0.02 0.23
## 7121 0.00 0.23 0.00 0.23
## 7122 0.09 0.00 0.03 0.23
## 7123 0.00 0.00 0.01 0.23
## 7124 0.00 0.21 0.01 0.23
## 7125 0.05 0.09 0.03 0.23
## 7126 0.00 0.23 0.00 0.23
## 7127 0.09 0.00 0.03 0.23
## 7128 0.09 0.00 0.01 0.23
## 7129 0.09 0.00 0.03 0.23
## 7130 0.00 0.00 0.02 0.23
## 7131 0.00 0.23 0.00 0.23
## 7132 0.00 0.00 0.02 0.23
## 7133 0.00 0.00 0.02 0.23
## 7134 0.09 0.00 0.03 0.23
## 7135 0.09 0.00 0.03 0.22
## 7136 0.01 0.00 0.02 0.22
## 7137 0.01 0.00 0.02 0.22
## 7138 0.00 0.22 0.00 0.22
## 7139 0.00 0.00 0.12 0.22
## 7140 0.03 0.00 0.02 0.22
## 7141 0.05 0.00 0.01 0.22
## 7142 0.00 0.22 0.00 0.22
## 7143 0.09 0.00 0.03 0.22
## 7144 0.04 0.05 0.02 0.22
## 7145 0.06 0.00 0.00 0.22
## 7146 0.09 0.00 0.02 0.22
## 7147 0.00 0.22 0.00 0.22
## 7148 0.04 0.00 0.01 0.22
## 7149 0.01 0.00 0.00 0.22
## 7150 0.01 0.00 0.00 0.22
## 7151 0.01 0.00 0.00 0.22
## 7152 0.00 0.08 0.01 0.22
## 7153 0.03 0.00 0.02 0.22
## 7154 0.00 0.22 0.00 0.22
## 7155 0.06 0.00 0.03 0.22
## 7156 0.00 0.22 0.00 0.22
## 7157 0.00 0.00 0.01 0.22
## 7158 0.05 0.00 0.01 0.22
## 7159 0.09 0.00 0.03 0.22
## 7160 0.09 0.00 0.03 0.22
## 7161 0.00 0.22 0.00 0.22
## 7162 0.07 0.00 0.02 0.22
## 7163 0.00 0.00 0.01 0.22
## 7164 0.06 0.00 0.04 0.22
## 7165 0.00 0.22 0.00 0.22
## 7166 0.04 0.00 0.01 0.22
## 7167 0.01 0.00 0.02 0.22
## 7168 0.00 0.00 0.21 0.22
## 7169 0.00 0.00 0.02 0.22
## 7170 0.00 0.22 0.00 0.22
## 7171 0.04 0.06 0.00 0.22
## 7172 0.00 0.11 0.01 0.22
## 7173 0.09 0.00 0.03 0.22
## 7174 0.04 0.00 0.01 0.22
## 7175 0.06 0.00 0.00 0.22
## 7176 0.06 0.00 0.00 0.22
## 7177 0.00 0.00 0.02 0.22
## 7178 0.13 0.00 0.04 0.22
## 7179 0.00 0.07 0.01 0.22
## 7180 0.02 0.00 0.02 0.22
## 7181 0.08 0.01 0.04 0.22
## 7183 0.04 0.10 0.02 0.22
## 7184 0.07 0.00 0.02 0.22
## 7185 0.01 0.00 0.00 0.22
## 7186 0.00 0.22 0.00 0.22
## 7187 0.08 0.00 0.01 0.22
## 7188 0.02 0.00 0.02 0.22
## 7189 0.08 0.00 0.01 0.22
## 7190 0.01 0.00 0.02 0.22
## 7191 0.02 0.17 0.01 0.22
## 7192 0.00 0.00 0.02 0.22
## 7193 0.06 0.08 0.02 0.22
## 7194 0.00 0.00 0.02 0.22
## 7195 0.00 0.22 0.00 0.22
## 7196 0.07 0.00 0.02 0.22
## 7197 0.01 0.00 0.01 0.22
## 7198 0.00 0.00 0.02 0.22
## 7199 0.06 0.00 0.00 0.22
## 7200 0.13 0.00 0.03 0.22
## 7201 0.10 0.00 0.04 0.22
## 7202 0.12 0.00 0.07 0.22
## 7203 0.13 0.02 0.04 0.22
## 7204 0.02 0.00 0.01 0.22
## 7205 0.01 0.00 0.02 0.22
## 7206 0.01 0.03 0.02 0.22
## 7207 0.08 0.00 0.01 0.22
## 7208 0.08 0.00 0.02 0.22
## 7209 0.06 0.00 0.00 0.22
## 7210 0.08 0.00 0.05 0.22
## 7211 0.04 0.12 0.02 0.22
## 7212 0.08 0.00 0.02 0.22
## 7213 0.10 0.00 0.04 0.22
## 7215 0.06 0.00 0.00 0.22
## 7216 0.00 0.00 0.02 0.22
## 7217 0.09 0.00 0.04 0.22
## 7218 0.06 0.00 0.00 0.22
## 7219 0.10 0.00 0.02 0.22
## 7220 0.05 0.00 0.01 0.22
## 7221 0.00 0.22 0.00 0.22
## 7222 0.04 0.00 0.01 0.22
## 7223 0.09 0.00 0.02 0.22
## 7224 0.04 0.00 0.00 0.22
## 7225 0.03 0.05 0.00 0.22
## 7226 0.00 0.22 0.00 0.22
## 7227 0.04 0.00 0.00 0.22
## 7228 0.04 0.00 0.00 0.22
## 7229 0.00 0.22 0.00 0.22
## 7230 0.03 0.00 0.02 0.22
## 7231 0.04 0.00 0.01 0.22
## 7232 0.00 0.00 0.02 0.22
## 7233 0.00 0.00 0.01 0.22
## 7234 0.08 0.00 0.03 0.22
## 7235 0.18 0.00 0.01 0.22
## 7236 0.08 0.00 0.01 0.22
## 7237 0.00 0.17 0.00 0.22
## 7238 0.00 0.00 0.02 0.22
## 7239 0.02 0.03 0.02 0.22
## 7240 0.05 0.00 0.01 0.22
## 7241 0.09 0.00 0.02 0.22
## 7242 0.08 0.00 0.01 0.22
## 7243 0.03 0.00 0.02 0.22
## 7244 0.05 0.00 0.01 0.22
## 7245 0.07 0.00 0.02 0.22
## 7246 0.03 0.12 0.01 0.22
## 7247 0.00 0.22 0.00 0.22
## 7248 0.04 0.00 0.01 0.22
## 7249 0.08 0.00 0.03 0.22
## 7250 0.08 0.00 0.03 0.22
## 7251 0.00 0.22 0.00 0.22
## 7252 0.01 0.00 0.02 0.22
## 7253 0.06 0.07 0.01 0.22
## 7254 0.09 0.00 0.02 0.22
## 7255 0.08 0.00 0.04 0.22
## 7256 0.00 0.22 0.00 0.22
## 7257 0.04 0.00 0.01 0.22
## 7258 0.00 0.00 0.01 0.22
## 7259 0.08 0.00 0.04 0.22
## 7260 0.00 0.00 0.02 0.22
## 7261 0.01 0.00 0.10 0.22
## 7262 0.08 0.00 0.03 0.22
## 7263 0.00 0.22 0.00 0.22
## 7264 0.00 0.00 0.02 0.22
## 7265 0.01 0.00 0.02 0.22
## 7266 0.07 0.00 0.03 0.22
## 7267 0.08 0.00 0.03 0.22
## 7268 0.19 0.00 0.02 0.22
## 7269 0.04 0.06 0.01 0.22
## 7270 0.08 0.00 0.03 0.22
## 7271 0.06 0.00 0.00 0.22
## 7272 0.02 0.06 0.01 0.22
## 7273 0.00 0.00 0.02 0.22
## 7274 0.06 0.00 0.00 0.22
## 7275 0.00 0.13 0.01 0.22
## 7276 0.00 0.22 0.00 0.22
## 7277 0.08 0.00 0.03 0.22
## 7278 0.00 0.00 0.02 0.22
## 7279 0.00 0.22 0.00 0.22
## 7280 0.04 0.00 0.01 0.22
## 7281 0.10 0.00 0.04 0.22
## 7282 0.08 0.00 0.01 0.22
## 7283 0.00 0.22 0.00 0.22
## 7284 0.06 0.00 0.00 0.22
## 7285 0.00 0.00 0.02 0.22
## 7286 0.00 0.22 0.00 0.22
## 7287 0.08 0.00 0.01 0.22
## 7288 0.08 0.00 0.01 0.22
## 7289 0.06 0.06 0.03 0.22
## 7290 0.01 0.00 0.02 0.22
## 7291 0.05 0.01 0.02 0.22
## 7292 0.13 0.00 0.04 0.22
## 7293 0.05 0.00 0.03 0.22
## 7294 0.04 0.00 0.01 0.22
## 7295 0.00 0.22 0.00 0.22
## 7296 0.06 0.00 0.00 0.22
## 7297 0.20 0.00 0.01 0.22
## 7298 0.06 0.00 0.00 0.22
## 7299 0.04 0.00 0.01 0.22
## 7300 0.13 0.00 0.02 0.22
## 7301 0.01 0.00 0.02 0.22
## 7302 0.00 0.22 0.00 0.22
## 7303 0.07 0.00 0.03 0.22
## 7304 0.07 0.13 0.02 0.22
## 7305 0.08 0.00 0.03 0.22
## 7306 0.03 0.04 0.01 0.22
## 7307 0.19 0.00 0.02 0.22
## 7308 0.00 0.22 0.00 0.22
## 7309 0.02 0.02 0.02 0.22
## 7310 0.13 0.03 0.03 0.22
## 7311 0.04 0.05 0.01 0.22
## 7312 0.10 0.00 0.02 0.22
## 7313 0.08 0.00 0.01 0.21
## 7314 0.08 0.00 0.03 0.21
## 7315 0.00 0.08 0.01 0.21
## 7316 0.08 0.00 0.01 0.21
## 7317 0.03 0.06 0.03 0.21
## 7318 0.00 0.00 0.02 0.21
## 7320 0.08 0.00 0.03 0.21
## 7321 0.08 0.00 0.01 0.21
## 7322 0.16 0.00 0.05 0.21
## 7323 0.04 0.00 0.01 0.21
## 7324 0.08 0.00 0.03 0.21
## 7325 0.00 0.00 0.02 0.21
## 7326 0.08 0.00 0.03 0.21
## 7327 0.00 0.21 0.00 0.21
## 7328 0.04 0.00 0.02 0.21
## 7329 0.00 0.11 0.01 0.21
## 7330 0.00 0.21 0.00 0.21
## 7331 0.00 0.21 0.00 0.21
## 7332 0.02 0.15 0.01 0.21
## 7333 0.00 0.21 0.00 0.21
## 7334 0.19 0.00 0.03 0.21
## 7335 0.00 0.00 0.02 0.21
## 7336 0.08 0.03 0.02 0.21
## 7337 0.02 0.08 0.03 0.21
## 7338 0.08 0.00 0.03 0.21
## 7339 0.00 0.00 0.02 0.21
## 7340 0.07 0.00 0.02 0.21
## 7341 0.02 0.00 0.01 0.21
## 7342 0.04 0.00 0.01 0.21
## 7343 0.08 0.00 0.01 0.21
## 7344 0.07 0.00 0.04 0.21
## 7345 0.08 0.00 0.04 0.21
## 7346 0.08 0.00 0.03 0.21
## 7347 0.00 0.21 0.00 0.21
## 7348 0.08 0.00 0.03 0.21
## 7349 0.00 0.00 0.02 0.21
## 7350 0.00 0.21 0.00 0.21
## 7351 0.06 0.00 0.00 0.21
## 7353 0.05 0.00 0.01 0.21
## 7354 0.00 0.21 0.00 0.21
## 7355 0.08 0.00 0.03 0.21
## 7356 0.01 0.00 0.02 0.21
## 7357 0.07 0.00 0.03 0.21
## 7358 0.01 0.00 0.02 0.21
## 7359 0.05 0.00 0.01 0.21
## 7360 0.06 0.00 0.02 0.21
## 7361 0.07 0.00 0.02 0.21
## 7362 0.00 0.00 0.02 0.21
## 7363 0.05 0.00 0.01 0.21
## 7364 0.05 0.00 0.01 0.21
## 7365 0.08 0.00 0.03 0.21
## 7366 0.12 0.00 0.02 0.21
## 7367 0.08 0.00 0.03 0.21
## 7368 0.00 0.00 0.02 0.21
## 7369 0.11 0.01 0.04 0.21
## 7372 0.01 0.00 0.00 0.21
## 7373 0.18 0.00 0.04 0.21
## 7374 0.03 0.07 0.01 0.21
## 7375 0.08 0.00 0.02 0.21
## 7376 0.03 0.00 0.01 0.21
## 7377 0.07 0.00 0.03 0.21
## 7378 0.01 0.00 0.02 0.21
## 7379 0.08 0.00 0.03 0.21
## 7380 0.08 0.00 0.03 0.21
## 7381 0.08 0.00 0.03 0.21
## 7382 0.00 0.21 0.01 0.21
## 7384 0.00 0.20 0.01 0.21
## 7385 0.10 0.01 0.04 0.21
## 7386 0.00 0.21 0.00 0.21
## 7387 0.07 0.00 0.02 0.21
## 7388 0.03 0.08 0.01 0.21
## 7389 0.02 0.00 0.02 0.21
## 7390 0.01 0.00 0.02 0.21
## 7391 0.05 0.08 0.02 0.21
## 7392 0.08 0.00 0.01 0.21
## 7393 0.05 0.00 0.02 0.21
## 7394 0.05 0.00 0.01 0.21
## 7395 0.05 0.00 0.02 0.21
## 7396 0.01 0.00 0.02 0.21
## 7397 0.00 0.00 0.02 0.21
## 7398 0.00 0.21 0.00 0.21
## 7399 0.08 0.00 0.03 0.21
## 7400 0.04 0.00 0.01 0.21
## 7401 0.00 0.00 0.01 0.21
## 7402 0.00 0.00 0.01 0.21
## 7403 0.00 0.13 0.01 0.21
## 7404 0.08 0.00 0.03 0.21
## 7405 0.08 0.00 0.01 0.21
## 7406 0.07 0.03 0.02 0.21
## 7408 0.05 0.00 0.01 0.21
## 7409 0.04 0.00 0.02 0.21
## 7410 0.00 0.00 0.02 0.21
## 7411 0.00 0.00 0.02 0.21
## 7412 0.04 0.00 0.00 0.21
## 7413 0.04 0.00 0.00 0.21
## 7414 0.04 0.00 0.00 0.21
## 7415 0.04 0.00 0.00 0.21
## 7416 0.04 0.00 0.00 0.21
## 7417 0.04 0.00 0.00 0.21
## 7418 0.07 0.00 0.02 0.21
## 7419 0.00 0.00 0.01 0.21
## 7420 0.00 0.20 0.01 0.21
## 7421 0.14 0.00 0.01 0.21
## 7422 0.00 0.21 0.00 0.21
## 7423 0.04 0.00 0.01 0.21
## 7425 0.08 0.00 0.01 0.21
## 7426 0.08 0.00 0.01 0.21
## 7427 0.00 0.20 0.01 0.21
## 7428 0.00 0.20 0.01 0.21
## 7429 0.00 0.01 0.01 0.21
## 7430 0.05 0.02 0.02 0.21
## 7431 0.08 0.00 0.03 0.21
## 7432 0.04 0.00 0.01 0.21
## 7433 0.08 0.00 0.03 0.21
## 7434 0.08 0.00 0.03 0.21
## 7435 0.00 0.10 0.01 0.21
## 7436 0.04 0.00 0.01 0.21
## 7437 0.04 0.00 0.02 0.21
## 7438 0.00 0.21 0.00 0.21
## 7439 0.06 0.00 0.00 0.21
## 7440 0.04 0.07 0.01 0.21
## 7441 0.00 0.21 0.00 0.21
## 7442 0.04 0.03 0.01 0.21
## 7443 0.04 0.00 0.01 0.21
## 7444 0.07 0.00 0.02 0.21
## 7445 0.04 0.00 0.01 0.21
## 7446 0.01 0.00 0.01 0.21
## 7447 0.08 0.00 0.01 0.21
## 7448 0.08 0.00 0.03 0.21
## 7449 0.08 0.00 0.03 0.21
## 7450 0.00 0.00 0.02 0.21
## 7451 0.00 0.21 0.00 0.21
## 7452 0.08 0.00 0.01 0.21
## 7453 0.13 0.00 0.05 0.21
## 7454 0.12 0.00 0.05 0.21
## 7455 0.00 0.00 0.02 0.21
## 7456 0.00 0.00 0.01 0.21
## 7457 0.00 0.00 0.01 0.21
## 7458 0.00 0.21 0.00 0.21
## 7459 0.00 0.00 0.01 0.21
## 7460 0.08 0.00 0.03 0.21
## 7461 0.08 0.00 0.02 0.21
## 7462 0.00 0.00 0.02 0.21
## 7463 0.04 0.00 0.01 0.21
## 7464 0.07 0.00 0.03 0.21
## 7465 0.00 0.21 0.00 0.21
## 7466 0.00 0.00 0.02 0.21
## 7467 0.00 0.00 0.02 0.21
## 7468 0.00 0.19 0.01 0.21
## 7469 0.08 0.00 0.03 0.21
## 7470 0.00 0.21 0.00 0.21
## 7471 0.05 0.00 0.00 0.21
## 7472 0.00 0.21 0.00 0.21
## 7473 0.00 0.00 0.01 0.21
## 7474 0.03 0.08 0.00 0.21
## 7475 0.00 0.06 0.01 0.21
## 7476 0.04 0.00 0.01 0.21
## 7477 0.00 0.00 0.02 0.21
## 7478 0.03 0.12 0.01 0.21
## 7479 0.06 0.00 0.02 0.21
## 7480 0.04 0.00 0.01 0.21
## 7481 0.04 0.00 0.01 0.21
## 7482 0.00 0.21 0.00 0.21
## 7483 0.03 0.06 0.02 0.21
## 7484 0.08 0.00 0.02 0.21
## 7485 0.04 0.00 0.02 0.21
## 7486 0.00 0.21 0.00 0.21
## 7487 0.10 0.04 0.01 0.21
## 7488 0.08 0.00 0.01 0.21
## 7489 0.02 0.00 0.02 0.21
## 7490 0.04 0.00 0.01 0.21
## 7491 0.10 0.01 0.04 0.21
## 7492 0.00 0.21 0.00 0.21
## 7493 0.04 0.00 0.01 0.21
## 7494 0.05 0.00 0.00 0.21
## 7495 0.07 0.00 0.03 0.21
## 7496 0.00 0.00 0.02 0.20
## 7497 0.04 0.00 0.02 0.20
## 7498 0.06 0.11 0.02 0.20
## 7499 0.00 0.20 0.00 0.20
## 7500 0.00 0.00 0.01 0.20
## 7501 0.05 0.00 0.00 0.20
## 7502 0.00 0.00 0.01 0.20
## 7503 0.01 0.00 0.02 0.20
## 7504 0.05 0.00 0.00 0.20
## 7505 0.07 0.00 0.02 0.20
## 7506 0.00 0.20 0.00 0.20
## 7507 0.00 0.00 0.02 0.20
## 7508 0.00 0.00 0.01 0.20
## 7509 0.11 0.00 0.02 0.20
## 7510 0.02 0.00 0.02 0.20
## 7511 0.08 0.00 0.03 0.20
## 7512 0.03 0.00 0.01 0.20
## 7513 0.00 0.20 0.00 0.20
## 7514 0.08 0.00 0.03 0.20
## 7515 0.04 0.00 0.01 0.20
## 7516 0.02 0.00 0.02 0.20
## 7517 0.00 0.20 0.00 0.20
## 7518 0.08 0.00 0.02 0.20
## 7519 0.04 0.00 0.02 0.20
## 7520 0.00 0.20 0.00 0.20
## 7521 0.02 0.00 0.19 0.20
## 7522 0.09 0.00 0.03 0.20
## 7523 0.05 0.07 0.02 0.20
## 7524 0.04 0.00 0.01 0.20
## 7525 0.03 0.00 0.02 0.20
## 7526 0.00 0.14 0.01 0.20
## 7527 0.00 0.20 0.00 0.20
## 7528 0.04 0.02 0.01 0.20
## 7529 0.02 0.01 0.02 0.20
## 7530 0.17 0.00 0.03 0.20
## 7531 0.04 0.00 0.01 0.20
## 7532 0.00 0.20 0.00 0.20
## 7533 0.09 0.00 0.03 0.20
## 7534 0.05 0.00 0.00 0.20
## 7535 0.08 0.00 0.03 0.20
## 7536 0.00 0.20 0.00 0.20
## 7537 0.00 0.20 0.00 0.20
## 7538 0.05 0.09 0.02 0.20
## 7539 0.05 0.08 0.02 0.20
## 7540 0.19 0.00 0.01 0.20
## 7541 0.08 0.00 0.03 0.20
## 7542 0.08 0.00 0.03 0.20
## 7543 0.00 0.20 0.00 0.20
## 7544 0.05 0.10 0.02 0.20
## 7545 0.08 0.05 0.01 0.20
## 7546 0.20 0.00 0.00 0.20
## 7547 0.02 0.00 0.01 0.20
## 7548 0.00 0.00 0.02 0.20
## 7549 0.05 0.00 0.02 0.20
## 7550 0.19 0.00 0.01 0.20
## 7551 0.08 0.00 0.03 0.20
## 7552 0.04 0.00 0.01 0.20
## 7553 0.00 0.20 0.00 0.20
## 7554 0.00 0.20 0.00 0.20
## 7555 0.04 0.00 0.01 0.20
## 7556 0.03 0.03 0.02 0.20
## 7557 0.02 0.00 0.02 0.20
## 7558 0.04 0.08 0.02 0.20
## 7559 0.08 0.00 0.03 0.20
## 7560 0.03 0.00 0.02 0.20
## 7561 0.00 0.20 0.01 0.20
## 7562 0.08 0.00 0.02 0.20
## 7563 0.05 0.00 0.00 0.20
## 7564 0.07 0.02 0.02 0.20
## 7565 0.10 0.00 0.02 0.20
## 7566 0.15 0.00 0.05 0.20
## 7567 0.08 0.00 0.03 0.20
## 7568 0.02 0.00 0.01 0.20
## 7569 0.00 0.20 0.00 0.20
## 7570 0.03 0.16 0.01 0.20
## 7571 0.01 0.00 0.02 0.20
## 7572 0.05 0.00 0.00 0.20
## 7573 0.07 0.00 0.03 0.20
## 7574 0.00 0.00 0.02 0.20
## 7575 0.04 0.00 0.01 0.20
## 7576 0.04 0.00 0.04 0.20
## 7577 0.00 0.20 0.00 0.20
## 7578 0.06 0.00 0.02 0.20
## 7579 0.00 0.20 0.00 0.20
## 7580 0.04 0.00 0.01 0.20
## 7581 0.05 0.00 0.00 0.20
## 7582 0.00 0.20 0.00 0.20
## 7583 0.04 0.00 0.01 0.20
## 7584 0.00 0.20 0.00 0.20
## 7585 0.00 0.00 0.01 0.20
## 7586 0.04 0.00 0.01 0.20
## 7587 0.00 0.18 0.00 0.20
## 7588 0.08 0.00 0.03 0.20
## 7589 0.05 0.00 0.00 0.20
## 7590 0.04 0.09 0.01 0.20
## 7591 0.02 0.07 0.01 0.20
## 7592 0.08 0.00 0.03 0.20
## 7593 0.00 0.00 0.01 0.20
## 7594 0.00 0.00 0.01 0.20
## 7595 0.00 0.00 0.01 0.20
## 7596 0.07 0.02 0.02 0.20
## 7597 0.08 0.00 0.02 0.20
## 7598 0.08 0.00 0.01 0.20
## 7599 0.00 0.00 0.02 0.20
## 7600 0.05 0.00 0.03 0.20
## 7601 0.08 0.00 0.03 0.20
## 7602 0.04 0.01 0.02 0.20
## 7603 0.04 0.00 0.01 0.20
## 7604 0.08 0.00 0.01 0.20
## 7605 0.00 0.20 0.00 0.20
## 7606 0.04 0.04 0.02 0.20
## 7607 0.11 0.00 0.02 0.20
## 7608 0.09 0.00 0.02 0.20
## 7609 0.08 0.00 0.02 0.20
## 7610 0.04 0.00 0.01 0.20
## 7611 0.06 0.00 0.02 0.20
## 7612 0.12 0.00 0.02 0.20
## 7613 0.08 0.00 0.03 0.20
## 7614 0.04 0.00 0.01 0.20
## 7615 0.04 0.00 0.00 0.20
## 7617 0.13 0.00 0.01 0.20
## 7618 0.02 0.05 0.00 0.20
## 7619 0.04 0.00 0.00 0.20
## 7620 0.04 0.00 0.00 0.20
## 7621 0.04 0.00 0.00 0.20
## 7622 0.04 0.00 0.00 0.20
## 7623 0.04 0.00 0.00 0.20
## 7624 0.00 0.20 0.00 0.20
## 7625 0.04 0.00 0.00 0.20
## 7626 0.00 0.00 0.02 0.20
## 7627 0.04 0.00 0.01 0.20
## 7628 0.00 0.20 0.00 0.20
## 7629 0.04 0.00 0.02 0.20
## 7630 0.00 0.03 0.01 0.20
## 7631 0.03 0.00 0.02 0.20
## 7632 0.00 0.00 0.02 0.20
## 7633 0.08 0.00 0.03 0.20
## 7634 0.00 0.20 0.00 0.20
## 7635 0.05 0.00 0.00 0.20
## 7636 0.08 0.00 0.03 0.20
## 7637 0.02 0.10 0.01 0.20
## 7638 0.00 0.19 0.01 0.20
## 7639 0.04 0.00 0.01 0.20
## 7640 0.17 0.00 0.03 0.20
## 7641 0.09 0.00 0.04 0.20
## 7642 0.10 0.00 0.03 0.20
## 7643 0.08 0.00 0.03 0.20
## 7644 0.04 0.00 0.01 0.20
## 7645 0.00 0.20 0.00 0.20
## 7646 0.02 0.02 0.02 0.20
## 7647 0.04 0.00 0.01 0.20
## 7648 0.00 0.20 0.00 0.20
## 7650 0.00 0.20 0.00 0.20
## 7651 0.04 0.00 0.02 0.20
## 7652 0.11 0.01 0.03 0.20
## 7653 0.05 0.00 0.02 0.20
## 7654 0.08 0.00 0.03 0.20
## 7655 0.00 0.20 0.00 0.20
## 7656 0.01 0.16 0.01 0.20
## 7657 0.00 0.00 0.01 0.20
## 7658 0.06 0.00 0.02 0.20
## 7659 0.13 0.00 0.02 0.20
## 7660 0.04 0.00 0.01 0.20
## 7661 0.04 0.00 0.01 0.20
## 7662 0.00 0.20 0.00 0.20
## 7663 0.08 0.00 0.03 0.20
## 7664 0.20 0.00 0.00 0.20
## 7665 0.01 0.00 0.01 0.20
## 7666 0.08 0.05 0.03 0.20
## 7667 0.02 0.07 0.01 0.20
## 7668 0.08 0.00 0.03 0.20
## 7669 0.00 0.00 0.01 0.20
## 7670 0.04 0.00 0.01 0.20
## 7671 0.00 0.00 0.01 0.20
## 7672 0.00 0.20 0.00 0.20
## 7673 0.00 0.20 0.00 0.20
## 7674 0.04 0.00 0.01 0.20
## 7675 0.00 0.01 0.01 0.20
## 7676 0.06 0.00 0.02 0.20
## 7677 0.01 0.00 0.02 0.20
## 7678 0.00 0.20 0.00 0.20
## 7679 0.08 0.00 0.03 0.20
## 7680 0.00 0.00 0.01 0.20
## 7681 0.01 0.00 0.02 0.20
## 7682 0.07 0.00 0.01 0.20
## 7683 0.10 0.00 0.02 0.20
## 7684 0.01 0.00 0.02 0.20
## 7685 0.04 0.00 0.01 0.20
## 7686 0.00 0.09 0.01 0.20
## 7687 0.09 0.00 0.02 0.20
## 7688 0.08 0.00 0.03 0.20
## 7689 0.00 0.20 0.00 0.20
## 7690 0.00 0.00 0.01 0.20
## 7691 0.08 0.03 0.01 0.20
## 7692 0.00 0.00 0.01 0.20
## 7693 0.08 0.00 0.03 0.20
## 7694 0.00 0.00 0.01 0.20
## 7695 0.00 0.00 0.01 0.20
## 7696 0.05 0.00 0.00 0.20
## 7697 0.08 0.00 0.03 0.20
## 7698 0.00 0.20 0.00 0.20
## 7699 0.00 0.11 0.01 0.20
## 7700 0.00 0.20 0.00 0.20
## 7701 0.00 0.18 0.01 0.20
## 7702 0.00 0.00 0.01 0.20
## 7703 0.02 0.00 0.02 0.20
## 7704 0.05 0.00 0.00 0.20
## 7705 0.05 0.00 0.00 0.20
## 7706 0.01 0.00 0.02 0.20
## 7707 0.04 0.00 0.01 0.20
## 7708 0.04 0.00 0.01 0.20
## 7709 0.07 0.00 0.01 0.20
## 7710 0.05 0.00 0.00 0.20
## 7711 0.13 0.00 0.02 0.20
## 7712 0.03 0.00 0.02 0.20
## 7713 0.00 0.20 0.00 0.20
## 7714 0.00 0.20 0.00 0.20
## 7715 0.04 0.00 0.01 0.20
## 7716 0.00 0.00 0.02 0.20
## 7717 0.04 0.00 0.01 0.20
## 7718 0.05 0.00 0.01 0.20
## 7719 0.00 0.20 0.00 0.20
## 7720 0.03 0.00 0.01 0.20
## 7722 0.00 0.05 0.02 0.20
## 7723 0.07 0.00 0.03 0.20
## 7724 0.00 0.03 0.01 0.20
## 7725 0.00 0.00 0.01 0.20
## 7726 0.07 0.00 0.03 0.20
## 7727 0.17 0.00 0.03 0.20
## 7728 0.00 0.00 0.01 0.20
## 7729 0.03 0.08 0.02 0.20
## 7730 0.12 0.00 0.03 0.20
## 7731 0.07 0.00 0.02 0.20
## 7732 0.05 0.05 0.02 0.20
## 7733 0.07 0.00 0.02 0.20
## 7734 0.05 0.00 0.00 0.20
## 7735 0.00 0.02 0.01 0.19
## 7736 0.13 0.00 0.04 0.19
## 7737 0.00 0.00 0.01 0.19
## 7738 0.00 0.00 0.01 0.19
## 7739 0.12 0.00 0.03 0.19
## 7740 0.04 0.00 0.01 0.19
## 7741 0.07 0.00 0.02 0.19
## 7742 0.05 0.00 0.00 0.19
## 7743 0.06 0.04 0.02 0.19
## 7744 0.03 0.00 0.02 0.19
## 7745 0.11 0.00 0.02 0.19
## 7746 0.00 0.18 0.01 0.19
## 7747 0.06 0.01 0.02 0.19
## 7748 0.08 0.00 0.04 0.19
## 7749 0.09 0.00 0.02 0.19
## 7750 0.07 0.00 0.03 0.19
## 7751 0.04 0.00 0.02 0.19
## 7752 0.07 0.00 0.02 0.19
## 7753 0.00 0.06 0.01 0.19
## 7754 0.00 0.00 0.01 0.19
## 7755 0.00 0.19 0.00 0.19
## 7756 0.03 0.08 0.01 0.19
## 7757 0.00 0.00 0.01 0.19
## 7758 0.00 0.19 0.00 0.19
## 7759 0.05 0.00 0.00 0.19
## 7760 0.01 0.00 0.01 0.19
## 7761 0.00 0.19 0.00 0.19
## 7762 0.17 0.00 0.02 0.19
## 7763 0.04 0.00 0.01 0.19
## 7765 0.02 0.00 0.02 0.19
## 7766 0.05 0.00 0.00 0.19
## 7767 0.00 0.19 0.00 0.19
## 7768 0.00 0.18 0.01 0.19
## 7769 0.13 0.00 0.01 0.19
## 7770 0.00 0.19 0.00 0.19
## 7771 0.04 0.04 0.01 0.19
## 7772 0.09 0.02 0.03 0.19
## 7773 0.04 0.00 0.01 0.19
## 7774 0.07 0.00 0.02 0.19
## 7775 0.06 0.00 0.03 0.19
## 7776 0.04 0.00 0.01 0.19
## 7777 0.00 0.00 0.01 0.19
## 7778 0.07 0.00 0.02 0.19
## 7779 0.02 0.05 0.01 0.19
## 7780 0.01 0.00 0.02 0.19
## 7781 0.01 0.00 0.01 0.19
## 7782 0.03 0.00 0.03 0.19
## 7783 0.00 0.19 0.00 0.19
## 7784 0.16 0.00 0.02 0.19
## 7785 0.00 0.19 0.00 0.19
## 7786 0.11 0.00 0.01 0.19
## 7787 0.11 0.00 0.02 0.19
## 7788 0.00 0.19 0.00 0.19
## 7789 0.01 0.00 0.01 0.19
## 7790 0.07 0.00 0.02 0.19
## 7791 0.00 0.19 0.00 0.19
## 7792 0.03 0.01 0.03 0.19
## 7793 0.02 0.00 0.02 0.19
## 7794 0.00 0.00 0.01 0.19
## 7795 0.00 0.19 0.00 0.19
## 7796 0.07 0.00 0.01 0.19
## 7797 0.00 0.04 0.02 0.19
## 7798 0.07 0.00 0.01 0.19
## 7799 0.15 0.00 0.04 0.19
## 7800 0.02 0.02 0.01 0.19
## 7801 0.06 0.01 0.03 0.19
## 7802 0.04 0.00 0.01 0.19
## 7803 0.09 0.00 0.02 0.19
## 7804 0.00 0.00 0.01 0.19
## 7805 0.10 0.00 0.03 0.19
## 7806 0.02 0.00 0.02 0.19
## 7807 0.00 0.00 0.01 0.19
## 7808 0.02 0.00 0.01 0.19
## 7809 0.01 0.00 0.01 0.19
## 7810 0.07 0.00 0.02 0.19
## 7811 0.07 0.00 0.02 0.19
## 7812 0.04 0.00 0.01 0.19
## 7813 0.00 0.19 0.00 0.19
## 7814 0.00 0.00 0.01 0.19
## 7815 0.03 0.00 0.01 0.19
## 7816 0.07 0.00 0.02 0.19
## 7817 0.00 0.19 0.00 0.19
## 7818 0.01 0.00 0.01 0.19
## 7819 0.07 0.00 0.02 0.19
## 7820 0.00 0.00 0.01 0.19
## 7821 0.02 0.00 0.01 0.19
## 7822 0.07 0.00 0.02 0.19
## 7823 0.05 0.00 0.00 0.19
## 7824 0.00 0.19 0.00 0.19
## 7825 0.00 0.19 0.00 0.19
## 7826 0.07 0.00 0.02 0.19
## 7827 0.13 0.00 0.03 0.19
## 7828 0.07 0.00 0.01 0.19
## 7829 0.00 0.18 0.01 0.19
## 7830 0.00 0.19 0.00 0.19
## 7831 0.07 0.02 0.02 0.19
## 7832 0.07 0.00 0.04 0.19
## 7833 0.07 0.00 0.02 0.19
## 7834 0.02 0.10 0.01 0.19
## 7835 0.03 0.00 0.01 0.19
## 7836 0.09 0.00 0.02 0.19
## 7837 0.01 0.16 0.00 0.19
## 7838 0.00 0.19 0.00 0.19
## 7839 0.07 0.00 0.02 0.19
## 7840 0.07 0.00 0.02 0.19
## 7841 0.07 0.00 0.01 0.19
## 7842 0.03 0.00 0.01 0.19
## 7843 0.07 0.00 0.02 0.19
## 7844 0.00 0.00 0.01 0.19
## 7845 0.03 0.00 0.02 0.19
## 7846 0.00 0.19 0.00 0.19
## 7847 0.05 0.00 0.00 0.19
## 7848 0.04 0.00 0.01 0.19
## 7849 0.00 0.19 0.00 0.19
## 7850 0.05 0.00 0.02 0.19
## 7851 0.07 0.00 0.02 0.19
## 7852 0.11 0.00 0.03 0.19
## 7853 0.00 0.00 0.01 0.19
## 7854 0.05 0.00 0.00 0.19
## 7855 0.04 0.00 0.01 0.19
## 7856 0.09 0.00 0.04 0.19
## 7857 0.03 0.00 0.01 0.19
## 7858 0.00 0.19 0.00 0.19
## 7859 0.02 0.06 0.03 0.19
## 7860 0.04 0.00 0.00 0.19
## 7861 0.04 0.00 0.00 0.19
## 7862 0.04 0.00 0.00 0.19
## 7863 0.00 0.16 0.03 0.19
## 7864 0.00 0.19 0.00 0.19
## 7865 0.04 0.00 0.00 0.19
## 7866 0.04 0.00 0.00 0.19
## 7867 0.00 0.19 0.00 0.19
## 7868 0.00 0.00 0.01 0.19
## 7869 0.00 0.19 0.00 0.19
## 7870 0.00 0.00 0.01 0.19
## 7871 0.04 0.00 0.01 0.19
## 7872 0.04 0.00 0.01 0.19
## 7873 0.06 0.00 0.02 0.19
## 7874 0.07 0.00 0.02 0.19
## 7875 0.07 0.00 0.02 0.19
## 7876 0.05 0.00 0.00 0.19
## 7877 0.00 0.19 0.00 0.19
## 7878 0.07 0.00 0.01 0.19
## 7879 0.06 0.01 0.02 0.19
## 7880 0.00 0.00 0.01 0.19
## 7881 0.00 0.19 0.00 0.19
## 7882 0.05 0.07 0.02 0.19
## 7883 0.00 0.00 0.01 0.19
## 7884 0.07 0.00 0.02 0.19
## 7885 0.05 0.00 0.00 0.19
## 7886 0.07 0.00 0.02 0.19
## 7887 0.01 0.12 0.01 0.19
## 7888 0.00 0.06 0.01 0.19
## 7889 0.00 0.19 0.00 0.19
## 7890 0.06 0.00 0.03 0.19
## 7891 0.05 0.00 0.03 0.19
## 7892 0.04 0.00 0.01 0.19
## 7893 0.16 0.00 0.03 0.19
## 7894 0.05 0.00 0.03 0.19
## 7895 0.03 0.00 0.01 0.19
## 7896 0.07 0.00 0.02 0.19
## 7897 0.07 0.00 0.02 0.19
## 7898 0.00 0.19 0.00 0.19
## 7899 0.07 0.00 0.02 0.19
## 7900 0.00 0.19 0.00 0.19
## 7901 0.07 0.00 0.02 0.19
## 7902 0.18 0.00 0.01 0.19
## 7903 0.12 0.00 0.02 0.19
## 7904 0.04 0.00 0.01 0.19
## 7905 0.01 0.00 0.00 0.19
## 7906 0.00 0.00 0.01 0.19
## 7907 0.00 0.00 0.01 0.19
## 7908 0.00 0.18 0.01 0.19
## 7910 0.07 0.00 0.01 0.19
## 7911 0.00 0.19 0.00 0.19
## 7912 0.00 0.18 0.01 0.19
## 7913 0.04 0.00 0.01 0.19
## 7914 0.00 0.00 0.01 0.19
## 7915 0.00 0.19 0.00 0.19
## 7916 0.00 0.19 0.00 0.19
## 7917 0.01 0.02 0.01 0.19
## 7918 0.00 0.19 0.00 0.19
## 7919 0.00 0.00 0.08 0.19
## 7920 0.05 0.00 0.02 0.19
## 7921 0.07 0.00 0.01 0.19
## 7922 0.08 0.00 0.02 0.19
## 7923 0.01 0.00 0.01 0.19
## 7924 0.16 0.00 0.02 0.19
## 7925 0.00 0.19 0.00 0.19
## 7926 0.07 0.00 0.02 0.19
## 7927 0.01 0.00 0.01 0.19
## 7928 0.00 0.19 0.00 0.19
## 7929 0.07 0.00 0.02 0.19
## 7930 0.00 0.19 0.00 0.19
## 7931 0.15 0.00 0.04 0.19
## 7932 0.00 0.19 0.00 0.19
## 7933 0.00 0.19 0.00 0.19
## 7934 0.16 0.00 0.02 0.19
## 7935 0.00 0.00 0.01 0.19
## 7936 0.17 0.00 0.02 0.19
## 7937 0.00 0.19 0.00 0.19
## 7938 0.05 0.00 0.02 0.19
## 7939 0.16 0.00 0.03 0.19
## 7940 0.00 0.00 0.01 0.19
## 7941 0.00 0.19 0.00 0.19
## 7942 0.00 0.11 0.01 0.19
## 7943 0.00 0.00 0.01 0.19
## 7944 0.05 0.00 0.00 0.19
## 7945 0.05 0.03 0.01 0.19
## 7946 0.00 0.19 0.00 0.19
## 7948 0.07 0.00 0.01 0.19
## 7949 0.00 0.00 0.01 0.19
## 7950 0.13 0.00 0.03 0.19
## 7951 0.00 0.19 0.00 0.19
## 7952 0.00 0.19 0.00 0.19
## 7953 0.00 0.19 0.00 0.19
## 7954 0.05 0.00 0.00 0.19
## 7955 0.07 0.00 0.02 0.19
## 7956 0.00 0.19 0.00 0.19
## 7957 0.05 0.00 0.00 0.19
## 7958 0.07 0.00 0.01 0.19
## 7959 0.00 0.06 0.01 0.19
## 7960 0.07 0.00 0.02 0.19
## 7961 0.00 0.00 0.01 0.19
## 7962 0.07 0.00 0.02 0.19
## 7963 0.00 0.19 0.00 0.19
## 7964 0.07 0.00 0.02 0.19
## 7965 0.05 0.00 0.00 0.19
## 7966 0.11 0.00 0.02 0.19
## 7967 0.03 0.03 0.01 0.19
## 7968 0.07 0.00 0.02 0.19
## 7969 0.02 0.00 0.01 0.19
## 7970 0.00 0.19 0.00 0.19
## 7971 0.00 0.19 0.00 0.19
## 7972 0.04 0.00 0.01 0.19
## 7973 0.00 0.00 0.02 0.19
## 7974 0.00 0.19 0.00 0.19
## 7975 0.04 0.00 0.01 0.19
## 7976 0.03 0.00 0.00 0.19
## 7977 0.00 0.19 0.00 0.19
## 7978 0.03 0.00 0.00 0.19
## 7979 0.07 0.01 0.01 0.19
## 7980 0.00 0.00 0.01 0.19
## 7981 0.00 0.00 0.01 0.19
## 7982 0.07 0.00 0.02 0.19
## 7983 0.00 0.19 0.00 0.19
## 7984 0.07 0.00 0.02 0.19
## 7985 0.00 0.11 0.01 0.19
## 7986 0.05 0.00 0.01 0.19
## 7987 0.02 0.00 0.01 0.19
## 7988 0.04 0.00 0.01 0.19
## 7989 0.00 0.00 0.01 0.19
## 7990 0.07 0.00 0.02 0.19
## 7991 0.03 0.00 0.01 0.19
## 7992 0.00 0.00 0.01 0.19
## 7993 0.04 0.00 0.03 0.19
## 7994 0.07 0.00 0.01 0.19
## 7995 0.00 0.19 0.00 0.19
## 7996 0.09 0.00 0.03 0.19
## 7997 0.11 0.00 0.03 0.18
## 7998 0.00 0.00 0.01 0.18
## 7999 0.07 0.00 0.02 0.18
## 8000 0.11 0.00 0.02 0.18
## 8001 0.06 0.00 0.02 0.18
## 8002 0.00 0.00 0.01 0.18
## 8003 0.09 0.00 0.02 0.18
## 8004 0.07 0.00 0.02 0.18
## 8005 0.05 0.00 0.00 0.18
## 8006 0.04 0.00 0.01 0.18
## 8007 0.00 0.00 0.01 0.18
## 8008 0.07 0.00 0.02 0.18
## 8009 0.04 0.00 0.01 0.18
## 8010 0.11 0.00 0.04 0.18
## 8011 0.04 0.00 0.01 0.18
## 8012 0.00 0.00 0.02 0.18
## 8013 0.07 0.00 0.02 0.18
## 8014 0.02 0.07 0.02 0.18
## 8015 0.01 0.00 0.01 0.18
## 8016 0.07 0.00 0.01 0.18
## 8017 0.00 0.00 0.01 0.18
## 8018 0.00 0.01 0.03 0.18
## 8019 0.04 0.00 0.01 0.18
## 8020 0.00 0.18 0.00 0.18
## 8021 0.03 0.11 0.01 0.18
## 8022 0.07 0.00 0.02 0.18
## 8023 0.02 0.00 0.01 0.18
## 8024 0.04 0.00 0.01 0.18
## 8025 0.02 0.05 0.01 0.18
## 8026 0.07 0.03 0.02 0.18
## 8027 0.00 0.18 0.00 0.18
## 8028 0.10 0.00 0.01 0.18
## 8029 0.00 0.18 0.00 0.18
## 8030 0.03 0.11 0.01 0.18
## 8031 0.06 0.00 0.02 0.18
## 8032 0.11 0.00 0.02 0.18
## 8033 0.07 0.00 0.01 0.18
## 8034 0.14 0.00 0.04 0.18
## 8035 0.05 0.00 0.00 0.18
## 8036 0.00 0.00 0.01 0.18
## 8037 0.01 0.00 0.02 0.18
## 8038 0.00 0.18 0.00 0.18
## 8039 0.07 0.00 0.02 0.18
## 8040 0.08 0.00 0.02 0.18
## 8041 0.15 0.00 0.04 0.18
## 8042 0.09 0.00 0.01 0.18
## 8043 0.04 0.00 0.01 0.18
## 8044 0.04 0.00 0.01 0.18
## 8046 0.04 0.00 0.01 0.18
## 8047 0.07 0.00 0.01 0.18
## 8048 0.04 0.00 0.02 0.18
## 8049 0.07 0.00 0.02 0.18
## 8050 0.00 0.18 0.00 0.18
## 8051 0.00 0.18 0.00 0.18
## 8052 0.00 0.17 0.01 0.18
## 8053 0.07 0.00 0.02 0.18
## 8054 0.09 0.00 0.02 0.18
## 8055 0.05 0.00 0.00 0.18
## 8056 0.00 0.00 0.18 0.18
## 8057 0.10 0.00 0.03 0.18
## 8058 0.01 0.05 0.01 0.18
## 8059 0.00 0.18 0.00 0.18
## 8060 0.06 0.01 0.02 0.18
## 8061 0.00 0.00 0.05 0.18
## 8062 0.00 0.18 0.00 0.18
## 8063 0.02 0.00 0.01 0.18
## 8064 0.08 0.01 0.01 0.18
## 8065 0.04 0.00 0.00 0.18
## 8066 0.00 0.00 0.01 0.18
## 8067 0.16 0.00 0.02 0.18
## 8068 0.01 0.13 0.00 0.18
## 8069 0.01 0.00 0.01 0.18
## 8070 0.04 0.00 0.01 0.18
## 8071 0.16 0.00 0.02 0.18
## 8072 0.06 0.03 0.02 0.18
## 8073 0.12 0.00 0.02 0.18
## 8074 0.04 0.00 0.00 0.18
## 8075 0.03 0.05 0.03 0.18
## 8076 0.06 0.00 0.02 0.18
## 8077 0.00 0.18 0.00 0.18
## 8078 0.05 0.00 0.00 0.18
## 8079 0.00 0.18 0.00 0.18
## 8080 0.00 0.00 0.01 0.18
## 8081 0.03 0.00 0.01 0.18
## 8082 0.00 0.07 0.02 0.18
## 8083 0.00 0.18 0.00 0.18
## 8084 0.06 0.00 0.02 0.18
## 8085 0.00 0.07 0.03 0.18
## 8086 0.00 0.18 0.00 0.18
## 8088 0.03 0.07 0.02 0.18
## 8089 0.04 0.00 0.01 0.18
## 8090 0.07 0.00 0.01 0.18
## 8091 0.00 0.00 0.01 0.18
## 8092 0.07 0.00 0.02 0.18
## 8093 0.07 0.00 0.02 0.18
## 8094 0.00 0.17 0.01 0.18
## 8095 0.14 0.00 0.04 0.18
## 8096 0.12 0.00 0.02 0.18
## 8097 0.04 0.00 0.01 0.18
## 8098 0.04 0.00 0.01 0.18
## 8099 0.04 0.00 0.00 0.18
## 8100 0.04 0.00 0.00 0.18
## 8101 0.00 0.18 0.00 0.18
## 8102 0.00 0.07 0.02 0.18
## 8103 0.04 0.00 0.00 0.18
## 8104 0.00 0.18 0.00 0.18
## 8105 0.04 0.00 0.02 0.18
## 8106 0.04 0.00 0.01 0.18
## 8107 0.10 0.00 0.03 0.18
## 8108 0.02 0.00 0.01 0.18
## 8109 0.15 0.00 0.02 0.18
## 8110 0.05 0.00 0.00 0.18
## 8111 0.02 0.00 0.02 0.18
## 8112 0.00 0.18 0.00 0.18
## 8113 0.07 0.00 0.02 0.18
## 8114 0.04 0.00 0.01 0.18
## 8115 0.06 0.00 0.02 0.18
## 8116 0.03 0.00 0.01 0.18
## 8117 0.08 0.00 0.03 0.18
## 8118 0.08 0.00 0.02 0.18
## 8119 0.00 0.18 0.00 0.18
## 8120 0.04 0.00 0.00 0.18
## 8121 0.00 0.00 0.01 0.18
## 8122 0.04 0.00 0.01 0.18
## 8123 0.16 0.00 0.02 0.18
## 8124 0.00 0.00 0.01 0.18
## 8125 0.00 0.18 0.00 0.18
## 8126 0.07 0.00 0.02 0.18
## 8127 0.07 0.00 0.01 0.18
## 8128 0.10 0.00 0.03 0.18
## 8129 0.05 0.00 0.00 0.18
## 8130 0.06 0.00 0.02 0.18
## 8131 0.09 0.00 0.03 0.18
## 8132 0.05 0.00 0.00 0.18
## 8133 0.07 0.00 0.02 0.18
## 8134 0.04 0.02 0.01 0.18
## 8135 0.13 0.00 0.01 0.18
## 8136 0.04 0.00 0.01 0.18
## 8137 0.00 0.00 0.01 0.18
## 8138 0.07 0.00 0.02 0.18
## 8139 0.10 0.00 0.01 0.18
## 8140 0.00 0.00 0.01 0.18
## 8141 0.02 0.10 0.01 0.18
## 8142 0.08 0.00 0.02 0.18
## 8143 0.04 0.00 0.00 0.18
## 8144 0.03 0.02 0.03 0.18
## 8145 0.09 0.00 0.02 0.18
## 8146 0.07 0.00 0.01 0.18
## 8147 0.00 0.18 0.00 0.18
## 8148 0.07 0.00 0.02 0.18
## 8149 0.00 0.00 0.01 0.18
## 8150 0.04 0.00 0.00 0.18
## 8151 0.00 0.00 0.01 0.18
## 8152 0.07 0.00 0.01 0.18
## 8153 0.07 0.00 0.02 0.18
## 8154 0.02 0.01 0.01 0.18
## 8155 0.07 0.00 0.01 0.18
## 8156 0.00 0.18 0.00 0.18
## 8157 0.07 0.00 0.02 0.18
## 8159 0.04 0.08 0.02 0.18
## 8160 0.04 0.00 0.00 0.18
## 8161 0.04 0.08 0.01 0.18
## 8162 0.04 0.00 0.05 0.18
## 8163 0.05 0.00 0.00 0.18
## 8164 0.00 0.00 0.01 0.18
## 8165 0.03 0.10 0.01 0.18
## 8166 0.02 0.00 0.01 0.18
## 8167 0.00 0.18 0.00 0.18
## 8169 0.00 0.18 0.00 0.18
## 8170 0.04 0.00 0.01 0.18
## 8171 0.05 0.00 0.00 0.18
## 8172 0.05 0.00 0.00 0.18
## 8173 0.00 0.18 0.00 0.18
## 8174 0.00 0.18 0.00 0.18
## 8175 0.00 0.18 0.00 0.18
## 8176 0.07 0.00 0.02 0.18
## 8177 0.09 0.00 0.02 0.18
## 8178 0.07 0.00 0.02 0.18
## 8179 0.00 0.00 0.01 0.18
## 8180 0.07 0.00 0.02 0.18
## 8181 0.05 0.00 0.01 0.18
## 8182 0.04 0.00 0.01 0.18
## 8183 0.00 0.00 0.01 0.18
## 8184 0.05 0.00 0.00 0.18
## 8185 0.00 0.00 0.01 0.18
## 8186 0.00 0.00 0.01 0.18
## 8187 0.13 0.00 0.03 0.18
## 8188 0.07 0.00 0.01 0.18
## 8189 0.07 0.00 0.01 0.18
## 8190 0.00 0.00 0.01 0.18
## 8191 0.13 0.00 0.01 0.18
## 8192 0.00 0.00 0.01 0.18
## 8193 0.05 0.00 0.00 0.18
## 8194 0.04 0.00 0.01 0.18
## 8195 0.05 0.00 0.00 0.18
## 8196 0.00 0.18 0.00 0.18
## 8197 0.00 0.18 0.00 0.18
## 8198 0.04 0.00 0.01 0.18
## 8199 0.04 0.00 0.01 0.18
## 8200 0.00 0.00 0.01 0.18
## 8201 0.03 0.00 0.02 0.18
## 8202 0.04 0.00 0.01 0.18
## 8203 0.02 0.00 0.01 0.18
## 8204 0.02 0.00 0.01 0.18
## 8206 0.02 0.01 0.01 0.18
## 8207 0.02 0.07 0.02 0.17
## 8208 0.07 0.00 0.02 0.17
## 8209 0.04 0.00 0.02 0.17
## 8210 0.16 0.00 0.02 0.17
## 8211 0.07 0.00 0.02 0.17
## 8212 0.00 0.00 0.01 0.17
## 8213 0.07 0.00 0.02 0.17
## 8214 0.02 0.00 0.02 0.17
## 8215 0.08 0.08 0.01 0.17
## 8216 0.00 0.17 0.00 0.17
## 8217 0.05 0.00 0.03 0.17
## 8218 0.14 0.00 0.04 0.17
## 8219 0.09 0.00 0.02 0.17
## 8220 0.07 0.00 0.01 0.17
## 8221 0.10 0.00 0.04 0.17
## 8222 0.00 0.17 0.00 0.17
## 8223 0.07 0.00 0.02 0.17
## 8225 0.02 0.06 0.03 0.17
## 8226 0.05 0.00 0.00 0.17
## 8227 0.04 0.00 0.02 0.17
## 8228 0.07 0.00 0.02 0.17
## 8229 0.03 0.00 0.00 0.17
## 8230 0.07 0.00 0.02 0.17
## 8231 0.03 0.00 0.00 0.17
## 8232 0.02 0.00 0.02 0.17
## 8233 0.04 0.00 0.03 0.17
## 8234 0.05 0.00 0.02 0.17
## 8235 0.00 0.00 0.01 0.17
## 8236 0.07 0.00 0.01 0.17
## 8237 0.02 0.06 0.01 0.17
## 8238 0.05 0.00 0.00 0.17
## 8239 0.00 0.17 0.00 0.17
## 8240 0.00 0.00 0.01 0.17
## 8241 0.03 0.00 0.00 0.17
## 8242 0.00 0.00 0.01 0.17
## 8243 0.00 0.17 0.00 0.17
## 8244 0.07 0.00 0.02 0.17
## 8245 0.07 0.01 0.03 0.17
## 8246 0.00 0.17 0.00 0.17
## 8247 0.03 0.00 0.00 0.17
## 8248 0.04 0.00 0.01 0.17
## 8249 0.00 0.16 0.01 0.17
## 8250 0.08 0.00 0.02 0.17
## 8251 0.00 0.00 0.01 0.17
## 8252 0.07 0.00 0.01 0.17
## 8253 0.00 0.00 0.01 0.17
## 8254 0.00 0.00 0.01 0.17
## 8255 0.00 0.17 0.00 0.17
## 8256 0.07 0.00 0.02 0.17
## 8257 0.03 0.00 0.02 0.17
## 8258 0.00 0.00 0.01 0.17
## 8259 0.00 0.00 0.01 0.17
## 8260 0.00 0.17 0.00 0.17
## 8261 0.03 0.00 0.00 0.17
## 8262 0.08 0.00 0.02 0.17
## 8263 0.01 0.00 0.01 0.17
## 8264 0.01 0.00 0.01 0.17
## 8265 0.03 0.00 0.00 0.17
## 8266 0.04 0.00 0.01 0.17
## 8267 0.06 0.00 0.03 0.17
## 8268 0.00 0.17 0.00 0.17
## 8269 0.07 0.00 0.02 0.17
## 8270 0.05 0.00 0.00 0.17
## 8271 0.07 0.00 0.02 0.17
## 8272 0.04 0.00 0.01 0.17
## 8273 0.07 0.00 0.02 0.17
## 8274 0.03 0.00 0.00 0.17
## 8275 0.03 0.00 0.01 0.17
## 8276 0.07 0.00 0.01 0.17
## 8277 0.00 0.17 0.00 0.17
## 8278 0.00 0.17 0.00 0.17
## 8279 0.00 0.17 0.00 0.17
## 8280 0.00 0.00 0.01 0.17
## 8281 0.04 0.04 0.03 0.17
## 8282 0.00 0.16 0.01 0.17
## 8283 0.00 0.16 0.01 0.17
## 8284 0.01 0.00 0.01 0.17
## 8285 0.04 0.00 0.01 0.17
## 8286 0.04 0.00 0.01 0.17
## 8287 0.08 0.00 0.04 0.17
## 8288 0.07 0.00 0.02 0.17
## 8289 0.07 0.00 0.02 0.17
## 8290 0.05 0.00 0.00 0.17
## 8291 0.00 0.00 0.01 0.17
## 8292 0.07 0.00 0.02 0.17
## 8293 0.07 0.00 0.02 0.17
## 8294 0.00 0.14 0.00 0.17
## 8295 0.12 0.00 0.03 0.17
## 8296 0.04 0.00 0.01 0.17
## 8297 0.07 0.00 0.02 0.17
## 8298 0.00 0.16 0.01 0.17
## 8299 0.04 0.00 0.02 0.17
## 8300 0.01 0.00 0.01 0.17
## 8301 0.07 0.04 0.01 0.17
## 8302 0.00 0.16 0.01 0.17
## 8303 0.07 0.00 0.02 0.17
## 8304 0.00 0.17 0.00 0.17
## 8305 0.00 0.17 0.00 0.17
## 8306 0.00 0.00 0.01 0.17
## 8307 0.00 0.17 0.00 0.17
## 8308 0.03 0.00 0.00 0.17
## 8309 0.05 0.00 0.00 0.17
## 8310 0.00 0.17 0.00 0.17
## 8311 0.00 0.00 0.01 0.17
## 8312 0.00 0.00 0.01 0.17
## 8313 0.07 0.00 0.03 0.17
## 8315 0.04 0.00 0.01 0.17
## 8316 0.12 0.00 0.01 0.17
## 8317 0.02 0.00 0.02 0.17
## 8318 0.03 0.14 0.00 0.17
## 8319 0.00 0.17 0.00 0.17
## 8320 0.04 0.07 0.01 0.17
## 8321 0.00 0.00 0.01 0.17
## 8322 0.00 0.00 0.01 0.17
## 8323 0.12 0.00 0.02 0.17
## 8324 0.04 0.00 0.01 0.17
## 8325 0.15 0.00 0.02 0.17
## 8326 0.00 0.00 0.01 0.17
## 8327 0.03 0.00 0.01 0.17
## 8328 0.05 0.00 0.00 0.17
## 8329 0.07 0.00 0.02 0.17
## 8330 0.06 0.00 0.01 0.17
## 8331 0.05 0.00 0.00 0.17
## 8332 0.00 0.00 0.01 0.17
## 8333 0.00 0.00 0.01 0.17
## 8334 0.02 0.00 0.01 0.17
## 8336 0.09 0.00 0.02 0.17
## 8337 0.00 0.17 0.00 0.17
## 8338 0.03 0.00 0.00 0.17
## 8339 0.01 0.11 0.00 0.17
## 8340 0.05 0.00 0.00 0.17
## 8341 0.04 0.00 0.01 0.17
## 8342 0.05 0.00 0.00 0.17
## 8343 0.01 0.00 0.01 0.17
## 8344 0.05 0.00 0.00 0.17
## 8345 0.03 0.06 0.02 0.17
## 8346 0.06 0.00 0.02 0.17
## 8347 0.00 0.17 0.00 0.17
## 8348 0.06 0.00 0.02 0.17
## 8349 0.00 0.17 0.00 0.17
## 8350 0.04 0.00 0.00 0.17
## 8351 0.12 0.00 0.03 0.17
## 8352 0.00 0.17 0.00 0.17
## 8353 0.02 0.12 0.01 0.17
## 8354 0.00 0.00 0.01 0.17
## 8355 0.04 0.00 0.03 0.17
## 8356 0.04 0.00 0.01 0.17
## 8357 0.00 0.00 0.01 0.17
## 8358 0.00 0.17 0.00 0.17
## 8359 0.00 0.16 0.00 0.17
## 8360 0.00 0.00 0.01 0.17
## 8361 0.04 0.06 0.01 0.17
## 8362 0.06 0.00 0.01 0.17
## 8363 0.06 0.00 0.02 0.17
## 8364 0.01 0.00 0.01 0.17
## 8365 0.06 0.00 0.02 0.17
## 8366 0.03 0.00 0.01 0.17
## 8367 0.00 0.00 0.01 0.17
## 8368 0.06 0.00 0.02 0.17
## 8369 0.04 0.00 0.00 0.17
## 8370 0.07 0.00 0.02 0.17
## 8371 0.02 0.03 0.01 0.17
## 8372 0.00 0.17 0.00 0.17
## 8373 0.06 0.00 0.02 0.17
## 8374 0.06 0.00 0.01 0.17
## 8375 0.03 0.09 0.01 0.17
## 8376 0.06 0.00 0.01 0.17
## 8378 0.12 0.03 0.02 0.17
## 8379 0.03 0.00 0.00 0.17
## 8380 0.00 0.00 0.01 0.17
## 8381 0.05 0.00 0.01 0.17
## 8382 0.04 0.00 0.00 0.17
## 8383 0.00 0.17 0.00 0.17
## 8384 0.03 0.00 0.00 0.17
## 8385 0.00 0.16 0.01 0.17
## 8386 0.06 0.00 0.02 0.17
## 8387 0.04 0.00 0.01 0.17
## 8388 0.06 0.00 0.01 0.17
## 8389 0.06 0.00 0.01 0.17
## 8390 0.03 0.00 0.01 0.17
## 8391 0.04 0.00 0.01 0.17
## 8392 0.00 0.17 0.00 0.17
## 8393 0.06 0.00 0.01 0.17
## 8394 0.01 0.00 0.01 0.17
## 8395 0.06 0.02 0.02 0.17
## 8396 0.06 0.00 0.02 0.17
## 8397 0.02 0.12 0.00 0.17
## 8398 0.01 0.12 0.01 0.17
## 8399 0.06 0.00 0.01 0.17
## 8400 0.00 0.00 0.01 0.17
## 8401 0.00 0.17 0.00 0.17
## 8402 0.03 0.00 0.00 0.17
## 8403 0.16 0.00 0.01 0.17
## 8404 0.01 0.00 0.02 0.17
## 8405 0.00 0.17 0.00 0.17
## 8406 0.00 0.17 0.00 0.17
## 8407 0.07 0.00 0.02 0.17
## 8408 0.00 0.16 0.01 0.17
## 8409 0.06 0.00 0.02 0.17
## 8410 0.04 0.05 0.02 0.17
## 8411 0.02 0.00 0.02 0.17
## 8412 0.04 0.00 0.01 0.17
## 8413 0.01 0.05 0.01 0.17
## 8414 0.04 0.00 0.01 0.17
## 8415 0.07 0.02 0.02 0.17
## 8416 0.00 0.17 0.00 0.17
## 8417 0.02 0.04 0.00 0.17
## 8418 0.13 0.00 0.04 0.17
## 8419 0.03 0.00 0.01 0.17
## 8420 0.04 0.00 0.00 0.17
## 8421 0.04 0.00 0.00 0.17
## 8422 0.00 0.17 0.00 0.17
## 8423 0.00 0.00 0.01 0.17
## 8424 0.01 0.00 0.01 0.17
## 8425 0.00 0.17 0.00 0.17
## 8426 0.11 0.00 0.02 0.17
## 8427 0.00 0.17 0.00 0.17
## 8428 0.00 0.17 0.00 0.17
## 8429 0.07 0.00 0.01 0.17
## 8430 0.04 0.00 0.01 0.17
## 8431 0.00 0.17 0.00 0.17
## 8432 0.00 0.00 0.02 0.17
## 8433 0.01 0.00 0.01 0.17
## 8434 0.04 0.00 0.02 0.17
## 8435 0.06 0.00 0.02 0.17
## 8436 0.03 0.00 0.00 0.17
## 8437 0.04 0.00 0.01 0.17
## 8438 0.04 0.00 0.00 0.17
## 8439 0.02 0.03 0.01 0.17
## 8441 0.06 0.00 0.02 0.17
## 8442 0.01 0.00 0.01 0.17
## 8443 0.00 0.17 0.00 0.17
## 8444 0.07 0.00 0.02 0.17
## 8445 0.00 0.17 0.00 0.17
## 8446 0.04 0.00 0.01 0.17
## 8447 0.00 0.17 0.00 0.17
## 8448 0.00 0.17 0.00 0.17
## 8449 0.00 0.08 0.02 0.17
## 8450 0.00 0.17 0.00 0.17
## 8451 0.00 0.15 0.00 0.17
## 8452 0.13 0.00 0.03 0.17
## 8453 0.02 0.02 0.01 0.17
## 8454 0.04 0.00 0.01 0.17
## 8455 0.04 0.08 0.01 0.17
## 8456 0.00 0.00 0.01 0.17
## 8457 0.01 0.00 0.02 0.17
## 8458 0.01 0.00 0.00 0.17
## 8459 0.01 0.00 0.00 0.17
## 8460 0.01 0.00 0.00 0.17
## 8461 0.00 0.16 0.00 0.17
## 8462 0.02 0.00 0.01 0.16
## 8463 0.03 0.06 0.02 0.16
## 8464 0.06 0.00 0.02 0.16
## 8465 0.00 0.16 0.00 0.16
## 8466 0.02 0.00 0.01 0.16
## 8467 0.00 0.00 0.03 0.16
## 8468 0.00 0.16 0.00 0.16
## 8469 0.06 0.00 0.02 0.16
## 8470 0.00 0.16 0.00 0.16
## 8471 0.06 0.00 0.02 0.16
## 8472 0.00 0.00 0.00 0.16
## 8473 0.04 0.00 0.00 0.16
## 8474 0.04 0.06 0.02 0.16
## 8475 0.00 0.00 0.01 0.16
## 8476 0.01 0.00 0.01 0.16
## 8477 0.06 0.00 0.01 0.16
## 8478 0.06 0.00 0.02 0.16
## 8479 0.02 0.00 0.02 0.16
## 8480 0.02 0.00 0.02 0.16
## 8481 0.08 0.00 0.02 0.16
## 8482 0.03 0.00 0.01 0.16
## 8483 0.06 0.00 0.02 0.16
## 8484 0.03 0.00 0.02 0.16
## 8485 0.00 0.03 0.01 0.16
## 8486 0.05 0.03 0.01 0.16
## 8487 0.06 0.00 0.02 0.16
## 8488 0.04 0.00 0.01 0.16
## 8489 0.05 0.03 0.02 0.16
## 8490 0.00 0.02 0.01 0.16
## 8491 0.00 0.16 0.00 0.16
## 8492 0.06 0.00 0.02 0.16
## 8493 0.14 0.00 0.02 0.16
## 8494 0.03 0.00 0.00 0.16
## 8495 0.00 0.04 0.01 0.16
## 8496 0.06 0.00 0.02 0.16
## 8497 0.00 0.15 0.01 0.16
## 8498 0.04 0.00 0.00 0.16
## 8499 0.06 0.00 0.02 0.16
## 8500 0.03 0.11 0.01 0.16
## 8501 0.04 0.00 0.00 0.16
## 8502 0.00 0.00 0.01 0.16
## 8503 0.01 0.00 0.01 0.16
## 8504 0.10 0.00 0.00 0.16
## 8505 0.04 0.00 0.01 0.16
## 8506 0.04 0.00 0.01 0.16
## 8507 0.06 0.00 0.02 0.16
## 8508 0.05 0.03 0.01 0.16
## 8509 0.00 0.00 0.01 0.16
## 8510 0.00 0.00 0.01 0.16
## 8511 0.00 0.16 0.00 0.16
## 8512 0.04 0.00 0.00 0.16
## 8513 0.00 0.16 0.00 0.16
## 8514 0.03 0.03 0.01 0.16
## 8515 0.06 0.00 0.01 0.16
## 8516 0.01 0.00 0.02 0.16
## 8517 0.04 0.00 0.00 0.16
## 8518 0.00 0.15 0.01 0.16
## 8519 0.03 0.00 0.00 0.16
## 8520 0.03 0.00 0.00 0.16
## 8521 0.00 0.16 0.00 0.16
## 8522 0.00 0.15 0.01 0.16
## 8523 0.06 0.00 0.01 0.16
## 8524 0.03 0.00 0.01 0.16
## 8525 0.02 0.00 0.02 0.16
## 8526 0.06 0.00 0.02 0.16
## 8527 0.00 0.00 0.01 0.16
## 8528 0.10 0.00 0.01 0.16
## 8529 0.04 0.03 0.02 0.16
## 8530 0.00 0.16 0.00 0.16
## 8531 0.00 0.16 0.00 0.16
## 8532 0.03 0.00 0.00 0.16
## 8533 0.03 0.00 0.01 0.16
## 8534 0.00 0.00 0.01 0.16
## 8535 0.02 0.00 0.01 0.16
## 8536 0.00 0.00 0.01 0.16
## 8537 0.03 0.00 0.01 0.16
## 8538 0.06 0.00 0.02 0.16
## 8539 0.06 0.00 0.02 0.16
## 8540 0.01 0.00 0.01 0.16
## 8541 0.00 0.00 0.01 0.16
## 8542 0.00 0.16 0.00 0.16
## 8543 0.06 0.00 0.02 0.16
## 8544 0.06 0.00 0.02 0.16
## 8545 0.02 0.00 0.02 0.16
## 8546 0.00 0.01 0.01 0.16
## 8547 0.06 0.00 0.02 0.16
## 8548 0.00 0.16 0.00 0.16
## 8549 0.00 0.00 0.01 0.16
## 8550 0.03 0.00 0.01 0.16
## 8551 0.06 0.00 0.02 0.16
## 8552 0.03 0.00 0.00 0.16
## 8553 0.00 0.16 0.00 0.16
## 8555 0.00 0.00 0.01 0.16
## 8556 0.03 0.00 0.00 0.16
## 8557 0.02 0.00 0.01 0.16
## 8558 0.00 0.00 0.01 0.16
## 8559 0.00 0.16 0.00 0.16
## 8560 0.00 0.16 0.00 0.16
## 8561 0.06 0.00 0.02 0.16
## 8562 0.00 0.00 0.01 0.16
## 8563 0.04 0.00 0.00 0.16
## 8564 0.06 0.00 0.02 0.16
## 8565 0.00 0.16 0.00 0.16
## 8566 0.01 0.00 0.01 0.16
## 8567 0.06 0.00 0.02 0.16
## 8568 0.00 0.00 0.01 0.16
## 8569 0.03 0.00 0.00 0.16
## 8570 0.00 0.00 0.01 0.16
## 8571 0.01 0.03 0.01 0.16
## 8572 0.14 0.00 0.02 0.16
## 8573 0.07 0.00 0.01 0.16
## 8574 0.00 0.00 0.01 0.16
## 8575 0.00 0.00 0.01 0.16
## 8576 0.00 0.16 0.00 0.16
## 8577 0.00 0.00 0.01 0.16
## 8578 0.00 0.16 0.00 0.16
## 8579 0.05 0.00 0.02 0.16
## 8580 0.04 0.00 0.00 0.16
## 8581 0.00 0.15 0.01 0.16
## 8582 0.03 0.00 0.00 0.16
## 8583 0.03 0.00 0.00 0.16
## 8584 0.03 0.00 0.00 0.16
## 8585 0.00 0.12 0.04 0.16
## 8586 0.03 0.00 0.00 0.16
## 8587 0.03 0.00 0.00 0.16
## 8588 0.03 0.00 0.00 0.16
## 8589 0.03 0.00 0.00 0.16
## 8590 0.03 0.00 0.00 0.16
## 8591 0.03 0.00 0.00 0.16
## 8592 0.03 0.00 0.00 0.16
## 8593 0.00 0.12 0.04 0.16
## 8594 0.00 0.03 0.01 0.16
## 8595 0.15 0.00 0.01 0.16
## 8596 0.02 0.08 0.01 0.16
## 8597 0.00 0.16 0.00 0.16
## 8598 0.03 0.03 0.02 0.16
## 8599 0.15 0.00 0.01 0.16
## 8600 0.00 0.16 0.00 0.16
## 8601 0.06 0.00 0.02 0.16
## 8602 0.04 0.00 0.01 0.16
## 8603 0.00 0.16 0.00 0.16
## 8604 0.03 0.00 0.01 0.16
## 8605 0.01 0.00 0.01 0.16
## 8606 0.00 0.00 0.01 0.16
## 8607 0.00 0.00 0.01 0.16
## 8608 0.06 0.00 0.03 0.16
## 8609 0.01 0.00 0.01 0.16
## 8610 0.01 0.11 0.00 0.16
## 8611 0.10 0.02 0.04 0.16
## 8612 0.00 0.00 0.01 0.16
## 8613 0.05 0.02 0.03 0.16
## 8614 0.07 0.00 0.01 0.16
## 8615 0.06 0.00 0.02 0.16
## 8616 0.00 0.00 0.00 0.16
## 8617 0.07 0.00 0.02 0.16
## 8618 0.00 0.16 0.00 0.16
## 8619 0.05 0.00 0.01 0.16
## 8620 0.00 0.00 0.01 0.16
## 8622 0.02 0.00 0.01 0.16
## 8623 0.01 0.00 0.01 0.16
## 8624 0.06 0.00 0.02 0.16
## 8625 0.00 0.00 0.01 0.16
## 8626 0.06 0.00 0.01 0.16
## 8627 0.00 0.00 0.01 0.16
## 8628 0.05 0.00 0.01 0.16
## 8629 0.06 0.00 0.01 0.16
## 8630 0.00 0.00 0.01 0.16
## 8631 0.02 0.00 0.01 0.16
## 8632 0.14 0.00 0.02 0.16
## 8633 0.00 0.09 0.01 0.16
## 8634 0.00 0.15 0.01 0.16
## 8635 0.00 0.16 0.00 0.16
## 8636 0.03 0.00 0.01 0.16
## 8637 0.02 0.02 0.01 0.16
## 8638 0.09 0.00 0.04 0.16
## 8639 0.03 0.04 0.00 0.16
## 8640 0.00 0.16 0.00 0.16
## 8641 0.03 0.00 0.02 0.16
## 8642 0.04 0.00 0.00 0.16
## 8643 0.00 0.15 0.01 0.16
## 8644 0.01 0.00 0.01 0.16
## 8645 0.00 0.15 0.00 0.16
## 8646 0.01 0.00 0.01 0.16
## 8647 0.07 0.00 0.01 0.16
## 8648 0.00 0.00 0.01 0.16
## 8649 0.04 0.00 0.01 0.16
## 8650 0.00 0.00 0.01 0.16
## 8651 0.00 0.16 0.00 0.16
## 8652 0.00 0.00 0.01 0.16
## 8653 0.13 0.00 0.03 0.16
## 8654 0.00 0.00 0.01 0.16
## 8655 0.09 0.00 0.03 0.16
## 8656 0.04 0.00 0.00 0.16
## 8657 0.03 0.08 0.01 0.16
## 8658 0.00 0.16 0.00 0.16
## 8659 0.00 0.15 0.01 0.16
## 8660 0.00 0.00 0.01 0.16
## 8661 0.06 0.00 0.01 0.16
## 8662 0.04 0.00 0.01 0.16
## 8663 0.01 0.13 0.01 0.16
## 8664 0.06 0.00 0.02 0.16
## 8665 0.00 0.01 0.01 0.16
## 8666 0.03 0.00 0.02 0.16
## 8667 0.00 0.00 0.01 0.16
## 8668 0.00 0.15 0.01 0.16
## 8669 0.00 0.16 0.00 0.16
## 8670 0.03 0.00 0.00 0.16
## 8671 0.01 0.00 0.01 0.16
## 8672 0.04 0.00 0.01 0.16
## 8673 0.00 0.00 0.01 0.16
## 8674 0.00 0.04 0.02 0.16
## 8675 0.00 0.00 0.01 0.16
## 8676 0.01 0.00 0.01 0.16
## 8677 0.00 0.12 0.00 0.16
## 8678 0.13 0.00 0.03 0.16
## 8679 0.00 0.16 0.00 0.16
## 8680 0.04 0.00 0.01 0.16
## 8681 0.00 0.00 0.01 0.16
## 8682 0.02 0.00 0.01 0.16
## 8683 0.04 0.00 0.00 0.16
## 8684 0.03 0.00 0.01 0.16
## 8685 0.06 0.00 0.01 0.16
## 8686 0.02 0.03 0.01 0.16
## 8687 0.03 0.00 0.00 0.16
## 8688 0.05 0.04 0.02 0.16
## 8689 0.03 0.00 0.01 0.16
## 8690 0.00 0.16 0.00 0.16
## 8691 0.00 0.00 0.01 0.16
## 8692 0.06 0.00 0.02 0.16
## 8693 0.06 0.00 0.01 0.16
## 8694 0.00 0.16 0.00 0.16
## 8695 0.01 0.00 0.01 0.16
## 8696 0.00 0.00 0.01 0.16
## 8697 0.00 0.16 0.00 0.16
## 8698 0.06 0.00 0.01 0.16
## 8699 0.10 0.00 0.03 0.16
## 8700 0.06 0.00 0.02 0.16
## 8701 0.00 0.16 0.00 0.16
## 8702 0.00 0.00 0.01 0.16
## 8703 0.00 0.00 0.01 0.16
## 8704 0.06 0.00 0.02 0.16
## 8705 0.00 0.16 0.00 0.16
## 8706 0.00 0.00 0.01 0.16
## 8707 0.02 0.06 0.01 0.16
## 8709 0.04 0.00 0.00 0.16
## 8710 0.01 0.00 0.01 0.16
## 8711 0.07 0.00 0.02 0.16
## 8712 0.06 0.00 0.01 0.16
## 8713 0.06 0.00 0.01 0.16
## 8714 0.09 0.00 0.02 0.16
## 8715 0.01 0.00 0.01 0.16
## 8716 0.04 0.00 0.00 0.16
## 8717 0.06 0.00 0.01 0.15
## 8718 0.01 0.12 0.01 0.15
## 8719 0.06 0.00 0.01 0.15
## 8720 0.02 0.00 0.01 0.15
## 8721 0.00 0.00 0.01 0.15
## 8722 0.04 0.00 0.00 0.15
## 8723 0.00 0.14 0.01 0.15
## 8724 0.02 0.01 0.01 0.15
## 8725 0.06 0.00 0.02 0.15
## 8726 0.08 0.00 0.03 0.15
## 8727 0.04 0.00 0.01 0.15
## 8728 0.06 0.00 0.02 0.15
## 8729 0.02 0.00 0.01 0.15
## 8730 0.07 0.00 0.02 0.15
## 8731 0.05 0.00 0.02 0.15
## 8732 0.00 0.00 0.01 0.15
## 8733 0.06 0.00 0.02 0.15
## 8734 0.01 0.00 0.01 0.15
## 8735 0.00 0.00 0.01 0.15
## 8736 0.01 0.01 0.01 0.15
## 8737 0.03 0.00 0.00 0.15
## 8738 0.06 0.00 0.02 0.15
## 8739 0.00 0.00 0.01 0.15
## 8740 0.00 0.15 0.00 0.15
## 8741 0.06 0.00 0.02 0.15
## 8742 0.03 0.00 0.01 0.15
## 8743 0.03 0.00 0.01 0.15
## 8744 0.01 0.00 0.01 0.15
## 8745 0.06 0.00 0.03 0.15
## 8746 0.03 0.00 0.00 0.15
## 8747 0.13 0.00 0.03 0.15
## 8748 0.02 0.00 0.01 0.15
## 8749 0.03 0.00 0.00 0.15
## 8750 0.03 0.00 0.00 0.15
## 8751 0.03 0.00 0.00 0.15
## 8752 0.01 0.00 0.02 0.15
## 8753 0.14 0.00 0.02 0.15
## 8754 0.06 0.01 0.01 0.15
## 8755 0.06 0.00 0.02 0.15
## 8756 0.01 0.00 0.01 0.15
## 8757 0.06 0.00 0.01 0.15
## 8758 0.01 0.00 0.00 0.15
## 8759 0.01 0.00 0.00 0.15
## 8760 0.00 0.15 0.00 0.15
## 8762 0.00 0.15 0.00 0.15
## 8763 0.09 0.00 0.02 0.15
## 8764 0.03 0.00 0.01 0.15
## 8765 0.02 0.00 0.01 0.15
## 8766 0.06 0.02 0.02 0.15
## 8767 0.01 0.00 0.01 0.15
## 8768 0.03 0.00 0.01 0.15
## 8769 0.07 0.00 0.01 0.15
## 8770 0.03 0.00 0.01 0.15
## 8771 0.04 0.00 0.00 0.15
## 8772 0.00 0.00 0.01 0.15
## 8773 0.03 0.00 0.00 0.15
## 8774 0.06 0.00 0.01 0.15
## 8775 0.00 0.04 0.01 0.15
## 8776 0.01 0.02 0.01 0.15
## 8777 0.06 0.00 0.02 0.15
## 8778 0.06 0.00 0.02 0.15
## 8779 0.06 0.00 0.02 0.15
## 8780 0.01 0.05 0.01 0.15
## 8781 0.00 0.00 0.01 0.15
## 8782 0.03 0.00 0.00 0.15
## 8783 0.01 0.00 0.01 0.15
## 8784 0.00 0.15 0.00 0.15
## 8785 0.01 0.00 0.01 0.15
## 8786 0.00 0.15 0.00 0.15
## 8787 0.03 0.00 0.02 0.15
## 8788 0.00 0.00 0.01 0.15
## 8789 0.02 0.00 0.01 0.15
## 8790 0.00 0.15 0.00 0.15
## 8791 0.02 0.06 0.01 0.15
## 8792 0.03 0.00 0.00 0.15
## 8793 0.01 0.00 0.01 0.15
## 8794 0.06 0.00 0.02 0.15
## 8795 0.02 0.00 0.08 0.15
## 8796 0.14 0.00 0.01 0.15
## 8797 0.00 0.00 0.01 0.15
## 8798 0.04 0.05 0.01 0.15
## 8799 0.04 0.00 0.00 0.15
## 8800 0.00 0.15 0.00 0.15
## 8801 0.00 0.00 0.01 0.15
## 8802 0.02 0.04 0.01 0.15
## 8803 0.06 0.00 0.01 0.15
## 8804 0.00 0.00 0.01 0.15
## 8805 0.06 0.00 0.02 0.15
## 8806 0.02 0.00 0.02 0.15
## 8807 0.01 0.00 0.01 0.15
## 8808 0.03 0.00 0.01 0.15
## 8809 0.00 0.15 0.00 0.15
## 8810 0.00 0.15 0.00 0.15
## 8811 0.00 0.15 0.00 0.15
## 8812 0.00 0.15 0.00 0.15
## 8813 0.04 0.00 0.00 0.15
## 8814 0.00 0.00 0.01 0.15
## 8815 0.03 0.00 0.00 0.15
## 8816 0.03 0.00 0.01 0.15
## 8817 0.03 0.00 0.01 0.15
## 8818 0.00 0.14 0.01 0.15
## 8819 0.03 0.00 0.00 0.15
## 8820 0.00 0.00 0.01 0.15
## 8821 0.04 0.00 0.01 0.15
## 8822 0.02 0.00 0.02 0.15
## 8823 0.08 0.00 0.02 0.15
## 8824 0.05 0.00 0.01 0.15
## 8825 0.03 0.00 0.00 0.15
## 8826 0.00 0.00 0.01 0.15
## 8827 0.06 0.00 0.01 0.15
## 8828 0.00 0.00 0.01 0.15
## 8829 0.03 0.00 0.01 0.15
## 8830 0.00 0.01 0.01 0.15
## 8831 0.00 0.15 0.00 0.15
## 8832 0.03 0.00 0.01 0.15
## 8833 0.06 0.00 0.02 0.15
## 8834 0.00 0.04 0.02 0.15
## 8835 0.00 0.15 0.00 0.15
## 8836 0.06 0.00 0.02 0.15
## 8837 0.04 0.05 0.01 0.15
## 8838 0.01 0.00 0.01 0.15
## 8839 0.00 0.00 0.01 0.15
## 8840 0.06 0.00 0.02 0.15
## 8841 0.06 0.00 0.02 0.15
## 8842 0.00 0.00 0.01 0.15
## 8843 0.06 0.00 0.02 0.15
## 8844 0.09 0.04 0.02 0.15
## 8845 0.13 0.00 0.02 0.15
## 8846 0.07 0.03 0.01 0.15
## 8847 0.00 0.15 0.00 0.15
## 8848 0.03 0.00 0.01 0.15
## 8849 0.04 0.00 0.00 0.15
## 8850 0.06 0.00 0.02 0.15
## 8851 0.00 0.13 0.01 0.15
## 8852 0.03 0.00 0.00 0.15
## 8853 0.00 0.15 0.00 0.15
## 8854 0.04 0.00 0.03 0.15
## 8855 0.00 0.15 0.00 0.15
## 8856 0.04 0.09 0.02 0.15
## 8857 0.00 0.10 0.01 0.15
## 8858 0.04 0.00 0.00 0.15
## 8859 0.06 0.00 0.02 0.15
## 8860 0.06 0.00 0.02 0.15
## 8861 0.05 0.00 0.02 0.15
## 8862 0.00 0.15 0.00 0.15
## 8863 0.00 0.09 0.06 0.15
## 8864 0.03 0.00 0.00 0.15
## 8865 0.03 0.00 0.00 0.15
## 8866 0.00 0.15 0.00 0.15
## 8867 0.03 0.00 0.00 0.15
## 8868 0.00 0.00 0.01 0.15
## 8869 0.00 0.00 0.01 0.15
## 8870 0.06 0.00 0.01 0.15
## 8871 0.03 0.00 0.01 0.15
## 8872 0.03 0.00 0.01 0.15
## 8873 0.03 0.08 0.02 0.15
## 8874 0.01 0.00 0.01 0.15
## 8875 0.08 0.00 0.02 0.15
## 8876 0.00 0.15 0.00 0.15
## 8877 0.00 0.00 0.01 0.15
## 8878 0.03 0.00 0.01 0.15
## 8879 0.00 0.00 0.01 0.15
## 8880 0.02 0.00 0.01 0.15
## 8881 0.03 0.00 0.01 0.15
## 8882 0.00 0.15 0.00 0.15
## 8883 0.06 0.00 0.02 0.15
## 8884 0.03 0.00 0.00 0.15
## 8885 0.00 0.00 0.01 0.15
## 8886 0.01 0.00 0.01 0.15
## 8887 0.00 0.00 0.01 0.15
## 8888 0.06 0.00 0.01 0.15
## 8889 0.04 0.00 0.00 0.15
## 8890 0.03 0.00 0.01 0.15
## 8891 0.00 0.14 0.01 0.15
## 8892 0.00 0.00 0.01 0.15
## 8893 0.04 0.00 0.01 0.15
## 8894 0.00 0.15 0.00 0.15
## 8895 0.06 0.00 0.02 0.15
## 8896 0.03 0.00 0.00 0.15
## 8897 0.04 0.00 0.00 0.15
## 8898 0.01 0.07 0.01 0.15
## 8899 0.03 0.00 0.00 0.15
## 8901 0.06 0.00 0.01 0.15
## 8902 0.00 0.00 0.01 0.15
## 8903 0.04 0.00 0.00 0.15
## 8904 0.00 0.00 0.01 0.15
## 8905 0.00 0.15 0.00 0.15
## 8906 0.00 0.00 0.01 0.15
## 8907 0.05 0.04 0.02 0.15
## 8908 0.00 0.00 0.01 0.15
## 8909 0.00 0.15 0.00 0.15
## 8910 0.00 0.15 0.00 0.15
## 8911 0.00 0.15 0.00 0.15
## 8912 0.00 0.14 0.01 0.15
## 8913 0.00 0.00 0.01 0.15
## 8914 0.00 0.15 0.00 0.15
## 8915 0.01 0.00 0.01 0.15
## 8916 0.00 0.00 0.01 0.15
## 8917 0.00 0.15 0.00 0.15
## 8918 0.06 0.00 0.02 0.15
## 8919 0.03 0.00 0.01 0.15
## 8920 0.06 0.00 0.02 0.15
## 8921 0.03 0.00 0.00 0.15
## 8922 0.03 0.00 0.00 0.15
## 8923 0.00 0.15 0.00 0.15
## 8924 0.00 0.00 0.01 0.15
## 8925 0.04 0.00 0.01 0.15
## 8926 0.00 0.01 0.03 0.15
## 8927 0.02 0.05 0.02 0.15
## 8928 0.03 0.00 0.01 0.15
## 8929 0.11 0.00 0.03 0.15
## 8931 0.01 0.00 0.01 0.15
## 8932 0.06 0.00 0.01 0.15
## 8933 0.00 0.01 0.01 0.15
## 8934 0.00 0.00 0.01 0.15
## 8935 0.02 0.00 0.01 0.15
## 8936 0.03 0.00 0.00 0.15
## 8937 0.06 0.00 0.01 0.15
## 8938 0.00 0.15 0.00 0.15
## 8939 0.08 0.01 0.03 0.15
## 8940 0.06 0.00 0.01 0.15
## 8941 0.00 0.14 0.01 0.15
## 8942 0.06 0.00 0.01 0.15
## 8943 0.03 0.00 0.01 0.15
## 8944 0.00 0.15 0.00 0.15
## 8945 0.00 0.00 0.00 0.15
## 8946 0.00 0.03 0.03 0.15
## 8947 0.00 0.15 0.00 0.15
## 8948 0.06 0.00 0.01 0.15
## 8949 0.03 0.00 0.01 0.15
## 8950 0.00 0.15 0.00 0.15
## 8951 0.00 0.14 0.00 0.15
## 8952 0.08 0.00 0.01 0.15
## 8953 0.04 0.00 0.01 0.15
## 8954 0.04 0.00 0.00 0.15
## 8955 0.08 0.00 0.01 0.15
## 8956 0.06 0.00 0.01 0.15
## 8957 0.00 0.00 0.01 0.15
## 8958 0.03 0.00 0.01 0.15
## 8959 0.00 0.14 0.01 0.15
## 8960 0.00 0.15 0.00 0.15
## 8961 0.13 0.00 0.01 0.15
## 8962 0.00 0.00 0.01 0.15
## 8963 0.00 0.15 0.00 0.15
## 8964 0.04 0.00 0.01 0.15
## 8965 0.02 0.00 0.01 0.15
## 8966 0.00 0.00 0.01 0.15
## 8967 0.06 0.00 0.01 0.15
## 8968 0.04 0.00 0.00 0.15
## 8969 0.03 0.00 0.00 0.15
## 8970 0.06 0.00 0.01 0.15
## 8971 0.02 0.00 0.01 0.15
## 8972 0.03 0.00 0.01 0.15
## 8973 0.00 0.00 0.01 0.15
## 8974 0.00 0.15 0.00 0.15
## 8975 0.06 0.00 0.02 0.15
## 8976 0.00 0.15 0.00 0.15
## 8977 0.00 0.00 0.01 0.15
## 8978 0.06 0.00 0.02 0.15
## 8979 0.06 0.00 0.01 0.15
## 8980 0.00 0.00 0.01 0.15
## 8981 0.00 0.15 0.00 0.15
## 8982 0.04 0.00 0.00 0.15
## 8983 0.04 0.00 0.00 0.15
## 8984 0.00 0.00 0.01 0.15
## 8985 0.00 0.15 0.00 0.15
## 8986 0.00 0.00 0.01 0.15
## 8987 0.03 0.00 0.01 0.15
## 8988 0.00 0.14 0.01 0.15
## 8989 0.03 0.05 0.02 0.15
## 8990 0.13 0.00 0.02 0.15
## 8991 0.04 0.00 0.00 0.15
## 8992 0.00 0.01 0.01 0.15
## 8993 0.03 0.00 0.00 0.15
## 8994 0.00 0.14 0.00 0.14
## 8995 0.03 0.00 0.01 0.14
## 8996 0.00 0.04 0.01 0.14
## 8997 0.06 0.00 0.02 0.14
## 8998 0.01 0.00 0.02 0.14
## 8999 0.06 0.00 0.02 0.14
## 9000 0.06 0.00 0.02 0.14
## 9001 0.00 0.13 0.00 0.14
## 9002 0.03 0.07 0.02 0.14
## 9003 0.00 0.14 0.00 0.14
## 9004 0.03 0.00 0.01 0.14
## 9005 0.00 0.14 0.00 0.14
## 9006 0.00 0.00 0.01 0.14
## 9007 0.05 0.00 0.01 0.14
## 9008 0.00 0.14 0.00 0.14
## 9009 0.03 0.00 0.01 0.14
## 9010 0.03 0.02 0.03 0.14
## 9011 0.05 0.00 0.01 0.14
## 9012 0.06 0.00 0.02 0.14
## 9013 0.06 0.00 0.02 0.14
## 9014 0.00 0.14 0.00 0.14
## 9015 0.00 0.14 0.00 0.14
## 9016 0.04 0.00 0.00 0.14
## 9017 0.06 0.00 0.02 0.14
## 9018 0.05 0.00 0.01 0.14
## 9019 0.05 0.00 0.01 0.14
## 9020 0.00 0.00 0.01 0.14
## 9021 0.00 0.00 0.01 0.14
## 9022 0.02 0.00 0.01 0.14
## 9023 0.00 0.14 0.00 0.14
## 9024 0.06 0.00 0.02 0.14
## 9025 0.00 0.00 0.01 0.14
## 9026 0.03 0.00 0.00 0.14
## 9027 0.00 0.00 0.03 0.14
## 9028 0.05 0.00 0.02 0.14
## 9029 0.00 0.14 0.00 0.14
## 9030 0.00 0.14 0.00 0.14
## 9031 0.03 0.00 0.01 0.14
## 9032 0.05 0.00 0.01 0.14
## 9033 0.05 0.00 0.01 0.14
## 9034 0.04 0.00 0.00 0.14
## 9035 0.02 0.00 0.02 0.14
## 9036 0.12 0.00 0.02 0.14
## 9037 0.00 0.00 0.01 0.14
## 9038 0.11 0.00 0.03 0.14
## 9039 0.05 0.00 0.01 0.14
## 9040 0.04 0.00 0.01 0.14
## 9041 0.00 0.00 0.01 0.14
## 9042 0.05 0.00 0.02 0.14
## 9043 0.01 0.00 0.01 0.14
## 9044 0.05 0.00 0.02 0.14
## 9045 0.05 0.00 0.02 0.14
## 9046 0.03 0.01 0.01 0.14
## 9047 0.12 0.00 0.03 0.14
## 9048 0.05 0.00 0.01 0.14
## 9049 0.00 0.14 0.00 0.14
## 9050 0.02 0.00 0.01 0.14
## 9051 0.00 0.14 0.00 0.14
## 9052 0.04 0.00 0.00 0.14
## 9053 0.00 0.14 0.00 0.14
## 9054 0.05 0.00 0.02 0.14
## 9055 0.00 0.00 0.01 0.14
## 9056 0.10 0.00 0.02 0.14
## 9057 0.08 0.00 0.02 0.14
## 9058 0.00 0.13 0.01 0.14
## 9059 0.00 0.13 0.01 0.14
## 9060 0.00 0.00 0.01 0.14
## 9061 0.03 0.00 0.00 0.14
## 9062 0.03 0.01 0.01 0.14
## 9063 0.11 0.00 0.03 0.14
## 9064 0.00 0.00 0.01 0.14
## 9065 0.00 0.06 0.01 0.14
## 9066 0.00 0.04 0.01 0.14
## 9067 0.10 0.00 0.03 0.14
## 9068 0.00 0.14 0.00 0.14
## 9069 0.05 0.00 0.02 0.14
## 9070 0.01 0.00 0.01 0.14
## 9071 0.00 0.14 0.00 0.14
## 9072 0.00 0.14 0.00 0.14
## 9073 0.05 0.00 0.02 0.14
## 9074 0.00 0.00 0.01 0.14
## 9075 0.00 0.14 0.00 0.14
## 9076 0.03 0.00 0.01 0.14
## 9077 0.10 0.00 0.02 0.14
## 9078 0.03 0.00 0.01 0.14
## 9079 0.03 0.00 0.01 0.14
## 9080 0.00 0.08 0.01 0.14
## 9081 0.03 0.00 0.01 0.14
## 9083 0.00 0.11 0.00 0.14
## 9084 0.00 0.00 0.01 0.14
## 9085 0.00 0.00 0.01 0.14
## 9086 0.04 0.00 0.00 0.14
## 9087 0.00 0.14 0.00 0.14
## 9088 0.03 0.03 0.02 0.14
## 9089 0.05 0.00 0.01 0.14
## 9090 0.05 0.00 0.02 0.14
## 9091 0.00 0.06 0.01 0.14
## 9092 0.03 0.00 0.01 0.14
## 9093 0.00 0.14 0.00 0.14
## 9094 0.00 0.14 0.00 0.14
## 9095 0.03 0.00 0.01 0.14
## 9096 0.00 0.13 0.01 0.14
## 9097 0.01 0.13 0.00 0.14
## 9098 0.01 0.11 0.01 0.14
## 9099 0.05 0.00 0.02 0.14
## 9100 0.00 0.00 0.01 0.14
## 9101 0.04 0.00 0.00 0.14
## 9102 0.00 0.04 0.01 0.14
## 9103 0.03 0.00 0.01 0.14
## 9104 0.00 0.14 0.00 0.14
## 9105 0.05 0.00 0.02 0.14
## 9106 0.05 0.00 0.02 0.14
## 9107 0.01 0.00 0.00 0.14
## 9108 0.00 0.14 0.00 0.14
## 9109 0.11 0.00 0.03 0.14
## 9110 0.02 0.00 0.01 0.14
## 9111 0.04 0.00 0.00 0.14
## 9112 0.05 0.00 0.02 0.14
## 9113 0.05 0.00 0.01 0.14
## 9114 0.00 0.05 0.01 0.14
## 9115 0.00 0.00 0.01 0.14
## 9116 0.03 0.00 0.01 0.14
## 9117 0.00 0.00 0.01 0.14
## 9118 0.06 0.00 0.02 0.14
## 9119 0.00 0.00 0.01 0.14
## 9120 0.03 0.00 0.00 0.14
## 9121 0.03 0.00 0.00 0.14
## 9122 0.05 0.00 0.02 0.14
## 9123 0.05 0.00 0.01 0.14
## 9124 0.00 0.14 0.00 0.14
## 9125 0.05 0.00 0.01 0.14
## 9126 0.00 0.13 0.01 0.14
## 9127 0.12 0.00 0.02 0.14
## 9128 0.00 0.00 0.01 0.14
## 9129 0.05 0.00 0.02 0.14
## 9130 0.00 0.14 0.00 0.14
## 9131 0.05 0.00 0.01 0.14
## 9132 0.05 0.00 0.02 0.14
## 9133 0.02 0.00 0.01 0.14
## 9134 0.00 0.13 0.01 0.14
## 9135 0.03 0.00 0.01 0.14
## 9136 0.00 0.14 0.00 0.14
## 9137 0.11 0.00 0.01 0.14
## 9138 0.05 0.00 0.02 0.14
## 9139 0.02 0.00 0.02 0.14
## 9140 0.02 0.02 0.01 0.14
## 9141 0.05 0.00 0.02 0.14
## 9142 0.05 0.00 0.02 0.14
## 9143 0.00 0.14 0.00 0.14
## 9144 0.02 0.00 0.01 0.14
## 9145 0.07 0.00 0.01 0.14
## 9146 0.10 0.00 0.04 0.14
## 9147 0.05 0.00 0.01 0.14
## 9148 0.11 0.00 0.03 0.14
## 9149 0.05 0.00 0.01 0.14
## 9150 0.00 0.00 0.01 0.14
## 9151 0.00 0.13 0.00 0.14
## 9153 0.03 0.00 0.00 0.14
## 9154 0.03 0.00 0.00 0.14
## 9155 0.03 0.00 0.00 0.14
## 9156 0.03 0.00 0.00 0.14
## 9157 0.05 0.00 0.01 0.14
## 9158 0.01 0.00 0.02 0.14
## 9159 0.00 0.14 0.00 0.14
## 9160 0.00 0.00 0.01 0.14
## 9161 0.05 0.00 0.02 0.14
## 9162 0.12 0.00 0.02 0.14
## 9163 0.01 0.10 0.01 0.14
## 9164 0.03 0.00 0.00 0.14
## 9165 0.00 0.14 0.00 0.14
## 9166 0.00 0.00 0.01 0.14
## 9167 0.05 0.00 0.01 0.14
## 9168 0.05 0.00 0.02 0.14
## 9169 0.03 0.00 0.01 0.14
## 9170 0.05 0.00 0.01 0.14
## 9171 0.00 0.14 0.00 0.14
## 9173 0.00 0.00 0.01 0.14
## 9174 0.01 0.00 0.01 0.14
## 9175 0.00 0.14 0.00 0.14
## 9176 0.03 0.00 0.00 0.14
## 9177 0.01 0.00 0.01 0.14
## 9178 0.01 0.00 0.01 0.14
## 9179 0.05 0.00 0.02 0.14
## 9180 0.05 0.00 0.01 0.14
## 9181 0.04 0.00 0.00 0.14
## 9182 0.00 0.14 0.00 0.14
## 9183 0.01 0.01 0.01 0.14
## 9184 0.12 0.00 0.02 0.14
## 9185 0.00 0.14 0.00 0.14
## 9186 0.05 0.00 0.01 0.14
## 9187 0.04 0.00 0.00 0.14
## 9188 0.00 0.14 0.00 0.14
## 9189 0.03 0.00 0.01 0.14
## 9190 0.03 0.00 0.01 0.14
## 9191 0.05 0.00 0.01 0.14
## 9192 0.00 0.14 0.00 0.14
## 9193 0.03 0.03 0.00 0.14
## 9194 0.02 0.00 0.01 0.14
## 9195 0.02 0.00 0.01 0.14
## 9196 0.03 0.00 0.00 0.14
## 9197 0.00 0.14 0.00 0.14
## 9198 0.05 0.00 0.01 0.14
## 9199 0.00 0.00 0.01 0.14
## 9200 0.03 0.00 0.01 0.14
## 9201 0.03 0.00 0.01 0.14
## 9202 0.00 0.00 0.01 0.14
## 9203 0.05 0.00 0.01 0.14
## 9204 0.04 0.00 0.01 0.14
## 9205 0.03 0.00 0.00 0.14
## 9206 0.00 0.00 0.01 0.14
## 9207 0.03 0.00 0.01 0.14
## 9208 0.05 0.00 0.01 0.14
## 9209 0.03 0.00 0.01 0.14
## 9210 0.00 0.14 0.00 0.14
## 9211 0.06 0.00 0.03 0.14
## 9212 0.00 0.14 0.00 0.14
## 9213 0.00 0.00 0.01 0.14
## 9214 0.03 0.00 0.01 0.14
## 9215 0.00 0.00 0.01 0.14
## 9216 0.05 0.00 0.01 0.14
## 9217 0.00 0.00 0.01 0.14
## 9218 0.04 0.00 0.00 0.14
## 9219 0.01 0.08 0.00 0.14
## 9220 0.00 0.00 0.01 0.14
## 9221 0.00 0.14 0.00 0.14
## 9222 0.00 0.13 0.01 0.14
## 9223 0.00 0.06 0.01 0.14
## 9224 0.00 0.14 0.00 0.14
## 9225 0.00 0.14 0.00 0.14
## 9226 0.01 0.13 0.00 0.14
## 9227 0.04 0.00 0.01 0.14
## 9228 0.01 0.00 0.01 0.14
## 9229 0.04 0.10 0.00 0.14
## 9230 0.00 0.00 0.01 0.14
## 9231 0.13 0.00 0.01 0.14
## 9232 0.10 0.00 0.04 0.14
## 9233 0.00 0.13 0.00 0.14
## 9234 0.03 0.00 0.00 0.14
## 9235 0.03 0.00 0.00 0.14
## [ reached 'max' / getOption("max.print") -- omitted 7211 rows ]
cat("Filas después de complete.cases():", nrow(df_completo), "\n")
## Filas después de complete.cases(): 16301
unique(data.vg$Platform)
## [1] Wii NES GB DS X360 PS3 PS2 SNES GBA 3DS PS4 N64 PS XB PC
## [16] 2600 PSP XOne GC WiiU GEN DC PSV SAT SCD WS NG TG16 3DO
## [31] GG PCFX
## 32 Levels: 2600 3DO 3DS DC DS GB GBA GC GEN GG N64 NES NG PC PCFX PS ... XOne
Graficos
df <- filter(data.vg,NA_Sales<2.5)
# Histograma agrupado por categoría
ggplot( df , aes(x = NA_Sales)) +
geom_histogram(position = "dodge", alpha = 0.7, bins = 20) +
labs(title = "Histograma Agrupado de Ventas por Año",
x = "Ventas",
y = "Frecuencia") +
theme_minimal()